mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Updated parsing of manga title from URL. (#59)
This commit is contained in:
parent
c66ab72444
commit
b768f45276
@ -6,7 +6,7 @@ ext {
|
||||
extName = 'Madokami'
|
||||
pkgNameSuffix = 'en.madokami'
|
||||
extClass = '.Madokami'
|
||||
extVersionCode = 7
|
||||
extVersionCode = 8
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
@ -67,7 +67,10 @@ class Madokami : ConfigurableSource, ParsedHttpSource() {
|
||||
override fun popularMangaFromElement(element: Element): SManga {
|
||||
val manga = SManga.create()
|
||||
manga.url = element.attr("href")
|
||||
manga.title = URLDecoder.decode(element.attr("href").split("/").last(), "UTF-8").trimStart('!')
|
||||
val pathSegments = element.attr("href").split("/")
|
||||
var i = pathSegments.size
|
||||
manga.description = URLDecoder.decode(pathSegments[i - 1], "UTF-8")
|
||||
do { i--; manga.title = URLDecoder.decode(pathSegments[i], "UTF-8") } while (URLDecoder.decode(pathSegments[i], "UTF-8").startsWith("!"))
|
||||
return manga
|
||||
}
|
||||
|
||||
@ -109,8 +112,7 @@ class Madokami : ConfigurableSource, ParsedHttpSource() {
|
||||
override fun mangaDetailsParse(document: Document): SManga {
|
||||
val manga = SManga.create()
|
||||
manga.author = document.select("a[itemprop=\"author\"]").joinToString(", ") { it.text() }
|
||||
manga.description = "Tags: " + document.select("div.genres[itemprop=\"keywords\"] a.tag.tag-category").joinToString(", ") { it.text() }
|
||||
manga.genre = document.select("div.genres a.tag[itemprop=\"genre\"]").joinToString(", ") { it.text() }
|
||||
manga.genre = document.select("div.genres a.tag").joinToString(", ") { it.text() }
|
||||
manga.status = if (document.select("span.scanstatus").text() == "Yes") SManga.COMPLETED else SManga.UNKNOWN
|
||||
manga.thumbnail_url = document.select("div.manga-info img[itemprop=\"image\"]").attr("src")
|
||||
return manga
|
||||
|
Loading…
Reference in New Issue
Block a user