Add Meitua.top (#13309)
This commit is contained in:
parent
f2a3dae4aa
commit
061a1e70b7
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest package="eu.kanade.tachiyomi.extension" />
|
|
@ -0,0 +1,12 @@
|
||||||
|
apply plugin: 'com.android.application'
|
||||||
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
|
ext {
|
||||||
|
extName = 'Meitua.top'
|
||||||
|
pkgNameSuffix = 'all.meituatop'
|
||||||
|
extClass = '.MeituaTop'
|
||||||
|
extVersionCode = 1
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
|
@ -0,0 +1,108 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.all.meituatop
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.network.GET
|
||||||
|
import eu.kanade.tachiyomi.source.model.Filter
|
||||||
|
import eu.kanade.tachiyomi.source.model.FilterList
|
||||||
|
import eu.kanade.tachiyomi.source.model.MangasPage
|
||||||
|
import eu.kanade.tachiyomi.source.model.Page
|
||||||
|
import eu.kanade.tachiyomi.source.model.SChapter
|
||||||
|
import eu.kanade.tachiyomi.source.model.SManga
|
||||||
|
import eu.kanade.tachiyomi.source.online.HttpSource
|
||||||
|
import eu.kanade.tachiyomi.util.asJsoup
|
||||||
|
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||||
|
import okhttp3.Request
|
||||||
|
import okhttp3.Response
|
||||||
|
import org.jsoup.select.Evaluator
|
||||||
|
import rx.Observable
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
// Uses MACCMS http://www.maccms.la/
|
||||||
|
class MeituaTop : HttpSource() {
|
||||||
|
override val name = "Meitua.top"
|
||||||
|
override val lang = "all"
|
||||||
|
override val supportsLatest = false
|
||||||
|
|
||||||
|
override val baseUrl = "https://meitua.top"
|
||||||
|
|
||||||
|
override fun popularMangaRequest(page: Int) = GET("$baseUrl/arttype/0a-$page.html", headers)
|
||||||
|
|
||||||
|
override fun popularMangaParse(response: Response): MangasPage {
|
||||||
|
val document = response.asJsoup()
|
||||||
|
val mangas = document.selectFirst(Evaluator.Class("thumbnail-group")).children().map {
|
||||||
|
SManga.create().apply {
|
||||||
|
url = it.selectFirst(Evaluator.Tag("a")).attr("href")
|
||||||
|
val image = it.selectFirst(Evaluator.Tag("img"))
|
||||||
|
title = image.attr("alt")
|
||||||
|
thumbnail_url = image.attr("src")
|
||||||
|
val info = it.selectFirst(Evaluator.Tag("p")).ownText().split(" - ")
|
||||||
|
genre = info[0]
|
||||||
|
description = info[1]
|
||||||
|
status = SManga.COMPLETED
|
||||||
|
initialized = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val lastPage = document.select(Evaluator.Class("page_link"))[3].attr("href")
|
||||||
|
val hasNextPage = document.location().pageNumber() != lastPage.pageNumber()
|
||||||
|
return MangasPage(mangas, hasNextPage)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun latestUpdatesRequest(page: Int) = throw UnsupportedOperationException("Not used.")
|
||||||
|
|
||||||
|
override fun latestUpdatesParse(response: Response) = throw UnsupportedOperationException("Not used.")
|
||||||
|
|
||||||
|
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request {
|
||||||
|
if (query.isNotEmpty()) {
|
||||||
|
val url = "$baseUrl/artsearch/-------.html".toHttpUrl().newBuilder()
|
||||||
|
.addQueryParameter("wd", query)
|
||||||
|
.addQueryParameter("page", page.toString())
|
||||||
|
.toString()
|
||||||
|
return GET(url, headers)
|
||||||
|
}
|
||||||
|
|
||||||
|
val filter = filters.firstOrNull() as? RegionFilter ?: return popularMangaRequest(page)
|
||||||
|
return GET("$baseUrl/arttype/${21 + filter.state}a-$page.html", headers)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchMangaParse(response: Response) = popularMangaParse(response)
|
||||||
|
|
||||||
|
override fun fetchMangaDetails(manga: SManga): Observable<SManga> = Observable.just(manga)
|
||||||
|
|
||||||
|
override fun mangaDetailsParse(response: Response) = throw UnsupportedOperationException("Not used.")
|
||||||
|
|
||||||
|
override fun fetchChapterList(manga: SManga): Observable<List<SChapter>> {
|
||||||
|
val chapter = SChapter.create().apply {
|
||||||
|
url = manga.url
|
||||||
|
name = manga.title
|
||||||
|
date_upload = dateFormat.parse(manga.description!!)!!.time
|
||||||
|
chapter_number = -2f
|
||||||
|
}
|
||||||
|
return Observable.just(listOf(chapter))
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun chapterListParse(response: Response) = throw UnsupportedOperationException("Not used.")
|
||||||
|
|
||||||
|
override fun pageListParse(response: Response): List<Page> {
|
||||||
|
val document = response.asJsoup()
|
||||||
|
val images = document.selectFirst(Evaluator.Class("ttnr")).select(Evaluator.Tag("img"))
|
||||||
|
.map { it.attr("src")!! }.distinct()
|
||||||
|
return images.mapIndexed { index, imageUrl -> Page(index, imageUrl = imageUrl) }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun imageUrlParse(response: Response) = throw UnsupportedOperationException("Not used.")
|
||||||
|
|
||||||
|
override fun getFilterList() = FilterList(
|
||||||
|
Filter.Header("Category (ignored for text search)"),
|
||||||
|
RegionFilter()
|
||||||
|
)
|
||||||
|
|
||||||
|
private class RegionFilter : Filter.Select<String>(
|
||||||
|
"Region", arrayOf("All", "国产美女", "韩国美女", "台湾美女", "日本美女", "欧美美女", "泰国美女")
|
||||||
|
)
|
||||||
|
|
||||||
|
private fun String.pageNumber() = numberRegex.findAll(this).last().value.toInt()
|
||||||
|
|
||||||
|
private val numberRegex by lazy { Regex("""\d+""") }
|
||||||
|
|
||||||
|
private val dateFormat by lazy { SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH) }
|
||||||
|
}
|
Loading…
Reference in New Issue