aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/FrostApp.kt
blob: f5ef0b74f388960e76bcd9d34945b217b0da9f5a (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
/*
 * Copyright 2018 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

import android.app.Activity
import android.app.Application
import android.os.Bundle
import android.util.Log
import ca.allanwang.kau.logging.KL
import ca.allanwang.kau.utils.buildIsLollipopAndUp
import com.pitchedapps.frost.db.CookieDao
import com.pitchedapps.frost.db.NotificationDao
import com.pitchedapps.frost.injectors.ThemeProvider
import com.pitchedapps.frost.prefs.Prefs
import com.pitchedapps.frost.services.scheduleNotificationsFromPrefs
import com.pitchedapps.frost.services.setupNotificationChannels
import com.pitchedapps.frost.utils.FrostPglAdBlock
import com.pitchedapps.frost.utils.L
import dagger.hilt.android.HiltAndroidApp
import java.util.Random
import javax.inject.Inject

/**
 * Created by Allan Wang on 2017-05-28.
 */
@HiltAndroidApp
class FrostApp : Application() {

    @Inject
    lateinit var prefs: Prefs

    @Inject
    lateinit var themeProvider: ThemeProvider

    @Inject
    lateinit var cookieDao: CookieDao

    @Inject
    lateinit var notifDao: NotificationDao

    override fun onCreate() {
        super.onCreate()

        if (!buildIsLollipopAndUp) return // not supported

        initPrefs()

        L.i { "Begin Frost for Facebook" }
        FrostPglAdBlock.init(this)

        setupNotificationChannels(this, themeProvider)

        scheduleNotificationsFromPrefs(prefs)

        if (BuildConfig.DEBUG) {
            registerActivityLifecycleCallbacks(object : ActivityLifecycleCallbacks {
                override fun onActivityPaused(activity: Activity) {}
                override fun onActivityResumed(activity: Activity) {}
                override fun onActivityStarted(activity: Activity) {}

                override fun onActivityDestroyed(activity: Activity) {
                    L.d { "Activity ${activity.localClassName} destroyed" }
                }

                override fun onActivitySaveInstanceState(activity: Activity, outState: Bundle) {}

                override fun onActivityStopped(activity: Activity) {}

                override fun onActivityCreated(activity: Activity, savedInstanceState: Bundle?) {
                    L.d { "Activity ${activity.localClassName} created" }
                }
            })
        }
    }

    private fun initPrefs() {
        prefs.deleteKeys("search_bar", "shown_release", "experimental_by_default")
        KL.shouldLog = { BuildConfig.DEBUG }
        L.shouldLog = {
            when (it) {
                Log.VERBOSE -> BuildConfig.DEBUG
                Log.INFO, Log.ERROR -> true
                else -> BuildConfig.DEBUG || prefs.verboseLogging
            }
        }
        prefs.verboseLogging = false
        if (prefs.installDate == -1L) {
            prefs.installDate = System.currentTimeMillis()
        }
        if (prefs.identifier == -1) {
            prefs.identifier = Random().nextInt(Int.MAX_VALUE)
        }
        prefs.lastLaunch = System.currentTimeMillis()
    }
}