forked from AlmightyHak/extensions-source
feat(src/es): New source: Veohentai (#164)
* feat(src/es): New source: Veohentai Closes #80 * fix bug in videoListParse
This commit is contained in:
parent
b140abc7f7
commit
5970b350a4
7 changed files with 275 additions and 0 deletions
8
src/es/veohentai/build.gradle
Normal file
8
src/es/veohentai/build.gradle
Normal file
|
@ -0,0 +1,8 @@
|
|||
ext {
|
||||
extName = 'VeoHentai'
|
||||
extClass = '.VeoHentai'
|
||||
extVersionCode = 1
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/es/veohentai/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/veohentai/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
BIN
src/es/veohentai/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/veohentai/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
BIN
src/es/veohentai/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/veohentai/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
src/es/veohentai/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/veohentai/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
BIN
src/es/veohentai/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/veohentai/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.1 KiB |
|
@ -0,0 +1,267 @@
|
|||
package eu.kanade.tachiyomi.animeextension.es.veohentai
|
||||
|
||||
import android.app.Application
|
||||
import android.content.SharedPreferences
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilter
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimesPage
|
||||
import eu.kanade.tachiyomi.animesource.model.SAnime
|
||||
import eu.kanade.tachiyomi.animesource.model.SEpisode
|
||||
import eu.kanade.tachiyomi.animesource.model.Track
|
||||
import eu.kanade.tachiyomi.animesource.model.Video
|
||||
import eu.kanade.tachiyomi.animesource.online.AnimeHttpSource
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import okhttp3.Request
|
||||
import okhttp3.Response
|
||||
import uy.kohesive.injekt.Injekt
|
||||
import uy.kohesive.injekt.api.get
|
||||
|
||||
open class VeoHentai : ConfigurableAnimeSource, AnimeHttpSource() {
|
||||
|
||||
override val name = "VeoHentai"
|
||||
|
||||
override val baseUrl = "https://veohentai.com"
|
||||
|
||||
override val lang = "es"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
private val preferences: SharedPreferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val PREF_QUALITY_KEY = "preferred_quality"
|
||||
private const val PREF_QUALITY_DEFAULT = "1080"
|
||||
private val QUALITY_LIST = arrayOf("1080", "720", "480", "360")
|
||||
|
||||
private const val PREF_SERVER_KEY = "preferred_server"
|
||||
private const val PREF_SERVER_DEFAULT = "VeoHentai"
|
||||
private val SERVER_LIST = arrayOf("VeoHentai")
|
||||
}
|
||||
|
||||
override fun animeDetailsParse(response: Response): SAnime {
|
||||
val document = response.asJsoup()
|
||||
val animeDetails = SAnime.create().apply {
|
||||
title = document.selectFirst(".pb-2 h1")?.text()?.trim() ?: ""
|
||||
status = SAnime.UNKNOWN
|
||||
description = document.select(".entry-content p").joinToString { it.text() }
|
||||
genre = document.select(".tags a").joinToString { it.text() }
|
||||
thumbnail_url = document.selectFirst("#thumbnail-post img")?.getImageUrl()
|
||||
document.select(".gap-4 div").map { it.text() }.map { textContent ->
|
||||
when {
|
||||
"Marca" in textContent -> author = textContent.substringAfter("Marca").trim()
|
||||
}
|
||||
}
|
||||
}
|
||||
return animeDetails
|
||||
}
|
||||
|
||||
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/mas-visitados/page/$page", headers)
|
||||
|
||||
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||
val document = response.asJsoup()
|
||||
val elements = document.select(".gap-6 a")
|
||||
val nextPage = document.select(".nav-links a:contains(Next)").any()
|
||||
val animeList = elements.map { element ->
|
||||
SAnime.create().apply {
|
||||
title = element.selectFirst("h2")?.text()?.trim() ?: ""
|
||||
thumbnail_url = element.selectFirst("img:not([class*=cover])")?.getImageUrl()
|
||||
setUrlWithoutDomain(element.attr("abs:href"))
|
||||
}
|
||||
}
|
||||
return AnimesPage(animeList, nextPage)
|
||||
}
|
||||
|
||||
override fun latestUpdatesParse(response: Response) = popularAnimeParse(response)
|
||||
|
||||
override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/page/$page", headers)
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||
val filterList = if (filters.isEmpty()) getFilterList() else filters
|
||||
val genreFilter = filterList.find { it is GenreFilter } as GenreFilter
|
||||
|
||||
return when {
|
||||
query.isNotBlank() -> GET("$baseUrl/page/$page/?s=$query", headers)
|
||||
genreFilter.state != 0 -> GET("$baseUrl/${genreFilter.toUriPart()}/page/$page", headers)
|
||||
else -> popularAnimeRequest(page)
|
||||
}
|
||||
}
|
||||
|
||||
override fun searchAnimeParse(response: Response) = popularAnimeParse(response)
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val document = response.asJsoup()
|
||||
return listOf(
|
||||
SEpisode.create().apply {
|
||||
episode_number = 1f
|
||||
name = "Capítulo"
|
||||
setUrlWithoutDomain(document.location())
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.asJsoup()
|
||||
val frame = document.selectFirst("iframe[webkitallowfullscreen]")
|
||||
val src = frame?.attr("abs:src")?.takeIf { !it.startsWith("about") }
|
||||
val dataLitespeedSrc = frame?.attr("data-litespeed-src")?.takeIf { !it.startsWith("about") }
|
||||
val link = when {
|
||||
src != null -> src
|
||||
dataLitespeedSrc != null -> dataLitespeedSrc
|
||||
else -> return emptyList()
|
||||
}
|
||||
|
||||
val docPlayer = client.newCall(GET(link)).execute().asJsoup()
|
||||
val dataId = docPlayer.selectFirst("[data-id]")?.attr("data-id") ?: return emptyList()
|
||||
val host = docPlayer.location().toHttpUrl().host
|
||||
val realPlayer = client.newCall(GET("https://$host$dataId")).execute().asJsoup()
|
||||
val scriptPlayer = realPlayer.selectFirst("script:containsData(jwplayer.key)")?.data() ?: return emptyList()
|
||||
|
||||
val subs = scriptPlayer.substringAfter("tracks:").substringBefore("]").getItems().map {
|
||||
it.substringAfter("file\": \"").substringAfter("file: \"").substringBefore("\"") to
|
||||
it.substringAfter("label\": \"").substringAfter("label: \"").substringBefore("\"")
|
||||
}.filter { (file, _) -> file.isNotEmpty() }.map { (file, label) -> Track(file, label) }
|
||||
|
||||
return scriptPlayer.substringAfter("sources:").substringBefore("]").getItems().map {
|
||||
val file = it.substringAfter("file\": \"").substringAfter("file: \"").substringBefore("\"")
|
||||
val type = when {
|
||||
file.contains(".m3u") -> "HSL"
|
||||
file.contains(".mp4") -> "MP4"
|
||||
else -> ""
|
||||
}
|
||||
Video(file, "VeoHentai:$type", file, subtitleTracks = subs)
|
||||
}
|
||||
}
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val quality = preferences.getString(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT)!!
|
||||
val server = preferences.getString(PREF_SERVER_KEY, PREF_SERVER_DEFAULT)!!
|
||||
return this.sortedWith(
|
||||
compareBy(
|
||||
{ it.quality.contains(server, true) },
|
||||
{ it.quality.contains(quality) },
|
||||
{ Regex("""(\d+)p""").find(it.quality)?.groupValues?.get(1)?.toIntOrNull() ?: 0 },
|
||||
),
|
||||
).reversed()
|
||||
}
|
||||
|
||||
override fun getFilterList(): AnimeFilterList = AnimeFilterList(
|
||||
AnimeFilter.Header("La busqueda por texto ignora el filtro"),
|
||||
GenreFilter(),
|
||||
)
|
||||
|
||||
private class GenreFilter : UriPartFilter(
|
||||
"Género",
|
||||
arrayOf(
|
||||
Pair("<Seleccionar>", ""),
|
||||
Pair("3D", "genero/3d"),
|
||||
Pair("Ahegao", "genero/ahegao"),
|
||||
Pair("Anal", "genero/anal"),
|
||||
Pair("Bondage", "genero/bondage"),
|
||||
Pair("Casadas", "genero/casadas"),
|
||||
Pair("Censurado", "genero/censurado"),
|
||||
Pair("Chikan", "genero/chikan"),
|
||||
Pair("Corridas", "genero/corridas"),
|
||||
Pair("Ecchi", "genero/ecchi"),
|
||||
Pair("Enfermeras", "genero/enfermeras"),
|
||||
Pair("Escolares", "genero/hentai-escolares"),
|
||||
Pair("Fantasia", "genero/fantasia"),
|
||||
Pair("Futanari", "genero/futanari"),
|
||||
Pair("Gore", "genero/gore"),
|
||||
Pair("Hardcore", "genero/hardcore"),
|
||||
Pair("Harem", "genero/harem"),
|
||||
Pair("Incesto", "genero/incesto"),
|
||||
Pair("Josei", "genero/josei"),
|
||||
Pair("Juegos Sexuales", "genero/juegos-sexuales"),
|
||||
Pair("Lesbiana", "genero/lesbiana"),
|
||||
Pair("Lolicon", "genero/lolicon"),
|
||||
Pair("Maids", "genero/maids"),
|
||||
Pair("Manga", "genero/manga"),
|
||||
Pair("Masturbación", "genero/masturbacion"),
|
||||
Pair("Milfs", "genero/milfs"),
|
||||
Pair("Netorare", "genero/netorare"),
|
||||
Pair("Ninfomania", "genero/ninfomania"),
|
||||
Pair("Ninjas", "genero/ninjas"),
|
||||
Pair("Orgias", "genero/orgias"),
|
||||
Pair("Romance", "genero/romance"),
|
||||
Pair("Sexo oral", "genero/sexo-oral"),
|
||||
Pair("Shota", "genero/shota"),
|
||||
Pair("Sin Censura", "genero/hentai-sin-censura"),
|
||||
Pair("Softcore", "genero/softcore"),
|
||||
Pair("Succubus", "genero/succubus"),
|
||||
Pair("Teacher", "genero/teacher"),
|
||||
Pair("Tentaculos", "genero/tentaculos"),
|
||||
Pair("Tetonas", "genero/tetonas"),
|
||||
Pair("Vanilla", "genero/vanilla"),
|
||||
Pair("Violacion", "genero/violacion"),
|
||||
Pair("Virgenes", "genero/virgenes"),
|
||||
Pair("Yaoi", "genero/yaoi"),
|
||||
Pair("Yuri", "genero/yuri"),
|
||||
),
|
||||
)
|
||||
|
||||
private open class UriPartFilter(displayName: String, val vals: Array<Pair<String, String>>) :
|
||||
AnimeFilter.Select<String>(displayName, vals.map { it.first }.toTypedArray()) {
|
||||
fun toUriPart() = vals[state].second
|
||||
}
|
||||
|
||||
protected open fun org.jsoup.nodes.Element.getImageUrl(): String? {
|
||||
return when {
|
||||
isValidUrl("data-src") -> attr("abs:data-src")
|
||||
isValidUrl("data-lazy-src") -> attr("abs:data-lazy-src")
|
||||
isValidUrl("srcset") -> attr("abs:srcset").substringBefore(" ")
|
||||
isValidUrl("src") -> attr("abs:src")
|
||||
else -> ""
|
||||
}
|
||||
}
|
||||
|
||||
protected open fun org.jsoup.nodes.Element.isValidUrl(attrName: String): Boolean {
|
||||
if (!hasAttr(attrName)) return false
|
||||
return !attr(attrName).contains("data:image/")
|
||||
}
|
||||
|
||||
private fun String.getItems(): List<String> {
|
||||
val pattern = "\\{([^}]*)\\}".toRegex()
|
||||
return pattern.findAll(this).map { it.groupValues[1] }.toList()
|
||||
}
|
||||
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_SERVER_KEY
|
||||
title = "Preferred server"
|
||||
entries = SERVER_LIST
|
||||
entryValues = SERVER_LIST
|
||||
setDefaultValue(PREF_SERVER_DEFAULT)
|
||||
summary = "%s"
|
||||
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
val selected = newValue as String
|
||||
val index = findIndexOfValue(selected)
|
||||
val entry = entryValues[index] as String
|
||||
preferences.edit().putString(key, entry).commit()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_QUALITY_KEY
|
||||
title = "Preferred quality"
|
||||
entries = QUALITY_LIST
|
||||
entryValues = QUALITY_LIST
|
||||
setDefaultValue(PREF_QUALITY_DEFAULT)
|
||||
summary = "%s"
|
||||
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
val selected = newValue as String
|
||||
val index = findIndexOfValue(selected)
|
||||
val entry = entryValues[index] as String
|
||||
preferences.edit().putString(key, entry).commit()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue