mirror of https://github.com/iSoron/uhabits.git
parent
6af576c09c
commit
90f553b4f6
@ -0,0 +1 @@
|
|||||||
|
create table Preferences(key text unique not null, value text not null)
|
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Loop Habit Tracker.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.isoron.uhabits.models
|
||||||
|
|
||||||
|
class Preferences(private val repository: PreferencesRepository) {
|
||||||
|
var showArchived = repository.getBoolean("show_archived", false)
|
||||||
|
set(value) {
|
||||||
|
repository.putBoolean("show_archived", value)
|
||||||
|
field = value
|
||||||
|
}
|
||||||
|
|
||||||
|
var showCompleted = repository.getBoolean("show_completed", true)
|
||||||
|
set(value) {
|
||||||
|
repository.putBoolean("show_completed", value)
|
||||||
|
field = value
|
||||||
|
}
|
||||||
|
|
||||||
|
var nightMode = repository.getBoolean("night_mode", false)
|
||||||
|
set(value) {
|
||||||
|
repository.putBoolean("night_mode", value)
|
||||||
|
field = value
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,69 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Loop Habit Tracker.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.isoron.uhabits.models
|
||||||
|
|
||||||
|
import org.isoron.platform.io.*
|
||||||
|
|
||||||
|
class PreferencesRepository(private val db: Database) {
|
||||||
|
|
||||||
|
private val insertStatement = db.prepareStatement("insert into Preferences(key, value) values (?, ?)")
|
||||||
|
private val deleteStatement = db.prepareStatement("delete from Preferences where key=?")
|
||||||
|
private val selectStatement = db.prepareStatement("select value from Preferences where key=?")
|
||||||
|
|
||||||
|
fun putBoolean(key: String, value: Boolean) {
|
||||||
|
putString(key, value.toString())
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getBoolean(key: String, default: Boolean): Boolean {
|
||||||
|
val value = getString(key, "NULL")
|
||||||
|
return if (value == "NULL") default else value.toBoolean()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun putLong(key: String, value: Long) {
|
||||||
|
putString(key, value.toString())
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getLong(key: String, default: Long): Long {
|
||||||
|
val value = getString(key, "NULL")
|
||||||
|
return if (value == "NULL") default else value.toLong()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun putString(key: String, value: String) {
|
||||||
|
deleteStatement.bindText(0, key)
|
||||||
|
deleteStatement.step()
|
||||||
|
deleteStatement.reset()
|
||||||
|
insertStatement.bindText(0, key)
|
||||||
|
insertStatement.bindText(1, value)
|
||||||
|
insertStatement.step()
|
||||||
|
insertStatement.reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getString(key: String, default: String): String {
|
||||||
|
selectStatement.bindText(0, key)
|
||||||
|
if (selectStatement.step() == StepResult.DONE) {
|
||||||
|
selectStatement.reset()
|
||||||
|
return default
|
||||||
|
} else {
|
||||||
|
val value = selectStatement.getText(0)
|
||||||
|
selectStatement.reset()
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Loop Habit Tracker.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by the
|
||||||
|
* Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
* option) any later version.
|
||||||
|
*
|
||||||
|
* Loop Habit Tracker is distributed in the hope that it will be useful, but
|
||||||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.isoron.uhabits.models
|
||||||
|
|
||||||
|
import junit.framework.TestCase.*
|
||||||
|
import org.isoron.uhabits.*
|
||||||
|
import org.junit.*
|
||||||
|
|
||||||
|
class PreferencesRepositoryTest : BaseTest() {
|
||||||
|
@Test
|
||||||
|
fun testUsage() {
|
||||||
|
val prefs = PreferencesRepository(db)
|
||||||
|
|
||||||
|
assertEquals("default", prefs.getString("non_existing_key", "default"))
|
||||||
|
prefs.putString("ringtone_path", "/tmp")
|
||||||
|
assertEquals("/tmp", prefs.getString("ringtone_path", "none"))
|
||||||
|
|
||||||
|
assertEquals(42, prefs.getLong("non_existing_key", 42))
|
||||||
|
prefs.putLong("times_launched", 130)
|
||||||
|
assertEquals(130, prefs.getLong("times_launched", 0))
|
||||||
|
|
||||||
|
assertEquals(true, prefs.getBoolean("non_existing_key", true))
|
||||||
|
assertEquals(false, prefs.getBoolean("non_existing_key", false))
|
||||||
|
prefs.putBoolean("show_archived", true)
|
||||||
|
assertEquals(true, prefs.getBoolean("show_archived", false))
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue