Initial commit
This commit is contained in:
commit
98ed7e8839
2263 changed files with 108711 additions and 0 deletions
8
src/pt/muitohentai/build.gradle
Normal file
8
src/pt/muitohentai/build.gradle
Normal file
|
@ -0,0 +1,8 @@
|
|||
ext {
|
||||
extName = 'Muito Hentai'
|
||||
extClass = '.MuitoHentai'
|
||||
extVersionCode = 2
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/muitohentai/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/muitohentai/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
src/pt/muitohentai/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/muitohentai/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
src/pt/muitohentai/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/muitohentai/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6 KiB |
BIN
src/pt/muitohentai/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/muitohentai/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/pt/muitohentai/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/muitohentai/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,124 @@
|
|||
package eu.kanade.tachiyomi.animeextension.pt.muitohentai
|
||||
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
|
||||
import eu.kanade.tachiyomi.animesource.model.SAnime
|
||||
import eu.kanade.tachiyomi.animesource.model.SEpisode
|
||||
import eu.kanade.tachiyomi.animesource.model.Video
|
||||
import eu.kanade.tachiyomi.animesource.online.ParsedAnimeHttpSource
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.Response
|
||||
import org.jsoup.nodes.Document
|
||||
import org.jsoup.nodes.Element
|
||||
import java.text.SimpleDateFormat
|
||||
|
||||
class MuitoHentai : ParsedAnimeHttpSource() {
|
||||
override val name = "Muito Hentai"
|
||||
|
||||
override val baseUrl = "https://www.muitohentai.com"
|
||||
|
||||
override val lang = "pt-BR"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
// ============================== Popular ===============================
|
||||
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/ranking-hentais/?paginacao=$page")
|
||||
|
||||
override fun popularAnimeSelector() = "ul.ul_sidebar > li"
|
||||
|
||||
override fun popularAnimeFromElement(element: Element) = SAnime.create().apply {
|
||||
thumbnail_url = element.selectFirst("div.zeroleft > a > img")?.attr("src")
|
||||
element.selectFirst("div.lefthentais > div > b:gt(0) > a.series")!!.run {
|
||||
setUrlWithoutDomain(attr("href"))
|
||||
title = text()
|
||||
}
|
||||
}
|
||||
|
||||
override fun popularAnimeNextPageSelector() = "div.paginacao > a:contains(»)"
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/")
|
||||
|
||||
override fun latestUpdatesSelector() = "div.animation-2 > article:contains(Episódio)"
|
||||
|
||||
override fun latestUpdatesFromElement(element: Element) = SAnime.create().apply {
|
||||
val slug = element.selectFirst("a")!!.attr("href")
|
||||
.substringAfter("/episodios/")
|
||||
.substringBefore("-episodio")
|
||||
url = "/info/$slug"
|
||||
val img = element.selectFirst("img")!!
|
||||
title = img.attr("alt")
|
||||
thumbnail_url = img.attr("src")
|
||||
}
|
||||
|
||||
override fun latestUpdatesNextPageSelector() = null
|
||||
|
||||
// =============================== Search ===============================
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList) = GET("$baseUrl/buscar/$query")
|
||||
|
||||
override fun searchAnimeSelector() = "div#archive-content > article > div.poster"
|
||||
|
||||
override fun searchAnimeFromElement(element: Element) = SAnime.create().apply {
|
||||
setUrlWithoutDomain(element.selectFirst("a")!!.attr("href"))
|
||||
val img = element.selectFirst("img")!!
|
||||
title = img.attr("alt")
|
||||
thumbnail_url = img.attr("src")
|
||||
}
|
||||
|
||||
override fun searchAnimeNextPageSelector() = null
|
||||
|
||||
// =========================== Anime Details ============================
|
||||
override fun animeDetailsParse(document: Document) = SAnime.create().apply {
|
||||
setUrlWithoutDomain(document.location())
|
||||
val data = document.selectFirst("div.sheader > div.data")!!
|
||||
title = data.selectFirst("h1")!!.text()
|
||||
genre = data.selectFirst("div.sgeneros")!!.children()
|
||||
.filterNot { it.text().contains(title) }
|
||||
.joinToString { it.text() }
|
||||
description = data.selectFirst("div#info1 > div.wp-content > p")!!.text()
|
||||
thumbnail_url = document.selectFirst("div.sheader > div.poster > img")?.attr("src")
|
||||
}
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListParse(response: Response) = super.episodeListParse(response).reversed()
|
||||
|
||||
override fun episodeListSelector() = "article.item"
|
||||
|
||||
override fun episodeFromElement(element: Element) = SEpisode.create().apply {
|
||||
val data = element.selectFirst("div.data")!!
|
||||
setUrlWithoutDomain(element.selectFirst("div.poster > div.season_m > a")!!.attr("href"))
|
||||
name = data.selectFirst("h3")!!.text().trim()
|
||||
date_upload = data.selectFirst("span")?.text()?.parseDate() ?: 0L
|
||||
}
|
||||
|
||||
// ============================ Video Links =============================
|
||||
override fun videoListSelector() = "div.playex > div#option-0 > iframe"
|
||||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val doc = response.asJsoup()
|
||||
val idplay = doc.selectFirst(videoListSelector())!!.attr("src").substringAfter("?idplay=")
|
||||
val res = client.newCall(GET("https://www.hentaitube.online/players_sites/mt/index.php?idplay=$idplay")).execute()
|
||||
val pdoc = res.asJsoup()
|
||||
return pdoc
|
||||
.select("source")
|
||||
.map(::videoFromElement)
|
||||
}
|
||||
|
||||
override fun videoFromElement(element: Element): Video {
|
||||
val url = element.attr("src")
|
||||
return Video(url, element.attr("label"), url)
|
||||
}
|
||||
|
||||
override fun videoUrlParse(document: Document) = throw UnsupportedOperationException()
|
||||
|
||||
// ============================= Utilities ==============================
|
||||
private fun String.parseDate(): Long {
|
||||
return runCatching { DATE_FORMATTER.parse(this)?.time }
|
||||
.getOrNull() ?: 0L
|
||||
}
|
||||
companion object {
|
||||
private val DATE_FORMATTER by lazy {
|
||||
SimpleDateFormat("yyyy-MM-dd")
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue