aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt
blob: 038eb1a6aee061836628f07353b52a4d649116ad (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
package com.pitchedapps.frost.facebook

import android.webkit.CookieManager
import com.pitchedapps.frost.dbflow.CookieModel
import com.pitchedapps.frost.dbflow.loadFbCookie
import com.pitchedapps.frost.dbflow.removeCookie
import com.pitchedapps.frost.dbflow.saveFbCookie
import com.pitchedapps.frost.events.FbAccountEvent
import com.pitchedapps.frost.utils.L
import com.pitchedapps.frost.utils.Prefs
import org.greenrobot.eventbus.EventBus

/**
 * Created by Allan Wang on 2017-05-30.
 */
object FbCookie {

    var dbCookie: String? = null
    var webCookie: String?
        get() = CookieManager.getInstance().getCookie(FB_URL_BASE)
        set(value) {
            CookieManager.getInstance().setCookie(FB_URL_BASE, value)
            CookieManager.getInstance().flush()
        }

    operator fun invoke() {
        L.d("User ${Prefs.userId}")
        dbCookie = loadFbCookie(Prefs.userId)?.cookie
        if (dbCookie != null && webCookie == null) {
            L.d("DbCookie found & WebCookie is null; setting webcookie")
            webCookie = dbCookie
        }
    }

    fun save(id: Long) {
        L.d("New cookie found for $id")
        Prefs.userId = id
        CookieManager.getInstance().flush()
        val cookie = CookieModel(Prefs.userId, "", webCookie)
        saveFbCookie(cookie)
    }

    fun reset() {
        Prefs.userId = Prefs.userIdDefault
        with(CookieManager.getInstance()) {
            removeAllCookies(null)
            flush()
        }
    }

    fun switchUser(id: Long) = switchUser(loadFbCookie(id))

    fun switchUser(name: String) = switchUser(loadFbCookie(name))

    fun switchUser(cookie: CookieModel?) {
        if (cookie == null) return
        Prefs.userId = cookie.id
        dbCookie = cookie.cookie
        webCookie = dbCookie
        //TODO add webview refresh event
    }

    fun logout(id:Long) {
        L.d("Logging out user $id")
        removeCookie(id)
        reset()
    }
}