MMRCMS (Mangas.pw decoding) (#1304)

This commit is contained in:
Mike 2019-07-17 22:36:20 -04:00 committed by Eugene
parent 7f87dff312
commit 66017dc432
2 changed files with 11 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: My Manga Reader CMS (Many sources)'
pkgNameSuffix = 'all.mmrcms'
extClass = '.MyMangaReaderCMSSources'
extVersionCode = 20
extVersionCode = 21
libVersion = '1.2'
}

View File

@ -16,6 +16,7 @@ import org.jsoup.nodes.Element
import java.text.ParseException
import java.text.SimpleDateFormat
import java.util.*
import android.util.Base64
class MyMangaReaderCMSSource(override val lang: String,
override val name: String,
@ -79,7 +80,7 @@ class MyMangaReaderCMSSource(override val lang: String,
if (urlElement.size == 0) {
url = getUrlWithoutBaseUrl(it.select("a").attr("href"))
title = it.select("div.caption").text()
(it.select("div.caption div").text()).let { if (it.isNotEmpty()) title = title.substringBefore(it)} // For submanga and to not break hentaishark
it.select("div.caption div").text().let { if (it.isNotEmpty()) title = title.substringBefore(it)} // To clean submanga's titles without breaking hentaishark's
} else {
url = getUrlWithoutBaseUrl(urlElement.attr("href"))
title = urlElement.text().trim()
@ -268,6 +269,14 @@ class MyMangaReaderCMSSource(override val lang: String,
url = url.trim()
// Mangas.pw encodes some of their urls, decode them
if (url.contains("mangas.pw") && url.contains("img.php")) {
url = url.substringAfter("i=")
repeat (5) {
url = Base64.decode(url, Base64.DEFAULT).toString(Charsets.UTF_8).substringBefore("=")
}
}
Page(i, url, url)
}