aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/prefs/sections/NotifPrefs.kt
blob: a9a6956f4811b4619ca99a3c80d95e6143ca6b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 * Copyright 2020 Allan Wang
 *
 * This program 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.
 *
 * This program 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 com.pitchedapps.frost.prefs.sections

import ca.allanwang.kau.kpref.KPref
import ca.allanwang.kau.kpref.KPrefFactory
import com.pitchedapps.frost.BuildConfig
import com.pitchedapps.frost.prefs.OldPrefs
import com.pitchedapps.frost.prefs.PrefsBase
import org.koin.core.component.KoinComponent
import org.koin.core.component.inject

interface NotifPrefs : PrefsBase {
    var notificationKeywords: Set<String>

    var notificationsGeneral: Boolean

    var notificationAllAccounts: Boolean

    var notificationsInstantMessages: Boolean

    var notificationsImAllAccounts: Boolean

    var notificationVibrate: Boolean

    var notificationSound: Boolean

    var notificationRingtone: String

    var messageRingtone: String

    var notificationLights: Boolean

    var notificationFreq: Long
}

class NotifPrefsImpl(
    factory: KPrefFactory
) : KPref("${BuildConfig.APPLICATION_ID}.prefs.notif", factory),
    NotifPrefs, KoinComponent {

    private val oldPrefs: OldPrefs by inject()

    override var notificationKeywords: Set<String> by kpref(
        "notification_keywords",
        oldPrefs.notificationKeywords /* mutableSetOf() */
    )

    override var notificationsGeneral: Boolean by kpref(
        "notification_general",
        oldPrefs.notificationsGeneral /* true */
    )

    override var notificationAllAccounts: Boolean by kpref(
        "notification_all_accounts",
        oldPrefs.notificationAllAccounts /* true */
    )

    override var notificationsInstantMessages: Boolean by kpref(
        "notification_im",
        oldPrefs.notificationsInstantMessages /* true */
    )

    override var notificationsImAllAccounts: Boolean by kpref(
        "notification_im_all_accounts",
        oldPrefs.notificationsImAllAccounts /* false */
    )

    override var notificationVibrate: Boolean by kpref(
        "notification_vibrate",
        oldPrefs.notificationVibrate /* true */
    )

    override var notificationSound: Boolean by kpref(
        "notification_sound",
        oldPrefs.notificationSound /* true */
    )

    override var notificationRingtone: String by kpref(
        "notification_ringtone",
        oldPrefs.notificationRingtone /* "" */
    )

    override var messageRingtone: String by kpref(
        "message_ringtone",
        oldPrefs.messageRingtone /* "" */
    )

    override var notificationLights: Boolean by kpref(
        "notification_lights",
        oldPrefs.notificationLights /* true */
    )

    override var notificationFreq: Long by kpref(
        "notification_freq",
        oldPrefs.notificationFreq /* 15L */
    )
}