@@ -29,6 +29,7 @@ import androidx.annotation.RequiresApi
29
29
import androidx.core.net.toUri
30
30
import androidx.core.os.bundleOf
31
31
import androidx.fragment.app.Fragment
32
+ import androidx.lifecycle.lifecycleScope
32
33
import be.mygod.reactmap.App.Companion.app
33
34
import be.mygod.reactmap.BuildConfig
34
35
import be.mygod.reactmap.R
@@ -37,6 +38,7 @@ import be.mygod.reactmap.util.UnblockCentral
37
38
import be.mygod.reactmap.util.findErrorStream
38
39
import com.google.android.material.snackbar.Snackbar
39
40
import com.google.firebase.analytics.FirebaseAnalytics
41
+ import kotlinx.coroutines.launch
40
42
import org.json.JSONArray
41
43
import org.json.JSONException
42
44
import org.json.JSONObject
@@ -123,6 +125,7 @@ abstract class BaseReactMapFragment : Fragment(), DownloadListener {
123
125
124
126
protected lateinit var web: WebView
125
127
protected lateinit var glocation: Glocation
128
+ private lateinit var postInterceptor: PostInterceptor
126
129
protected lateinit var hostname: String
127
130
128
131
private var loginText: String? = null
@@ -152,6 +155,7 @@ abstract class BaseReactMapFragment : Fragment(), DownloadListener {
152
155
javaScriptEnabled = true
153
156
}
154
157
glocation = Glocation (this , this @BaseReactMapFragment)
158
+ postInterceptor = PostInterceptor (this )
155
159
webChromeClient = object : WebChromeClient () {
156
160
@Suppress(" KotlinConstantConditions" )
157
161
override fun onConsoleMessage (consoleMessage : ConsoleMessage ) = consoleMessage.run {
@@ -194,11 +198,15 @@ abstract class BaseReactMapFragment : Fragment(), DownloadListener {
194
198
195
199
override fun onPageStarted (view : WebView , url : String , favicon : Bitmap ? ) {
196
200
glocation.clear()
201
+ postInterceptor.clear()
197
202
val uri = url.toUri()
198
203
if (! BuildConfig .DEBUG && " http" .equals(uri.scheme, true )) {
199
204
web.loadUrl(uri.buildUpon().scheme(" https" ).build().toString())
200
205
}
201
- if (uri.host == hostname) glocation.setupGeolocation()
206
+ if (uri.host == hostname) {
207
+ glocation.setupGeolocation()
208
+ postInterceptor.setup()
209
+ }
202
210
onPageStarted()
203
211
}
204
212
@@ -233,9 +241,7 @@ abstract class BaseReactMapFragment : Fragment(), DownloadListener {
233
241
return handleTranslation(request)
234
242
}
235
243
if (vendorJsMatcher.matchEntire(path) != null ) return handleVendorJs(request)
236
- if (path == " /graphql" && request.method == " POST" ) {
237
- request.requestHeaders.remove(" _interceptedBody" )?.let { return handleGraphql(request, it) }
238
- }
244
+ postInterceptor.extractBody(request)?.let { return handleGraphql(request, it) }
239
245
}
240
246
if (ReactMapHttpEngine .isCronet && (path.substringAfterLast(' .' ).lowercase(Locale .ENGLISH )
241
247
in mediaExtensions || request.requestHeaders.any { (key, value) ->
@@ -374,7 +380,12 @@ abstract class BaseReactMapFragment : Fragment(), DownloadListener {
374
380
setupConnection(request, conn)
375
381
ReactMapHttpEngine .writeCompressed(conn, body)
376
382
}
377
- createResponse(conn) { _ -> conn.findErrorStream }
383
+ if (conn.responseCode == 302 ) {
384
+ ReactMapHttpEngine .detectBrotliError(conn)?.let {
385
+ lifecycleScope.launch { Snackbar .make(web, it, Snackbar .LENGTH_LONG ).show() }
386
+ }
387
+ null
388
+ } else createResponse(conn) { _ -> conn.findErrorStream }
378
389
} catch (e: IOException ) {
379
390
Timber .d(e)
380
391
null
0 commit comments