fix:取消验证没有停止等待

This commit is contained in:
Xwite
2022-05-07 15:52:05 +08:00
parent b352c07ad2
commit ad7b16d13d
3 changed files with 9 additions and 6 deletions
@@ -12,6 +12,7 @@ import splitties.init.appCtx
object SourceVerificationHelp { object SourceVerificationHelp {
private var key: String = ""
/** /**
* 获取书源验证结果 * 获取书源验证结果
* 图片验证码 防爬 滑动验证码 点击字符 等等 * 图片验证码 防爬 滑动验证码 点击字符 等等
@@ -19,7 +20,7 @@ object SourceVerificationHelp {
fun getVerificationResult(source: BaseSource?, url: String, title: String, useBrowser: Boolean): String { fun getVerificationResult(source: BaseSource?, url: String, title: String, useBrowser: Boolean): String {
source ?: throw NoStackTraceException("getVerificationResult parameter source cannot be null") source ?: throw NoStackTraceException("getVerificationResult parameter source cannot be null")
return runBlocking { return runBlocking {
val key = "${source.getKey()}_verificationResult" key = "${source.getKey()}_verificationResult"
CacheManager.delete(key) CacheManager.delete(key)
if (!useBrowser) { if (!useBrowser) {
@@ -52,6 +53,7 @@ object SourceVerificationHelp {
*/ */
fun startBrowser(source: BaseSource?, url: String, title: String, saveResult: Boolean? = false) { fun startBrowser(source: BaseSource?, url: String, title: String, saveResult: Boolean? = false) {
source ?: throw NoStackTraceException("startBrowser parameter source cannot be null") source ?: throw NoStackTraceException("startBrowser parameter source cannot be null")
key = "${source.getKey()}_verificationResult"
appCtx.startActivity<WebViewActivity> { appCtx.startActivity<WebViewActivity> {
putExtra("title", title) putExtra("title", title)
putExtra("url", url) putExtra("url", url)
@@ -61,7 +63,7 @@ object SourceVerificationHelp {
} }
} }
private fun checkActivityStatus(): Boolean { fun checkResult() {
return true CacheManager.get(key) ?: CacheManager.putMemory(key, "")
} }
} }
@@ -12,6 +12,7 @@ import io.legado.app.R
import io.legado.app.base.BaseDialogFragment import io.legado.app.base.BaseDialogFragment
import io.legado.app.databinding.DialogVerificationCodeViewBinding import io.legado.app.databinding.DialogVerificationCodeViewBinding
import io.legado.app.help.CacheManager import io.legado.app.help.CacheManager
import io.legado.app.help.SourceVerificationHelp
import io.legado.app.help.glide.ImageLoader import io.legado.app.help.glide.ImageLoader
import io.legado.app.help.glide.OkHttpModelLoader import io.legado.app.help.glide.OkHttpModelLoader
import io.legado.app.lib.theme.primaryColor import io.legado.app.lib.theme.primaryColor
@@ -91,9 +92,7 @@ class VerificationCodeDialog() : BaseDialogFragment(R.layout.dialog_verification
} }
override fun onDestroy() { override fun onDestroy() {
val sourceOrigin = arguments?.getString("sourceOrigin") SourceVerificationHelp.checkResult()
val key = "${sourceOrigin}_verificationResult"
CacheManager.get(key) ?: CacheManager.putMemory(key, "")
super.onDestroy() super.onDestroy()
activity?.finish() activity?.finish()
} }
@@ -17,6 +17,7 @@ import io.legado.app.R
import io.legado.app.base.VMBaseActivity import io.legado.app.base.VMBaseActivity
import io.legado.app.constant.AppConst import io.legado.app.constant.AppConst
import io.legado.app.databinding.ActivityWebViewBinding import io.legado.app.databinding.ActivityWebViewBinding
import io.legado.app.help.SourceVerificationHelp
import io.legado.app.help.config.AppConfig import io.legado.app.help.config.AppConfig
import io.legado.app.help.http.CookieStore import io.legado.app.help.http.CookieStore
import io.legado.app.lib.dialogs.SelectItem import io.legado.app.lib.dialogs.SelectItem
@@ -182,6 +183,7 @@ class WebViewActivity : VMBaseActivity<ActivityWebViewBinding, WebViewModel>() {
} }
override fun onDestroy() { override fun onDestroy() {
SourceVerificationHelp.checkResult()
super.onDestroy() super.onDestroy()
binding.webView.destroy() binding.webView.destroy()
} }