pull/48/head
kunfei 5 years ago
parent fb350d8ce1
commit 705004d878
  1. 10
      app/src/main/java/io/legado/app/model/webbook/SourceDebug.kt

@ -61,21 +61,25 @@ class SourceDebug(private val webBook: WebBook, callback: Callback) {
fun startDebug(key: String) {
cancelDebug()
startTime = System.currentTimeMillis()
if (key.isAbsUrl()) {
when {
key.isAbsUrl() -> {
val book = Book()
book.origin = webBook.sourceUrl
book.bookUrl = key
printLog(webBook.sourceUrl, "⇒开始访问详情页:$key")
infoDebug(book)
} else if (key.contains("::")) {
}
key.contains("::") -> {
val url = key.substring(key.indexOf("::") + 2)
printLog(webBook.sourceUrl, "⇒开始访问发现页:$url")
exploreDebug(url)
} else {
}
else -> {
printLog(webBook.sourceUrl, "⇒开始搜索关键字:$key")
searchDebug(key)
}
}
}
private fun exploreDebug(url: String) {
printLog(debugSource, "︾开始解析发现页")

Loading…
Cancel
Save