aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-05-31 01:31:02 -0700
committerAllan Wang <me@allanwang.ca>2017-05-31 01:31:02 -0700
commit9a41937a33539dbfaae4d072361caaec79865c29 (patch)
treece647730eef90b02cb5f4612cf0e37a935500c50 /app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt
parentc53e343f039b65c0aee2ee316b8c844a5b596bb8 (diff)
downloadfrost-9a41937a33539dbfaae4d072361caaec79865c29.tar.gz
frost-9a41937a33539dbfaae4d072361caaec79865c29.tar.bz2
frost-9a41937a33539dbfaae4d072361caaec79865c29.zip
implement cache db and start js injections
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt63
1 files changed, 63 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt
new file mode 100644
index 00000000..80fc3b72
--- /dev/null
+++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbCookie.kt
@@ -0,0 +1,63 @@
+package com.pitchedapps.frost.facebook
+
+import android.webkit.CookieManager
+import com.pitchedapps.frost.dbflow.FB_URL_BASE
+import com.pitchedapps.frost.dbflow.loadFbCookie
+import com.pitchedapps.frost.dbflow.saveFbCookie
+import com.pitchedapps.frost.utils.L
+import com.pitchedapps.frost.utils.Prefs
+
+/**
+ * Created by Allan Wang on 2017-05-30.
+ */
+object FbCookie {
+
+ var userId: Long = Prefs.userIdDefault
+ var dbCookie: String? = null
+ var webCookie: String?
+ get() = CookieManager.getInstance().getCookie(FB_URL_BASE)
+ set(value) = CookieManager.getInstance().setCookie(FB_URL_BASE, value)
+
+ fun init() {
+ userId = Prefs.userId
+ dbCookie = loadFbCookie()?.cookie
+ if (dbCookie != null && webCookie == null) {
+ L.d("DbCookie found & WebCookie is null; setting webcookie")
+ webCookie = dbCookie
+ }
+ }
+
+ private val userMatcher: Regex by lazy { Regex("c_user=([0-9]*);") }
+
+ fun checkUserId(url: String, cookie: String?) {
+ if (userId != Prefs.userIdDefault || cookie == null) return
+ L.d("Checking cookie for $url\n\t$cookie")
+ if (!url.contains("facebook") || !cookie.contains(userMatcher)) return
+ val id = userMatcher.find(cookie)?.groups?.get(1)?.value
+ if (id != null) {
+ try {
+ userId = id.toLong()
+ save()
+ } catch (e: NumberFormatException) {
+ //todo send report that id has changed
+ }
+ }
+ }
+
+ fun save() {
+ L.d("New cookie found for $userId")
+ Prefs.userId = userId
+ CookieManager.getInstance().flush()
+ saveFbCookie()
+ }
+
+ //TODO reset when new account is added; reset and clear when account is logged out
+ fun reset() {
+ Prefs.userId = Prefs.userIdDefault
+ userId = Prefs.userIdDefault
+ with(CookieManager.getInstance()) {
+ removeAllCookies(null)
+ flush()
+ }
+ }
+} \ No newline at end of file