parent
94b675031b
commit
468c01dfc2
|
@ -0,0 +1,17 @@
|
|||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
ext {
|
||||
appName = 'Tachiyomi: BH3'
|
||||
pkgNameSuffix = 'zh.bh3'
|
||||
extClass = '.BH3'
|
||||
extVersionCode = 1
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'com.google.code.gson:gson:2.8.2'
|
||||
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 63 KiB |
|
@ -0,0 +1,106 @@
|
|||
package eu.kanade.tachiyomi.extension.zh.bh3
|
||||
|
||||
import android.util.Log
|
||||
import com.github.salomonbrys.kotson.float
|
||||
import com.github.salomonbrys.kotson.get
|
||||
import com.github.salomonbrys.kotson.int
|
||||
import com.github.salomonbrys.kotson.string
|
||||
import com.google.gson.JsonElement
|
||||
import com.google.gson.JsonParser
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.source.model.*
|
||||
import eu.kanade.tachiyomi.source.online.ParsedHttpSource
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.OkHttpClient
|
||||
import okhttp3.Response
|
||||
import org.jsoup.nodes.Document
|
||||
import org.jsoup.nodes.Element
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.*
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class BH3 : ParsedHttpSource() {
|
||||
|
||||
override val name = "《崩坏3》IP站"
|
||||
override val baseUrl = "https://comic.bh3.com"
|
||||
override val lang = "zh"
|
||||
override val supportsLatest = false
|
||||
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
|
||||
.connectTimeout(1, TimeUnit.MINUTES)
|
||||
.readTimeout(1, TimeUnit.MINUTES)
|
||||
.retryOnConnectionFailure(true)
|
||||
.followRedirects(true)
|
||||
.build()!!
|
||||
|
||||
override fun popularMangaSelector() = "a[href*=book]"
|
||||
override fun latestUpdatesSelector() = throw Exception ("Not Used")
|
||||
override fun searchMangaSelector() = throw Exception ("Not Used")
|
||||
override fun chapterListSelector() = throw Exception ("Not Used")
|
||||
|
||||
override fun popularMangaNextPageSelector() = "none"
|
||||
override fun latestUpdatesNextPageSelector() = "none"
|
||||
override fun searchMangaNextPageSelector() = "none"
|
||||
|
||||
override fun popularMangaRequest(page: Int) = GET("$baseUrl/book", headers)
|
||||
override fun latestUpdatesRequest(page: Int) = throw Exception ("Not Used")
|
||||
override fun searchMangaRequest(page: Int, query: String, filters: FilterList) = throw Exception ("No search")
|
||||
|
||||
//override fun mangaDetailsRequest(manga: SManga) = GET(baseUrl + manga.url, headers)
|
||||
//override fun pageListRequest(chapter: SChapter) = GET(baseUrl + chapter.url, headers)
|
||||
override fun chapterListRequest(manga: SManga) = GET(baseUrl + manga.url + "/get_chapter", headers)
|
||||
|
||||
override fun popularMangaFromElement(element: Element) = mangaFromElement(element)
|
||||
override fun latestUpdatesFromElement(element: Element) = mangaFromElement(element)
|
||||
override fun searchMangaFromElement(element: Element) = mangaFromElement(element)
|
||||
|
||||
private fun mangaFromElement(element: Element): SManga {
|
||||
val manga = SManga.create()
|
||||
manga.url = element.select("a").attr("href")
|
||||
manga.title = element.select("div.container-title").text().trim()
|
||||
manga.thumbnail_url = element.select("img").attr("abs:src")
|
||||
return manga
|
||||
}
|
||||
|
||||
override fun chapterFromElement(element: Element) = throw Exception("Not Used")
|
||||
|
||||
override fun chapterListParse(response: Response): List<SChapter> {
|
||||
val jsondata = response.body()!!.string()
|
||||
val json = JsonParser().parse(jsondata).asJsonArray
|
||||
val chapters = mutableListOf<SChapter>()
|
||||
json.forEach {
|
||||
chapters.add(createChapter(it))
|
||||
}
|
||||
return chapters
|
||||
}
|
||||
|
||||
private fun createChapter(json: JsonElement) = SChapter.create().apply {
|
||||
name = json["title"].string
|
||||
url = "/book/${json["bookid"].int}/${json["chapterid"].int}"
|
||||
date_upload = parseDate(json["timestamp"].string)
|
||||
chapter_number = json["chapterid"].float
|
||||
}
|
||||
|
||||
private fun parseDate(date: String): Long {
|
||||
return SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US ).parse(date).time
|
||||
}
|
||||
|
||||
override fun mangaDetailsParse(document: Document): SManga {
|
||||
val manga = SManga.create()
|
||||
manga.thumbnail_url = document.select("img.cover").attr("abs:src")
|
||||
manga.description = document.select("div.detail_info1").text().trim()
|
||||
manga.title = document.select("div.title").text().trim()
|
||||
return manga
|
||||
}
|
||||
|
||||
override fun pageListParse(response: Response): List<Page> = mutableListOf<Page>().apply {
|
||||
val body = response.asJsoup()
|
||||
body.select("img.lazy.comic_img")?.forEach {
|
||||
add(Page(size, "", it.attr("data-original")))
|
||||
}
|
||||
}
|
||||
|
||||
override fun pageListParse(document: Document)= throw Exception("Not Used")
|
||||
override fun imageUrlParse(document: Document) = throw Exception("Not Used")
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue