New source: CineVision (#838)
This commit is contained in:
24
src/pt/cinevision/AndroidManifest.xml
Normal file
24
src/pt/cinevision/AndroidManifest.xml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="eu.kanade.tachiyomi.animeextension">
|
||||||
|
|
||||||
|
<application>
|
||||||
|
<activity
|
||||||
|
android:name=".pt.cinevision.CVUrlActivity"
|
||||||
|
android:excludeFromRecents="true"
|
||||||
|
android:exported="true"
|
||||||
|
android:theme="@android:style/Theme.NoDisplay">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
|
||||||
|
<data
|
||||||
|
android:host="cinevisionv5.online"
|
||||||
|
android:pathPattern="/serie/..*"
|
||||||
|
android:scheme="https" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
</application>
|
||||||
|
</manifest>
|
13
src/pt/cinevision/build.gradle
Normal file
13
src/pt/cinevision/build.gradle
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
apply plugin: 'com.android.application'
|
||||||
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
|
ext {
|
||||||
|
extName = 'CineVision'
|
||||||
|
pkgNameSuffix = 'pt.cinevision'
|
||||||
|
extClass = '.CineVision'
|
||||||
|
extVersionCode = 1
|
||||||
|
libVersion = '13'
|
||||||
|
containsNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/cinevision/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/cinevision/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
src/pt/cinevision/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/cinevision/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
src/pt/cinevision/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/cinevision/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
BIN
src/pt/cinevision/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/cinevision/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
BIN
src/pt/cinevision/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/cinevision/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.6 KiB |
BIN
src/pt/cinevision/res/web_hi_res_512.png
Normal file
BIN
src/pt/cinevision/res/web_hi_res_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
@ -0,0 +1,16 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.pt.cinevision
|
||||||
|
|
||||||
|
object CVConstants {
|
||||||
|
const val ACCEPT_LANGUAGE = "pt-BR,pt;q=0.9,en-US;q=0.8,en;q=0.7"
|
||||||
|
const val USER_AGENT = "Mozilla/5.0 (Linux; Android 10; SM-A307GT Build/QP1A.190711.020;) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.71 Mobile Safari/537.36"
|
||||||
|
|
||||||
|
const val PREFIX_SEARCH = "slug:"
|
||||||
|
|
||||||
|
const val PREFERRED_QUALITY = "preferred_quality"
|
||||||
|
const val DEFAULT_QUALITY = "720p"
|
||||||
|
val QUALITY_LIST = arrayOf("480p", "720p")
|
||||||
|
|
||||||
|
const val PREFERRED_LANGUAGE = "preferred_language"
|
||||||
|
const val DEFAULT_LANGUAGE = "Legendado"
|
||||||
|
val LANGUAGE_LIST = arrayOf("Legendado", "Dublado")
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.pt.cinevision
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.animesource.model.AnimeFilter
|
||||||
|
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
|
||||||
|
|
||||||
|
object CVFilters {
|
||||||
|
|
||||||
|
open class QueryPartFilter(
|
||||||
|
displayName: String,
|
||||||
|
val vals: Array<Pair<String, String>>
|
||||||
|
) : AnimeFilter.Select<String>(
|
||||||
|
displayName,
|
||||||
|
vals.map { it.first }.toTypedArray()
|
||||||
|
) {
|
||||||
|
fun toQueryPart() = vals[state].second
|
||||||
|
}
|
||||||
|
|
||||||
|
private inline fun <reified R> AnimeFilterList.asQueryPart(): String {
|
||||||
|
return this.filterIsInstance<R>().joinToString("") {
|
||||||
|
(it as QueryPartFilter).toQueryPart()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class GenreFilter : QueryPartFilter("Gênero", CVFiltersData.genres)
|
||||||
|
|
||||||
|
val filterList = AnimeFilterList(
|
||||||
|
AnimeFilter.Header(CVFiltersData.IGNORE_SEARCH_MSG),
|
||||||
|
GenreFilter()
|
||||||
|
)
|
||||||
|
|
||||||
|
data class FilterSearchParams(
|
||||||
|
val genre: String = ""
|
||||||
|
)
|
||||||
|
|
||||||
|
internal fun getSearchParameters(filters: AnimeFilterList): FilterSearchParams {
|
||||||
|
return FilterSearchParams(filters.asQueryPart<GenreFilter>())
|
||||||
|
}
|
||||||
|
|
||||||
|
private object CVFiltersData {
|
||||||
|
|
||||||
|
const val IGNORE_SEARCH_MSG = "NOTA: O filtro por gênero será IGNORADO ao usar a pesquisa por nome."
|
||||||
|
|
||||||
|
val genres = arrayOf(
|
||||||
|
Pair("Ação", "acao-online-1"),
|
||||||
|
Pair("Animação", "animacao-online"),
|
||||||
|
Pair("Aventura", "aventura-online"),
|
||||||
|
Pair("Comédia", "comedia-online"),
|
||||||
|
Pair("Crime", "crime-online"),
|
||||||
|
Pair("Documentário", "documentario-online"),
|
||||||
|
Pair("Drama", "drama-online"),
|
||||||
|
Pair("Família", "familia-online"),
|
||||||
|
Pair("Fantasia", "fantasia-online"),
|
||||||
|
Pair("Faroeste", "faroeste-online"),
|
||||||
|
Pair("Ficção científica", "ficcao-cientifica-online"),
|
||||||
|
Pair("Guerra", "guerra-online"),
|
||||||
|
Pair("Mistério", "misterio-online"),
|
||||||
|
Pair("Música", "musica-online"),
|
||||||
|
Pair("Romance", "romance-online"),
|
||||||
|
Pair("Terror", "terror-online"),
|
||||||
|
Pair("Thriller", "thriller-online")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.pt.cinevision
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.ActivityNotFoundException
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import kotlin.system.exitProcess
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Springboard that accepts https://cinevisionv5.online.com/serie/<slug> intents
|
||||||
|
* and redirects them to the main Aniyomi process.
|
||||||
|
*/
|
||||||
|
class CVUrlActivity : Activity() {
|
||||||
|
|
||||||
|
private val TAG = "CVUrlActivity"
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
val pathSegments = intent?.data?.pathSegments
|
||||||
|
if (pathSegments != null && pathSegments.size > 1) {
|
||||||
|
val slug = pathSegments[1]
|
||||||
|
val searchQuery = CVConstants.PREFIX_SEARCH + slug
|
||||||
|
val mainIntent = Intent().apply {
|
||||||
|
action = "eu.kanade.tachiyomi.ANIMESEARCH"
|
||||||
|
putExtra("query", searchQuery)
|
||||||
|
putExtra("filter", packageName)
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
startActivity(mainIntent)
|
||||||
|
} catch (e: ActivityNotFoundException) {
|
||||||
|
Log.e(TAG, e.toString())
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Log.e(TAG, "could not parse uri from intent $intent")
|
||||||
|
}
|
||||||
|
|
||||||
|
finish()
|
||||||
|
exitProcess(0)
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,333 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.pt.cinevision
|
||||||
|
|
||||||
|
import android.app.Application
|
||||||
|
import android.content.SharedPreferences
|
||||||
|
import androidx.preference.ListPreference
|
||||||
|
import androidx.preference.PreferenceScreen
|
||||||
|
import eu.kanade.tachiyomi.animeextension.pt.cinevision.extractors.VidmolyExtractor
|
||||||
|
import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource
|
||||||
|
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.network.GET
|
||||||
|
import eu.kanade.tachiyomi.network.asObservableSuccess
|
||||||
|
import eu.kanade.tachiyomi.util.asJsoup
|
||||||
|
import kotlinx.serialization.decodeFromString
|
||||||
|
import kotlinx.serialization.json.Json
|
||||||
|
import kotlinx.serialization.json.JsonObject
|
||||||
|
import kotlinx.serialization.json.jsonPrimitive
|
||||||
|
import okhttp3.Headers
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import okhttp3.Request
|
||||||
|
import okhttp3.Response
|
||||||
|
import org.jsoup.nodes.Document
|
||||||
|
import org.jsoup.nodes.Element
|
||||||
|
import rx.Observable
|
||||||
|
import uy.kohesive.injekt.Injekt
|
||||||
|
import uy.kohesive.injekt.api.get
|
||||||
|
import java.lang.Exception
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class CineVision : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
||||||
|
|
||||||
|
override val name = "CineVision"
|
||||||
|
|
||||||
|
override val baseUrl = "https://cinevisionv5.online"
|
||||||
|
|
||||||
|
override val lang = "pt-BR"
|
||||||
|
|
||||||
|
override val supportsLatest = true
|
||||||
|
|
||||||
|
override val client: OkHttpClient = network.client
|
||||||
|
|
||||||
|
override fun headersBuilder(): Headers.Builder = Headers.Builder()
|
||||||
|
.add("Referer", baseUrl)
|
||||||
|
.add("Accept-Language", CVConstants.ACCEPT_LANGUAGE)
|
||||||
|
.add("User-Agent", CVConstants.USER_AGENT)
|
||||||
|
|
||||||
|
private val preferences: SharedPreferences by lazy {
|
||||||
|
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================== Popular ===============================
|
||||||
|
override fun popularAnimeSelector(): String = "article.w_item_b > a"
|
||||||
|
|
||||||
|
override fun popularAnimeRequest(page: Int): Request = GET(baseUrl, headers)
|
||||||
|
|
||||||
|
override fun popularAnimeFromElement(element: Element): SAnime {
|
||||||
|
val anime = SAnime.create()
|
||||||
|
val img = element.selectFirst("img")
|
||||||
|
val url = element.selectFirst("a")?.attr("href") ?: element.attr("href")
|
||||||
|
anime.setUrlWithoutDomain(url)
|
||||||
|
anime.title = img.attr("alt")
|
||||||
|
anime.thumbnail_url = img.attr("data-src")
|
||||||
|
return anime
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun popularAnimeNextPageSelector() = throw Exception("not used")
|
||||||
|
|
||||||
|
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||||
|
val document = response.asJsoup()
|
||||||
|
val animes = document.select(popularAnimeSelector()).map { element ->
|
||||||
|
popularAnimeFromElement(element)
|
||||||
|
}
|
||||||
|
return AnimesPage(animes, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================== Episodes ==============================
|
||||||
|
override fun episodeListSelector(): String = "ul.episodios > li"
|
||||||
|
|
||||||
|
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||||
|
val doc = getRealDoc(response.asJsoup())
|
||||||
|
val epList = doc.select(episodeListSelector())
|
||||||
|
if (epList.size < 1) {
|
||||||
|
val episode = SEpisode.create()
|
||||||
|
episode.setUrlWithoutDomain(response.request.url.toString())
|
||||||
|
episode.episode_number = 1F
|
||||||
|
episode.name = "Filme"
|
||||||
|
return listOf(episode)
|
||||||
|
}
|
||||||
|
return epList.reversed().map { episodeFromElement(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun episodeFromElement(element: Element): SEpisode {
|
||||||
|
val episode = SEpisode.create()
|
||||||
|
val origName = element.selectFirst("div.numerando").text()
|
||||||
|
|
||||||
|
episode.episode_number = origName.substring(origName.indexOf("-") + 1)
|
||||||
|
.toFloat() + if ("Dub" in origName) 0.5F else 0F
|
||||||
|
episode.name = "Temp " + origName.replace(" - ", ": Ep ")
|
||||||
|
episode.setUrlWithoutDomain(element.selectFirst("a").attr("href"))
|
||||||
|
episode.date_upload = element.selectFirst("span.date")?.text()?.toDate() ?: 0L
|
||||||
|
return episode
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================ Video Links =============================
|
||||||
|
|
||||||
|
override fun videoListParse(response: Response): List<Video> {
|
||||||
|
val document = response.asJsoup()
|
||||||
|
val players = document.select("ul#playeroptionsul li")
|
||||||
|
val videoList = mutableListOf<Video>()
|
||||||
|
players.forEach { player ->
|
||||||
|
videoList.addAll(getPlayerVideos(player))
|
||||||
|
}
|
||||||
|
return videoList
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getPlayerVideos(player: Element): List<Video> {
|
||||||
|
val type = player.attr("data-type")
|
||||||
|
val id = player.attr("data-post")
|
||||||
|
val num = player.attr("data-nume")
|
||||||
|
val name = player.selectFirst("span.title").text()
|
||||||
|
val json = Json.decodeFromString<JsonObject>(
|
||||||
|
client.newCall(GET("$baseUrl/wp-json/dooplayer/v2/$id/$type/$num"))
|
||||||
|
.execute().body!!.string()
|
||||||
|
)
|
||||||
|
val url = "https:" + json["embed_url"]!!.jsonPrimitive.content
|
||||||
|
|
||||||
|
// It may need more extractors, but i only saw it using vidmoly
|
||||||
|
return when {
|
||||||
|
"vidmoly.to" in url ->
|
||||||
|
VidmolyExtractor(client).getVideoList(url, name)
|
||||||
|
else -> emptyList<Video>()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun videoListSelector() = throw Exception("not used")
|
||||||
|
override fun videoFromElement(element: Element) = throw Exception("not used")
|
||||||
|
override fun videoUrlParse(document: Document) = throw Exception("not used")
|
||||||
|
|
||||||
|
// =============================== Search ===============================
|
||||||
|
private fun searchAnimeBySlugParse(response: Response, slug: String): AnimesPage {
|
||||||
|
val details = animeDetailsParse(response)
|
||||||
|
details.url = "/serie/$slug"
|
||||||
|
return AnimesPage(listOf(details), false)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchAnimeParse(response: Response): AnimesPage {
|
||||||
|
val url = response.request.url.toString()
|
||||||
|
val document = response.asJsoup()
|
||||||
|
|
||||||
|
val animes = when {
|
||||||
|
"/categorias/" in url -> {
|
||||||
|
document.select(latestUpdatesSelector()).map { element ->
|
||||||
|
popularAnimeFromElement(element)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
document.select(searchAnimeSelector()).map { element ->
|
||||||
|
searchAnimeFromElement(element)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val hasNextPage = document.selectFirst(searchAnimeNextPageSelector()) != null
|
||||||
|
return AnimesPage(animes, hasNextPage)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun fetchSearchAnime(page: Int, query: String, filters: AnimeFilterList): Observable<AnimesPage> {
|
||||||
|
return if (query.startsWith(CVConstants.PREFIX_SEARCH)) {
|
||||||
|
val slug = query.removePrefix(CVConstants.PREFIX_SEARCH)
|
||||||
|
client.newCall(GET("$baseUrl/serie/$slug", headers))
|
||||||
|
.asObservableSuccess()
|
||||||
|
.map { response ->
|
||||||
|
searchAnimeBySlugParse(response, slug)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
val params = CVFilters.getSearchParameters(filters)
|
||||||
|
client.newCall(searchAnimeRequest(page, query, params))
|
||||||
|
.asObservableSuccess()
|
||||||
|
.map { response ->
|
||||||
|
searchAnimeParse(response)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getFilterList(): AnimeFilterList = CVFilters.filterList
|
||||||
|
|
||||||
|
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList) = throw Exception("not used")
|
||||||
|
|
||||||
|
private fun searchAnimeRequest(page: Int, query: String, filters: CVFilters.FilterSearchParams): Request {
|
||||||
|
return when {
|
||||||
|
query.isBlank() -> {
|
||||||
|
val genre = filters.genre
|
||||||
|
var url = "$baseUrl/categorias/assistir-filmes-e-series-de-$genre"
|
||||||
|
if (page > 1) url += "/page/$page"
|
||||||
|
GET(url, headers)
|
||||||
|
}
|
||||||
|
else -> GET("$baseUrl/page/$page/?s=$query", headers)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchAnimeFromElement(element: Element): SAnime {
|
||||||
|
val anime = SAnime.create()
|
||||||
|
anime.setUrlWithoutDomain(element.attr("href"))
|
||||||
|
anime.title = element.text()
|
||||||
|
return anime
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchAnimeNextPageSelector(): String = latestUpdatesNextPageSelector()
|
||||||
|
|
||||||
|
override fun searchAnimeSelector(): String = "div.result-item div.details div.title a"
|
||||||
|
|
||||||
|
// =========================== Anime Details ============================
|
||||||
|
override fun animeDetailsParse(document: Document): SAnime {
|
||||||
|
val anime = SAnime.create()
|
||||||
|
val doc = getRealDoc(document)
|
||||||
|
val sheader = doc.selectFirst("div.sheader")
|
||||||
|
val img = sheader.selectFirst("div.poster > img")
|
||||||
|
anime.thumbnail_url = img.attr("abs:data-src")
|
||||||
|
anime.title = sheader.selectFirst("div.data > h1").text()
|
||||||
|
anime.genre = sheader.select("div.data > div.sgeneros > a")
|
||||||
|
.joinToString(", ") { it.text() }
|
||||||
|
val info = doc.selectFirst("div#info")
|
||||||
|
var description = info.selectFirst("p").text() + "\n"
|
||||||
|
info.getInfo("Título")?.let { description += "$it" }
|
||||||
|
info.getInfo("Ano")?.let { description += "$it" }
|
||||||
|
info.getInfo("Temporadas")?.let { description += "$it" }
|
||||||
|
info.getInfo("Episódios")?.let { description += "$it" }
|
||||||
|
anime.description = description
|
||||||
|
return anime
|
||||||
|
}
|
||||||
|
|
||||||
|
// =============================== Latest ===============================
|
||||||
|
override fun latestUpdatesNextPageSelector(): String = "div.resppages > a > span.fa-chevron-right"
|
||||||
|
|
||||||
|
override fun latestUpdatesSelector(): String = "div#contenedor article > div.poster"
|
||||||
|
|
||||||
|
override fun latestUpdatesFromElement(element: Element) = popularAnimeFromElement(element)
|
||||||
|
|
||||||
|
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/episodio/page/$page/", headers)
|
||||||
|
|
||||||
|
// ============================== Settings ==============================
|
||||||
|
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||||
|
val videoQualityPref = ListPreference(screen.context).apply {
|
||||||
|
key = CVConstants.PREFERRED_QUALITY
|
||||||
|
title = "Qualidade preferida"
|
||||||
|
entries = CVConstants.QUALITY_LIST
|
||||||
|
entryValues = CVConstants.QUALITY_LIST
|
||||||
|
setDefaultValue(CVConstants.DEFAULT_QUALITY)
|
||||||
|
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()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val languagePref = ListPreference(screen.context).apply {
|
||||||
|
key = CVConstants.PREFERRED_LANGUAGE
|
||||||
|
title = "Tipo/Língua preferida"
|
||||||
|
entries = CVConstants.LANGUAGE_LIST
|
||||||
|
entryValues = CVConstants.LANGUAGE_LIST
|
||||||
|
setDefaultValue(CVConstants.DEFAULT_LANGUAGE)
|
||||||
|
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)
|
||||||
|
screen.addPreference(languagePref)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================= Utilities ==============================
|
||||||
|
private val animeMenuSelector = "div.pag_episodes div.item a[href] > i.fa-bars"
|
||||||
|
|
||||||
|
private fun getRealDoc(document: Document): Document {
|
||||||
|
val menu = document.selectFirst(animeMenuSelector)
|
||||||
|
if (menu != null) {
|
||||||
|
val originalUrl = menu.parent().attr("href")
|
||||||
|
val req = client.newCall(GET(originalUrl, headers)).execute()
|
||||||
|
return req.asJsoup()
|
||||||
|
} else {
|
||||||
|
return document
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Element.getInfo(substring: String): String? {
|
||||||
|
val target = this.selectFirst("div.custom_fields:contains($substring)")
|
||||||
|
?: return null
|
||||||
|
val key = target.selectFirst("b").text()
|
||||||
|
val value = target.selectFirst("span").text()
|
||||||
|
return "\n$key: $value"
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun String.toDate(): Long {
|
||||||
|
return runCatching { DATE_FORMATTER.parse(trim())?.time }
|
||||||
|
.getOrNull() ?: 0L
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun List<Video>.sortIfContains(item: String): List<Video> {
|
||||||
|
val newList = mutableListOf<Video>()
|
||||||
|
var preferred = 0
|
||||||
|
for (video in this) {
|
||||||
|
if (item in video.quality) {
|
||||||
|
newList.add(preferred, video)
|
||||||
|
} else {
|
||||||
|
newList.add(video)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return newList
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun List<Video>.sort(): List<Video> {
|
||||||
|
val quality = preferences.getString(CVConstants.PREFERRED_QUALITY, CVConstants.DEFAULT_QUALITY)!!
|
||||||
|
val language = preferences.getString(CVConstants.PREFERRED_LANGUAGE, CVConstants.DEFAULT_LANGUAGE)!!
|
||||||
|
val newList = this.sortIfContains(language).reversed().sortIfContains(quality)
|
||||||
|
return newList
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private val DATE_FORMATTER by lazy {
|
||||||
|
SimpleDateFormat("MMMM. dd, yyyy", Locale.ENGLISH)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.pt.cinevision.extractors
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.animesource.model.Video
|
||||||
|
import eu.kanade.tachiyomi.network.GET
|
||||||
|
import okhttp3.Headers
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
|
||||||
|
class VidmolyExtractor(private val client: OkHttpClient) {
|
||||||
|
|
||||||
|
private val REGEX_PLAYLIST = Regex("file:\"(\\S+?)\"")
|
||||||
|
|
||||||
|
fun getVideoList(url: String, lang: String): List<Video> {
|
||||||
|
val body = client.newCall(GET(url)).execute()
|
||||||
|
.body!!.string()
|
||||||
|
val playlistUrl = REGEX_PLAYLIST.find(body)!!.groupValues.get(1)
|
||||||
|
val headers = Headers.headersOf("Referer", "https://vidmoly.to")
|
||||||
|
val playlistData = client.newCall(GET(playlistUrl, headers)).execute()
|
||||||
|
.body!!.string()
|
||||||
|
|
||||||
|
val separator = "#EXT-X-STREAM-INF:"
|
||||||
|
return playlistData.substringAfter(separator).split(separator).map {
|
||||||
|
val quality = it.substringAfter("RESOLUTION=")
|
||||||
|
.substringAfter("x")
|
||||||
|
.substringBefore(",") + "p"
|
||||||
|
val videoUrl = it.substringAfter("\n").substringBefore("\n")
|
||||||
|
Video(videoUrl, "$lang - $quality", videoUrl, headers)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user