Baozi Manhua: fix page list and images parsing (#17434)
This commit is contained in:
parent
9761f0b65b
commit
a909a307fd
|
@ -1,3 +1,13 @@
|
||||||
|
## 1.3.21 (2023-08-08)
|
||||||
|
|
||||||
|
- 设置里新增一些镜像网址
|
||||||
|
- 修复部分情况下无法解析章节的问题
|
||||||
|
- 修复所有图片无法加载的问题
|
||||||
|
|
||||||
|
## 1.3.20 (2023-07-29)
|
||||||
|
|
||||||
|
- 修复需要验证时图片无法加载的问题
|
||||||
|
|
||||||
## 1.3.19 (2023-04-03)
|
## 1.3.19 (2023-04-03)
|
||||||
|
|
||||||
- 设置章节日期时不再错误地检查应用版本
|
- 设置章节日期时不再错误地检查应用版本
|
||||||
|
|
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Baozi Manhua'
|
extName = 'Baozi Manhua'
|
||||||
pkgNameSuffix = 'zh.baozimanhua'
|
pkgNameSuffix = 'zh.baozimanhua'
|
||||||
extClass = '.Baozi'
|
extClass = '.Baozi'
|
||||||
extVersionCode = 20
|
extVersionCode = 21
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
apply from: "$rootDir/common.gradle"
|
||||||
|
|
|
@ -135,16 +135,14 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun fetchPageList(chapter: SChapter): Observable<List<Page>> = Observable.fromCallable {
|
override fun fetchPageList(chapter: SChapter): Observable<List<Page>> = Observable.fromCallable {
|
||||||
val pageNumberSelector = Evaluator.Class("comic-text__amp")
|
val pathToUrl = LinkedHashMap<String, String>()
|
||||||
val pageList = ArrayList<Page>(0)
|
|
||||||
var url = baseUrl + chapter.url
|
var url = baseUrl + chapter.url
|
||||||
var i = 0
|
|
||||||
while (true) {
|
while (true) {
|
||||||
val document = client.newCall(GET(url, headers)).execute().asJsoup()
|
val document = client.newCall(GET(url, headers)).execute().asJsoup()
|
||||||
document.select(".comic-contain amp-img").dropWhile { element ->
|
for (element in document.select(".comic-contain amp-img")) {
|
||||||
element.selectFirst(pageNumberSelector)!!.text().substringBefore('/').toInt() <= i
|
val imageUrl = element.attr("data-src")
|
||||||
}.mapTo(pageList) { element ->
|
val path = imageUrl.substring(imageUrl.indexOf('/', startIndex = 8)) // Skip "https://"
|
||||||
Page(i++, imageUrl = element.attr("data-src"))
|
pathToUrl[path] = imageUrl
|
||||||
}
|
}
|
||||||
url = document.selectFirst(Evaluator.Id("next-chapter"))
|
url = document.selectFirst(Evaluator.Id("next-chapter"))
|
||||||
?.takeIf {
|
?.takeIf {
|
||||||
|
@ -154,7 +152,12 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
?.attr("href")
|
?.attr("href")
|
||||||
?: break
|
?: break
|
||||||
}
|
}
|
||||||
pageList
|
pathToUrl.values.mapIndexed { index, imageUrl -> Page(index, imageUrl = imageUrl) }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun imageRequest(page: Page): Request {
|
||||||
|
val url = page.imageUrl!!.replace(".baozicdn.com", ".baozimh.com")
|
||||||
|
return GET(url, headers)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun pageListParse(document: Document) = throw UnsupportedOperationException("Not used.")
|
override fun pageListParse(document: Document) = throw UnsupportedOperationException("Not used.")
|
||||||
|
@ -189,7 +192,6 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request {
|
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request {
|
||||||
// impossible to search a manga and use the filters
|
// impossible to search a manga and use the filters
|
||||||
return if (query.isNotEmpty()) {
|
return if (query.isNotEmpty()) {
|
||||||
val baseUrl = baseUrl.replace("webmota.com", "baozimh.com")
|
|
||||||
val url = baseUrl.toHttpUrl().newBuilder()
|
val url = baseUrl.toHttpUrl().newBuilder()
|
||||||
.addEncodedPathSegment("search")
|
.addEncodedPathSegment("search")
|
||||||
.addQueryParameter("q", query)
|
.addQueryParameter("q", query)
|
||||||
|
@ -227,8 +229,7 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
entries = MIRRORS
|
entries = MIRRORS
|
||||||
entryValues = MIRRORS
|
entryValues = MIRRORS
|
||||||
summary = "已选择:%s\n" +
|
summary = "已选择:%s\n" +
|
||||||
"重启生效,切换简繁体后需要迁移才能刷新漫画标题。\n" +
|
"重启生效,切换简繁体后需要迁移才能刷新漫画标题。"
|
||||||
"搜索漫画时自动使用 baozimh.com 域名以避免出错。"
|
|
||||||
setDefaultValue(MIRRORS[0])
|
setDefaultValue(MIRRORS[0])
|
||||||
}.let { screen.addPreference(it) }
|
}.let { screen.addPreference(it) }
|
||||||
|
|
||||||
|
@ -251,8 +252,7 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
summary = "已选择:%s\n" +
|
summary = "已选择:%s\n" +
|
||||||
"部分作品的章节顺序错误,最新章节总是显示为一个旧章节,导致检查更新时新章节被错标为已读。" +
|
"部分作品的章节顺序错误,最新章节总是显示为一个旧章节,导致检查更新时新章节被错标为已读。" +
|
||||||
"开启后,将会正确判断新章节和已读情况,但是错误的章节顺序不会改变。" +
|
"开启后,将会正确判断新章节和已读情况,但是错误的章节顺序不会改变。" +
|
||||||
"如果作品有章节标号重复,开启或关闭后第一次刷新会导致它们的阅读状态同步。" +
|
"警告:修改此设置后第一次刷新可能会导致已读状态出现错乱,请谨慎使用。"
|
||||||
"开启或关闭强力模式后第一次刷新会将所有未标号的章节标记为未读。"
|
|
||||||
entries = arrayOf("关闭", "开启 (对有标号的章节有效)", "强力模式 (对所有章节有效)")
|
entries = arrayOf("关闭", "开启 (对有标号的章节有效)", "强力模式 (对所有章节有效)")
|
||||||
entryValues = arrayOf(CHAPTER_ORDER_DISABLED, CHAPTER_ORDER_ENABLED, CHAPTER_ORDER_AGGRESSIVE)
|
entryValues = arrayOf(CHAPTER_ORDER_DISABLED, CHAPTER_ORDER_ENABLED, CHAPTER_ORDER_AGGRESSIVE)
|
||||||
setDefaultValue(CHAPTER_ORDER_DISABLED)
|
setDefaultValue(CHAPTER_ORDER_DISABLED)
|
||||||
|
@ -270,6 +270,12 @@ class Baozi : ParsedHttpSource(), ConfigurableSource {
|
||||||
"tw.webmota.com",
|
"tw.webmota.com",
|
||||||
"www.baozimh.com",
|
"www.baozimh.com",
|
||||||
"www.webmota.com",
|
"www.webmota.com",
|
||||||
|
"cn.kukuc.co",
|
||||||
|
"tw.kukuc.co",
|
||||||
|
"www.kukuc.co",
|
||||||
|
"cn.czmanga.com",
|
||||||
|
"tw.czmanga.com",
|
||||||
|
"www.czmanga.com",
|
||||||
)
|
)
|
||||||
|
|
||||||
private const val DEFAULT_LEVEL = BaoziBanner.NORMAL.toString()
|
private const val DEFAULT_LEVEL = BaoziBanner.NORMAL.toString()
|
||||||
|
|
Loading…
Reference in New Issue