Re-add AnimesVision (#1364)
* Revert "Remove AnimesVision (#1311)" This reverts commit 04aec5ab5c2aaa088cd7be4bda56eb414b16bc72. * fix compilation with jsoup 1.15.3 * Minor refactor * Fix video extraction + speedup * Add warning to non-logged users * Bump version
This commit is contained in:
parent
0d4a43c034
commit
2e1728c73b
24
src/pt/animesvision/AndroidManifest.xml
Normal file
24
src/pt/animesvision/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.animesvision.AVUrlActivity"
|
||||
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="animes.vision"
|
||||
android:pathPattern="/..*/..*"
|
||||
android:scheme="https" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
19
src/pt/animesvision/build.gradle
Normal file
19
src/pt/animesvision/build.gradle
Normal file
@ -0,0 +1,19 @@
|
||||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlinx-serialization'
|
||||
|
||||
ext {
|
||||
extName = 'AnimesVision'
|
||||
pkgNameSuffix = 'pt.animesvision'
|
||||
extClass = '.AnimesVision'
|
||||
extVersionCode = 16
|
||||
libVersion = '13'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-voe-extractor'))
|
||||
implementation(project(':lib-streamtape-extractor'))
|
||||
implementation(project(':lib-dood-extractor'))
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/animesvision/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/animesvision/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
BIN
src/pt/animesvision/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/animesvision/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
src/pt/animesvision/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/animesvision/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
BIN
src/pt/animesvision/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/animesvision/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
BIN
src/pt/animesvision/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/animesvision/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,43 @@
|
||||
package eu.kanade.tachiyomi.animeextension.pt.animesvision
|
||||
|
||||
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://animes.vision/<type>/<item> intents
|
||||
* and redirects them to the main Aniyomi process.
|
||||
*/
|
||||
class AVUrlActivity : Activity() {
|
||||
|
||||
private val TAG = "AVUrlActivity"
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
val pathSegments = intent?.data?.pathSegments
|
||||
if (pathSegments != null && pathSegments.size > 1) {
|
||||
val type = pathSegments[0]
|
||||
val item = pathSegments[1]
|
||||
val searchQuery = "$type/$item"
|
||||
val mainIntent = Intent().apply {
|
||||
action = "eu.kanade.tachiyomi.ANIMESEARCH"
|
||||
putExtra("query", "${AnimesVision.PREFIX_SEARCH}$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,390 @@
|
||||
package eu.kanade.tachiyomi.animeextension.pt.animesvision
|
||||
|
||||
import android.app.Application
|
||||
import android.content.SharedPreferences
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
import eu.kanade.tachiyomi.animeextension.pt.animesvision.dto.AVResponseDto
|
||||
import eu.kanade.tachiyomi.animeextension.pt.animesvision.dto.PayloadData
|
||||
import eu.kanade.tachiyomi.animeextension.pt.animesvision.dto.PayloadItem
|
||||
import eu.kanade.tachiyomi.animeextension.pt.animesvision.extractors.GlobalVisionExtractor
|
||||
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.lib.doodextractor.DoodExtractor
|
||||
import eu.kanade.tachiyomi.lib.streamtapeextractor.StreamTapeExtractor
|
||||
import eu.kanade.tachiyomi.lib.voeextractor.VoeExtractor
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.network.POST
|
||||
import eu.kanade.tachiyomi.network.asObservableSuccess
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.async
|
||||
import kotlinx.coroutines.awaitAll
|
||||
import kotlinx.coroutines.runBlocking
|
||||
import kotlinx.serialization.decodeFromString
|
||||
import kotlinx.serialization.encodeToString
|
||||
import kotlinx.serialization.json.Json
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrlOrNull
|
||||
import okhttp3.Interceptor
|
||||
import okhttp3.OkHttpClient
|
||||
import okhttp3.Request
|
||||
import okhttp3.RequestBody.Companion.toRequestBody
|
||||
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.io.IOException
|
||||
import java.lang.Exception
|
||||
|
||||
class AnimesVision : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
||||
|
||||
override val name = "AnimesVision"
|
||||
|
||||
override val baseUrl = "https://animes.vision"
|
||||
|
||||
override val lang = "pt-BR"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
|
||||
.addInterceptor(::loginInterceptor)
|
||||
.build()
|
||||
|
||||
private val json = Json {
|
||||
ignoreUnknownKeys = true
|
||||
}
|
||||
|
||||
private val preferences: SharedPreferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
override fun headersBuilder() = super.headersBuilder()
|
||||
.add("Referer", baseUrl)
|
||||
.add("Accept-Language", ACCEPT_LANGUAGE)
|
||||
|
||||
// ============================== Popular ===============================
|
||||
private fun nextPageSelector(): String = "ul.pagination li.page-item:contains(›):not(.disabled)"
|
||||
override fun popularAnimeSelector(): String = "div#anime-trending div.item > a.film-poster"
|
||||
override fun popularAnimeRequest(page: Int): Request = GET(baseUrl)
|
||||
|
||||
override fun popularAnimeFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create().apply {
|
||||
val img = element.selectFirst("img")!!
|
||||
setUrlWithoutDomain(element.attr("href"))
|
||||
title = img.attr("title")
|
||||
thumbnail_url = img.attr("src")
|
||||
}
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun popularAnimeNextPageSelector() = null
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListSelector(): String = "div.container div.screen-items > div.item"
|
||||
|
||||
private fun getAllEps(response: Response): List<SEpisode> {
|
||||
val epList = mutableListOf<SEpisode>()
|
||||
val url = response.request.url.toString()
|
||||
val doc = if (url.contains("/episodio-") || url.contains("/filme-")) {
|
||||
getRealDoc(response.asJsoup())
|
||||
} else { response.asJsoup() }
|
||||
|
||||
val epElementList = doc.select(episodeListSelector())
|
||||
epList.addAll(epElementList.map { episodeFromElement(it) })
|
||||
if (doc.hasNextPage()) {
|
||||
val nextUrl = doc.selectFirst(nextPageSelector())!!
|
||||
.selectFirst("a")!!
|
||||
.attr("href")
|
||||
val newResponse = client.newCall(GET(nextUrl)).execute()
|
||||
epList.addAll(getAllEps(newResponse))
|
||||
}
|
||||
return epList
|
||||
}
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
return getAllEps(response).reversed()
|
||||
}
|
||||
|
||||
override fun episodeFromElement(element: Element): SEpisode {
|
||||
val episode = SEpisode.create().apply {
|
||||
setUrlWithoutDomain(element.selectFirst("a")!!.attr("href"))
|
||||
val epName = element.selectFirst("h3")!!.text().trim()
|
||||
name = epName
|
||||
episode_number = try {
|
||||
epName.substringAfterLast(" ").toFloat()
|
||||
} catch (e: NumberFormatException) { 0F }
|
||||
}
|
||||
return episode
|
||||
}
|
||||
|
||||
// ============================ Video Links =============================
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val body = response.body.string()
|
||||
val internalVideos = GlobalVisionExtractor()
|
||||
.videoListFromHtml(body)
|
||||
.toMutableList()
|
||||
|
||||
val externalVideos = externalVideosFromEpisode(response.asJsoup(body))
|
||||
return internalVideos + externalVideos
|
||||
}
|
||||
|
||||
private fun externalVideosFromEpisode(doc: Document): List<Video> {
|
||||
val wireDiv: Element = doc.selectFirst("div[wire:id]")!!
|
||||
val initialData: String = wireDiv.attr("wire:initial-data").dropLast(1)
|
||||
val wireToken: String = doc.html()
|
||||
.substringAfter("livewire_token")
|
||||
.substringAfter("'")
|
||||
.substringBefore("'")
|
||||
|
||||
val headers = headersBuilder()
|
||||
.add("x-livewire", "true")
|
||||
.add("x-csrf-token", wireToken)
|
||||
.add("content-type", "application/json")
|
||||
.build()
|
||||
|
||||
val players = doc.select("div.server-item > a.btn")
|
||||
|
||||
val videos = players.parallelMap {
|
||||
val id = it.attr("wire:click")
|
||||
.substringAfter("(")
|
||||
.substringBefore(")")
|
||||
.toInt()
|
||||
val updateItem = PayloadItem(PayloadData(listOf(id)))
|
||||
val updateString = json.encodeToString(updateItem)
|
||||
val body = "$initialData, \"updates\": [$updateString]}"
|
||||
val reqBody = body.toRequestBody()
|
||||
val url = "$baseUrl/livewire/message/components.episodio.player-episodio-component"
|
||||
val response = client.newCall(POST(url, headers, reqBody)).execute()
|
||||
val responseBody = response.body.string()
|
||||
val resJson = json.decodeFromString<AVResponseDto>(responseBody)
|
||||
(resJson.serverMemo?.data?.framePlay ?: resJson.effects?.html)
|
||||
?.let(::parsePlayerData)
|
||||
}.filterNotNull().flatten()
|
||||
|
||||
return videos
|
||||
}
|
||||
|
||||
private fun parsePlayerData(data: String): List<Video>? {
|
||||
val videoList = when {
|
||||
"streamtape" in data ->
|
||||
StreamTapeExtractor(client).videoFromUrl(data)?.let(::listOf)
|
||||
"dood" in data ->
|
||||
DoodExtractor(client).videoFromUrl(data)?.let(::listOf)
|
||||
"voe.sx" in data ->
|
||||
VoeExtractor(client).videoFromUrl(data)?.let(::listOf)
|
||||
else -> null
|
||||
}
|
||||
return videoList
|
||||
}
|
||||
|
||||
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 ===============================
|
||||
override fun searchAnimeFromElement(element: Element): SAnime {
|
||||
val anime: SAnime = SAnime.create().apply {
|
||||
val elementA = element.selectFirst("a")!!
|
||||
title = elementA.attr("title")
|
||||
setUrlWithoutDomain(elementA.attr("href"))
|
||||
thumbnail_url = element.selectFirst("img")!!.attr("data-src")
|
||||
}
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun searchAnimeNextPageSelector(): String = nextPageSelector()
|
||||
|
||||
override fun searchAnimeSelector(): String = "div.film_list-wrap div.film-poster"
|
||||
|
||||
override fun fetchSearchAnime(page: Int, query: String, filters: AnimeFilterList): Observable<AnimesPage> {
|
||||
return if (query.startsWith(PREFIX_SEARCH)) {
|
||||
val path = query.removePrefix(PREFIX_SEARCH)
|
||||
client.newCall(GET("$baseUrl/$path"))
|
||||
.asObservableSuccess()
|
||||
.map { response ->
|
||||
searchAnimeByPathParse(response, path)
|
||||
}
|
||||
} else {
|
||||
val params = AVFilters.getSearchParameters(filters)
|
||||
client.newCall(searchAnimeRequest(page, query, params))
|
||||
.asObservableSuccess()
|
||||
.map { response ->
|
||||
searchAnimeParse(response)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun searchAnimeByPathParse(response: Response, path: String): AnimesPage {
|
||||
val details = animeDetailsParse(response)
|
||||
details.url = "/$path"
|
||||
return AnimesPage(listOf(details), false)
|
||||
}
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request = throw Exception("not used")
|
||||
|
||||
private fun searchAnimeRequest(page: Int, query: String, filters: AVFilters.FilterSearchParams): Request {
|
||||
val url = "$baseUrl/search?".toHttpUrlOrNull()!!.newBuilder()
|
||||
.addQueryParameter("page", page.toString())
|
||||
.addQueryParameter("nome", query)
|
||||
.addQueryParameter("tipo", filters.type)
|
||||
.addQueryParameter("idioma", filters.language)
|
||||
.addQueryParameter("ordenar", filters.sort)
|
||||
.addQueryParameter("ano_inicial", filters.initial_year)
|
||||
.addQueryParameter("ano_final", filters.last_year)
|
||||
.addQueryParameter("fansub", filters.fansub)
|
||||
.addQueryParameter("status", filters.status)
|
||||
.addQueryParameter("temporada", filters.season)
|
||||
.addQueryParameter("estudios", filters.studio)
|
||||
.addQueryParameter("produtores", filters.producer)
|
||||
.addQueryParameter("generos", filters.genres)
|
||||
|
||||
return GET(url.build().toString())
|
||||
}
|
||||
|
||||
// =========================== Anime Details ============================
|
||||
override fun animeDetailsParse(document: Document): SAnime {
|
||||
val anime = SAnime.create()
|
||||
val doc = getRealDoc(document)
|
||||
|
||||
val content = doc.selectFirst("div#ani_detail div.anis-content")!!
|
||||
val detail = content.selectFirst("div.anisc-detail")!!
|
||||
val infos = content.selectFirst("div.anisc-info")!!
|
||||
|
||||
anime.thumbnail_url = content.selectFirst("img")!!.attr("src")
|
||||
anime.title = detail.selectFirst("h2.film-name")!!.text()
|
||||
anime.genre = infos.getInfo("Gêneros")
|
||||
anime.author = infos.getInfo("Produtores")
|
||||
anime.artist = infos.getInfo("Estúdios")
|
||||
anime.status = parseStatus(infos.getInfo("Status"))
|
||||
|
||||
var desc = infos.getInfo("Sinopse") + "\n"
|
||||
infos.getInfo("Inglês")?.let { desc += "\nTítulo em inglês: $it" }
|
||||
infos.getInfo("Japonês")?.let { desc += "\nTítulo em japonês: $it" }
|
||||
infos.getInfo("Foi")?.let { desc += "\nFoi ao ar em: $it" }
|
||||
infos.getInfo("Temporada")?.let { desc += "\nTemporada: $it" }
|
||||
infos.getInfo("Duração")?.let { desc += "\nDuração: $it" }
|
||||
infos.getInfo("Fansub")?.let { desc += "\nFansub: $it" }
|
||||
anime.description = desc
|
||||
|
||||
return anime
|
||||
}
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesNextPageSelector(): String = nextPageSelector()
|
||||
override fun latestUpdatesSelector(): String = episodeListSelector()
|
||||
|
||||
override fun latestUpdatesFromElement(element: Element): SAnime {
|
||||
val anime = SAnime.create().apply {
|
||||
setUrlWithoutDomain(element.selectFirst("a")!!.attr("href"))
|
||||
title = element.selectFirst("h3")!!.text()
|
||||
thumbnail_url = element.selectFirst("img")!!.attr("src")
|
||||
}
|
||||
return anime
|
||||
}
|
||||
|
||||
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/lancamentos?page=$page")
|
||||
|
||||
// ============================== Settings ==============================
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
val videoQualityPref = ListPreference(screen.context).apply {
|
||||
key = PREF_QUALITY_KEY
|
||||
title = PREF_QUALITY_TITLE
|
||||
entries = PREF_QUALITY_VALUES
|
||||
entryValues = PREF_QUALITY_VALUES
|
||||
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()
|
||||
}
|
||||
}
|
||||
screen.addPreference(videoQualityPref)
|
||||
}
|
||||
|
||||
override fun getFilterList(): AnimeFilterList = AVFilters.filterList
|
||||
|
||||
// ============================= Utilities ==============================
|
||||
private fun loginInterceptor(chain: Interceptor.Chain): Response {
|
||||
val response = chain.proceed(chain.request())
|
||||
|
||||
if ("/login" in response.request.url.toString()) {
|
||||
response.close()
|
||||
throw IOException(ERROR_LOGIN_MISSING)
|
||||
}
|
||||
|
||||
return response
|
||||
}
|
||||
|
||||
private fun <A, B> Iterable<A>.parallelMap(f: suspend (A) -> B): List<B> =
|
||||
runBlocking {
|
||||
map { async(Dispatchers.Default) { f(it) } }.awaitAll()
|
||||
}
|
||||
|
||||
private fun getRealDoc(document: Document): Document {
|
||||
val player = document.selectFirst("div.player-frame")
|
||||
if (player != null) {
|
||||
val url = document.selectFirst("h2.film-name > a")!!.attr("href")
|
||||
val req = client.newCall(GET(url)).execute()
|
||||
return req.asJsoup()
|
||||
} else {
|
||||
return document
|
||||
}
|
||||
}
|
||||
|
||||
private fun parseStatus(statusString: String?): Int {
|
||||
return when (statusString?.trim()) {
|
||||
"Fim da exibição" -> SAnime.COMPLETED
|
||||
"Atualmente sendo exibido" -> SAnime.ONGOING
|
||||
else -> SAnime.UNKNOWN
|
||||
}
|
||||
}
|
||||
|
||||
private fun Element.hasNextPage() = selectFirst(nextPageSelector()) != null
|
||||
|
||||
private fun Element.getInfo(key: String): String? {
|
||||
val div = selectFirst("div.item:contains($key)")
|
||||
if (div == null) return div
|
||||
|
||||
val elementsA = div.select("a[href]")
|
||||
val text = if (elementsA.size == 0) {
|
||||
val selector = when {
|
||||
div.hasClass("w-hide") -> "div.text"
|
||||
else -> "span.name"
|
||||
}
|
||||
div.selectFirst(selector)!!.text().trim()
|
||||
} else {
|
||||
elementsA.joinToString(", ") { it.text().trim() }
|
||||
}
|
||||
|
||||
if (text.isBlank()) return null
|
||||
return text
|
||||
}
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val quality = preferences.getString(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT)!!
|
||||
return sortedWith(
|
||||
compareByDescending { it.quality.contains(quality) },
|
||||
)
|
||||
}
|
||||
|
||||
companion object {
|
||||
const val PREFIX_SEARCH = "path:"
|
||||
private const val ACCEPT_LANGUAGE = "pt-BR,pt;q=0.9,en-US;q=0.8,en;q=0.7"
|
||||
|
||||
private const val ERROR_LOGIN_MISSING = "Login necessário. " +
|
||||
"Abra a WebView, insira os dados de sua conta e realize o login."
|
||||
|
||||
private const val PREF_QUALITY_KEY = "preferred_quality"
|
||||
private const val PREF_QUALITY_TITLE = "Qualidade preferida"
|
||||
private const val PREF_QUALITY_DEFAULT = "720p"
|
||||
private val PREF_QUALITY_VALUES = arrayOf("480p", "720p", "1080p", "4K")
|
||||
}
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package eu.kanade.tachiyomi.animeextension.pt.animesvision.dto
|
||||
|
||||
import kotlinx.serialization.EncodeDefault
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class PayloadItem(
|
||||
val payload: PayloadData,
|
||||
@EncodeDefault
|
||||
val type: String = "callMethod",
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class PayloadData(
|
||||
val params: List<Int>,
|
||||
@EncodeDefault
|
||||
val method: String = "mudarPlayer",
|
||||
@EncodeDefault
|
||||
val id: String = "",
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AVResponseDto(
|
||||
val effects: AVResponseEffects? = null,
|
||||
val serverMemo: AVResponseMemo? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AVResponseEffects(
|
||||
val html: String? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AVResponseMemo(
|
||||
val data: AVResponseData? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AVResponseData(
|
||||
val framePlay: String? = null,
|
||||
)
|
@ -0,0 +1,16 @@
|
||||
package eu.kanade.tachiyomi.animeextension.pt.animesvision.extractors
|
||||
|
||||
import eu.kanade.tachiyomi.animesource.model.Video
|
||||
class GlobalVisionExtractor {
|
||||
|
||||
private val REGEX_URL = Regex(""""file":"(\S+?)",.*?"label":"(.*?)"""")
|
||||
private val PREFIX = "GlobalVision"
|
||||
|
||||
fun videoListFromHtml(html: String): List<Video> {
|
||||
return REGEX_URL.findAll(html).map {
|
||||
val videoUrl = it.groupValues[1].replace("\\", "")
|
||||
val qualityName = it.groupValues[2]
|
||||
Video(videoUrl, "$PREFIX $qualityName", videoUrl)
|
||||
}.toList()
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user