Initial commit
This commit is contained in:
commit
98ed7e8839
2263 changed files with 108711 additions and 0 deletions
12
src/es/hentaijk/build.gradle
Normal file
12
src/es/hentaijk/build.gradle
Normal file
|
@ -0,0 +1,12 @@
|
|||
ext {
|
||||
extName = 'Hentaijk'
|
||||
extClass = '.Hentaijk'
|
||||
extVersionCode = 12
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib:okru-extractor'))
|
||||
}
|
BIN
src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.4 KiB |
BIN
src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
BIN
src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
src/es/hentaijk/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/hentaijk/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
src/es/hentaijk/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/hentaijk/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,457 @@
|
|||
package eu.kanade.tachiyomi.animeextension.es.hentaijk
|
||||
|
||||
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.Video
|
||||
import eu.kanade.tachiyomi.animesource.online.ParsedAnimeHttpSource
|
||||
import eu.kanade.tachiyomi.lib.okruextractor.OkruExtractor
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.Request
|
||||
import okhttp3.Response
|
||||
import org.jsoup.Connection
|
||||
import org.jsoup.Jsoup
|
||||
import org.jsoup.nodes.Document
|
||||
import org.jsoup.nodes.Element
|
||||
import uy.kohesive.injekt.Injekt
|
||||
import uy.kohesive.injekt.api.get
|
||||
import java.lang.Exception
|
||||
|
||||
class Hentaijk : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
||||
|
||||
override val name = "Hentaijk"
|
||||
|
||||
override val baseUrl = "https://hentaijk.com"
|
||||
|
||||
override val lang = "es"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
private val preferences: SharedPreferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
override fun popularAnimeSelector(): String = "div.col-lg-12 div.list"
|
||||
|
||||
override fun popularAnimeRequest(page: Int): Request = GET("https://hentaijk.com/top/")
|
||||
|
||||
override fun popularAnimeFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.setUrlWithoutDomain(
|
||||
element.select("div#conb a").attr("href"),
|
||||
)
|
||||
anime.title = element.select("div#conb a").attr("title")
|
||||
anime.thumbnail_url = element.select("div#conb a img").attr("src")
|
||||
anime.description = element.select("div#conb div#animinfo p").text()
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun popularAnimeNextPageSelector(): String = "uwu"
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val episodes = mutableListOf<SEpisode>()
|
||||
val episodeLink = response.request.url
|
||||
val pageBody = response.asJsoup()
|
||||
val scriptText = pageBody.selectFirst("script:containsData(var invertir =)")!!.data()
|
||||
val animeId = scriptText.substringAfter("'/ajax/last_episode/", "")
|
||||
.substringBefore("/',", "")
|
||||
.ifEmpty { throw Exception("no video links found.") }
|
||||
|
||||
val pageNumber = pageBody.select("div.anime__pagination a")
|
||||
val lastPage = pageNumber.last()?.attr("href")
|
||||
?.replace("#pag", "")
|
||||
val firstPage = pageNumber.first()?.attr("href")
|
||||
?.replace("#pag", "")
|
||||
|
||||
if (firstPage != lastPage) {
|
||||
var checkLast = 0
|
||||
for (i in 1 until lastPage?.toInt()!!) {
|
||||
for (j in 1..12) {
|
||||
// Log.i("bruh", (j + checkLast).toString())
|
||||
val episode = SEpisode.create().apply {
|
||||
episode_number = (j + checkLast).toFloat()
|
||||
name = "Episodio ${j + checkLast}"
|
||||
date_upload = System.currentTimeMillis()
|
||||
}
|
||||
episode.setUrlWithoutDomain("$episodeLink/${j + checkLast}")
|
||||
episodes.add(episode)
|
||||
}
|
||||
checkLast += 12
|
||||
}
|
||||
Jsoup.connect("https://hentaijk.com/ajax/pagination_episodes/$animeId/$lastPage").get()
|
||||
.body().select("body").text().replace("}]", "").split("}").forEach { json ->
|
||||
val number = json.substringAfter("\"number\":\"").substringBefore("\"")
|
||||
val episode = SEpisode.create().apply {
|
||||
episode_number = number.toFloat()
|
||||
name = "Episodio $number"
|
||||
date_upload = System.currentTimeMillis()
|
||||
}
|
||||
episode.setUrlWithoutDomain("$episodeLink/$number")
|
||||
episodes.add(episode)
|
||||
}
|
||||
}
|
||||
|
||||
if (firstPage == lastPage) {
|
||||
Jsoup.connect("https://hentaijk.com/ajax/pagination_episodes/$animeId/$lastPage").get()
|
||||
.body().select("body").text().replace("}]", "").split("}").forEach { json ->
|
||||
val number = json.substringAfter("\"number\":\"").substringBefore("\"")
|
||||
val episode = SEpisode.create().apply {
|
||||
episode_number = number.toFloat()
|
||||
name = "Episodio $number"
|
||||
date_upload = System.currentTimeMillis()
|
||||
}
|
||||
episode.setUrlWithoutDomain("$episodeLink/$number")
|
||||
episodes.add(episode)
|
||||
}
|
||||
}
|
||||
return episodes.reversed()
|
||||
}
|
||||
|
||||
override fun episodeListSelector() = throw UnsupportedOperationException()
|
||||
|
||||
override fun episodeFromElement(element: Element) = throw UnsupportedOperationException()
|
||||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.asJsoup()
|
||||
val episodeLink = response.request.url.toString()
|
||||
val videos = mutableListOf<Video>()
|
||||
document.select("div.col-lg-12.rounded.bg-servers.text-white.p-3.mt-2 a").forEach { it ->
|
||||
val server = it.text()
|
||||
val serverId = it.attr("data-id")
|
||||
document.select("script").forEach { script ->
|
||||
if (script.data().contains("var video = [];")) {
|
||||
val url = script.data()
|
||||
.substringAfter("video[$serverId] = '<iframe class=\"player_conte\" src=\"")
|
||||
.substringBefore("\"")
|
||||
.replace("$baseUrl/jkokru.php?u=", "http://ok.ru/videoembed/")
|
||||
.replace("$baseUrl/jkvmixdrop.php?u=", "https://mixdrop.co/e/")
|
||||
.replace("$baseUrl/jk.php?u=", "$baseUrl/")
|
||||
if (url.contains("um2")) {
|
||||
val doc = Jsoup.connect(url).referrer(episodeLink).get()
|
||||
val dataKey = doc.select("form input[value]").attr("value")
|
||||
Jsoup.connect("$baseUrl/gsplay/redirect_post.php").headers(
|
||||
mapOf(
|
||||
"Host" to "hentaijk.com",
|
||||
"Accept" to "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
|
||||
"Accept-Language" to "en-US,en;q=0.5",
|
||||
"Referer" to url,
|
||||
"Content-Type" to "application/x-www-form-urlencoded",
|
||||
"Origin" to "https://hentaijk.com",
|
||||
"DNT" to "1",
|
||||
"Connection" to "keep-alive",
|
||||
"Upgrade-Insecure-Requests" to "1",
|
||||
"Sec-Fetch-Dest" to "iframe",
|
||||
"Sec-Fetch-Mode" to "navigate",
|
||||
"Sec-Fetch-Site" to "same-origin",
|
||||
"TE" to "trailers",
|
||||
"Pragma" to "no-cache",
|
||||
"Cache-Control" to "no-cache",
|
||||
),
|
||||
).data(mapOf("data" to dataKey)).method(Connection.Method.POST).followRedirects(false)
|
||||
.execute().headers("location").forEach { loc ->
|
||||
val postkey = loc.replace("/gsplay/player.html#", "")
|
||||
val nozomitext = Jsoup.connect("https://hentaijk.com/gsplay/api.php").method(Connection.Method.POST).data("v", postkey).ignoreContentType(true).execute().body()
|
||||
nozomitext.toString().split("}").forEach { file ->
|
||||
val nozomiUrl = file.substringAfter("\"file\":\"").substringBefore("\"").replace("\\", "")
|
||||
if (nozomiUrl.isNotBlank() && !nozomiUrl.contains("{")) {
|
||||
videos.add(Video(nozomiUrl, server, nozomiUrl))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
when {
|
||||
"ok" in url -> OkruExtractor(client).videosFromUrl(url).forEach { videos.add(it) }
|
||||
"stream/jkmedia" in url -> videos.add(Video(url, "Xtreme S", url))
|
||||
"um.php" in url -> videos.add(HentaijkExtractor().videoFromUrl(url, server))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return videos
|
||||
}
|
||||
|
||||
private class HentaijkExtractor() {
|
||||
fun videoFromUrl(url: String, server: String): Video {
|
||||
var url1 = ""
|
||||
Jsoup.connect(url).get().body().select("script").forEach {
|
||||
if (it.data().contains("var parts = {")) {
|
||||
url1 = it.data().substringAfter("url: '").substringBefore("'")
|
||||
}
|
||||
}
|
||||
return Video(url1, server, url1)
|
||||
}
|
||||
}
|
||||
|
||||
override fun videoListSelector() = throw UnsupportedOperationException()
|
||||
|
||||
override fun videoUrlParse(document: Document) = throw UnsupportedOperationException()
|
||||
|
||||
override fun videoFromElement(element: Element) = throw UnsupportedOperationException()
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
return try {
|
||||
val videoSorted = this.sortedWith(
|
||||
compareBy<Video> { it.quality.replace("[0-9]".toRegex(), "") }.thenByDescending { getNumberFromString(it.quality) },
|
||||
).toTypedArray()
|
||||
val userPreferredQuality = preferences.getString("preferred_quality", "Sabrosio")
|
||||
val preferredIdx = videoSorted.indexOfFirst { x -> x.quality == userPreferredQuality }
|
||||
if (preferredIdx != -1) {
|
||||
videoSorted.drop(preferredIdx + 1)
|
||||
videoSorted[0] = videoSorted[preferredIdx]
|
||||
}
|
||||
videoSorted.toList()
|
||||
} catch (e: Exception) {
|
||||
this
|
||||
}
|
||||
}
|
||||
|
||||
private fun getNumberFromString(epsStr: String): String {
|
||||
return epsStr.filter { it.isDigit() }.ifEmpty { "0" }
|
||||
}
|
||||
|
||||
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/buscar/$query/$page/?filtro=fecha&tipo=none&estado=none&orden=desc", headers)
|
||||
genreFilter.state != 0 -> GET("$baseUrl/genero/${genreFilter.toUriPart()}/$page")
|
||||
else -> GET("$baseUrl/directorio/$page/?filtro=fecha&tipo=none&estado=none&fecha=none&temporada=none&orden=desc")
|
||||
}
|
||||
}
|
||||
|
||||
override fun searchAnimeFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.setUrlWithoutDomain(
|
||||
element.select("div.anime__item a").attr("href"),
|
||||
)
|
||||
anime.title = element.select("div.anime__item div#ainfo div.title").text()
|
||||
anime.thumbnail_url = element.select("div.anime__item a div").attr("data-setbg")
|
||||
anime.description = element.select("div.anime__item#ainfo p").text()
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun searchAnimeNextPageSelector(): String = popularAnimeNextPageSelector()
|
||||
|
||||
override fun searchAnimeSelector(): String = ".anime__page__content #botones ~ .row"
|
||||
|
||||
override fun searchAnimeParse(response: Response): AnimesPage {
|
||||
return parseSearchJson(response)
|
||||
// return super.searchAnimeParse(response)
|
||||
}
|
||||
|
||||
private fun parseSearchJson(jsonLine: Response): AnimesPage {
|
||||
val animeList = mutableListOf<SAnime>()
|
||||
val document = jsonLine.asJsoup()
|
||||
val hasNextPage = document.select("section.contenido.spad div.container div.navigation a.nav-next").any()
|
||||
val isSearchLayer = document.select(".col-lg-2.col-md-6.col-sm-6").any()
|
||||
val isFilterLayer = document.select(".card.mb-3.custom_item2").any()
|
||||
if (isSearchLayer) {
|
||||
document.select(".col-lg-2.col-md-6.col-sm-6").forEach { animeData ->
|
||||
val anime = SAnime.create()
|
||||
anime.title = animeData.select("div.anime__item #ainfo div.title").html()
|
||||
anime.thumbnail_url = animeData.select("div.anime__item a div.anime__item__pic").attr("data-setbg")
|
||||
anime.setUrlWithoutDomain(animeData.select("div.anime__item a").attr("href"))
|
||||
anime.status = parseStatus(animeData.select("div.anime__item div.anime__item__text ul li:nth-child(1)").html())
|
||||
val tags = animeData.select("div.anime__item div.anime__item__text ul li").joinToString { it.text() }
|
||||
anime.genre = tags
|
||||
animeList.add(anime)
|
||||
}
|
||||
} else if (isFilterLayer) {
|
||||
document.select(".card.mb-3.custom_item2").forEach { animeData ->
|
||||
val anime = SAnime.create()
|
||||
anime.title = animeData.select("div.row div.col-md-7 div.card-body h5.card-title a").html()
|
||||
anime.thumbnail_url = animeData.select("div.row div.custom_thumb2 a img").attr("src")
|
||||
anime.setUrlWithoutDomain(animeData.select("div.row div.col-md-7 div.card-body h5.card-title a").attr("href"))
|
||||
anime.status = parseStatus(animeData.select("div.row div.col-md-7 div.card-body div.card-info p.card-status").text())
|
||||
val tags = animeData.select("div.row div.col-md-7 div.card-body div.card-info p").joinToString { it.text() }
|
||||
anime.genre = tags
|
||||
anime.description = animeData.select("div.row div.col-md-7 div.card-body p.synopsis").text()
|
||||
animeList.add(anime)
|
||||
}
|
||||
}
|
||||
return AnimesPage(animeList, hasNextPage)
|
||||
}
|
||||
|
||||
override fun animeDetailsParse(document: Document): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.thumbnail_url = document.selectFirst("div.col-lg-3 div.anime__details__pic.set-bg")!!.attr("data-setbg")
|
||||
anime.title = document.selectFirst("div.anime__details__text div.anime__details__title h3")!!.text()
|
||||
anime.description = document.selectFirst("div.col-lg-9 div.anime__details__text p")!!.ownText()
|
||||
document.select("div.row div.col-lg-6.col-md-6 ul li").forEach { animeData ->
|
||||
val data = animeData.select("span").text()
|
||||
if (data.contains("Genero")) {
|
||||
anime.genre = animeData.select("a").joinToString { it.text() }
|
||||
}
|
||||
if (data.contains("Estado")) {
|
||||
anime.status = parseStatus(animeData.select("span").text())
|
||||
}
|
||||
if (data.contains("Studios")) {
|
||||
anime.author = animeData.select("a").text()
|
||||
}
|
||||
}
|
||||
|
||||
return anime
|
||||
}
|
||||
|
||||
private fun parseStatus(statusString: String): Int {
|
||||
return when {
|
||||
statusString.contains("Por estrenar") -> SAnime.ONGOING
|
||||
statusString.contains("En emision") -> SAnime.ONGOING
|
||||
statusString.contains("Concluido") -> SAnime.COMPLETED
|
||||
else -> SAnime.UNKNOWN
|
||||
}
|
||||
}
|
||||
|
||||
override fun latestUpdatesNextPageSelector(): String = "div.container div.navigation a.text.nav-next"
|
||||
|
||||
override fun latestUpdatesFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create()
|
||||
anime.setUrlWithoutDomain(
|
||||
element.select("div.row.g-0 div.col-md-5.custom_thumb2 a").attr("href"),
|
||||
)
|
||||
anime.title = element.select("div.row.g-0 div.col-md-7 div.card-body h5.card-title a").text()
|
||||
anime.thumbnail_url = element.select("div.row.g-0 div.col-md-5.custom_thumb2 a img").attr("src")
|
||||
anime.description = element.select("div.row.g-0 div.col-md-7 div.card-body p.card-text.synopsis").text()
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun latestUpdatesRequest(page: Int): Request = GET("https://hentaijk.com/directorio/$page/?filtro=fecha&tipo=none&estado=none&fecha=none&temporada=none&orden=desc")
|
||||
|
||||
override fun latestUpdatesSelector(): String = "div.card.mb-3.custom_item2"
|
||||
|
||||
override fun getFilterList(): AnimeFilterList = AnimeFilterList(
|
||||
AnimeFilter.Header("La busqueda por texto ignora el filtro"),
|
||||
GenreFilter(),
|
||||
)
|
||||
|
||||
private class GenreFilter : UriPartFilter(
|
||||
"Generos",
|
||||
arrayOf(
|
||||
Pair("<selecionar>", "none"),
|
||||
Pair("Español latino", "latino"),
|
||||
Pair("Accion", "accion"),
|
||||
Pair("Artes Marciales", "artes-marciales"),
|
||||
Pair("Autos", "autos"),
|
||||
Pair("Aventura", "aventura"),
|
||||
Pair("Colegial", "colegial"),
|
||||
Pair("Comedia", "comedia"),
|
||||
Pair("Cosas de la vida", "cosas-de-la-vida"),
|
||||
Pair("Dementia", "dementia"),
|
||||
Pair("Demonios", "demonios"),
|
||||
Pair("Deportes", "deportes"),
|
||||
Pair("Drama", "drama"),
|
||||
Pair("Ecchi", "ecchi"),
|
||||
Pair("Fantasia", "fantasa"),
|
||||
Pair("Harem", "harem"),
|
||||
Pair("Historico", "historico"),
|
||||
Pair("Josei", "josei"),
|
||||
Pair("Juegos", "juegos"),
|
||||
Pair("Magia", "magia"),
|
||||
Pair("Mecha", "mecha"),
|
||||
Pair("Militar", "militar"),
|
||||
Pair("Misterio", "misterio"),
|
||||
Pair("Musica", "musica"),
|
||||
Pair("Niños", "nios"),
|
||||
Pair("Parodia", "parodia"),
|
||||
Pair("Policial", "policial"),
|
||||
Pair("Psicologico", "psicologico"),
|
||||
Pair("Romance", "romance"),
|
||||
Pair("Samurai", "samurai"),
|
||||
Pair("Sci-fi", "sci-fi"),
|
||||
Pair("Seinen", "seinen"),
|
||||
Pair("Shoujo", "shoujo"),
|
||||
Pair("Shoujo ai", "shoujo-ai"),
|
||||
Pair("Shounen", "shounen"),
|
||||
Pair("Shounen ai", "shounen-ai"),
|
||||
Pair("Sobrenatural", "sobrenatural"),
|
||||
Pair("Space", "space"),
|
||||
Pair("Super poderes", "super-poderes"),
|
||||
Pair("Terror", "terror"),
|
||||
Pair("Thriller", "thriller"),
|
||||
Pair("Vampiros", "vampiros"),
|
||||
Pair("Yaoi", "yaoi"),
|
||||
Pair("Yuri", "yuri"),
|
||||
Pair("Español latino", "latino"),
|
||||
Pair("Accion", "accion"),
|
||||
Pair("Artes Marciales", "artes-marciales"),
|
||||
Pair("Autos", "autos"),
|
||||
Pair("Aventura", "aventura"),
|
||||
Pair("Colegial", "colegial"),
|
||||
Pair("Comedia", "comedia"),
|
||||
Pair("Cosas de la vida", "cosas-de-la-vida"),
|
||||
Pair("Dementia", "dementia"),
|
||||
Pair("Demonios", "demonios"),
|
||||
Pair("Deportes", "deportes"),
|
||||
Pair("Drama", "drama"),
|
||||
Pair("Ecchi", "ecchi"),
|
||||
Pair("Fantasia", "fantasa"),
|
||||
Pair("Harem", "harem"),
|
||||
Pair("Historico", "historico"),
|
||||
Pair("Josei", "josei"),
|
||||
Pair("Juegos", "juegos"),
|
||||
Pair("Magia", "magia"),
|
||||
Pair("Mecha", "mecha"),
|
||||
Pair("Militar", "militar"),
|
||||
Pair("Misterio", "misterio"),
|
||||
Pair("Musica", "musica"),
|
||||
Pair("Niños", "nios"),
|
||||
Pair("Parodia", "parodia"),
|
||||
Pair("Policial", "policial"),
|
||||
Pair("Psicologico", "psicologico"),
|
||||
Pair("Romance", "romance"),
|
||||
Pair("Samurai", "samurai"),
|
||||
Pair("Sci-fi", "sci-fi"),
|
||||
Pair("Seinen", "seinen"),
|
||||
Pair("Shoujo", "shoujo"),
|
||||
Pair("Shoujo ai", "shoujo-ai"),
|
||||
Pair("Shounen", "shounen"),
|
||||
Pair("Shounen ai", "shounen-ai"),
|
||||
Pair("Sobrenatural", "sobrenatural"),
|
||||
Pair("Space", "space"),
|
||||
Pair("Super poderes", "super-poderes"),
|
||||
Pair("Terror", "terror"),
|
||||
Pair("Thriller", "thriller"),
|
||||
Pair("Vampiros", "vampiros"),
|
||||
Pair("Yaoi", "yaoi"),
|
||||
Pair("Yuri", "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
|
||||
}
|
||||
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
val qualities = arrayOf(
|
||||
"Okru:1080p", "Okru:720p", "Okru:480p", "Okru:360p", "Okru:240p", // Okru
|
||||
"Xtreme S", "HentaiJk", "Nozomi", "Desu", // video servers without resolution
|
||||
)
|
||||
val videoQualityPref = ListPreference(screen.context).apply {
|
||||
key = "preferred_quality"
|
||||
title = "Preferred quality"
|
||||
entries = qualities
|
||||
entryValues = qualities
|
||||
setDefaultValue("Sabrosio")
|
||||
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()
|
||||
}
|
||||
}
|
||||
screen.addPreference(videoQualityPref)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue