Mangahere Update Page List for Webtoons (#2082)
Mangahere Update Page List for Webtoons
This commit is contained in:
parent
f62694dffe
commit
3fb1225f45
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: Mangahere'
|
appName = 'Tachiyomi: Mangahere'
|
||||||
pkgNameSuffix = 'en.mangahere'
|
pkgNameSuffix = 'en.mangahere'
|
||||||
extClass = '.Mangahere'
|
extClass = '.Mangahere'
|
||||||
extVersionCode = 11
|
extVersionCode = 12
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ class Mangahere : ParsedHttpSource() {
|
||||||
|
|
||||||
override val name = "Mangahere"
|
override val name = "Mangahere"
|
||||||
|
|
||||||
override val baseUrl = "http://www.mangahere.cc"
|
override val baseUrl = "https://www.mangahere.cc"
|
||||||
|
|
||||||
override val lang = "en"
|
override val lang = "en"
|
||||||
|
|
||||||
|
@ -191,110 +191,20 @@ class Mangahere : ParsedHttpSource() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListRequest(chapter: SChapter): Request {
|
||||||
val bar = document.select("script[src*=chapter_bar]")
|
return GET("$baseUrl/${chapter.url}".replace("www","m"), headers)
|
||||||
if (!bar.isNullOrEmpty()){
|
}
|
||||||
val script = document.select("script:containsData(function(p,a,c,k,e,d))").html().removePrefix("eval")
|
|
||||||
val duktape = Duktape.create()
|
|
||||||
val DeobfuscatedScript = duktape.evaluate(script).toString()
|
|
||||||
val urls = DeobfuscatedScript.substringAfter("newImgs=['").substringBefore("'];").split("','")
|
|
||||||
duktape.close()
|
|
||||||
val pages = mutableListOf<Page>()
|
|
||||||
urls.forEachIndexed { index, s ->
|
|
||||||
pages.add(Page(index, "", "http:$s"))
|
|
||||||
}
|
|
||||||
return pages
|
|
||||||
} else {
|
|
||||||
|
|
||||||
val html = document.html()
|
override fun pageListParse(document: Document): List<Page> = mutableListOf<Page>().apply {
|
||||||
val link = document.location()
|
document.select("select option").forEach {
|
||||||
|
add(Page(size,"https:${it.attr("value")}"))
|
||||||
val pages = mutableListOf<Page>()
|
|
||||||
|
|
||||||
val duktape = Duktape.create()
|
|
||||||
|
|
||||||
var secretKey = extractSecretKey(html, duktape)
|
|
||||||
|
|
||||||
val chapterIdStartLoc = html.indexOf("chapterid")
|
|
||||||
val chapterId = html.substring(
|
|
||||||
chapterIdStartLoc + 11,
|
|
||||||
html.indexOf(";", chapterIdStartLoc)).trim()
|
|
||||||
|
|
||||||
val chapterPagesElement = document.select(".pager-list-left > span").first()
|
|
||||||
val pagesLinksElements = chapterPagesElement.select("a")
|
|
||||||
val pagesNumber = pagesLinksElements.get(pagesLinksElements.size - 2).attr("data-page").toInt()
|
|
||||||
|
|
||||||
val pageBase = link.substring(0, link.lastIndexOf("/"))
|
|
||||||
|
|
||||||
for (i in 1..pagesNumber){
|
|
||||||
|
|
||||||
val pageLink = "${pageBase}/chapterfun.ashx?cid=$chapterId&page=$i&key=$secretKey"
|
|
||||||
|
|
||||||
var responseText = ""
|
|
||||||
|
|
||||||
for (tr in 1..3){
|
|
||||||
|
|
||||||
val request = Request.Builder()
|
|
||||||
.url(pageLink)
|
|
||||||
.addHeader("Referer",link)
|
|
||||||
.addHeader("Accept","*/*")
|
|
||||||
.addHeader("Accept-Language","en-US,en;q=0.9")
|
|
||||||
.addHeader("Connection","keep-alive")
|
|
||||||
.addHeader("Host","www.mangahere.cc")
|
|
||||||
.addHeader("User-Agent", System.getProperty("http.agent") ?: "")
|
|
||||||
.addHeader("X-Requested-With","XMLHttpRequest")
|
|
||||||
.build()
|
|
||||||
|
|
||||||
val response = client.newCall(request).execute()
|
|
||||||
responseText = response.body()!!.string()
|
|
||||||
|
|
||||||
if (responseText.isNotEmpty())
|
|
||||||
break
|
|
||||||
else
|
|
||||||
secretKey = ""
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
val deobfuscatedScript = duktape.evaluate(responseText.removePrefix("eval")).toString()
|
|
||||||
|
|
||||||
val baseLinkStartPos = deobfuscatedScript.indexOf("pix=") + 5
|
|
||||||
val baseLinkEndPos = deobfuscatedScript.indexOf(";", baseLinkStartPos) - 1
|
|
||||||
val baseLink = deobfuscatedScript.substring(baseLinkStartPos, baseLinkEndPos)
|
|
||||||
|
|
||||||
val imageLinkStartPos = deobfuscatedScript.indexOf("pvalue=") + 9
|
|
||||||
val imageLinkEndPos = deobfuscatedScript.indexOf("\"", imageLinkStartPos)
|
|
||||||
val imageLink = deobfuscatedScript.substring(imageLinkStartPos, imageLinkEndPos)
|
|
||||||
|
|
||||||
pages.add(Page(i, "", "http:$baseLink$imageLink"))
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
duktape.close()
|
|
||||||
|
|
||||||
return pages
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun extractSecretKey(html: String, duktape: Duktape): String {
|
override fun imageUrlParse(document: Document): String {
|
||||||
|
return document.select("img#image").attr("src")
|
||||||
val secretKeyScriptLocation = html.indexOf("eval(function(p,a,c,k,e,d)")
|
|
||||||
val secretKeyScriptEndLocation = html.indexOf("</script>", secretKeyScriptLocation)
|
|
||||||
val secretKeyScript = html.substring(secretKeyScriptLocation, secretKeyScriptEndLocation).removePrefix("eval")
|
|
||||||
|
|
||||||
val secretKeyDeobfuscatedScript = duktape.evaluate(secretKeyScript).toString()
|
|
||||||
|
|
||||||
val secretKeyStartLoc = secretKeyDeobfuscatedScript.indexOf("'")
|
|
||||||
val secretKeyEndLoc = secretKeyDeobfuscatedScript.indexOf(";")
|
|
||||||
|
|
||||||
val secretKeyResultScript = secretKeyDeobfuscatedScript.substring(
|
|
||||||
secretKeyStartLoc, secretKeyEndLoc)
|
|
||||||
|
|
||||||
return duktape.evaluate(secretKeyResultScript).toString()
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun imageUrlParse(document: Document) = document.getElementById("image").attr("src")
|
|
||||||
|
|
||||||
private class Genre(title: String, val id: Int) : Filter.TriState(title)
|
private class Genre(title: String, val id: Int) : Filter.TriState(title)
|
||||||
|
|
||||||
private class TypeList(types: Array<String>) : Filter.Select<String>("Type", types,0)
|
private class TypeList(types: Array<String>) : Filter.Select<String>("Type", types,0)
|
||||||
|
|
Loading…
Reference in New Issue