parent
01e27823f6
commit
7f8350e669
|
@ -1,7 +1,7 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'Reaper Scans'
|
extName = 'Reaper Scans'
|
||||||
extClass = '.ReaperScans'
|
extClass = '.ReaperScans'
|
||||||
extVersionCode = 47
|
extVersionCode = 48
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
apply from: "$rootDir/common.gradle"
|
||||||
|
|
|
@ -30,6 +30,7 @@ import okhttp3.Response
|
||||||
import org.jsoup.Jsoup
|
import org.jsoup.Jsoup
|
||||||
import org.jsoup.nodes.Document
|
import org.jsoup.nodes.Document
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
|
import org.jsoup.select.Elements
|
||||||
import rx.Observable
|
import rx.Observable
|
||||||
import uy.kohesive.injekt.injectLazy
|
import uy.kohesive.injekt.injectLazy
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
|
@ -67,7 +68,7 @@ class ReaperScans : ParsedHttpSource() {
|
||||||
title = it.text()
|
title = it.text()
|
||||||
setUrlWithoutDomain(it.attr("href"))
|
setUrlWithoutDomain(it.attr("href"))
|
||||||
}
|
}
|
||||||
thumbnail_url = element.select("img").attr("abs:src")
|
thumbnail_url = element.select("img").imgAttr()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +85,7 @@ class ReaperScans : ParsedHttpSource() {
|
||||||
title = it.text().trim()
|
title = it.text().trim()
|
||||||
setUrlWithoutDomain(it.attr("href"))
|
setUrlWithoutDomain(it.attr("href"))
|
||||||
}
|
}
|
||||||
thumbnail_url = element.select("img").attr("abs:src")
|
thumbnail_url = element.select("img").imgAttr()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,7 +145,7 @@ class ReaperScans : ParsedHttpSource() {
|
||||||
return SManga.create().apply {
|
return SManga.create().apply {
|
||||||
setUrlWithoutDomain(element.attr("href"))
|
setUrlWithoutDomain(element.attr("href"))
|
||||||
element.select("img").first()?.let {
|
element.select("img").first()?.let {
|
||||||
thumbnail_url = it.attr("abs:src")
|
thumbnail_url = it.imgAttr()
|
||||||
}
|
}
|
||||||
title = element.select("p").first()!!.text()
|
title = element.select("p").first()!!.text()
|
||||||
}
|
}
|
||||||
|
@ -166,7 +167,7 @@ class ReaperScans : ParsedHttpSource() {
|
||||||
// Details
|
// Details
|
||||||
override fun mangaDetailsParse(document: Document): SManga {
|
override fun mangaDetailsParse(document: Document): SManga {
|
||||||
return SManga.create().apply {
|
return SManga.create().apply {
|
||||||
thumbnail_url = document.select("div > img").first()!!.attr("abs:src")
|
thumbnail_url = document.select("div > img").first()!!.imgAttr()
|
||||||
title = document.select("h1").first()!!.text()
|
title = document.select("h1").first()!!.text()
|
||||||
|
|
||||||
status = when (document.select("dt:contains(Release Status)").next().first()!!.text()) {
|
status = when (document.select("dt:contains(Release Status)").next().first()!!.text()) {
|
||||||
|
@ -326,13 +327,15 @@ class ReaperScans : ParsedHttpSource() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Element.imgAttr(): String = when {
|
private fun Element.imgAttr(): String = when {
|
||||||
hasAttr("data-lazy-src") -> attr("abs:data-lazy-src")
|
hasAttr("data-lazy-src") -> attr("abs:data-lazy-src")
|
||||||
hasAttr("data-src") -> attr("abs:data-src")
|
hasAttr("data-src") -> attr("abs:data-src")
|
||||||
hasAttr("data-cfsrc") -> attr("abs:data-cfsrc")
|
hasAttr("data-cfsrc") -> attr("abs:data-cfsrc")
|
||||||
else -> attr("abs:src")
|
else -> attr("abs:src")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun Elements.imgAttr(): String = this.first()!!.imgAttr()
|
||||||
|
|
||||||
// Unused
|
// Unused
|
||||||
override fun searchMangaNextPageSelector() = throw UnsupportedOperationException()
|
override fun searchMangaNextPageSelector() = throw UnsupportedOperationException()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue