feat(src/all): New Source: Torrentio (#2844)
This commit is contained in:
parent
c847044f4f
commit
cdf76d8e86
22
src/all/torrentioanime/AndroidManifest.xml
Normal file
22
src/all/torrentioanime/AndroidManifest.xml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<application>
|
||||||
|
<activity
|
||||||
|
android:name=".all.torrentioanime.TorrentioUrlActivity"
|
||||||
|
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="torrentio.strem.fun"
|
||||||
|
android:pathPattern="/anime/..*"
|
||||||
|
android:scheme="https" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
</application>
|
||||||
|
</manifest>
|
8
src/all/torrentioanime/build.gradle
Normal file
8
src/all/torrentioanime/build.gradle
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Torrentio Anime (Torrent / Debrid)'
|
||||||
|
extClass = '.Torrentio'
|
||||||
|
extVersionCode = 1
|
||||||
|
containsNsfw = false
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/all/torrentioanime/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/all/torrentioanime/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
src/all/torrentioanime/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/all/torrentioanime/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
BIN
src/all/torrentioanime/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentioanime/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
src/all/torrentioanime/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentioanime/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
BIN
src/all/torrentioanime/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentioanime/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.0 KiB |
@ -0,0 +1,855 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.all.torrentioanime
|
||||||
|
|
||||||
|
import android.app.Application
|
||||||
|
import android.content.SharedPreferences
|
||||||
|
import android.os.Handler
|
||||||
|
import android.os.Looper
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.preference.EditTextPreference
|
||||||
|
import androidx.preference.ListPreference
|
||||||
|
import androidx.preference.MultiSelectListPreference
|
||||||
|
import androidx.preference.PreferenceScreen
|
||||||
|
import eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto.AnilistMeta
|
||||||
|
import eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto.AnilistMetaLatest
|
||||||
|
import eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto.DetailsById
|
||||||
|
import eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto.EpisodeList
|
||||||
|
import eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto.StreamDataTorrent
|
||||||
|
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.network.GET
|
||||||
|
import eu.kanade.tachiyomi.network.POST
|
||||||
|
import eu.kanade.tachiyomi.network.awaitSuccess
|
||||||
|
import kotlinx.serialization.json.Json
|
||||||
|
import okhttp3.FormBody
|
||||||
|
import okhttp3.Request
|
||||||
|
import okhttp3.Response
|
||||||
|
import uy.kohesive.injekt.Injekt
|
||||||
|
import uy.kohesive.injekt.api.get
|
||||||
|
import uy.kohesive.injekt.injectLazy
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() {
|
||||||
|
|
||||||
|
override val name = "Torrentio Anime (Torrent / Debrid)"
|
||||||
|
|
||||||
|
override val baseUrl = "https://torrentio.strem.fun"
|
||||||
|
|
||||||
|
override val lang = "all"
|
||||||
|
|
||||||
|
override val supportsLatest = true
|
||||||
|
|
||||||
|
private val json: Json by injectLazy()
|
||||||
|
|
||||||
|
private val preferences: SharedPreferences by lazy {
|
||||||
|
Injekt.get<Application>().getSharedPreferences("source_$id", 0x0000)
|
||||||
|
}
|
||||||
|
|
||||||
|
private val context = Injekt.get<Application>()
|
||||||
|
private val handler by lazy { Handler(Looper.getMainLooper()) }
|
||||||
|
|
||||||
|
// ============================== Anilist API Request ===================
|
||||||
|
private fun makeGraphQLRequest(query: String, variables: String): Request {
|
||||||
|
val requestBody = FormBody.Builder()
|
||||||
|
.add("query", query)
|
||||||
|
.add("variables", variables)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
return POST("https://graphql.anilist.co", body = requestBody)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================== Anilist Meta List ======================
|
||||||
|
private fun anilistQuery(): String {
|
||||||
|
return """
|
||||||
|
query (${"$"}page: Int, ${"$"}perPage: Int, ${"$"}sort: [MediaSort], ${"$"}search: String) {
|
||||||
|
Page(page: ${"$"}page, perPage: ${"$"}perPage) {
|
||||||
|
pageInfo{
|
||||||
|
currentPage
|
||||||
|
hasNextPage
|
||||||
|
}
|
||||||
|
media(type: ANIME, sort: ${"$"}sort, search: ${"$"}search, status_in:[RELEASING,FINISHED]) {
|
||||||
|
id
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
coverImage {
|
||||||
|
extraLarge
|
||||||
|
large
|
||||||
|
}
|
||||||
|
description
|
||||||
|
status
|
||||||
|
tags{
|
||||||
|
name
|
||||||
|
}
|
||||||
|
genres
|
||||||
|
studios {
|
||||||
|
nodes {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
countryOfOrigin
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun anilistLatestQuery(): String {
|
||||||
|
return """
|
||||||
|
query (${"$"}page: Int, ${"$"}perPage: Int, ${"$"}sort: [AiringSort]) {
|
||||||
|
Page(page: ${"$"}page, perPage: ${"$"}perPage) {
|
||||||
|
pageInfo {
|
||||||
|
currentPage
|
||||||
|
hasNextPage
|
||||||
|
}
|
||||||
|
airingSchedules(
|
||||||
|
airingAt_greater: 0
|
||||||
|
airingAt_lesser: ${System.currentTimeMillis() / 1000 - 10000}
|
||||||
|
sort: ${"$"}sort
|
||||||
|
) {
|
||||||
|
media{
|
||||||
|
id
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
coverImage {
|
||||||
|
extraLarge
|
||||||
|
large
|
||||||
|
}
|
||||||
|
description
|
||||||
|
status
|
||||||
|
tags{
|
||||||
|
name
|
||||||
|
}
|
||||||
|
genres
|
||||||
|
studios {
|
||||||
|
nodes {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
countryOfOrigin
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun parseSearchJson(jsonLine: String?, isLatestQuery: Boolean = false): AnimesPage {
|
||||||
|
val jsonData = jsonLine ?: return AnimesPage(emptyList(), false)
|
||||||
|
val metaData: Any = if (!isLatestQuery) {
|
||||||
|
json.decodeFromString<AnilistMeta>(jsonData)
|
||||||
|
} else {
|
||||||
|
json.decodeFromString<AnilistMetaLatest>(jsonData)
|
||||||
|
}
|
||||||
|
|
||||||
|
val mediaList = when (metaData) {
|
||||||
|
is AnilistMeta -> metaData.data?.page?.media.orEmpty()
|
||||||
|
is AnilistMetaLatest -> metaData.data?.page?.airingSchedules.orEmpty().map { it.media }
|
||||||
|
else -> emptyList()
|
||||||
|
}
|
||||||
|
|
||||||
|
val hasNextPage: Boolean = when (metaData) {
|
||||||
|
is AnilistMeta -> metaData.data?.page?.pageInfo?.hasNextPage ?: false
|
||||||
|
is AnilistMetaLatest -> metaData.data?.page?.pageInfo?.hasNextPage ?: false
|
||||||
|
else -> false
|
||||||
|
}
|
||||||
|
|
||||||
|
val animeList = mediaList
|
||||||
|
.filterNot { (it?.countryOfOrigin == "CN" || it?.isAdult == true) && isLatestQuery }
|
||||||
|
.map { media ->
|
||||||
|
val anime = SAnime.create().apply {
|
||||||
|
url = media?.id.toString()
|
||||||
|
title = when (preferences.getString(PREF_TITLE_KEY, "romaji")) {
|
||||||
|
"romaji" -> media?.title?.romaji.toString()
|
||||||
|
"english" -> (media?.title?.english?.takeIf { it.isNotBlank() } ?: media?.title?.romaji).toString()
|
||||||
|
"native" -> media?.title?.native.toString()
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
thumbnail_url = media?.coverImage?.extraLarge
|
||||||
|
description = media?.description
|
||||||
|
?.replace(Regex("<br><br>"), "\n")
|
||||||
|
?.replace(Regex("<.*?>"), "")
|
||||||
|
?: "No Description"
|
||||||
|
|
||||||
|
status = when (media?.status) {
|
||||||
|
"RELEASING" -> SAnime.ONGOING
|
||||||
|
"FINISHED" -> SAnime.COMPLETED
|
||||||
|
"HIATUS" -> SAnime.ON_HIATUS
|
||||||
|
"NOT_YET_RELEASED" -> SAnime.LICENSED
|
||||||
|
else -> SAnime.UNKNOWN
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extracting tags
|
||||||
|
val tagsList = media?.tags?.mapNotNull { it.name }.orEmpty()
|
||||||
|
// Extracting genres
|
||||||
|
val genresList = media?.genres.orEmpty()
|
||||||
|
genre = (tagsList + genresList).toSet().sorted().joinToString()
|
||||||
|
|
||||||
|
// Extracting studios
|
||||||
|
val studiosList = media?.studios?.nodes?.mapNotNull { it.name }.orEmpty()
|
||||||
|
author = studiosList.sorted().joinToString()
|
||||||
|
|
||||||
|
initialized = true
|
||||||
|
}
|
||||||
|
anime
|
||||||
|
}
|
||||||
|
|
||||||
|
return AnimesPage(animeList, hasNextPage)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================== Popular ===============================
|
||||||
|
override fun popularAnimeRequest(page: Int): Request {
|
||||||
|
val variables = """
|
||||||
|
{
|
||||||
|
"page": $page,
|
||||||
|
"perPage": 30,
|
||||||
|
"sort": "TRENDING_DESC"
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
|
||||||
|
return makeGraphQLRequest(anilistQuery(), variables)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||||
|
val jsonData = response.body.string()
|
||||||
|
return parseSearchJson(jsonData) }
|
||||||
|
|
||||||
|
// =============================== Latest ===============================
|
||||||
|
override fun latestUpdatesRequest(page: Int): Request {
|
||||||
|
val variables = """
|
||||||
|
{
|
||||||
|
"page": $page,
|
||||||
|
"perPage": 30,
|
||||||
|
"sort": "TIME_DESC"
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
|
||||||
|
return makeGraphQLRequest(anilistLatestQuery(), variables)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun latestUpdatesParse(response: Response): AnimesPage {
|
||||||
|
val jsonData = response.body.string()
|
||||||
|
return parseSearchJson(jsonData, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
// =============================== Search ===============================
|
||||||
|
override suspend fun getSearchAnime(page: Int, query: String, filters: AnimeFilterList): AnimesPage {
|
||||||
|
return if (query.startsWith(PREFIX_SEARCH)) { // URL intent handler
|
||||||
|
val id = query.removePrefix(PREFIX_SEARCH)
|
||||||
|
client.newCall(GET("$baseUrl/anime/$id"))
|
||||||
|
.awaitSuccess()
|
||||||
|
.use(::searchAnimeByIdParse)
|
||||||
|
} else {
|
||||||
|
super.getSearchAnime(page, query, filters)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun searchAnimeByIdParse(response: Response): AnimesPage {
|
||||||
|
val details = animeDetailsParse(response)
|
||||||
|
return AnimesPage(listOf(details), false)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||||
|
val variables = """
|
||||||
|
{
|
||||||
|
"page": $page,
|
||||||
|
"perPage": 30,
|
||||||
|
"sort": "POPULARITY_DESC",
|
||||||
|
"search": "$query"
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
|
||||||
|
return makeGraphQLRequest(anilistQuery(), variables)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun searchAnimeParse(response: Response) = popularAnimeParse(response)
|
||||||
|
// =========================== Anime Details ============================
|
||||||
|
|
||||||
|
override fun animeDetailsParse(response: Response): SAnime = throw UnsupportedOperationException()
|
||||||
|
|
||||||
|
override suspend fun getAnimeDetails(anime: SAnime): SAnime {
|
||||||
|
val query = """
|
||||||
|
query(${"$"}id: Int){
|
||||||
|
Media(id: ${"$"}id){
|
||||||
|
id
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
coverImage {
|
||||||
|
extraLarge
|
||||||
|
large
|
||||||
|
}
|
||||||
|
description
|
||||||
|
status
|
||||||
|
tags{
|
||||||
|
name
|
||||||
|
}
|
||||||
|
genres
|
||||||
|
studios {
|
||||||
|
nodes {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
countryOfOrigin
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
}
|
||||||
|
""".trimIndent()
|
||||||
|
|
||||||
|
val variables = """{"id": ${anime.url}}"""
|
||||||
|
|
||||||
|
val metaData = runCatching {
|
||||||
|
json.decodeFromString<DetailsById>(client.newCall(makeGraphQLRequest(query, variables)).execute().body.string())
|
||||||
|
}.getOrNull()?.data?.media
|
||||||
|
|
||||||
|
anime.title = metaData?.title?.let { title ->
|
||||||
|
when (preferences.getString(PREF_TITLE_KEY, "romaji")) {
|
||||||
|
"romaji" -> title.romaji
|
||||||
|
"english" -> (metaData.title.english?.takeIf { it.isNotBlank() } ?: metaData.title.romaji).toString()
|
||||||
|
"native" -> title.native
|
||||||
|
else -> ""
|
||||||
|
}
|
||||||
|
} ?: ""
|
||||||
|
|
||||||
|
anime.thumbnail_url = metaData?.coverImage?.extraLarge
|
||||||
|
anime.description = metaData?.description
|
||||||
|
?.replace(Regex("<br><br>"), "\n")
|
||||||
|
?.replace(Regex("<.*?>"), "")
|
||||||
|
?: "No Description"
|
||||||
|
|
||||||
|
anime.status = when (metaData?.status) {
|
||||||
|
"RELEASING" -> SAnime.ONGOING
|
||||||
|
"FINISHED" -> SAnime.COMPLETED
|
||||||
|
"HIATUS" -> SAnime.ON_HIATUS
|
||||||
|
"NOT_YET_RELEASED" -> SAnime.LICENSED
|
||||||
|
else -> SAnime.UNKNOWN
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extracting tags, genres, and studios
|
||||||
|
val tagsList = metaData?.tags?.mapNotNull { it.name } ?: emptyList()
|
||||||
|
val genresList = metaData?.genres ?: emptyList()
|
||||||
|
val studiosList = metaData?.studios?.nodes?.mapNotNull { it.name } ?: emptyList()
|
||||||
|
|
||||||
|
anime.genre = (tagsList + genresList).toSet().sorted().joinToString()
|
||||||
|
anime.author = studiosList.sorted().joinToString()
|
||||||
|
|
||||||
|
return anime
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================== Episodes ==============================
|
||||||
|
override fun episodeListRequest(anime: SAnime): Request {
|
||||||
|
return GET("https://anime-kitsu.strem.fun/meta/series/anilist%3A${anime.url}.json")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||||
|
val responseString = response.body.string()
|
||||||
|
val episodeList = json.decodeFromString<EpisodeList>(responseString)
|
||||||
|
|
||||||
|
return when (episodeList.meta?.type) {
|
||||||
|
"series" -> {
|
||||||
|
episodeList.meta.videos?.filter { video ->
|
||||||
|
(video.released?.let { parseDate(it) } ?: 0L) <= System.currentTimeMillis()
|
||||||
|
}?.map { video ->
|
||||||
|
SEpisode.create().apply {
|
||||||
|
episode_number = video.episode?.toFloat() ?: 0.0F
|
||||||
|
url = "/stream/series/${video.videoId}.json"
|
||||||
|
date_upload = video.released?.let { parseDate(it) } ?: 0L
|
||||||
|
name = "Episode ${video.episode} : ${
|
||||||
|
video.title?.removePrefix("Episode ")
|
||||||
|
?.replaceFirst("\\d+\\s*".toRegex(), "")
|
||||||
|
?.trim()
|
||||||
|
}"
|
||||||
|
}
|
||||||
|
}.orEmpty().reversed()
|
||||||
|
}
|
||||||
|
|
||||||
|
"movie" -> {
|
||||||
|
// Handle movie response
|
||||||
|
val movieId = episodeList.meta.kitsuId?.substringAfterLast(":")?.toIntOrNull() ?: 0
|
||||||
|
listOf(
|
||||||
|
SEpisode.create().apply {
|
||||||
|
episode_number = 1.0F
|
||||||
|
url = "/stream/movie/$movieId.json"
|
||||||
|
name = "Movie"
|
||||||
|
},
|
||||||
|
).reversed()
|
||||||
|
}
|
||||||
|
|
||||||
|
else -> emptyList()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private fun parseDate(dateStr: String): Long {
|
||||||
|
return runCatching { DATE_FORMATTER.parse(dateStr)?.time }
|
||||||
|
.getOrNull() ?: 0L
|
||||||
|
}
|
||||||
|
|
||||||
|
// ============================ Video Links =============================
|
||||||
|
|
||||||
|
override fun videoListRequest(episode: SEpisode): Request {
|
||||||
|
val mainURL = buildString {
|
||||||
|
append("$baseUrl/")
|
||||||
|
|
||||||
|
val appendQueryParam: (String, Set<String>?) -> Unit = { key, values ->
|
||||||
|
values?.takeIf { it.isNotEmpty() }?.let {
|
||||||
|
append("$key=${it.filter(String::isNotBlank).joinToString(",")}|")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
appendQueryParam("providers", preferences.getStringSet(PREF_PROVIDER_KEY, PREF_PROVIDERS_DEFAULT))
|
||||||
|
appendQueryParam("language", preferences.getStringSet(PREF_LANG_KEY, PREF_LANG_DEFAULT))
|
||||||
|
appendQueryParam("qualityfilter", preferences.getStringSet(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT))
|
||||||
|
|
||||||
|
val sortKey = preferences.getString(PREF_SORT_KEY, "quality")
|
||||||
|
appendQueryParam("sort", sortKey?.let { setOf(it) })
|
||||||
|
|
||||||
|
val token = preferences.getString(PREF_TOKEN_KEY, null)
|
||||||
|
val debridProvider = preferences.getString(PREF_DEBRID_KEY, null)
|
||||||
|
|
||||||
|
when {
|
||||||
|
token.isNullOrBlank() && debridProvider != "none" -> {
|
||||||
|
handler.post {
|
||||||
|
context.let {
|
||||||
|
Toast.makeText(
|
||||||
|
it,
|
||||||
|
"Kindly input the token in the extension settings.",
|
||||||
|
Toast.LENGTH_LONG,
|
||||||
|
).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw UnsupportedOperationException()
|
||||||
|
}
|
||||||
|
!token.isNullOrBlank() && debridProvider != "none" -> append("$debridProvider=$token|")
|
||||||
|
}
|
||||||
|
append(episode.url)
|
||||||
|
}.removeSuffix("|")
|
||||||
|
return GET(mainURL)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun videoListParse(response: Response): List<Video> {
|
||||||
|
val responseString = response.body.string()
|
||||||
|
val streamList = json.decodeFromString<StreamDataTorrent>(responseString)
|
||||||
|
val debridProvider = preferences.getString(PREF_DEBRID_KEY, null)
|
||||||
|
|
||||||
|
val animeTrackers = """http://nyaa.tracker.wf:7777/announce,
|
||||||
|
http://anidex.moe:6969/announce,http://tracker.anirena.com:80/announce,
|
||||||
|
udp://tracker.uw0.xyz:6969/announce,
|
||||||
|
http://share.camoe.cn:8080/announce,
|
||||||
|
http://t.nyaatracker.com:80/announce,
|
||||||
|
udp://47.ip-51-68-199.eu:6969/announce,
|
||||||
|
udp://9.rarbg.me:2940,
|
||||||
|
udp://9.rarbg.to:2820,
|
||||||
|
udp://exodus.desync.com:6969/announce,
|
||||||
|
udp://explodie.org:6969/announce,
|
||||||
|
udp://ipv4.tracker.harry.lu:80/announce,
|
||||||
|
udp://open.stealth.si:80/announce,
|
||||||
|
udp://opentor.org:2710/announce,
|
||||||
|
udp://opentracker.i2p.rocks:6969/announce,
|
||||||
|
udp://retracker.lanta-net.ru:2710/announce,
|
||||||
|
udp://tracker.cyberia.is:6969/announce,
|
||||||
|
udp://tracker.dler.org:6969/announce,
|
||||||
|
udp://tracker.ds.is:6969/announce,
|
||||||
|
udp://tracker.internetwarriors.net:1337,
|
||||||
|
udp://tracker.openbittorrent.com:6969/announce,
|
||||||
|
udp://tracker.opentrackr.org:1337/announce,
|
||||||
|
udp://tracker.tiny-vps.com:6969/announce,
|
||||||
|
udp://tracker.torrent.eu.org:451/announce,
|
||||||
|
udp://valakas.rollo.dnsabr.com:2710/announce,
|
||||||
|
udp://www.torrent.eu.org:451/announce
|
||||||
|
""".trimIndent()
|
||||||
|
|
||||||
|
return streamList.streams?.map { stream ->
|
||||||
|
val urlOrHash =
|
||||||
|
if (debridProvider == "none") {
|
||||||
|
val trackerList = animeTrackers.split(",").map { it.trim() }.filter { it.isNotBlank() }.joinToString("&tr=")
|
||||||
|
"magnet:?xt=urn:btih:${stream.infoHash}&dn=${stream.infoHash}&tr=$trackerList&index=${stream.fileIdx}"
|
||||||
|
} else stream.url ?: ""
|
||||||
|
Video(urlOrHash, stream.title ?: "", urlOrHash)
|
||||||
|
}.orEmpty()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun setupPreferenceScreen(screen: PreferenceScreen) {
|
||||||
|
// Debrid provider
|
||||||
|
ListPreference(screen.context).apply {
|
||||||
|
key = PREF_DEBRID_KEY
|
||||||
|
title = "Debrid Provider"
|
||||||
|
entries = PREF_DEBRID_ENTRIES
|
||||||
|
entryValues = PREF_DEBRID_VALUES
|
||||||
|
setDefaultValue("none")
|
||||||
|
summary = "Select 'None' to use torrents. If you choose a Debrid provider, please enter your token key."
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
// Token
|
||||||
|
EditTextPreference(screen.context).apply {
|
||||||
|
key = PREF_TOKEN_KEY
|
||||||
|
title = "Token"
|
||||||
|
setDefaultValue(PREF_TOKEN_DEFAULT)
|
||||||
|
summary = PREF_TOKEN_SUMMARY
|
||||||
|
|
||||||
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
|
runCatching {
|
||||||
|
val value = (newValue as String).trim().ifBlank { PREF_TOKEN_DEFAULT }
|
||||||
|
Toast.makeText(screen.context, "Restart Aniyomi to apply new setting.", Toast.LENGTH_LONG).show()
|
||||||
|
preferences.edit().putString(key, value).commit()
|
||||||
|
}.getOrDefault(false)
|
||||||
|
}
|
||||||
|
}.also(screen::addPreference)
|
||||||
|
|
||||||
|
// Provider
|
||||||
|
MultiSelectListPreference(screen.context).apply {
|
||||||
|
key = PREF_PROVIDER_KEY
|
||||||
|
title = "Enable/Disable Providers"
|
||||||
|
entries = PREF_PROVIDERS
|
||||||
|
entryValues = PREF_PROVIDERS_VALUE
|
||||||
|
setDefaultValue(PREF_PROVIDERS_DEFAULT)
|
||||||
|
|
||||||
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
preferences.edit().putStringSet(key, newValue as Set<String>).commit()
|
||||||
|
}
|
||||||
|
}.also(screen::addPreference)
|
||||||
|
|
||||||
|
// Exclude Qualities
|
||||||
|
MultiSelectListPreference(screen.context).apply {
|
||||||
|
key = PREF_QUALITY_KEY
|
||||||
|
title = "Exclude Qualities/Resolutions"
|
||||||
|
entries = PREF_QUALITY
|
||||||
|
entryValues = PREF_QUALITY_VALUE
|
||||||
|
setDefaultValue(PREF_QUALITY_DEFAULT)
|
||||||
|
|
||||||
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
preferences.edit().putStringSet(key, newValue as Set<String>).commit()
|
||||||
|
}
|
||||||
|
}.also(screen::addPreference)
|
||||||
|
|
||||||
|
// Priority foreign language
|
||||||
|
MultiSelectListPreference(screen.context).apply {
|
||||||
|
key = PREF_LANG_KEY
|
||||||
|
title = "Priority foreign language"
|
||||||
|
entries = PREF_LANG
|
||||||
|
entryValues = PREF_LANG_VALUE
|
||||||
|
setDefaultValue(PREF_LANG_DEFAULT)
|
||||||
|
|
||||||
|
setOnPreferenceChangeListener { _, newValue ->
|
||||||
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
preferences.edit().putStringSet(key, newValue as Set<String>).commit()
|
||||||
|
}
|
||||||
|
}.also(screen::addPreference)
|
||||||
|
|
||||||
|
// Sorting
|
||||||
|
ListPreference(screen.context).apply {
|
||||||
|
key = PREF_SORT_KEY
|
||||||
|
title = "Sorting"
|
||||||
|
entries = PREF_SORT_ENTRIES
|
||||||
|
entryValues = PREF_SORT_VALUES
|
||||||
|
setDefaultValue("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()
|
||||||
|
}
|
||||||
|
}.also(screen::addPreference)
|
||||||
|
|
||||||
|
// Title handler
|
||||||
|
ListPreference(screen.context).apply {
|
||||||
|
key = PREF_TITLE_KEY
|
||||||
|
title = "Preferred Title"
|
||||||
|
entries = PREF_TITLE_ENTRIES
|
||||||
|
entryValues = PREF_TITLE_VALUES
|
||||||
|
setDefaultValue("romaji")
|
||||||
|
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val PREFIX_SEARCH = "id:"
|
||||||
|
|
||||||
|
// Token
|
||||||
|
private const val PREF_TOKEN_KEY = "token"
|
||||||
|
private const val PREF_TOKEN_DEFAULT = ""
|
||||||
|
private const val PREF_TOKEN_SUMMARY = "For temporary uses. Updating the extension will erase this setting."
|
||||||
|
|
||||||
|
// Debrid
|
||||||
|
private const val PREF_DEBRID_KEY = "debrid_provider"
|
||||||
|
private val PREF_DEBRID_ENTRIES = arrayOf(
|
||||||
|
"None",
|
||||||
|
"RealDebrid",
|
||||||
|
"Premiumize",
|
||||||
|
"AllDebrid",
|
||||||
|
"DebridLink",
|
||||||
|
"Offcloud",
|
||||||
|
)
|
||||||
|
private val PREF_DEBRID_VALUES = arrayOf(
|
||||||
|
"none",
|
||||||
|
"realdebrid",
|
||||||
|
"premiumize",
|
||||||
|
"alldebrid",
|
||||||
|
"debridlink",
|
||||||
|
"offcloud",
|
||||||
|
)
|
||||||
|
|
||||||
|
// Sort
|
||||||
|
private const val PREF_SORT_KEY = "sorting_link"
|
||||||
|
private val PREF_SORT_ENTRIES = arrayOf(
|
||||||
|
"By quality then seeders",
|
||||||
|
"By quality then size",
|
||||||
|
"By seeders",
|
||||||
|
"By size",
|
||||||
|
)
|
||||||
|
private val PREF_SORT_VALUES = arrayOf(
|
||||||
|
"quality",
|
||||||
|
"qualitysize",
|
||||||
|
"seeders",
|
||||||
|
"size",
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
// Provider
|
||||||
|
private const val PREF_PROVIDER_KEY = "provider_selection"
|
||||||
|
private val PREF_PROVIDERS = arrayOf(
|
||||||
|
"YTS",
|
||||||
|
"EZTV",
|
||||||
|
"RARBG",
|
||||||
|
"1337x",
|
||||||
|
"ThePirateBay",
|
||||||
|
"KickassTorrents",
|
||||||
|
"TorrentGalaxy",
|
||||||
|
"MagnetDL",
|
||||||
|
"HorribleSubs",
|
||||||
|
"NyaaSi",
|
||||||
|
"TokyoTosho",
|
||||||
|
"AniDex",
|
||||||
|
"🇷🇺 Rutor",
|
||||||
|
"🇷🇺 Rutracker",
|
||||||
|
"🇵🇹 Comando",
|
||||||
|
"🇵🇹 BluDV",
|
||||||
|
"🇫🇷 Torrent9",
|
||||||
|
"🇪🇸 MejorTorrent",
|
||||||
|
"🇲🇽 Cinecalidad",
|
||||||
|
)
|
||||||
|
private val PREF_PROVIDERS_VALUE = arrayOf(
|
||||||
|
"yts",
|
||||||
|
"eztv",
|
||||||
|
"rarbg",
|
||||||
|
"1337x",
|
||||||
|
"thepiratebay",
|
||||||
|
"kickasstorrents",
|
||||||
|
"torrentgalaxy",
|
||||||
|
"magnetdl",
|
||||||
|
"horriblesubs",
|
||||||
|
"nyaasi",
|
||||||
|
"tokyotosho",
|
||||||
|
"anidex",
|
||||||
|
"rutor",
|
||||||
|
"rutracker",
|
||||||
|
"comando",
|
||||||
|
"bludv",
|
||||||
|
"torrent9",
|
||||||
|
"mejortorrent",
|
||||||
|
"cinecalidad",
|
||||||
|
)
|
||||||
|
|
||||||
|
private val PREF_DEFAULT_PROVIDERS_VALUE = arrayOf(
|
||||||
|
"yts",
|
||||||
|
"eztv",
|
||||||
|
"rarbg",
|
||||||
|
"1337x",
|
||||||
|
"thepiratebay",
|
||||||
|
"kickasstorrents",
|
||||||
|
"torrentgalaxy",
|
||||||
|
"magnetdl",
|
||||||
|
"horriblesubs",
|
||||||
|
"nyaasi",
|
||||||
|
"tokyotosho",
|
||||||
|
"anidex",
|
||||||
|
)
|
||||||
|
private val PREF_PROVIDERS_DEFAULT = PREF_DEFAULT_PROVIDERS_VALUE.toSet()
|
||||||
|
|
||||||
|
// Qualities/Resolutions
|
||||||
|
private const val PREF_QUALITY_KEY = "quality_selection"
|
||||||
|
private val PREF_QUALITY = arrayOf(
|
||||||
|
"BluRay REMUX",
|
||||||
|
"HDR/HDR10+/Dolby Vision",
|
||||||
|
"Dolby Vision",
|
||||||
|
"4k",
|
||||||
|
"1080p",
|
||||||
|
"720p",
|
||||||
|
"480p",
|
||||||
|
"Other (DVDRip/HDRip/BDRip...)",
|
||||||
|
"Screener",
|
||||||
|
"Cam",
|
||||||
|
"Unknown",
|
||||||
|
)
|
||||||
|
private val PREF_QUALITY_VALUE = arrayOf(
|
||||||
|
"brremux",
|
||||||
|
"hdrall",
|
||||||
|
"dolbyvision",
|
||||||
|
"4k",
|
||||||
|
"1080p",
|
||||||
|
"720p",
|
||||||
|
"480p",
|
||||||
|
"other",
|
||||||
|
"scr",
|
||||||
|
"cam",
|
||||||
|
"unknown",
|
||||||
|
)
|
||||||
|
|
||||||
|
private val PREF_DEFAULT_QUALITY_VALUE = arrayOf(
|
||||||
|
"720p",
|
||||||
|
"480p",
|
||||||
|
"other",
|
||||||
|
"scr",
|
||||||
|
"cam",
|
||||||
|
"unknown",
|
||||||
|
)
|
||||||
|
|
||||||
|
private val PREF_QUALITY_DEFAULT = PREF_DEFAULT_QUALITY_VALUE.toSet()
|
||||||
|
|
||||||
|
// Qualities/Resolutions
|
||||||
|
private const val PREF_LANG_KEY = "lang_selection"
|
||||||
|
private val PREF_LANG = arrayOf(
|
||||||
|
"🇯🇵 Japanese",
|
||||||
|
"🇷🇺 Russian",
|
||||||
|
"🇮🇹 Italian",
|
||||||
|
"🇵🇹 Portuguese",
|
||||||
|
"🇪🇸 Spanish",
|
||||||
|
"🇲🇽 Latino",
|
||||||
|
"🇰🇷 Korean",
|
||||||
|
"🇨🇳 Chinese",
|
||||||
|
"🇹🇼 Taiwanese",
|
||||||
|
"🇫🇷 French",
|
||||||
|
|
||||||
|
"🇩🇪 German",
|
||||||
|
"🇳🇱 Dutch",
|
||||||
|
"🇮🇳 Hindi",
|
||||||
|
"🇮🇳 Telugu",
|
||||||
|
"🇮🇳 Tamil",
|
||||||
|
"🇵🇱 Polish",
|
||||||
|
"🇱🇹 Lithuanian",
|
||||||
|
"🇱🇻 Latvian",
|
||||||
|
"🇪🇪 Estonian",
|
||||||
|
"🇨🇿 Czech",
|
||||||
|
|
||||||
|
"🇸🇰 Slovakian",
|
||||||
|
"🇸🇮 Slovenian",
|
||||||
|
"🇭🇺 Hungarian",
|
||||||
|
"🇷🇴 Romanian",
|
||||||
|
"🇧🇬 Bulgarian",
|
||||||
|
"🇷🇸 Serbian",
|
||||||
|
"🇭🇷 Croatian",
|
||||||
|
"🇺🇦 Ukrainian",
|
||||||
|
"🇬🇷 Greek",
|
||||||
|
"🇩🇰 Danish",
|
||||||
|
|
||||||
|
"🇫🇮 Finnish",
|
||||||
|
"🇸🇪 Swedish",
|
||||||
|
"🇳🇴 Norwegian",
|
||||||
|
"🇹🇷 Turkish",
|
||||||
|
"🇸🇦 Arabic",
|
||||||
|
"🇮🇷 Persian",
|
||||||
|
"🇮🇱 Hebrew",
|
||||||
|
"🇻🇳 Vietnamese",
|
||||||
|
"🇮🇩 Indonesian",
|
||||||
|
"🇲🇾 Malay",
|
||||||
|
|
||||||
|
"🇹🇭 Thai",
|
||||||
|
)
|
||||||
|
private val PREF_LANG_VALUE = arrayOf(
|
||||||
|
"japanese",
|
||||||
|
"russian",
|
||||||
|
"italian",
|
||||||
|
"portuguese",
|
||||||
|
"spanish",
|
||||||
|
"latino",
|
||||||
|
"korean",
|
||||||
|
"chinese",
|
||||||
|
"taiwanese",
|
||||||
|
"french",
|
||||||
|
|
||||||
|
"german",
|
||||||
|
"dutch",
|
||||||
|
"hindi",
|
||||||
|
"telugu",
|
||||||
|
"tamil",
|
||||||
|
"polish",
|
||||||
|
"lithuanian",
|
||||||
|
"latvian",
|
||||||
|
"estonian",
|
||||||
|
"czech",
|
||||||
|
|
||||||
|
"slovakian",
|
||||||
|
"slovenian",
|
||||||
|
"hungarian",
|
||||||
|
"romanian",
|
||||||
|
"bulgarian",
|
||||||
|
"serbian",
|
||||||
|
"croatian",
|
||||||
|
"ukrainian",
|
||||||
|
"greek",
|
||||||
|
"danish",
|
||||||
|
|
||||||
|
"finnish",
|
||||||
|
"swedish",
|
||||||
|
"norwegian",
|
||||||
|
"turkish",
|
||||||
|
"arabic",
|
||||||
|
"persian",
|
||||||
|
"hebrew",
|
||||||
|
"vietnamese",
|
||||||
|
"indonesian",
|
||||||
|
"malay",
|
||||||
|
|
||||||
|
"thai",
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
private val PREF_LANG_DEFAULT = setOf<String>()
|
||||||
|
|
||||||
|
// Title
|
||||||
|
private const val PREF_TITLE_KEY = "pref_title"
|
||||||
|
private val PREF_TITLE_ENTRIES = arrayOf(
|
||||||
|
"Romaji",
|
||||||
|
"English",
|
||||||
|
"Native",
|
||||||
|
)
|
||||||
|
private val PREF_TITLE_VALUES = arrayOf(
|
||||||
|
"romaji",
|
||||||
|
"english",
|
||||||
|
"native",
|
||||||
|
)
|
||||||
|
|
||||||
|
private val DATE_FORMATTER by lazy {
|
||||||
|
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.ENGLISH)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.all.torrentioanime
|
||||||
|
|
||||||
|
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://torrentio.strem.fun/anime/<item> intents
|
||||||
|
* and redirects them to the main Aniyomi process.
|
||||||
|
*/
|
||||||
|
class TorrentioUrlActivity : Activity() {
|
||||||
|
|
||||||
|
private val tag = javaClass.simpleName
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
val pathSegments = intent?.data?.pathSegments
|
||||||
|
if (pathSegments != null && pathSegments.size > 1) {
|
||||||
|
val item = pathSegments[1]
|
||||||
|
val mainIntent = Intent().apply {
|
||||||
|
action = "eu.kanade.tachiyomi.ANIMESEARCH"
|
||||||
|
putExtra("query", "${Torrentio.PREFIX_SEARCH}$item")
|
||||||
|
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,153 @@
|
|||||||
|
package eu.kanade.tachiyomi.animeextension.all.torrentioanime.dto
|
||||||
|
|
||||||
|
import kotlinx.serialization.SerialName
|
||||||
|
import kotlinx.serialization.Serializable
|
||||||
|
|
||||||
|
// Normal Anilst Meta Data
|
||||||
|
@Serializable
|
||||||
|
data class AnilistMeta(
|
||||||
|
val data: AnilistPageData? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistPageData(
|
||||||
|
@SerialName("Page")
|
||||||
|
val page: AnilistPage? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistPage(
|
||||||
|
val pageInfo: AnilistPageInfo? = null,
|
||||||
|
val media: List<AnilistMedia>? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
// For Latest
|
||||||
|
@Serializable
|
||||||
|
data class AnilistMetaLatest(
|
||||||
|
val data: AnilistPageDataLatest? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistPageDataLatest(
|
||||||
|
@SerialName("Page")
|
||||||
|
val page: AnilistPageLatest? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistPageLatest(
|
||||||
|
val pageInfo: AnilistPageInfo? = null,
|
||||||
|
val airingSchedules: List<AnilistAiringSchedule>? = null, // Change this line
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistAiringSchedule(
|
||||||
|
val media: AnilistMedia? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistPageInfo(
|
||||||
|
val currentPage: Int = 0,
|
||||||
|
val hasNextPage: Boolean = false,
|
||||||
|
)
|
||||||
|
|
||||||
|
// For Details
|
||||||
|
@Serializable
|
||||||
|
data class DetailsById(
|
||||||
|
val data: DetailsByIdData? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class DetailsByIdData(
|
||||||
|
@SerialName("Media")
|
||||||
|
val media: AnilistMedia? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Re-usable Media
|
||||||
|
@Serializable
|
||||||
|
data class AnilistMedia(
|
||||||
|
val id: Int? = null,
|
||||||
|
val siteUrl: String? = null,
|
||||||
|
val title: AnilistTitle? = null,
|
||||||
|
val coverImage: AnilistCoverImage? = null,
|
||||||
|
val description: String? = null,
|
||||||
|
val status: String? = null,
|
||||||
|
val tags: List<AnilistTag>? = null,
|
||||||
|
val genres: List<String>? = null,
|
||||||
|
val studios: AnilistStudios? = null,
|
||||||
|
val countryOfOrigin: String? = null,
|
||||||
|
val isAdult: Boolean = false,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistTitle(
|
||||||
|
val romaji: String? = null,
|
||||||
|
val english: String? = null,
|
||||||
|
val native: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistCoverImage(
|
||||||
|
val extraLarge: String? = null,
|
||||||
|
val large: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistStudios(
|
||||||
|
val nodes: List<AnilistNode>? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistNode(
|
||||||
|
val name: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class AnilistTag(
|
||||||
|
val name: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Stream Data For Torrent
|
||||||
|
@Serializable
|
||||||
|
data class StreamDataTorrent(
|
||||||
|
val streams: List<TorrentioStream>? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class TorrentioStream(
|
||||||
|
val name: String? = null,
|
||||||
|
val title: String? = null,
|
||||||
|
val infoHash: String? = null,
|
||||||
|
val fileIdx: Int? = null,
|
||||||
|
val url: String? = null,
|
||||||
|
val behaviorHints: BehaviorHints? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class BehaviorHints(
|
||||||
|
val bingeGroup: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Episode Data
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class EpisodeList(
|
||||||
|
val meta: EpisodeMeta? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class EpisodeMeta(
|
||||||
|
@SerialName("id")
|
||||||
|
val kitsuId: String? = null,
|
||||||
|
val type: String? = null,
|
||||||
|
val videos: List<EpisodeVideo>? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class EpisodeVideo(
|
||||||
|
@SerialName("id")
|
||||||
|
val videoId: String? = null,
|
||||||
|
val season: Int? = null,
|
||||||
|
val episode: Int? = null,
|
||||||
|
val released: String? = null,
|
||||||
|
val title: String? = null,
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user