aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/injectors/JsInjector.kt
blob: 58ebb1719a6dcecde9e1b2f66f6ef1c8caa9aacf (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * 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.injectors

import android.webkit.WebView
import androidx.annotation.VisibleForTesting
import com.pitchedapps.frost.prefs.Prefs
import com.pitchedapps.frost.utils.L
import com.pitchedapps.frost.web.FrostWebViewClient
import org.apache.commons.text.StringEscapeUtils
import kotlin.random.Random

class JsBuilder {
    private val css = StringBuilder()
    private val js = StringBuilder()

    private var tag: String? = null

    fun css(css: String): JsBuilder {
        this.css.append(StringEscapeUtils.escapeEcmaScript(css))
        return this
    }

    fun js(content: String): JsBuilder {
        this.js.append(content)
        return this
    }

    fun single(tag: String): JsBuilder {
        this.tag = TagObfuscator.obfuscateTag(tag)
        return this
    }

    fun build() = JsInjector(toString())

    override fun toString(): String {
        val tag = this.tag
        val builder = StringBuilder().apply {
            append("!function(){")
            if (css.isNotBlank()) {
                val cssMin = css.replace(Regex("\\s*\n\\s*"), "")
                append("var a=document.createElement('style');")
                append("a.innerHTML='$cssMin';")
                if (tag != null) {
                    append("a.id='$tag';")
                }
                append("document.head.appendChild(a);")
            }
            if (js.isNotBlank()) {
                append(js)
            }
        }
        var content = builder.append("}()").toString()
        if (tag != null) {
            content = singleInjector(tag, content)
        }
        return content
    }

    private fun singleInjector(tag: String, content: String) = StringBuilder().apply {
        append("if (!window.hasOwnProperty(\"$tag\")) {")
        append("console.log(\"Registering $tag\");")
        append("window.$tag = true;")
        append(content)
        append("}")
    }.toString()
}

/**
 * Contract for all injectors to allow it to interact properly with a webview
 */
interface InjectorContract {
    fun inject(webView: WebView, prefs: Prefs)

    /**
     * Toggle the injector (usually through Prefs
     * If false, will fallback to an empty action
     */
    fun maybe(enable: Boolean): InjectorContract = if (enable) this else JsActions.EMPTY
}

/**
 * Helper method to inject multiple functions simultaneously with a single callback
 */
fun WebView.jsInject(vararg injectors: InjectorContract, prefs: Prefs) {
    injectors.asSequence().filter { it != JsActions.EMPTY }.forEach {
        it.inject(this, prefs)
    }
}

fun FrostWebViewClient.jsInject(vararg injectors: InjectorContract, prefs: Prefs) =
    web.jsInject(*injectors, prefs = prefs)

/**
 * Wrapper class to convert a function into an injector
 */
class JsInjector(val function: String) : InjectorContract {
    override fun inject(webView: WebView, prefs: Prefs) =
        webView.evaluateJavascript(function, null)
}

/**
 * Helper object to obfuscate window tags for JS injection.
 */
@VisibleForTesting
internal object TagObfuscator {

    fun obfuscateTag(tag: String): String {
        val rnd = Random(tag.hashCode() + salt)
        val obfuscated = buildString {
            append(prefix)
            append('_')
            appendRandomChars(rnd, 16)
        }
        L.v { "TagObfuscator: Obfuscating tag '$tag' to '$obfuscated'" }
        return obfuscated
    }

    private val salt: Long = System.currentTimeMillis()

    private val prefix: String by lazy {
        val rnd = Random(System.currentTimeMillis())
        buildString { appendRandomChars(rnd, 8) }
    }

    private fun Appendable.appendRandomChars(random: Random, count: Int) {
        for (i in 1..count) {
            append('a' + random.nextInt(26))
        }
    }
}