fix(ar/yokai): Show the complete chapter list (#19471)
* fix: Show the complete chapter list * chore: Bump version.
This commit is contained in:
parent
ac4700a760
commit
4f22d3f064
|
@ -0,0 +1,41 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.ar.yokai
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||||
|
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistMangaDto
|
||||||
|
import eu.kanade.tachiyomi.network.GET
|
||||||
|
import eu.kanade.tachiyomi.source.model.SChapter
|
||||||
|
import eu.kanade.tachiyomi.util.asJsoup
|
||||||
|
import kotlinx.serialization.json.Json
|
||||||
|
import kotlinx.serialization.json.decodeFromStream
|
||||||
|
import okhttp3.Response
|
||||||
|
import uy.kohesive.injekt.injectLazy
|
||||||
|
|
||||||
|
class Yokai : ZeistManga("Yokai", "https://yokai-team.blogspot.com", "ar") {
|
||||||
|
private val json: Json by injectLazy()
|
||||||
|
|
||||||
|
// ============================== Chapters ==============================
|
||||||
|
override fun chapterListParse(response: Response): List<SChapter> {
|
||||||
|
val document = response.use { it.asJsoup() }
|
||||||
|
|
||||||
|
val url = getChapterFeedUrl(document)
|
||||||
|
|
||||||
|
val result = client.newCall(GET(url, headers)).execute()
|
||||||
|
.use { json.decodeFromStream<ZeistMangaDto>(it.body.byteStream()) }
|
||||||
|
|
||||||
|
val originalList = result.feed?.entry
|
||||||
|
?.filter { it.category.orEmpty().any { category -> category.term == chapterCategory } }
|
||||||
|
?.map { it.toSChapter(baseUrl) }
|
||||||
|
?: throw Exception("Failed to parse from chapter API")
|
||||||
|
|
||||||
|
val additionalChapters = document.select("div#download > div.index-list > a").map {
|
||||||
|
SChapter.create().apply {
|
||||||
|
setUrlWithoutDomain(it.attr("href"))
|
||||||
|
val text = it.text().trim()
|
||||||
|
name = text
|
||||||
|
chapter_number = text.substringBefore(' ').toFloatOrNull() ?: 1F
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return originalList + additionalChapters
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,7 +30,7 @@ class ZeistMangaGenerator : ThemeSourceGenerator {
|
||||||
SingleLang("SobatManKu", "https://www.sobatmanku19.site", "id"),
|
SingleLang("SobatManKu", "https://www.sobatmanku19.site", "id"),
|
||||||
SingleLang("Tooncubus", "https://www.tooncubus.top", "id", isNsfw = true),
|
SingleLang("Tooncubus", "https://www.tooncubus.top", "id", isNsfw = true),
|
||||||
SingleLang("Tyrant Scans", "https://www.tyrantscans.com", "pt-BR"),
|
SingleLang("Tyrant Scans", "https://www.tyrantscans.com", "pt-BR"),
|
||||||
SingleLang("Yokai", "https://yokai-team.blogspot.com", "ar"),
|
SingleLang("Yokai", "https://yokai-team.blogspot.com", "ar", overrideVersionCode = 1),
|
||||||
)
|
)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
Loading…
Reference in New Issue