feat(src/en): New Source: AsiaFlix (#2260)
This commit is contained in:
parent
a11a15e2b3
commit
0e1e37e2e4
@ -94,6 +94,22 @@ object CryptoAES {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Encrypt using CryptoJS defaults compatible method.
|
||||
*
|
||||
* @param plainText plaintext
|
||||
* @param keyBytes key as a bytearray
|
||||
* @param ivBytes iv as a bytearray
|
||||
*/
|
||||
fun encrypt(plainText: String, keyBytes: ByteArray, ivBytes: ByteArray): String {
|
||||
return try {
|
||||
val cipherTextBytes = plainText.toByteArray()
|
||||
encryptAES(cipherTextBytes, keyBytes, ivBytes)
|
||||
} catch (e: Exception) {
|
||||
""
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Decrypt using CryptoJS defaults compatible method.
|
||||
*
|
||||
@ -114,6 +130,26 @@ object CryptoAES {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Encrypt using CryptoJS defaults compatible method.
|
||||
*
|
||||
* @param plainTextBytes encrypted text as a bytearray
|
||||
* @param keyBytes key as a bytearray
|
||||
* @param ivBytes iv as a bytearray
|
||||
*/
|
||||
private fun encryptAES(plainTextBytes: ByteArray, keyBytes: ByteArray, ivBytes: ByteArray): String {
|
||||
return try {
|
||||
val cipher = try {
|
||||
Cipher.getInstance(HASH_CIPHER)
|
||||
} catch (e: Throwable) { Cipher.getInstance(HASH_CIPHER_FALLBACK) }
|
||||
val keyS = SecretKeySpec(keyBytes, AES)
|
||||
cipher.init(Cipher.ENCRYPT_MODE, keyS, IvParameterSpec(ivBytes))
|
||||
Base64.encodeToString(cipher.doFinal(plainTextBytes), Base64.DEFAULT)
|
||||
} catch (e: Exception) {
|
||||
""
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a key and an initialization vector (IV) with the given salt and password.
|
||||
*
|
||||
|
2
src/en/asiaflix/AndroidManifest.xml
Normal file
2
src/en/asiaflix/AndroidManifest.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest />
|
23
src/en/asiaflix/build.gradle
Normal file
23
src/en/asiaflix/build.gradle
Normal file
@ -0,0 +1,23 @@
|
||||
plugins {
|
||||
alias(libs.plugins.android.application)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
alias(libs.plugins.kotlin.serialization)
|
||||
}
|
||||
|
||||
ext {
|
||||
extName = 'AsiaFlix'
|
||||
pkgNameSuffix = 'en.asiaflix'
|
||||
extClass = '.AsiaFlix'
|
||||
extVersionCode = 1
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(':lib-cryptoaes'))
|
||||
implementation(project(':lib-playlist-utils'))
|
||||
implementation(project(':lib-streamwish-extractor'))
|
||||
implementation(project(':lib-dood-extractor'))
|
||||
implementation(project(':lib-streamtape-extractor'))
|
||||
implementation(project(':lib-mixdrop-extractor'))
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
BIN
src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
BIN
src/en/asiaflix/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/asiaflix/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
BIN
src/en/asiaflix/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/asiaflix/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/en/asiaflix/res/web_hi_res_512.png
Normal file
BIN
src/en/asiaflix/res/web_hi_res_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 54 KiB |
@ -0,0 +1,315 @@
|
||||
package eu.kanade.tachiyomi.animeextension.en.asiaflix
|
||||
|
||||
import android.app.Application
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.DetailsResponseDto
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.EncryptedResponseDto
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.EpisodeResponseDto
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.SearchDto
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.SearchEntry
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.SourceDto
|
||||
import eu.kanade.tachiyomi.animeextension.en.asiaflix.dto.StreamHeadDto
|
||||
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.AnimeHttpSource
|
||||
import eu.kanade.tachiyomi.lib.cryptoaes.CryptoAES
|
||||
import eu.kanade.tachiyomi.lib.doodextractor.DoodExtractor
|
||||
import eu.kanade.tachiyomi.lib.mixdropextractor.MixDropExtractor
|
||||
import eu.kanade.tachiyomi.lib.playlistutils.PlaylistUtils
|
||||
import eu.kanade.tachiyomi.lib.streamtapeextractor.StreamTapeExtractor
|
||||
import eu.kanade.tachiyomi.lib.streamwishextractor.StreamWishExtractor
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
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.json.Json
|
||||
import kotlinx.serialization.json.JsonElement
|
||||
import kotlinx.serialization.json.decodeFromJsonElement
|
||||
import kotlinx.serialization.json.floatOrNull
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import okhttp3.Request
|
||||
import okhttp3.Response
|
||||
import org.jsoup.nodes.Document
|
||||
import rx.Observable
|
||||
import uy.kohesive.injekt.Injekt
|
||||
import uy.kohesive.injekt.api.get
|
||||
import uy.kohesive.injekt.injectLazy
|
||||
import java.util.Locale
|
||||
import kotlin.math.min
|
||||
|
||||
class AsiaFlix : AnimeHttpSource(), ConfigurableAnimeSource {
|
||||
|
||||
override val name = "AsiaFlix"
|
||||
|
||||
override val baseUrl = "https://asiaflix.app"
|
||||
|
||||
private val apiUrl = "https://api.asiaflix.app/api/v2"
|
||||
|
||||
override val lang = "en"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
||||
private val json: Json by injectLazy()
|
||||
|
||||
override val client = network.cloudflareClient
|
||||
|
||||
private val apiHeaders by lazy {
|
||||
headersBuilder()
|
||||
.set("Accept", "application/json, text/plain, */*")
|
||||
.set("Referer", "$baseUrl/")
|
||||
.set("Origin", baseUrl)
|
||||
.set("X-Requested-By", "asiaflix-web")
|
||||
.build()
|
||||
}
|
||||
|
||||
private val preferences by lazy {
|
||||
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||
}
|
||||
|
||||
// ============================== Popular ===============================
|
||||
override fun popularAnimeRequest(page: Int): Request {
|
||||
val url = "$apiUrl/drama/explore/full?schedule=0&sort=1&fields=name,+image,+altNames,+synopsis,+genre,+tvStatus&limit=$LIMIT&page=$page"
|
||||
|
||||
return GET(url, apiHeaders)
|
||||
}
|
||||
|
||||
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||
val result = response.parseAs<List<JsonElement>>()
|
||||
val series = result[1].parseAs<List<DetailsResponseDto>>()
|
||||
|
||||
val entries = series.map(DetailsResponseDto::toSAnime)
|
||||
val hasNextPage = entries.size == LIMIT
|
||||
|
||||
return AnimesPage(entries, hasNextPage)
|
||||
}
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesRequest(page: Int): Request {
|
||||
val url = "$apiUrl/drama/explore/full?schedule=0&sort=3&fields=name,+image,+altNames,+synopsis,+genre,+tvStatus&limit=$LIMIT&page=$page"
|
||||
|
||||
return GET(url, apiHeaders)
|
||||
}
|
||||
|
||||
override fun latestUpdatesParse(response: Response) = popularAnimeParse(response)
|
||||
|
||||
// =============================== Search ===============================
|
||||
private lateinit var searchEntries: SearchDto
|
||||
|
||||
override fun fetchSearchAnime(page: Int, query: String, filters: AnimeFilterList): Observable<AnimesPage> {
|
||||
return if (page == 1) {
|
||||
super.fetchSearchAnime(page, query, filters)
|
||||
} else {
|
||||
Observable.just(paginatedSearchParse(page))
|
||||
}
|
||||
}
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||
val url = "$apiUrl/drama/search".toHttpUrl().newBuilder()
|
||||
.addQueryParameter("q", query.trim())
|
||||
.build()
|
||||
.toString()
|
||||
|
||||
return GET(url, apiHeaders)
|
||||
}
|
||||
|
||||
override fun searchAnimeParse(response: Response): AnimesPage {
|
||||
searchEntries = response.parseAs()
|
||||
|
||||
return paginatedSearchParse(1)
|
||||
}
|
||||
|
||||
private fun paginatedSearchParse(page: Int): AnimesPage {
|
||||
val end = min(page * 20, searchEntries.size)
|
||||
val entries = searchEntries.subList((page - 1) * 20, end).map(SearchEntry::toSAnime)
|
||||
|
||||
return AnimesPage(entries, end < searchEntries.size)
|
||||
}
|
||||
|
||||
// =========================== Anime Details ============================
|
||||
override fun fetchAnimeDetails(anime: SAnime): Observable<SAnime> {
|
||||
return client.newCall(internalAnimeDetailsRequest(anime))
|
||||
.asObservableSuccess()
|
||||
.map(::animeDetailsParse)
|
||||
}
|
||||
|
||||
// workaround to get correct WebView url
|
||||
override fun animeDetailsRequest(anime: SAnime): Request {
|
||||
val slug = anime.title.titleToSlug()
|
||||
return GET("$baseUrl/show-details/$slug/${anime.url}")
|
||||
}
|
||||
|
||||
private fun internalAnimeDetailsRequest(anime: SAnime): Request {
|
||||
return GET("$apiUrl/drama?id=${anime.url}", apiHeaders)
|
||||
}
|
||||
|
||||
override fun animeDetailsParse(response: Response): SAnime {
|
||||
return response.parseAs<DetailsResponseDto>().toSAnime()
|
||||
}
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListRequest(anime: SAnime) = internalAnimeDetailsRequest(anime)
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val result = response.parseAs<EpisodeResponseDto>()
|
||||
|
||||
return result.episodes.map {
|
||||
SEpisode.create().apply {
|
||||
name = "Episode ${it.number}"
|
||||
episode_number = it.number.floatOrNull ?: -1f
|
||||
scanlator = it.sub
|
||||
url = it.url
|
||||
}
|
||||
}.sortedByDescending { it.episode_number }
|
||||
}
|
||||
|
||||
// ============================ Video Links =============================
|
||||
private val streamHead by lazy {
|
||||
client.newCall(GET("$apiUrl/utility/get-stream-headers", apiHeaders))
|
||||
.execute()
|
||||
.parseAs<StreamHeadDto>()
|
||||
.source
|
||||
}
|
||||
|
||||
override fun videoListRequest(episode: SEpisode): Request {
|
||||
return GET(streamHead + episode.url, headers)
|
||||
}
|
||||
|
||||
private val playlistUtils by lazy { PlaylistUtils(client, headers) }
|
||||
private val streamWishExtractor by lazy { StreamWishExtractor(client, headers) }
|
||||
private val doodStreamExtractor by lazy { DoodExtractor(client) }
|
||||
private val streamTapeExtractor by lazy { StreamTapeExtractor(client) }
|
||||
private val mixDropExtractor by lazy { MixDropExtractor(client) }
|
||||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.use { it.asJsoup() }
|
||||
|
||||
val hostUrls = document.select("ul.list-server-items li").map {
|
||||
it.attr("data-video")
|
||||
}
|
||||
|
||||
val videos = hostUrls.parallelCatchingFlatMap { hostUrl ->
|
||||
when {
|
||||
hostUrl.contains("dwish") -> {
|
||||
streamWishExtractor.videosFromUrl(hostUrl)
|
||||
}
|
||||
hostUrl.contains("dood") -> {
|
||||
doodStreamExtractor.videosFromUrl(hostUrl)
|
||||
}
|
||||
hostUrl.contains("streamtape") -> {
|
||||
streamTapeExtractor.videoFromUrl(hostUrl).let(::listOfNotNull)
|
||||
}
|
||||
hostUrl.contains("mixdrop") -> {
|
||||
mixDropExtractor.videoFromUrl(hostUrl)
|
||||
}
|
||||
else -> { emptyList() }
|
||||
}
|
||||
}.toMutableList()
|
||||
|
||||
runCatching {
|
||||
videos.addAll(getSelfVideo(document))
|
||||
}
|
||||
|
||||
if (videos.isEmpty()) throw Exception("Failed to get Videos")
|
||||
|
||||
return videos
|
||||
}
|
||||
|
||||
private fun getSelfVideo(document: Document): List<Video> {
|
||||
val crypto = document.select("script[data-name=crypto]")
|
||||
.attr("data-value").let { CryptoAES.decrypt(it, PASSWORD, IV) }
|
||||
|
||||
val urlPart = crypto.substringAfter("&")
|
||||
val id = crypto.substringBefore("&")
|
||||
val encId = CryptoAES.encrypt(id, PASSWORD, IV)
|
||||
|
||||
val newHeaders = headersBuilder().set("Referer", document.location()).build()
|
||||
|
||||
val encRequest = GET("$streamHead/encrypt-ajax.php?id=$encId&$urlPart&alias=$id", newHeaders)
|
||||
|
||||
val encResponse = client.newCall(encRequest).execute()
|
||||
|
||||
val encryptedData = encResponse.parseAs<EncryptedResponseDto>().data
|
||||
|
||||
val decryptedData = CryptoAES.decrypt(encryptedData, PASSWORD, IV)
|
||||
|
||||
val masterPlaylist = decryptedData.parseAs<SourceDto>().source.first().file
|
||||
|
||||
return playlistUtils.extractFromHls(masterPlaylist, document.location(), videoNameGen = { quality -> "Default Server - $quality" })
|
||||
}
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val quality = preferences.getString(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT)!!
|
||||
|
||||
return sortedWith(
|
||||
compareBy { it.quality.contains(quality) },
|
||||
).reversed()
|
||||
}
|
||||
|
||||
// ============================ Preference =============================
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_QUALITY_KEY
|
||||
title = PREF_QUALITY_TITLE
|
||||
entries = PREF_QUALITY_ENTRIES
|
||||
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()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
}
|
||||
|
||||
// ============================ Utilities =============================
|
||||
private inline fun <reified T> String.parseAs(): T =
|
||||
json.decodeFromString(this)
|
||||
|
||||
private inline fun <reified T> JsonElement.parseAs(): T =
|
||||
json.decodeFromJsonElement(this)
|
||||
|
||||
private inline fun <reified T> Response.parseAs(): T =
|
||||
use { it.body.string() }.parseAs()
|
||||
|
||||
private inline fun <A, B> Iterable<A>.parallelCatchingFlatMap(crossinline f: suspend (A) -> Iterable<B>): List<B> =
|
||||
runBlocking {
|
||||
map {
|
||||
async(Dispatchers.Default) {
|
||||
runCatching { f(it) }.getOrElse { emptyList() }
|
||||
}
|
||||
}.awaitAll().flatten()
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val LIMIT = 20
|
||||
|
||||
// TODO: find way to dynamically extract password and iv
|
||||
private val PASSWORD = "93422192433952489752342908585752".toByteArray()
|
||||
private val IV = "9262859232435825".toByteArray()
|
||||
|
||||
fun String.titleToSlug() = trim()
|
||||
.lowercase(Locale.US)
|
||||
.replace(TITLE_SPECIAL_CHAR_REGEX, "-")
|
||||
.replace(TRAILING_HYPHEN_REGEX, "")
|
||||
|
||||
private val TITLE_SPECIAL_CHAR_REGEX = "[^a-z0-9]+".toRegex()
|
||||
private val TRAILING_HYPHEN_REGEX = "-+$".toRegex()
|
||||
|
||||
private const val PREF_QUALITY_KEY = "Preferred_quality"
|
||||
private const val PREF_QUALITY_TITLE = "Preferred quality"
|
||||
private const val PREF_QUALITY_DEFAULT = "720"
|
||||
private val PREF_QUALITY_ENTRIES = arrayOf("1080p", "720p", "480p", "360p", "Doodstream", "StreamTape", "MixDrop")
|
||||
private val PREF_QUALITY_VALUES = arrayOf("1080", "720", "480", "360", "Doodstream", "StreamTape", "MixDrop")
|
||||
}
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package eu.kanade.tachiyomi.animeextension.en.asiaflix.dto
|
||||
|
||||
import eu.kanade.tachiyomi.animesource.model.SAnime
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class DetailsResponseDto(
|
||||
@SerialName("_id") val id: String,
|
||||
val name: String,
|
||||
val altNames: String,
|
||||
val synopsis: String,
|
||||
val image: String,
|
||||
val tvStatus: String,
|
||||
val genre: String,
|
||||
) {
|
||||
fun toSAnime() = SAnime.create().apply {
|
||||
title = name
|
||||
url = id
|
||||
thumbnail_url = image
|
||||
genre = this@DetailsResponseDto.genre
|
||||
status = when (tvStatus) {
|
||||
"Ongoing" -> SAnime.ONGOING
|
||||
"Completed" -> SAnime.COMPLETED
|
||||
else -> SAnime.UNKNOWN
|
||||
}
|
||||
description = buildString {
|
||||
append(synopsis)
|
||||
append("\n\n")
|
||||
|
||||
altNames.split(",")
|
||||
.map(String::trim)
|
||||
.filter(String::isNotEmpty)
|
||||
.joinToString("\n") { "• $it" }
|
||||
.also { append("Alternative Names: \n$it") }
|
||||
}
|
||||
initialized = true
|
||||
}
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
package eu.kanade.tachiyomi.animeextension.en.asiaflix.dto
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
import kotlinx.serialization.json.JsonPrimitive
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrlOrNull
|
||||
|
||||
@Serializable
|
||||
data class EpisodeResponseDto(
|
||||
val episodes: List<EpisodeDto>,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class EpisodeDto(
|
||||
val number: JsonPrimitive,
|
||||
val type: String,
|
||||
val videoUrl: String,
|
||||
) {
|
||||
val url = getUrlWithoutDomain(videoUrl)
|
||||
.replace("/ajax.php", "/streaming.php")
|
||||
|
||||
val sub get() = when {
|
||||
type.contains("sub", true) -> "Subbed"
|
||||
type.contains("dub", true) -> "Dubbed"
|
||||
else -> null
|
||||
}
|
||||
|
||||
companion object {
|
||||
private fun getUrlWithoutDomain(url: String): String {
|
||||
val httpUrl = url.toHttpUrlOrNull()
|
||||
|
||||
val path = httpUrl?.encodedPath
|
||||
|
||||
val queries = httpUrl?.encodedQuery.let {
|
||||
if (it.isNullOrEmpty()) {
|
||||
""
|
||||
} else {
|
||||
"?$it"
|
||||
}
|
||||
}
|
||||
|
||||
val frag = httpUrl?.encodedFragment.let {
|
||||
if (it.isNullOrEmpty()) {
|
||||
""
|
||||
} else {
|
||||
"#$it"
|
||||
}
|
||||
}
|
||||
|
||||
return path + queries + frag
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package eu.kanade.tachiyomi.animeextension.en.asiaflix.dto
|
||||
|
||||
import eu.kanade.tachiyomi.animesource.model.SAnime
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
typealias SearchDto = List<SearchEntry>
|
||||
|
||||
@Serializable
|
||||
data class SearchEntry(
|
||||
@SerialName("_id") val id: String,
|
||||
val name: String,
|
||||
val image: String,
|
||||
) {
|
||||
fun toSAnime() = SAnime.create().apply {
|
||||
title = name
|
||||
url = id
|
||||
thumbnail_url = image
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package eu.kanade.tachiyomi.animeextension.en.asiaflix.dto
|
||||
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class StreamHeadDto(
|
||||
@SerialName("stream_source") val source: String,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class EncryptedResponseDto(val data: String)
|
||||
|
||||
@Serializable
|
||||
data class SourceDto(
|
||||
val source: List<FileDto>,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class FileDto(
|
||||
val file: String,
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user