chore: Sync with latest commits
This commit is contained in:
parent
9b96273df0
commit
56c945d716
115 changed files with 2230 additions and 445 deletions
|
@ -1,7 +1,8 @@
|
|||
ext {
|
||||
extName = 'Sudatchi'
|
||||
extClass = '.Sudatchi'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 3
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -4,12 +4,13 @@ import android.app.Application
|
|||
import android.content.SharedPreferences
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.PreferenceScreen
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.AnimeDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.AnimePageDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.DirectoryDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.HomeListDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.LongAnimeDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.ShortAnimeDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.EpisodePageDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.HomePageDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.PropsDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.SubtitleDto
|
||||
import eu.kanade.tachiyomi.animeextension.all.sudatchi.dto.WatchDto
|
||||
import eu.kanade.tachiyomi.animesource.ConfigurableAnimeSource
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimeFilterList
|
||||
import eu.kanade.tachiyomi.animesource.model.AnimesPage
|
||||
|
@ -27,6 +28,7 @@ import kotlinx.serialization.json.Json
|
|||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import okhttp3.Request
|
||||
import okhttp3.Response
|
||||
import org.jsoup.nodes.Document
|
||||
import uy.kohesive.injekt.Injekt
|
||||
import uy.kohesive.injekt.api.get
|
||||
import uy.kohesive.injekt.injectLazy
|
||||
|
@ -37,6 +39,8 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
|
||||
override val baseUrl = "https://sudatchi.com"
|
||||
|
||||
private val ipfsUrl = "https://ipfs.animeui.com"
|
||||
|
||||
override val lang = "all"
|
||||
|
||||
override val supportsLatest = true
|
||||
|
@ -52,7 +56,7 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
}
|
||||
|
||||
// ============================== Popular ===============================
|
||||
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/api/home-list", headers)
|
||||
override fun popularAnimeRequest(page: Int) = GET(baseUrl, headers)
|
||||
|
||||
private fun Int.parseStatus() = when (this) {
|
||||
1 -> SAnime.UNKNOWN // Not Yet Released
|
||||
|
@ -61,7 +65,7 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
else -> SAnime.UNKNOWN
|
||||
}
|
||||
|
||||
private fun ShortAnimeDto.toSAnime(titleLang: String) = SAnime.create().apply {
|
||||
private fun AnimeDto.toSAnime(titleLang: String) = SAnime.create().apply {
|
||||
url = "/anime/$slug"
|
||||
title = when (titleLang) {
|
||||
"romaji" -> titleRomanji
|
||||
|
@ -70,14 +74,19 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
} ?: arrayOf(titleEnglish, titleRomanji, titleJapanese, "").firstNotNullOf { it }
|
||||
description = synopsis
|
||||
status = statusId.parseStatus()
|
||||
thumbnail_url = "$baseUrl$imgUrl"
|
||||
thumbnail_url = when {
|
||||
imgUrl.startsWith("/") -> "$baseUrl$imgUrl"
|
||||
else -> "$ipfsUrl/ipfs/$imgUrl"
|
||||
}
|
||||
genre = animeGenres?.joinToString { it.genre.name }
|
||||
}
|
||||
|
||||
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||
sudatchiFilters.fetchFilters()
|
||||
val titleLang = preferences.title
|
||||
return AnimesPage(response.parseAs<HomeListDto>().animeSpotlight.map { it.toSAnime(titleLang) }, false)
|
||||
val document = response.asJsoup()
|
||||
val data = document.parseAs<HomePageDto>().animeSpotlight
|
||||
return AnimesPage(data.map { it.toSAnime(titleLang) }, false)
|
||||
}
|
||||
|
||||
// =============================== Latest ===============================
|
||||
|
@ -97,7 +106,7 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
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/api/anime/$id", headers))
|
||||
client.newCall(GET("$baseUrl/anime/$id", headers))
|
||||
.awaitSuccess()
|
||||
.use(::searchAnimeByIdParse)
|
||||
} else {
|
||||
|
@ -105,7 +114,14 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
}
|
||||
}
|
||||
|
||||
private fun searchAnimeByIdParse(response: Response) = AnimesPage(listOf(animeDetailsParse(response)), false)
|
||||
private fun searchAnimeByIdParse(response: Response): AnimesPage {
|
||||
val details = animeDetailsParse(response).apply {
|
||||
setUrlWithoutDomain(response.request.url.toString())
|
||||
initialized = true
|
||||
}
|
||||
|
||||
return AnimesPage(listOf(details), false)
|
||||
}
|
||||
|
||||
override fun searchAnimeRequest(page: Int, query: String, filters: AnimeFilterList): Request {
|
||||
val url = "$baseUrl/api/directory".toHttpUrl().newBuilder()
|
||||
|
@ -123,15 +139,18 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
// =========================== Anime Details ============================
|
||||
override fun getAnimeUrl(anime: SAnime) = "$baseUrl${anime.url}"
|
||||
|
||||
override fun animeDetailsRequest(anime: SAnime) = GET("$baseUrl/api${anime.url}", headers)
|
||||
|
||||
override fun animeDetailsParse(response: Response) = response.parseAs<ShortAnimeDto>().toSAnime(preferences.title)
|
||||
override fun animeDetailsParse(response: Response): SAnime {
|
||||
val document = response.asJsoup()
|
||||
val data = document.parseAs<AnimePageDto>().animeData
|
||||
return data.toSAnime(preferences.title)
|
||||
}
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListRequest(anime: SAnime) = animeDetailsRequest(anime)
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val anime = response.parseAs<LongAnimeDto>()
|
||||
val document = response.asJsoup()
|
||||
val anime = document.parseAs<AnimePageDto>().animeData
|
||||
return anime.episodes.map {
|
||||
SEpisode.create().apply {
|
||||
name = it.title
|
||||
|
@ -148,8 +167,7 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
|
||||
override fun videoListParse(response: Response): List<Video> {
|
||||
val document = response.asJsoup()
|
||||
val jsonString = document.selectFirst("script#__NEXT_DATA__")?.data() ?: return emptyList()
|
||||
val data = json.decodeFromString<WatchDto>(jsonString).props.pageProps.episodeData
|
||||
val data = document.parseAs<EpisodePageDto>().episodeData
|
||||
val subtitles = json.decodeFromString<List<SubtitleDto>>(data.subtitlesJson)
|
||||
// val videoUrl = client.newCall(GET("$baseUrl/api/streams?episodeId=${data.episode.id}", headers)).execute().parseAs<StreamsDto>().url
|
||||
// keeping it in case the simpler solution breaks, can be hardcoded to this for now :
|
||||
|
@ -158,7 +176,7 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
videoUrl,
|
||||
videoNameGen = { "Sudatchi (Private IPFS Gateway) - $it" },
|
||||
subtitleList = subtitles.map {
|
||||
Track("$baseUrl${it.url}", "${it.subtitlesName.name} (${it.subtitlesName.language})")
|
||||
Track("$ipfsUrl${it.url}", "${it.subtitlesName.name} (${it.subtitlesName.language})")
|
||||
}.sort(),
|
||||
)
|
||||
}
|
||||
|
@ -226,6 +244,11 @@ class Sudatchi : AnimeHttpSource(), ConfigurableAnimeSource {
|
|||
}
|
||||
|
||||
// ============================= Utilities ==============================
|
||||
private inline fun <reified T> Document.parseAs(): T {
|
||||
val nextData = this.selectFirst("script#__NEXT_DATA__")!!.data()
|
||||
return json.decodeFromString<PropsDto<T>>(nextData).props.pageProps
|
||||
}
|
||||
|
||||
private val SharedPreferences.quality get() = getString(PREF_QUALITY_KEY, PREF_QUALITY_DEFAULT)!!
|
||||
private val SharedPreferences.subtitles get() = getString(PREF_SUBTITLES_KEY, PREF_SUBTITLES_DEFAULT)!!
|
||||
private val SharedPreferences.title get() = getString(PREF_TITLE_KEY, PREF_TITLE_DEFAULT)!!
|
||||
|
|
|
@ -4,16 +4,23 @@ import kotlinx.serialization.SerialName
|
|||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class Genre(val name: String)
|
||||
data class GenreDto(val name: String)
|
||||
|
||||
@Serializable
|
||||
data class AnimeGenreRelation(
|
||||
data class AnimeGenreRelationDto(
|
||||
@SerialName("Genre")
|
||||
val genre: Genre,
|
||||
val genre: GenreDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class ShortAnimeDto(
|
||||
data class EpisodeDto(
|
||||
val title: String,
|
||||
val id: Int,
|
||||
val number: Int,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AnimeDto(
|
||||
val titleRomanji: String?,
|
||||
val titleEnglish: String?,
|
||||
val titleJapanese: String?,
|
||||
|
@ -22,36 +29,46 @@ data class ShortAnimeDto(
|
|||
val statusId: Int,
|
||||
val imgUrl: String,
|
||||
@SerialName("AnimeGenres")
|
||||
val animeGenres: List<AnimeGenreRelation>?,
|
||||
val animeGenres: List<AnimeGenreRelationDto>?,
|
||||
@SerialName("Episodes")
|
||||
val episodes: List<EpisodeDto> = emptyList(),
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class HomeListDto(
|
||||
data class HomePageDto(
|
||||
@SerialName("AnimeSpotlight")
|
||||
val animeSpotlight: List<ShortAnimeDto>,
|
||||
val animeSpotlight: List<AnimeDto>,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class AnimePageDto(
|
||||
val animeData: AnimeDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class EpisodeDataDto(
|
||||
val episode: EpisodeDto,
|
||||
val subtitlesJson: String,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class EpisodePageDto(
|
||||
val episodeData: EpisodeDataDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class PagePropsDto<T>(val pageProps: T)
|
||||
|
||||
@Serializable
|
||||
data class PropsDto<T>(val props: PagePropsDto<T>)
|
||||
|
||||
@Serializable
|
||||
data class DirectoryDto(
|
||||
val animes: List<ShortAnimeDto>,
|
||||
val animes: List<AnimeDto>,
|
||||
val page: Int,
|
||||
val pages: Int,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class Episode(
|
||||
val title: String,
|
||||
val id: Int,
|
||||
val number: Int,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class LongAnimeDto(
|
||||
val slug: String,
|
||||
@SerialName("Episodes")
|
||||
val episodes: List<Episode>,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class SubtitleLangDto(
|
||||
val name: String,
|
||||
|
@ -65,27 +82,6 @@ data class SubtitleDto(
|
|||
val subtitlesName: SubtitleLangDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class EpisodeDataDto(
|
||||
val episode: Episode,
|
||||
val subtitlesJson: String,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class PagePropsDto(
|
||||
val episodeData: EpisodeDataDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class DataWatchDto(
|
||||
val pageProps: PagePropsDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class WatchDto(
|
||||
val props: DataWatchDto,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
data class FilterItemDto(
|
||||
val id: Int,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'SupJav'
|
||||
extClass = '.SupJavFactory'
|
||||
extVersionCode = 8
|
||||
extVersionCode = 9
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
@ -12,4 +12,4 @@ dependencies {
|
|||
implementation(project(":lib:streamwish-extractor"))
|
||||
implementation(project(":lib:voe-extractor"))
|
||||
implementation(project(":lib:playlist-utils"))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -93,7 +93,11 @@ class SupJav(override val lang: String = "en") : ConfigurableAnimeSource, Parsed
|
|||
}
|
||||
|
||||
private fun searchAnimeByIdParse(response: Response): AnimesPage {
|
||||
val details = animeDetailsParse(response.asJsoup())
|
||||
val details = animeDetailsParse(response.asJsoup()).apply {
|
||||
setUrlWithoutDomain(response.request.url.toString())
|
||||
initialized = true
|
||||
}
|
||||
|
||||
return AnimesPage(listOf(details), false)
|
||||
}
|
||||
|
||||
|
|
22
src/all/torrentio/AndroidManifest.xml
Normal file
22
src/all/torrentio/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.torrentio.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/torrentio/build.gradle
Normal file
8
src/all/torrentio/build.gradle
Normal file
|
@ -0,0 +1,8 @@
|
|||
ext {
|
||||
extName = 'Torrentio (Torrent / Debrid)'
|
||||
extClass = '.Torrentio'
|
||||
extVersionCode = 1
|
||||
containsNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/all/torrentio/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/all/torrentio/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
src/all/torrentio/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/all/torrentio/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
BIN
src/all/torrentio/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentio/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
src/all/torrentio/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentio/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
BIN
src/all/torrentio/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/all/torrentio/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6 KiB |
|
@ -0,0 +1,867 @@
|
|||
package eu.kanade.tachiyomi.animeextension.all.torrentio
|
||||
|
||||
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 androidx.preference.SwitchPreferenceCompat
|
||||
import eu.kanade.tachiyomi.animeextension.all.torrentio.dto.EpisodeList
|
||||
import eu.kanade.tachiyomi.animeextension.all.torrentio.dto.GetPopularTitlesResponse
|
||||
import eu.kanade.tachiyomi.animeextension.all.torrentio.dto.GetUrlTitleDetailsResponse
|
||||
import eu.kanade.tachiyomi.animeextension.all.torrentio.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.MediaType.Companion.toMediaType
|
||||
import okhttp3.Request
|
||||
import okhttp3.RequestBody.Companion.toRequestBody
|
||||
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 (Torrent / Debrid)"
|
||||
|
||||
override val baseUrl = "https://torrentio.strem.fun"
|
||||
|
||||
override val lang = "all"
|
||||
|
||||
override val supportsLatest = false
|
||||
|
||||
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()) }
|
||||
|
||||
// ============================== JustWatch API Request ===================
|
||||
private fun makeGraphQLRequest(query: String, variables: String): Request {
|
||||
val requestBody = """
|
||||
{"query": "${query.replace("\n", "")}", "variables": $variables}
|
||||
""".trimIndent().toRequestBody("application/json; charset=utf-8".toMediaType())
|
||||
|
||||
return POST("https://apis.justwatch.com/graphql", headers = headers, body = requestBody)
|
||||
}
|
||||
|
||||
// ============================== JustWatch Api Query ======================
|
||||
private fun justWatchQuery(): String {
|
||||
return """
|
||||
query GetPopularTitles(
|
||||
${"$"}country: Country!,
|
||||
${"$"}first: Int!,
|
||||
${"$"}language: Language!,
|
||||
${"$"}offset: Int,
|
||||
${"$"}searchQuery: String,
|
||||
${"$"}packages: [String!]!,
|
||||
${"$"}objectTypes: [ObjectType!]!,
|
||||
${"$"}popularTitlesSortBy: PopularTitlesSorting!,
|
||||
${"$"}releaseYear: IntFilter
|
||||
) {
|
||||
popularTitles(
|
||||
country: ${"$"}country
|
||||
first: ${"$"}first
|
||||
offset: ${"$"}offset
|
||||
sortBy: ${"$"}popularTitlesSortBy
|
||||
filter: {
|
||||
objectTypes: ${"$"}objectTypes,
|
||||
searchQuery: ${"$"}searchQuery,
|
||||
packages: ${"$"}packages,
|
||||
genres: [],
|
||||
excludeGenres: [],
|
||||
releaseYear: ${"$"}releaseYear
|
||||
}
|
||||
) {
|
||||
edges {
|
||||
node {
|
||||
id
|
||||
objectType
|
||||
content(country: ${"$"}country, language: ${"$"}language) {
|
||||
fullPath
|
||||
title
|
||||
shortDescription
|
||||
externalIds {
|
||||
imdbId
|
||||
}
|
||||
posterUrl
|
||||
genres {
|
||||
translation(language: ${"$"}language)
|
||||
}
|
||||
credits {
|
||||
name
|
||||
role
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasPreviousPage
|
||||
hasNextPage
|
||||
}
|
||||
}
|
||||
}
|
||||
""".trimIndent()
|
||||
}
|
||||
|
||||
private fun parseSearchJson(jsonLine: String?): AnimesPage {
|
||||
val jsonData = jsonLine ?: return AnimesPage(emptyList(), false)
|
||||
val popularTitlesResponse = json.decodeFromString<GetPopularTitlesResponse>(jsonData)
|
||||
|
||||
val edges = popularTitlesResponse.data?.popularTitles?.edges.orEmpty()
|
||||
val hasNextPage = popularTitlesResponse.data?.popularTitles?.pageInfo?.hasNextPage ?: false
|
||||
|
||||
val metaList = edges
|
||||
.mapNotNull { edge ->
|
||||
val node = edge.node ?: return@mapNotNull null
|
||||
val content = node.content ?: return@mapNotNull null
|
||||
|
||||
SAnime.create().apply {
|
||||
url = "${content.externalIds?.imdbId ?: ""},${node.objectType ?: ""},${content.fullPath ?: ""}"
|
||||
title = content.title ?: ""
|
||||
thumbnail_url = "https://images.justwatch.com${content.posterUrl?.replace("{profile}", "s276")?.replace("{format}", "webp")}"
|
||||
description = content.shortDescription ?: ""
|
||||
val genresList = content.genres?.mapNotNull { it.translation }.orEmpty()
|
||||
genre = genresList.joinToString()
|
||||
|
||||
val directors = content.credits?.filter { it.role == "DIRECTOR" }?.mapNotNull { it.name }
|
||||
author = directors?.joinToString()
|
||||
val actors = content.credits?.filter { it.role == "ACTOR" }?.take(4)?.mapNotNull { it.name }
|
||||
artist = actors?.joinToString()
|
||||
initialized = true
|
||||
}
|
||||
}
|
||||
|
||||
return AnimesPage(metaList, hasNextPage)
|
||||
}
|
||||
|
||||
// ============================== Popular ===============================
|
||||
override fun popularAnimeRequest(page: Int): Request {
|
||||
return searchAnimeRequest(page, "", AnimeFilterList())
|
||||
}
|
||||
|
||||
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||
val jsonData = response.body.string()
|
||||
return parseSearchJson(jsonData) }
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesRequest(page: Int) = throw UnsupportedOperationException()
|
||||
|
||||
override fun latestUpdatesParse(response: Response) = throw UnsupportedOperationException()
|
||||
|
||||
// =============================== 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", headers))
|
||||
.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 country = preferences.getString(PREF_REGION_KEY, PREF_REGION_DEFAULT)
|
||||
val language = preferences.getString(PREF_JW_LANG_KEY, PREF_JW_LANG_DEFAULT)
|
||||
val perPage = 40
|
||||
val packages = ""
|
||||
val year = 0
|
||||
val objectTypes = ""
|
||||
val variables = """
|
||||
{
|
||||
"first": $perPage,
|
||||
"offset": ${(page - 1) * perPage},
|
||||
"platform": "WEB",
|
||||
"country": "$country",
|
||||
"language": "$language",
|
||||
"searchQuery": "${query.replace(searchQueryRegex, "").trim()}",
|
||||
"packages": [$packages],
|
||||
"objectTypes": [$objectTypes],
|
||||
"popularTitlesSortBy": "TRENDING",
|
||||
"releaseYear": {
|
||||
"min": $year,
|
||||
"max": $year
|
||||
}
|
||||
}
|
||||
""".trimIndent()
|
||||
|
||||
return makeGraphQLRequest(justWatchQuery(), variables)
|
||||
}
|
||||
|
||||
private val searchQueryRegex by lazy {
|
||||
Regex("[^A-Za-z0-9 ]")
|
||||
}
|
||||
|
||||
override fun searchAnimeParse(response: Response) = popularAnimeParse(response)
|
||||
|
||||
// =========================== Anime Details ============================
|
||||
|
||||
override fun animeDetailsParse(response: Response): SAnime = throw UnsupportedOperationException()
|
||||
|
||||
// override suspend fun getAnimeDetails(anime: SAnime): SAnime = throw UnsupportedOperationException()
|
||||
|
||||
override suspend fun getAnimeDetails(anime: SAnime): SAnime {
|
||||
val query = """
|
||||
query GetUrlTitleDetails(${"$"}fullPath: String!, ${"$"}country: Country!, ${"$"}language: Language!) {
|
||||
urlV2(fullPath: ${"$"}fullPath) {
|
||||
node {
|
||||
...TitleDetails
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fragment TitleDetails on Node {
|
||||
... on MovieOrShowOrSeason {
|
||||
id
|
||||
objectType
|
||||
content(country: ${"$"}country, language: ${"$"}language) {
|
||||
title
|
||||
shortDescription
|
||||
externalIds {
|
||||
imdbId
|
||||
}
|
||||
posterUrl
|
||||
genres {
|
||||
translation(language: ${"$"}language)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
""".trimIndent()
|
||||
|
||||
val country = preferences.getString(PREF_REGION_KEY, PREF_REGION_DEFAULT)
|
||||
val language = preferences.getString(PREF_JW_LANG_KEY, PREF_JW_LANG_DEFAULT)
|
||||
val variables = """
|
||||
{
|
||||
"fullPath": "${anime.url.split(',').last()}",
|
||||
"country": "$country",
|
||||
"language": "$language"
|
||||
}
|
||||
""".trimIndent()
|
||||
|
||||
val content = runCatching {
|
||||
json.decodeFromString<GetUrlTitleDetailsResponse>(client.newCall(makeGraphQLRequest(query, variables)).execute().body.string())
|
||||
}.getOrNull()?.data?.urlV2?.node?.content
|
||||
|
||||
anime.title = content?.title ?: ""
|
||||
anime.thumbnail_url = "https://images.justwatch.com${content?.posterUrl?.replace("{profile}", "s718")?.replace("{format}", "webp")}"
|
||||
anime.description = content?.shortDescription ?: ""
|
||||
val genresList = content?.genres?.mapNotNull { it.translation }.orEmpty()
|
||||
anime.genre = genresList.joinToString()
|
||||
|
||||
return anime
|
||||
}
|
||||
|
||||
// ============================== Episodes ==============================
|
||||
override fun episodeListRequest(anime: SAnime): Request {
|
||||
val parts = anime.url.split(",")
|
||||
val type = parts[1].lowercase()
|
||||
val imdbId = parts[0]
|
||||
return GET("https://cinemeta-live.strem.io/meta/$type/$imdbId.json")
|
||||
}
|
||||
|
||||
override fun episodeListParse(response: Response): List<SEpisode> {
|
||||
val responseString = response.body.string()
|
||||
val episodeList = json.decodeFromString<EpisodeList>(responseString)
|
||||
return when (episodeList.meta?.type) {
|
||||
"show" -> {
|
||||
episodeList.meta.videos
|
||||
?.let { videos ->
|
||||
if (preferences.getBoolean(UPCOMING_EP_KEY, UPCOMING_EP_DEFAULT)) { videos } else { videos.filter { video -> (video.firstAired?.let { parseDate(it) } ?: 0L) <= System.currentTimeMillis() } }
|
||||
}
|
||||
?.map { video ->
|
||||
SEpisode.create().apply {
|
||||
episode_number = "${video.season}.${video.number}".toFloat()
|
||||
url = "/stream/series/${video.id}.json"
|
||||
date_upload = video.firstAired?.let { parseDate(it) } ?: 0L
|
||||
name = "S${video.season.toString().trim()}:E${video.number} - ${video.name}"
|
||||
scanlator = (video.firstAired?.let { parseDate(it) } ?: 0L)
|
||||
.takeIf { it > System.currentTimeMillis() }
|
||||
?.let { "Upcoming" }
|
||||
?: ""
|
||||
}
|
||||
}
|
||||
?.sortedWith(
|
||||
compareBy<SEpisode> { it.name.substringAfter("S").substringBefore(":").toInt() }
|
||||
.thenBy { it.name.substringAfter("E").substringBefore(" -").toInt() },
|
||||
)
|
||||
.orEmpty().reversed()
|
||||
}
|
||||
|
||||
"movie" -> {
|
||||
// Handle movie response
|
||||
listOf(
|
||||
SEpisode.create().apply {
|
||||
episode_number = 1.0F
|
||||
url = "/stream/movie/${episodeList.meta.id}.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, "none")
|
||||
|
||||
when {
|
||||
token.isNullOrBlank() && debridProvider != "none" -> {
|
||||
handler.post {
|
||||
context.let {
|
||||
Toast.makeText(
|
||||
it,
|
||||
"Kindly input the debrid 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, "none")
|
||||
|
||||
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.name?.replace("Torrentio\n", "") ?: "") + "\n" + stream.title), urlOrHash)
|
||||
}.orEmpty()
|
||||
}
|
||||
|
||||
override fun List<Video>.sort(): List<Video> {
|
||||
val isDub = preferences.getBoolean(IS_DUB_KEY, IS_DUB_DEFAULT)
|
||||
val isEfficient = preferences.getBoolean(IS_EFFICIENT_KEY, IS_EFFICIENT_DEFAULT)
|
||||
|
||||
return sortedWith(
|
||||
compareBy(
|
||||
{ Regex("\\[(.+?) download]").containsMatchIn(it.quality) },
|
||||
{ isDub && !it.quality.contains("dubbed", true) },
|
||||
{ isEfficient && !arrayOf("hevc", "265", "av1").any { q -> it.quality.contains(q, true) } },
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
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 = "Choose 'None' for Torrent. If you select a Debrid provider, enter your token key. No token key is needed if 'None' is selected."
|
||||
|
||||
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)
|
||||
|
||||
SwitchPreferenceCompat(screen.context).apply {
|
||||
key = UPCOMING_EP_KEY
|
||||
title = "Show Upcoming Episodes"
|
||||
setDefaultValue(UPCOMING_EP_DEFAULT)
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
preferences.edit().putBoolean(key, newValue as Boolean).commit()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
|
||||
SwitchPreferenceCompat(screen.context).apply {
|
||||
key = IS_DUB_KEY
|
||||
title = "Dubbed Video Priority"
|
||||
setDefaultValue(IS_DUB_DEFAULT)
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
preferences.edit().putBoolean(key, newValue as Boolean).commit()
|
||||
}
|
||||
}.also(screen::addPreference)
|
||||
|
||||
SwitchPreferenceCompat(screen.context).apply {
|
||||
key = IS_EFFICIENT_KEY
|
||||
title = "Efficient Video Priority"
|
||||
setDefaultValue(IS_EFFICIENT_DEFAULT)
|
||||
setOnPreferenceChangeListener { _, newValue ->
|
||||
preferences.edit().putBoolean(key, newValue as Boolean).commit()
|
||||
}
|
||||
summary = "Codec: (HEVC / x265) & AV1. High-quality video with less data usage."
|
||||
}.also(screen::addPreference)
|
||||
|
||||
// JustWatch Settings
|
||||
|
||||
// Region
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_REGION_KEY
|
||||
title = "Catalogue Region"
|
||||
entries = PREF_REGION_ENTRIES
|
||||
entryValues = PREF_REGION_VALUES
|
||||
setDefaultValue(PREF_REGION_DEFAULT)
|
||||
summary = "Region based catalogue recommendation."
|
||||
|
||||
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)
|
||||
|
||||
// Poster and Titles Language
|
||||
ListPreference(screen.context).apply {
|
||||
key = PREF_JW_LANG_KEY
|
||||
title = "Poster and Titles Language"
|
||||
entries = PREF_JW_LANG_ENTRIES
|
||||
entryValues = PREF_JW_LANG_VALUES
|
||||
setDefaultValue(PREF_JW_LANG_DEFAULT)
|
||||
|
||||
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 = "Exclusive to Debrid providers; not intended for Torrents."
|
||||
|
||||
// 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>()
|
||||
|
||||
private const val UPCOMING_EP_KEY = "upcoming_ep"
|
||||
private const val UPCOMING_EP_DEFAULT = true
|
||||
|
||||
private const val IS_DUB_KEY = "dubbed"
|
||||
private const val IS_DUB_DEFAULT = false
|
||||
|
||||
private const val IS_EFFICIENT_KEY = "efficient"
|
||||
private const val IS_EFFICIENT_DEFAULT = false
|
||||
|
||||
private val DATE_FORMATTER by lazy {
|
||||
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.ENGLISH)
|
||||
}
|
||||
|
||||
// JustWatch settings
|
||||
// Region
|
||||
private const val PREF_REGION_KEY = "jw_region"
|
||||
private val PREF_REGION_ENTRIES = arrayOf(
|
||||
"Albania", "Algeria", "Androrra", "Angola", "Antigua and Barbuda", "Argentina", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Barbados", "Belarus", "Belgium", "Belize", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Burkina Faso", "Cameroon", "Canada", "Cape Verde", "Chad", "Chile", "Colombia", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic", "DR Congo", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Estonia", "Fiji", "Finland", "France", "French Guiana", "French Polynesia", "Germany", "Ghana", "Gibraltar", "Greece", "Guatemala", "Guernsey", "Guyana", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iraq", "Ireland", "Israel", "Italy", "Ivory Coast", "Jamaica", "Japan", "Jordan", "Kenya", "Kosovo", "Kuwait", "Latvia", "Lebanon", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macedonia", "Madagascar", "Malawi", "Malaysia", "Mali", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Montenegro", "Morocco", "Mozambique", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Norway", "Oman", "Pakistan", "Palestine", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Romania", "Russia", "Saint Lucia", "San Marino", "Saudi Arabia", "Senegal", "Serbia", "Seychelles", "Singapore", "Slovakia", "Slovenia", "South Africa", "South Korea", "Spain", "Sweden", "Switzerland", "Taiwan", "Tanzania", "Thailand", "Trinidad and Tobago", "Tunisia", "Turkey", "Turks and Caicos Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Vatican City", "Venezuela", "Yemen", "Zambia", "Zimbabwe",
|
||||
)
|
||||
private val PREF_REGION_VALUES = arrayOf(
|
||||
"AL", "DZ", "AD", "AO", "AG", "AR", "AU", "AT", "AZ", "BS", "BH", "BB", "BY", "BE", "BZ", "BM", "BO", "BA", "BR", "BG", "BF", "CM", "CA", "CV", "TD", "CL", "CO", "CR", "HR", "CU", "CY", "CZ", "CD", "DK", "DO", "EC", "EG", "SV", "GQ", "EE", "FJ", "FI", "FR", "GF", "PF", "DE", "GH", "GI", "GR", "GT", "GG", "GY", "HN", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "CI", "JM", "JP", "JO", "KE", "XK", "KW", "LV", "LB", "LY", "LI", "LT", "LU", "MK", "MG", "MW", "MY", "ML", "MT", "MU", "MX", "MD", "MC", "ME", "MA", "MZ", "NL", "NZ", "NI", "NE", "NG", "NO", "OM", "PK", "PS", "PA", "PG", "PY", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "LC", "SM", "SA", "SN", "RS", "SC", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TZ", "TH", "TT", "TN", "TR", "TC", "UG", "UA", "AE", "UK", "US", "UY", "VA", "VE", "YE", "ZM", "ZW",
|
||||
)
|
||||
private const val PREF_REGION_DEFAULT = "US"
|
||||
|
||||
// JustWatch language in Poster, Titles
|
||||
private const val PREF_JW_LANG_KEY = "jw_lang"
|
||||
private val PREF_JW_LANG_ENTRIES = arrayOf(
|
||||
"Arabic", "Azerbaijani", "Belarusian", "Bulgarian", "Bosnian", "Catalan", "Czech", "German", "Greek", "English", "English (U.S.A.)", "Spanish", "Spanish (Spain)", "Spanish (Latinamerican)", "Estonian", "Finnish", "French", "French (Canada)", "Hebrew", "Croatian", "Hungarian", "Icelandic", "Italian", "Japanese", "Korean", "Lithuanian", "Latvian", "Macedonian", "Maltese", "Polish", "Portuguese", "Portuguese (Portugal)", "Portuguese (Brazil)", "Romanian", "Russian", "Slovakian", "Slovenian", "Albanian", "Serbian", "Swedish", "Swahili", "Turkish", "Ukrainian", "Urdu", "Chinese",
|
||||
)
|
||||
private val PREF_JW_LANG_VALUES = arrayOf(
|
||||
"ar", "az", "be", "bg", "bs", "ca", "cs", "de", "el", "en", "en-US", "es", "es-ES", "es-LA", "et", "fi", "fr", "fr-CA", "he", "hr", "hu", "is", "it", "ja", "ko", "lt", "lv", "mk", "mt", "pl", "pt", "pt-PT", "pt-BR", "ro", "ru", "sk", "sl", "sq", "sr", "sv", "sw", "tr", "uk", "ur", "zh",
|
||||
|
||||
)
|
||||
private const val PREF_JW_LANG_DEFAULT = "en"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
package eu.kanade.tachiyomi.animeextension.all.torrentio
|
||||
|
||||
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,115 @@
|
|||
package eu.kanade.tachiyomi.animeextension.all.torrentio.dto
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
class GetPopularTitlesResponse(
|
||||
val data: PopularTitlesData? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class PopularTitlesData(
|
||||
val popularTitles: PopularTitles? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class PopularTitles(
|
||||
val edges: List<PopularTitlesEdge>? = null,
|
||||
val pageInfo: PageInfo? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class PopularTitlesEdge(
|
||||
val node: PopularTitleNode? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class PopularTitleNode(
|
||||
val objectType: String? = null,
|
||||
val content: Content? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class Content(
|
||||
val fullPath: String? = null,
|
||||
val title: String? = null,
|
||||
val shortDescription: String? = null,
|
||||
val externalIds: ExternalIds? = null,
|
||||
val posterUrl: String? = null,
|
||||
val genres: List<Genre>? = null,
|
||||
val credits: List<Credit>? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class ExternalIds(
|
||||
val imdbId: String? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class Genre(
|
||||
val translation: String? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class Credit(
|
||||
val name: String? = null,
|
||||
val role: String? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class PageInfo(
|
||||
val hasNextPage: Boolean = false,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class GetUrlTitleDetailsResponse(
|
||||
val data: UrlV2Data? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class UrlV2Data(
|
||||
val urlV2: UrlV2? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class UrlV2(
|
||||
val node: PopularTitleNode? = null,
|
||||
)
|
||||
|
||||
// Stream Data For Torrent
|
||||
@Serializable
|
||||
class StreamDataTorrent(
|
||||
val streams: List<TorrentioStream>? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class TorrentioStream(
|
||||
val name: String? = null,
|
||||
val title: String? = null,
|
||||
val infoHash: String? = null,
|
||||
val fileIdx: Int? = null,
|
||||
val url: String? = null,
|
||||
)
|
||||
|
||||
// Episode Data
|
||||
|
||||
@Serializable
|
||||
class EpisodeList(
|
||||
val meta: EpisodeMeta? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class EpisodeMeta(
|
||||
val id: String? = null,
|
||||
val type: String? = null,
|
||||
val videos: List<EpisodeVideo>? = null,
|
||||
)
|
||||
|
||||
@Serializable
|
||||
class EpisodeVideo(
|
||||
val id: String? = null,
|
||||
val season: Int? = null,
|
||||
val number: Int? = null,
|
||||
val firstAired: String? = null,
|
||||
val name: String? = null,
|
||||
)
|
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'Torrentio Anime (Torrent / Debrid)'
|
||||
extClass = '.Torrentio'
|
||||
extVersionCode = 6
|
||||
extVersionCode = 7
|
||||
containsNsfw = false
|
||||
}
|
||||
|
||||
|
|
|
@ -225,7 +225,8 @@ class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() {
|
|||
|
||||
override fun popularAnimeParse(response: Response): AnimesPage {
|
||||
val jsonData = response.body.string()
|
||||
return parseSearchJson(jsonData) }
|
||||
return parseSearchJson(jsonData)
|
||||
}
|
||||
|
||||
// =============================== Latest ===============================
|
||||
override fun latestUpdatesRequest(page: Int): Request {
|
||||
|
@ -258,7 +259,11 @@ class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() {
|
|||
}
|
||||
|
||||
private fun searchAnimeByIdParse(response: Response): AnimesPage {
|
||||
val details = animeDetailsParse(response)
|
||||
val details = animeDetailsParse(response).apply {
|
||||
setUrlWithoutDomain(response.request.url.toString())
|
||||
initialized = true
|
||||
}
|
||||
|
||||
return AnimesPage(listOf(details), false)
|
||||
}
|
||||
|
||||
|
@ -479,7 +484,9 @@ class Torrentio : ConfigurableAnimeSource, AnimeHttpSource() {
|
|||
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 ?: ""
|
||||
} else {
|
||||
stream.url ?: ""
|
||||
}
|
||||
Video(urlOrHash, ((stream.name?.replace("Torrentio\n", "") ?: "") + "\n" + stream.title), urlOrHash)
|
||||
}.orEmpty()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue