2023-01-18 05:49:15 +00:00
|
|
|
package com.hexated
|
|
|
|
|
2023-01-21 10:40:41 +00:00
|
|
|
import android.util.Base64
|
2023-01-18 05:49:15 +00:00
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty
|
|
|
|
import com.lagradost.cloudstream3.*
|
|
|
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addAniListId
|
|
|
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addMalId
|
|
|
|
import com.lagradost.cloudstream3.utils.*
|
|
|
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
2023-01-18 06:19:40 +00:00
|
|
|
import org.jsoup.Jsoup
|
2023-01-18 05:49:15 +00:00
|
|
|
import java.net.URI
|
|
|
|
import java.net.URLDecoder
|
|
|
|
|
|
|
|
class Kickassanime : MainAPI() {
|
|
|
|
override var mainUrl = "https://www2.kickassanime.ro"
|
|
|
|
override var name = "Kickassanime"
|
|
|
|
override val hasMainPage = true
|
|
|
|
override var lang = "en"
|
|
|
|
override val hasDownloadSupport = true
|
|
|
|
|
|
|
|
override val supportedTypes = setOf(
|
|
|
|
TvType.Anime,
|
|
|
|
TvType.AnimeMovie,
|
|
|
|
TvType.OVA
|
|
|
|
)
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
private const val kaast = "https://kaast1.com"
|
|
|
|
fun getType(t: String): TvType {
|
|
|
|
return when {
|
|
|
|
t.contains("Ova", true) -> TvType.OVA
|
|
|
|
t.contains("Movie", true) -> TvType.AnimeMovie
|
|
|
|
else -> TvType.Anime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getStatus(t: String): ShowStatus {
|
|
|
|
return when (t) {
|
|
|
|
"Finished Airing" -> ShowStatus.Completed
|
|
|
|
"Currently Airing" -> ShowStatus.Ongoing
|
|
|
|
else -> ShowStatus.Completed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override val mainPage = mainPageOf(
|
|
|
|
"$mainUrl/api/get_anime_list/sub/" to "Sub",
|
|
|
|
"$mainUrl/api/get_anime_list/dub/" to "Dub",
|
|
|
|
)
|
|
|
|
|
|
|
|
override suspend fun getMainPage(
|
|
|
|
page: Int,
|
|
|
|
request: MainPageRequest
|
|
|
|
): HomePageResponse {
|
|
|
|
val home = app.get(request.data + page).parsedSafe<Responses>()?.data?.mapNotNull { media ->
|
|
|
|
media.toSearchResponse()
|
|
|
|
} ?: throw ErrorLoadingException()
|
|
|
|
return newHomePageResponse(request.name, home)
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun getProperAnimeLink(uri: String): String {
|
|
|
|
return when {
|
|
|
|
uri.contains("/episode") -> fixUrl(uri.substringBeforeLast("/"))
|
|
|
|
else -> fixUrl(uri)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun Animes.toSearchResponse(): AnimeSearchResponse? {
|
|
|
|
val href = getProperAnimeLink(this.slug ?: return null)
|
|
|
|
val title = this.name ?: return null
|
|
|
|
val posterUrl = getImageUrl(this.poster)
|
|
|
|
val episode = this.episode?.toIntOrNull()
|
|
|
|
val isDub = this.name.contains("(Dub)")
|
|
|
|
|
|
|
|
return newAnimeSearchResponse(title, href, TvType.Anime) {
|
|
|
|
this.posterUrl = posterUrl
|
|
|
|
addDubStatus(isDub, episode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override suspend fun search(query: String): List<SearchResponse> {
|
|
|
|
val document = app.get("$mainUrl/search?q=$query").document
|
|
|
|
val data = document.selectFirst("script:containsData(appData)")?.data()
|
|
|
|
?.substringAfter("\"animes\":[")?.substringBefore("],")
|
|
|
|
|
|
|
|
return tryParseJson<List<Animes>>("[$data]")?.mapNotNull { media -> media.toSearchResponse() }
|
|
|
|
?: throw ErrorLoadingException()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
override suspend fun load(url: String): LoadResponse? {
|
|
|
|
val document = app.get(url).document
|
|
|
|
|
|
|
|
val res = document.selectFirst("script:containsData(appData)")?.data()
|
|
|
|
?.substringAfter("\"anime\":{")?.substringBefore("},\"wkl\"")?.let {
|
|
|
|
tryParseJson<DetailAnime>("{$it}")
|
|
|
|
} ?: throw ErrorLoadingException()
|
|
|
|
|
|
|
|
val title = res.name ?: return null
|
|
|
|
val trackerTitle = res.en_title.orEmpty().ifEmpty { res.name }.fixTitle()
|
|
|
|
val poster = getImageUrl(res.image)
|
|
|
|
val tags = res.genres?.map { it.name ?: return null }
|
|
|
|
val year = res.startdate?.substringBefore("-")?.toIntOrNull()
|
|
|
|
val status = getStatus(res.status ?: return null)
|
|
|
|
val description = res.description
|
|
|
|
|
|
|
|
val episodes = res.episodes?.mapNotNull { eps ->
|
|
|
|
Episode(fixUrl(eps.slug ?: return@mapNotNull null), episode = eps.num?.toIntOrNull())
|
|
|
|
}?.reversed() ?: emptyList()
|
|
|
|
|
|
|
|
val type = res.type?.substringBefore(",")?.trim()?.let {
|
|
|
|
when (it) {
|
|
|
|
"TV Series" -> "tv"
|
|
|
|
"Ova" -> "ova"
|
|
|
|
"Movie" -> "movie"
|
|
|
|
else -> "tv"
|
|
|
|
}
|
|
|
|
} ?: if (episodes.size == 1) "movie" else "tv"
|
|
|
|
|
|
|
|
val (malId, anilistId, image, cover) = getTracker(trackerTitle, type, year)
|
|
|
|
|
|
|
|
return newAnimeLoadResponse(title, url, getType(type)) {
|
|
|
|
engName = title
|
|
|
|
posterUrl = image ?: poster
|
|
|
|
backgroundPosterUrl = cover ?: image ?: poster
|
|
|
|
this.year = year
|
|
|
|
addEpisodes(DubStatus.Subbed, episodes)
|
|
|
|
showStatus = status
|
|
|
|
plot = description
|
|
|
|
this.tags = tags
|
|
|
|
addMalId(malId)
|
|
|
|
addAniListId(anilistId?.toIntOrNull())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
override suspend fun loadLinks(
|
|
|
|
data: String,
|
|
|
|
isCasting: Boolean,
|
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
|
|
|
callback: (ExtractorLink) -> Unit
|
|
|
|
): Boolean {
|
|
|
|
|
|
|
|
val document = app.get(data).document
|
|
|
|
val sources = document.selectFirst("script:containsData(appData)")?.data()?.let {
|
|
|
|
tryParseJson<Resources>("{${Regex("(\"episode\":.*),\"wkl").find(it)?.groupValues?.get(1)}}")
|
|
|
|
}?.let { server ->
|
|
|
|
listOf(
|
|
|
|
server.episode?.link1,
|
|
|
|
server.ext_servers?.find { it.name == "Vidstreaming" }?.link
|
|
|
|
)
|
|
|
|
}?.filterNotNull()
|
2023-01-21 10:40:41 +00:00
|
|
|
val isDub = data.contains("-dub-")
|
2023-01-18 05:49:15 +00:00
|
|
|
sources?.flatMap {
|
|
|
|
httpsify(it).fixIframe()
|
|
|
|
}?.apmap { (name, iframe) ->
|
|
|
|
val sourceName = fixTitle(name ?: this.name)
|
|
|
|
val link = httpsify(iframe ?: return@apmap null)
|
|
|
|
when {
|
2023-01-18 06:19:40 +00:00
|
|
|
name?.contains(Regex("(?i)(KICKASSANIMEV2|ORIGINAL-QUALITY-V2|BETA-SERVER|DAILYMOTION)")) == true -> {
|
|
|
|
invokeAlpha(sourceName, link, subtitleCallback, callback)
|
2023-01-18 05:49:15 +00:00
|
|
|
}
|
|
|
|
name?.contains(Regex("(?i)(BETAPLAYER)")) == true -> {
|
|
|
|
invokeBeta(sourceName, link, callback)
|
|
|
|
}
|
|
|
|
name?.contains(Regex("(?i)(MAVERICKKI)")) == true -> {
|
|
|
|
invokeMave(sourceName, link, subtitleCallback, callback)
|
|
|
|
}
|
|
|
|
name?.contains(Regex("(?i)(gogo)")) == true -> {
|
|
|
|
invokeGogo(link, subtitleCallback, callback)
|
|
|
|
}
|
2023-01-21 10:40:41 +00:00
|
|
|
name?.contains(Regex("(?i)(SAPPHIRE-DUCK)")) == true -> {
|
|
|
|
invokeSapphire(link, isDub, subtitleCallback, callback)
|
|
|
|
}
|
|
|
|
else -> return@apmap null
|
2023-01-18 05:49:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
private suspend fun invokeAlpha(
|
|
|
|
name: String,
|
|
|
|
url: String? = null,
|
2023-01-18 06:19:40 +00:00
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
2023-01-18 05:49:15 +00:00
|
|
|
callback: (ExtractorLink) -> Unit
|
|
|
|
) {
|
|
|
|
val fixUrl = url?.replace(Regex("(player|embed)\\.php"), "pref.php")
|
2023-01-18 06:19:40 +00:00
|
|
|
val data = app.get(
|
2023-01-18 05:49:15 +00:00
|
|
|
fixUrl ?: return,
|
|
|
|
referer = kaast
|
|
|
|
).document.selectFirst("script:containsData(Base64.decode)")?.data()
|
2023-01-18 06:19:40 +00:00
|
|
|
?.substringAfter("Base64.decode(\"")?.substringBefore("\")")?.let { base64Decode(it) } ?: return
|
|
|
|
|
2023-01-21 10:40:41 +00:00
|
|
|
if(name == "DAILYMOTION") {
|
2023-01-18 06:19:40 +00:00
|
|
|
val iframe = Jsoup.parse(data).select("iframe").attr("src")
|
|
|
|
loadExtractor(iframe, mainUrl, subtitleCallback, callback)
|
|
|
|
} else {
|
|
|
|
val json = data.substringAfter("sources: [").substringBefore("],")
|
|
|
|
tryParseJson<List<AlphaSources>>("[$json]")?.map {
|
2023-01-18 05:49:15 +00:00
|
|
|
callback.invoke(
|
|
|
|
ExtractorLink(
|
|
|
|
name,
|
|
|
|
name,
|
|
|
|
it.file ?: return@map null,
|
|
|
|
url,
|
|
|
|
getQualityFromName(it.label)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
2023-01-18 06:19:40 +00:00
|
|
|
}
|
|
|
|
|
2023-01-18 05:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private suspend fun invokeBeta(
|
|
|
|
name: String,
|
|
|
|
url: String? = null,
|
|
|
|
callback: (ExtractorLink) -> Unit
|
|
|
|
) {
|
|
|
|
app.get(
|
|
|
|
url ?: return,
|
|
|
|
referer = kaast
|
|
|
|
).document.selectFirst("script:containsData(JSON.parse)")?.data()
|
|
|
|
?.substringAfter("JSON.parse('")?.substringBeforeLast("')")
|
|
|
|
?.let { tryParseJson<List<BetaSources>>(it) }?.map {
|
|
|
|
callback.invoke(
|
|
|
|
ExtractorLink(
|
|
|
|
name,
|
|
|
|
name,
|
|
|
|
it.file ?: return@map null,
|
|
|
|
getBaseUrl(url),
|
|
|
|
getQualityFromName(it.label)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private suspend fun invokeMave(
|
|
|
|
name: String,
|
|
|
|
url: String? = null,
|
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
|
|
|
callback: (ExtractorLink) -> Unit,
|
|
|
|
) {
|
|
|
|
val fixUrl = url?.replace("/embed/", "/api/source/") ?: return
|
|
|
|
val base = getBaseUrl(url)
|
|
|
|
val data = app.get(fixUrl, referer = url).parsedSafe<MaveSources>()
|
|
|
|
|
|
|
|
M3u8Helper.generateM3u8(
|
|
|
|
name,
|
|
|
|
fixUrl(data?.hls ?: return, base),
|
|
|
|
url
|
|
|
|
).forEach(callback)
|
|
|
|
|
|
|
|
data.subtitles?.map { sub ->
|
|
|
|
subtitleCallback.invoke(
|
|
|
|
SubtitleFile(
|
|
|
|
sub.name ?: "",
|
|
|
|
fixUrl(sub.src ?: return@map null, base)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-01-21 10:40:41 +00:00
|
|
|
private suspend fun invokeSapphire(
|
|
|
|
url: String? = null,
|
|
|
|
isDub: Boolean = false,
|
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
|
|
|
callback: (ExtractorLink) -> Unit,
|
|
|
|
) {
|
|
|
|
var data = app.get("$url&action=config", referer = url).text
|
|
|
|
for(i in 1..20) {
|
|
|
|
data = data.decodeBase64()
|
|
|
|
if(data.startsWith("{")) break
|
|
|
|
}
|
|
|
|
tryParseJson<SapphireSources>(data).let { res ->
|
|
|
|
res?.streams?.filter { it.format == "adaptive_hls" }?.map { source ->
|
|
|
|
val name = if(isDub) source.audio_lang else source.hardsub_lang.orEmpty().ifEmpty { "raw" }
|
|
|
|
M3u8Helper.generateM3u8(
|
|
|
|
"Crunchyroll [$name]",
|
|
|
|
source.url ?: return@map null,
|
|
|
|
"https://static.crunchyroll.com/",
|
|
|
|
).forEach(callback)
|
|
|
|
}
|
|
|
|
res?.subtitles?.map { sub ->
|
|
|
|
subtitleCallback.invoke(
|
|
|
|
SubtitleFile(
|
|
|
|
sub.language ?: "",
|
|
|
|
sub.url ?: return@map null
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-18 05:49:15 +00:00
|
|
|
private suspend fun invokeGogo(
|
|
|
|
link: String,
|
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
|
|
|
callback: (ExtractorLink) -> Unit
|
|
|
|
) {
|
|
|
|
val iframe = app.get(link)
|
|
|
|
val iframeDoc = iframe.document
|
|
|
|
argamap({
|
|
|
|
iframeDoc.select(".list-server-items > .linkserver")
|
|
|
|
.forEach { element ->
|
|
|
|
val status = element.attr("data-status") ?: return@forEach
|
|
|
|
if (status != "1") return@forEach
|
|
|
|
val extractorData = element.attr("data-video") ?: return@forEach
|
|
|
|
loadExtractor(extractorData, iframe.url, subtitleCallback, callback)
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
val iv = "3134003223491201"
|
|
|
|
val secretKey = "37911490979715163134003223491201"
|
|
|
|
val secretDecryptKey = "54674138327930866480207815084989"
|
|
|
|
GogoExtractor.extractVidstream(
|
|
|
|
iframe.url,
|
|
|
|
"Gogoanime",
|
|
|
|
callback,
|
|
|
|
iv,
|
|
|
|
secretKey,
|
|
|
|
secretDecryptKey,
|
|
|
|
isUsingAdaptiveKeys = false,
|
|
|
|
isUsingAdaptiveData = true,
|
|
|
|
iframeDocument = iframeDoc
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private suspend fun String.fixIframe(): List<Pair<String?, String?>> {
|
|
|
|
return when {
|
|
|
|
this.startsWith("$kaast/dust/") -> {
|
|
|
|
val document = app.get(this).document
|
|
|
|
document.selectFirst("script:containsData(sources =)")?.data()
|
|
|
|
?.substringAfter("sources = [")?.substringBefore("];")?.let {
|
|
|
|
tryParseJson<List<Iframe>>("[$it]")?.map { source ->
|
|
|
|
source.name to source.src
|
|
|
|
}
|
|
|
|
} ?: emptyList()
|
|
|
|
}
|
|
|
|
this.startsWith("$kaast/axplayer/") -> {
|
|
|
|
val source = decode(
|
|
|
|
this.substringAfter("&data=").substringBefore("&vref=")
|
|
|
|
)
|
|
|
|
listOf(URI(source).host.substringBefore(".") to source)
|
|
|
|
}
|
|
|
|
else -> {
|
|
|
|
emptyList()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-21 10:40:41 +00:00
|
|
|
private fun String.decodeBase64(): String {
|
|
|
|
return Base64.decode(this, Base64.DEFAULT).toString(Charsets.UTF_8)
|
|
|
|
}
|
|
|
|
|
2023-01-18 05:49:15 +00:00
|
|
|
private fun decode(input: String): String =
|
|
|
|
URLDecoder.decode(input, "utf-8").replace(" ", "%20")
|
|
|
|
|
|
|
|
private fun String.fixTitle(): String {
|
|
|
|
return this.replace("(Dub)", "").replace("(Uncensored)", "").trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun getImageUrl(link: String?): String? {
|
|
|
|
if (link == null) return null
|
|
|
|
return if (link.startsWith(mainUrl)) link else "$mainUrl/uploads/$link"
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun getBaseUrl(url: String): String {
|
|
|
|
return URI(url).let {
|
|
|
|
"${it.scheme}://${it.host}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun fixUrl(url: String, domain: String): String {
|
|
|
|
if (url.startsWith("http")) {
|
|
|
|
return url
|
|
|
|
}
|
|
|
|
if (url.isEmpty()) {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
val startsWithNoHttp = url.startsWith("//")
|
|
|
|
if (startsWithNoHttp) {
|
|
|
|
return "https:$url"
|
|
|
|
} else {
|
|
|
|
if (url.startsWith('/')) {
|
|
|
|
return domain + url
|
|
|
|
}
|
|
|
|
return "$domain/$url"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private suspend fun getTracker(title: String?, type: String?, year: Int?): Tracker {
|
|
|
|
val res = app.get("https://api.consumet.org/meta/anilist/$title")
|
|
|
|
.parsedSafe<AniSearch>()?.results?.find { media ->
|
|
|
|
(media.title?.english.equals(title, true) || media.title?.romaji.equals(
|
|
|
|
title,
|
|
|
|
true
|
|
|
|
)) || (media.type.equals(type, true) && media.releaseDate == year)
|
|
|
|
}
|
|
|
|
return Tracker(res?.malId, res?.aniId, res?.image, res?.cover)
|
|
|
|
}
|
|
|
|
|
|
|
|
data class Tracker(
|
|
|
|
val malId: Int? = null,
|
|
|
|
val aniId: String? = null,
|
|
|
|
val image: String? = null,
|
|
|
|
val cover: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Title(
|
|
|
|
@JsonProperty("romaji") val romaji: String? = null,
|
|
|
|
@JsonProperty("english") val english: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Results(
|
|
|
|
@JsonProperty("id") val aniId: String? = null,
|
|
|
|
@JsonProperty("malId") val malId: Int? = null,
|
|
|
|
@JsonProperty("title") val title: Title? = null,
|
|
|
|
@JsonProperty("releaseDate") val releaseDate: Int? = null,
|
|
|
|
@JsonProperty("type") val type: String? = null,
|
|
|
|
@JsonProperty("image") val image: String? = null,
|
|
|
|
@JsonProperty("cover") val cover: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class AniSearch(
|
|
|
|
@JsonProperty("results") val results: ArrayList<Results>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Genres(
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("slug") val slug: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Episodes(
|
|
|
|
@JsonProperty("epnum") val epnum: String? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("slug") val slug: String? = null,
|
|
|
|
@JsonProperty("createddate") val createddate: String? = null,
|
|
|
|
@JsonProperty("num") val num: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class DetailAnime(
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("en_title") val en_title: String? = null,
|
|
|
|
@JsonProperty("slug") val slug: String? = null,
|
|
|
|
@JsonProperty("description") val description: String? = null,
|
|
|
|
@JsonProperty("status") val status: String? = null,
|
|
|
|
@JsonProperty("image") val image: String? = null,
|
|
|
|
@JsonProperty("startdate") val startdate: String? = null,
|
|
|
|
@JsonProperty("broadcast_day") val broadcast_day: String? = null,
|
|
|
|
@JsonProperty("broadcast_time") val broadcast_time: String? = null,
|
|
|
|
@JsonProperty("type") val type: String? = null,
|
|
|
|
@JsonProperty("episodes") val episodes: ArrayList<Episodes>? = null,
|
|
|
|
@JsonProperty("genres") val genres: ArrayList<Genres>? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Animes(
|
|
|
|
@JsonProperty("episode") val episode: String? = null,
|
|
|
|
@JsonProperty("slug") val slug: String? = null,
|
|
|
|
@JsonProperty("type") val type: String? = null,
|
|
|
|
@JsonProperty("episode_date") val episode_date: String? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("poster") val poster: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Responses(
|
|
|
|
@JsonProperty("data") val data: ArrayList<Animes>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Iframe(
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("src") val src: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class ExtServers(
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("link") val link: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Eps(
|
|
|
|
@JsonProperty("link1") val link1: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Resources(
|
|
|
|
@JsonProperty("episode") val episode: Eps? = null,
|
|
|
|
@JsonProperty("ext_servers") val ext_servers: ArrayList<ExtServers>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class BetaSources(
|
|
|
|
@JsonProperty("file") val file: String? = null,
|
|
|
|
@JsonProperty("label") val label: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class AlphaSources(
|
|
|
|
@JsonProperty("file") val file: String? = null,
|
|
|
|
@JsonProperty("label") val label: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class MaveSubtitles(
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("src") val src: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class MaveSources(
|
|
|
|
@JsonProperty("hls") val hls: String? = null,
|
2023-01-21 10:40:41 +00:00
|
|
|
@JsonProperty("subtitles") val subtitles: ArrayList<MaveSubtitles>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class SapphireSubtitles(
|
|
|
|
@JsonProperty("language") val language: String? = null,
|
|
|
|
@JsonProperty("url") val url: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class SapphireStreams(
|
|
|
|
@JsonProperty("format") val format: String? = null,
|
|
|
|
@JsonProperty("audio_lang") val audio_lang: String? = null,
|
|
|
|
@JsonProperty("hardsub_lang") val hardsub_lang: String? = null,
|
|
|
|
@JsonProperty("url") val url: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class SapphireSources(
|
|
|
|
@JsonProperty("streams") val streams: ArrayList<SapphireStreams>? = arrayListOf(),
|
|
|
|
@JsonProperty("subtitles") val subtitles: ArrayList<SapphireSubtitles>? = arrayListOf(),
|
2023-01-18 05:49:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
}
|