pull/32/head
parent
c1bab5adbd
commit
35e9106bcc
@ -1,5 +1,29 @@ |
||||
package io.legado.app.model.webbook |
||||
|
||||
import io.legado.app.App |
||||
import io.legado.app.R |
||||
import io.legado.app.data.entities.Book |
||||
import io.legado.app.data.entities.BookSource |
||||
import io.legado.app.model.analyzeRule.AnalyzeUrl |
||||
|
||||
object BookInfo { |
||||
|
||||
@Throws(Exception::class) |
||||
fun analyzeBookInfo( |
||||
book: Book, |
||||
body: String?, |
||||
bookSource: BookSource, |
||||
analyzeUrl: AnalyzeUrl, |
||||
isSearch: Boolean = true |
||||
) { |
||||
val baseUrl = analyzeUrl.url |
||||
body ?: throw Exception( |
||||
App.INSTANCE.getString( |
||||
R.string.get_web_content_error, |
||||
baseUrl |
||||
) |
||||
) |
||||
|
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue