2022-10-15 15:26:51 +00:00
|
|
|
package com.hexated
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty
|
2022-10-18 00:20:30 +00:00
|
|
|
import com.hexated.SoraExtractor.invoke123Movie
|
2022-10-17 08:03:20 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeDbgo
|
2022-11-02 06:56:24 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeFilmxy
|
2022-11-13 20:02:28 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeFlixhq
|
2022-10-27 08:46:19 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeHDMovieBox
|
2022-10-28 03:57:14 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeIdlix
|
2022-11-07 10:16:02 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeKimcartoon
|
2022-10-18 16:16:43 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeMovieHab
|
2022-10-29 19:32:17 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeNoverse
|
2022-10-27 08:46:19 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeSeries9
|
2022-10-21 04:15:49 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeSoraVIP
|
2022-10-17 04:24:09 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeTwoEmbed
|
2022-11-01 04:37:30 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeUniqueStream
|
2022-10-17 05:01:44 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeVidSrc
|
2022-11-12 12:08:52 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeXmovies
|
2022-10-15 15:26:51 +00:00
|
|
|
import com.lagradost.cloudstream3.*
|
2022-10-27 09:02:40 +00:00
|
|
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
2022-10-15 15:26:51 +00:00
|
|
|
import com.lagradost.cloudstream3.metaproviders.TmdbProvider
|
2022-12-14 09:35:04 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeCrunchyroll
|
2022-12-07 15:06:48 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeFDMovies
|
2022-11-22 13:50:37 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeFwatayako
|
2022-12-02 16:50:56 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeGMovies
|
2022-12-14 09:35:04 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeKisskh
|
2022-11-19 04:37:28 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeLing
|
2022-12-09 08:44:01 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeM4uhd
|
2022-12-10 12:25:28 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeTvMovies
|
2022-11-21 10:27:07 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeUhdmovies
|
2022-12-14 09:35:04 +00:00
|
|
|
import com.hexated.SoraExtractor.invokeZoro
|
2022-10-15 15:26:51 +00:00
|
|
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
|
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
|
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
|
|
|
import kotlin.math.roundToInt
|
|
|
|
|
2022-10-17 04:24:09 +00:00
|
|
|
open class SoraStream : TmdbProvider() {
|
2022-10-15 15:26:51 +00:00
|
|
|
override var name = "SoraStream"
|
|
|
|
override val hasMainPage = true
|
|
|
|
override val hasDownloadSupport = true
|
|
|
|
override val instantLinkLoading = true
|
|
|
|
override val useMetaLoadResponse = true
|
2022-11-04 15:54:25 +00:00
|
|
|
override val hasChromecastSupport = true
|
2022-10-15 15:26:51 +00:00
|
|
|
override val supportedTypes = setOf(
|
|
|
|
TvType.Movie,
|
|
|
|
TvType.TvSeries,
|
|
|
|
TvType.Anime,
|
|
|
|
)
|
|
|
|
|
|
|
|
/** AUTHOR : Hexated & Sora */
|
|
|
|
companion object {
|
|
|
|
private const val tmdbAPI = "https://api.themoviedb.org/3"
|
2022-12-14 05:05:18 +00:00
|
|
|
private val apiKey =
|
|
|
|
base64DecodeAPI("ZTM=NTg=MjM=MjM=ODc=MzI=OGQ=MmE=Nzk=Nzk=ZjI=NTA=NDY=NDA=MzA=YjA=") // PLEASE DON'T STEAL
|
2022-11-18 11:00:36 +00:00
|
|
|
const val tmdb2mal = "https://tmdb2mal.slidemovies.org"
|
2022-12-02 16:50:56 +00:00
|
|
|
const val gdbot = "https://gdbot.xyz"
|
2022-11-18 11:00:36 +00:00
|
|
|
|
2022-12-14 05:05:18 +00:00
|
|
|
private val mainAPI =
|
|
|
|
base64DecodeAPI("cHA=LmE=ZWw=cmM=dmU=aC4=dGM=d2E=eHA=Ly8=czo=dHA=aHQ=")
|
|
|
|
|
|
|
|
// private var mainServerAPI = base64DecodeAPI("cA==YXA=bC4=Y2U=ZXI=LnY=aWU=b3Y=LW0=cmE=c28=Ly8=czo=dHA=aHQ=")
|
2022-10-17 04:24:09 +00:00
|
|
|
const val twoEmbedAPI = "https://www.2embed.to"
|
2022-10-21 08:13:27 +00:00
|
|
|
const val vidSrcAPI = "https://v2.vidsrc.me"
|
2022-10-18 00:20:30 +00:00
|
|
|
const val dbgoAPI = "https://dbgo.fun"
|
|
|
|
const val movie123API = "https://api.123movie.cc"
|
2022-10-18 16:16:43 +00:00
|
|
|
const val movieHabAPI = "https://moviehab.com"
|
2022-10-27 08:46:19 +00:00
|
|
|
const val databaseGdriveAPI = "https://databasegdriveplayer.co"
|
|
|
|
const val hdMovieBoxAPI = "https://hdmoviebox.net"
|
|
|
|
const val series9API = "https://series9.la"
|
2022-12-20 15:24:47 +00:00
|
|
|
const val idlixAPI = "https://idlixian.com"
|
2022-10-29 19:32:17 +00:00
|
|
|
const val noverseAPI = "https://www.nollyverse.com"
|
|
|
|
const val olgplyAPI = "https://olgply.xyz"
|
2022-11-01 04:37:30 +00:00
|
|
|
const val uniqueStreamAPI = "https://uniquestream.net"
|
2022-11-02 06:56:24 +00:00
|
|
|
const val filmxyAPI = "https://www.filmxy.vip"
|
2022-11-07 10:16:02 +00:00
|
|
|
const val kimcartoonAPI = "https://kimcartoon.li"
|
2022-12-09 08:44:01 +00:00
|
|
|
const val xMovieAPI = "https://xemovies.to"
|
2022-11-13 20:02:28 +00:00
|
|
|
const val consumetFlixhqAPI = "https://api.consumet.org/movies/flixhq"
|
2022-11-18 11:00:36 +00:00
|
|
|
const val consumetZoroAPI = "https://api.consumet.org/anime/zoro"
|
2022-12-14 05:05:18 +00:00
|
|
|
const val consumetCrunchyrollAPI = "https://api.consumet.org/anime/crunchyroll"
|
2022-11-13 20:02:28 +00:00
|
|
|
const val kissKhAPI = "https://kisskh.me"
|
2022-11-19 04:37:28 +00:00
|
|
|
const val lingAPI = "https://ling-online.net"
|
2022-11-21 10:27:07 +00:00
|
|
|
const val uhdmoviesAPI = "https://uhdmovies.site"
|
2022-11-22 13:50:37 +00:00
|
|
|
const val fwatayakoAPI = "https://5100.svetacdn.in"
|
2022-12-02 16:50:56 +00:00
|
|
|
const val gMoviesAPI = "https://gdrivemovies.xyz"
|
2022-12-07 15:06:48 +00:00
|
|
|
const val fdMoviesAPI = "https://freedrivemovie.com"
|
2022-12-09 08:44:01 +00:00
|
|
|
const val m4uhdAPI = "https://m4uhd.tv"
|
2022-12-10 12:25:28 +00:00
|
|
|
const val tvMoviesAPI = "https://www.tvseriesnmovies.com"
|
2022-10-15 15:26:51 +00:00
|
|
|
|
|
|
|
fun getType(t: String?): TvType {
|
|
|
|
return when (t) {
|
|
|
|
"movie" -> TvType.Movie
|
|
|
|
else -> TvType.TvSeries
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getStatus(t: String?): ShowStatus {
|
|
|
|
return when (t) {
|
|
|
|
"Returning Series" -> ShowStatus.Ongoing
|
|
|
|
else -> ShowStatus.Completed
|
|
|
|
}
|
|
|
|
}
|
2022-10-17 06:32:34 +00:00
|
|
|
|
2022-11-04 15:54:25 +00:00
|
|
|
fun base64DecodeAPI(api: String): String {
|
2022-10-17 06:32:34 +00:00
|
|
|
return api.chunked(4).map { base64Decode(it) }.reversed().joinToString("")
|
|
|
|
}
|
2022-11-04 15:54:25 +00:00
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override val mainPage = mainPageOf(
|
2022-12-05 21:03:26 +00:00
|
|
|
"$tmdbAPI/trending/all/day?api_key=$apiKey®ion=&page=" to "Trending",
|
2022-10-15 15:26:51 +00:00
|
|
|
"$tmdbAPI/movie/popular?api_key=$apiKey®ion=&page=" to "Popular Movies",
|
|
|
|
"$tmdbAPI/tv/popular?api_key=$apiKey®ion=&page=" to "Popular TV Shows",
|
2022-12-14 10:33:34 +00:00
|
|
|
"$tmdbAPI/tv/airing_today?api_key=$apiKey®ion=&page=" to "Airing Today TV Shows",
|
|
|
|
// "$tmdbAPI/tv/on_the_air?api_key=$apiKey®ion=&page=" to "On The Air TV Shows",
|
2022-11-02 06:56:24 +00:00
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=213&page=" to "Netflix",
|
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=1024&page=" to "Amazon",
|
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=2739&page=" to "Disney+",
|
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=453&page=" to "Hulu",
|
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=2552&page=" to "Apple TV+",
|
2022-12-14 10:29:29 +00:00
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_networks=49&page=" to "HBO",
|
2022-10-15 15:26:51 +00:00
|
|
|
"$tmdbAPI/movie/top_rated?api_key=$apiKey®ion=&page=" to "Top Rated Movies",
|
|
|
|
"$tmdbAPI/tv/top_rated?api_key=$apiKey®ion=&page=" to "Top Rated TV Shows",
|
2022-10-30 05:24:44 +00:00
|
|
|
"$tmdbAPI/movie/upcoming?api_key=$apiKey®ion=&page=" to "Upcoming Movies",
|
2022-12-03 09:27:19 +00:00
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_original_language=ko&page=" to "Korean Shows",
|
2022-12-14 11:01:25 +00:00
|
|
|
"$tmdbAPI/tv/airing_today?api_key=$apiKey&with_keywords=210024|222243&sort_by=primary_release_date.desc&page=" to "Airing Today Anime",
|
|
|
|
"$tmdbAPI/tv/on_the_air?api_key=$apiKey&with_keywords=210024|222243&sort_by=primary_release_date.desc&page=" to "Ongoing Anime",
|
2022-10-15 18:38:09 +00:00
|
|
|
"$tmdbAPI/discover/tv?api_key=$apiKey&with_keywords=210024|222243&page=" to "Anime",
|
|
|
|
"$tmdbAPI/discover/movie?api_key=$apiKey&with_keywords=210024|222243&page=" to "Anime Movies",
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
private fun getImageUrl(link: String?): String? {
|
|
|
|
if (link == null) return null
|
|
|
|
return if (link.startsWith("/")) "https://image.tmdb.org/t/p/w500/$link" else link
|
|
|
|
}
|
|
|
|
|
2022-11-03 06:36:36 +00:00
|
|
|
private fun getOriImageUrl(link: String?): String? {
|
|
|
|
if (link == null) return null
|
|
|
|
return if (link.startsWith("/")) "https://image.tmdb.org/t/p/original/$link" else link
|
|
|
|
}
|
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
override suspend fun getMainPage(
|
|
|
|
page: Int,
|
|
|
|
request: MainPageRequest
|
|
|
|
): HomePageResponse {
|
2022-11-04 15:54:25 +00:00
|
|
|
// checkMainServer()
|
2022-10-15 15:26:51 +00:00
|
|
|
val type = if (request.data.contains("/movie")) "movie" else "tv"
|
|
|
|
val home = app.get(request.data + page)
|
|
|
|
.parsedSafe<Results>()?.results
|
|
|
|
?.mapNotNull { media ->
|
|
|
|
media.toSearchResponse(type)
|
|
|
|
} ?: throw ErrorLoadingException("Invalid Json reponse")
|
|
|
|
return newHomePageResponse(request.name, home)
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun Media.toSearchResponse(type: String? = null): SearchResponse? {
|
|
|
|
return newMovieSearchResponse(
|
|
|
|
title ?: name ?: originalTitle ?: return null,
|
|
|
|
Data(id = id, type = mediaType ?: type).toJson(),
|
|
|
|
TvType.Movie,
|
|
|
|
) {
|
|
|
|
this.posterUrl = getImageUrl(posterPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override suspend fun search(query: String): List<SearchResponse> {
|
2022-10-19 21:46:22 +00:00
|
|
|
val searchResponse = mutableListOf<SearchResponse>()
|
|
|
|
|
|
|
|
val mainResponse = app.get(
|
2022-12-11 03:09:55 +00:00
|
|
|
"$tmdbAPI/search/multi?api_key=$apiKey&language=en-US&query=$query&page=1&include_adult=${settingsForProvider.enableAdult}",
|
2022-10-15 15:26:51 +00:00
|
|
|
referer = "$mainAPI/"
|
|
|
|
).parsedSafe<Results>()?.results?.mapNotNull { media ->
|
|
|
|
media.toSearchResponse()
|
2022-11-01 04:37:30 +00:00
|
|
|
}
|
2022-11-04 15:54:25 +00:00
|
|
|
if (mainResponse?.isNotEmpty() == true) searchResponse.addAll(mainResponse)
|
2022-10-19 21:46:22 +00:00
|
|
|
|
|
|
|
return searchResponse
|
|
|
|
}
|
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
override suspend fun load(url: String): LoadResponse? {
|
|
|
|
val data = parseJson<Data>(url)
|
2022-11-22 07:43:11 +00:00
|
|
|
val type = getType(data.type)
|
2022-12-07 15:06:48 +00:00
|
|
|
val resUrl = if (type == TvType.Movie) {
|
2022-11-22 07:43:11 +00:00
|
|
|
"$tmdbAPI/movie/${data.id}?api_key=$apiKey&append_to_response=credits,external_ids,videos,recommendations"
|
|
|
|
} else {
|
|
|
|
"$tmdbAPI/tv/${data.id}?api_key=$apiKey&append_to_response=credits,external_ids,videos,recommendations"
|
|
|
|
}
|
2022-12-07 15:06:48 +00:00
|
|
|
val res = app.get(resUrl).parsedSafe<MediaDetail>()
|
|
|
|
?: throw ErrorLoadingException("Invalid Json Response")
|
2022-10-19 21:46:22 +00:00
|
|
|
|
2022-11-04 15:54:25 +00:00
|
|
|
val title = res.title ?: res.name ?: return null
|
2022-11-26 21:25:36 +00:00
|
|
|
val poster = getOriImageUrl(res.posterPath)
|
|
|
|
val bgPoster = getOriImageUrl(res.backdropPath)
|
2022-11-04 15:54:25 +00:00
|
|
|
val orgTitle = res.originalTitle ?: res.originalName ?: return null
|
|
|
|
val year = (res.releaseDate ?: res.firstAirDate)?.split("-")?.first()?.toIntOrNull()
|
2022-11-24 06:27:52 +00:00
|
|
|
val rating = res.vote_average.toString().toRatingInt()
|
2022-11-19 04:37:28 +00:00
|
|
|
val genres = res.genres?.mapNotNull { it.name }
|
2022-12-07 15:06:48 +00:00
|
|
|
val isAnime = genres?.contains("Animation") == true && res.original_language == "ja"
|
2022-11-04 15:54:25 +00:00
|
|
|
|
2022-11-22 07:43:11 +00:00
|
|
|
val actors = res.credits?.cast?.mapNotNull { cast ->
|
2022-10-15 15:26:51 +00:00
|
|
|
ActorData(
|
|
|
|
Actor(
|
|
|
|
cast.name ?: cast.originalName ?: return@mapNotNull null,
|
|
|
|
getImageUrl(cast.profilePath)
|
|
|
|
),
|
2022-11-22 07:43:11 +00:00
|
|
|
roleString = cast.character
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
} ?: return null
|
2022-12-07 15:06:48 +00:00
|
|
|
val recommendations =
|
|
|
|
res.recommendations?.results?.mapNotNull { media -> media.toSearchResponse() }
|
2022-10-15 15:26:51 +00:00
|
|
|
|
2022-11-22 07:43:11 +00:00
|
|
|
val trailer = res.videos?.results?.map { "https://www.youtube.com/watch?v=${it.key}" }
|
|
|
|
?.randomOrNull()
|
2022-10-27 09:02:40 +00:00
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
return if (type == TvType.TvSeries) {
|
|
|
|
val episodes = mutableListOf<Episode>()
|
2022-11-21 10:27:07 +00:00
|
|
|
val lastSeason = res.seasons?.lastOrNull()?.seasonNumber
|
2022-10-15 15:26:51 +00:00
|
|
|
res.seasons?.apmap { season ->
|
|
|
|
app.get("$tmdbAPI/${data.type}/${data.id}/season/${season.seasonNumber}?api_key=$apiKey")
|
|
|
|
.parsedSafe<MediaDetailEpisodes>()?.episodes?.map { eps ->
|
|
|
|
episodes.add(Episode(
|
|
|
|
LinkData(
|
|
|
|
data.id,
|
2022-11-22 07:43:11 +00:00
|
|
|
res.external_ids?.imdb_id,
|
2022-10-15 15:26:51 +00:00
|
|
|
data.type,
|
|
|
|
eps.seasonNumber,
|
2022-10-27 08:46:19 +00:00
|
|
|
eps.episodeNumber,
|
|
|
|
title = title,
|
2022-11-04 15:54:25 +00:00
|
|
|
year = season.airDate?.split("-")?.first()?.toIntOrNull(),
|
|
|
|
orgTitle = orgTitle,
|
2022-12-07 15:06:48 +00:00
|
|
|
isAnime = isAnime,
|
2022-11-21 10:27:07 +00:00
|
|
|
airedYear = year,
|
2022-12-14 05:05:18 +00:00
|
|
|
lastSeason = lastSeason,
|
|
|
|
epsTitle = eps.name,
|
2022-10-15 15:26:51 +00:00
|
|
|
).toJson(),
|
|
|
|
name = eps.name,
|
|
|
|
season = eps.seasonNumber,
|
|
|
|
episode = eps.episodeNumber,
|
|
|
|
posterUrl = getImageUrl(eps.stillPath),
|
|
|
|
rating = eps.voteAverage?.times(10)?.roundToInt(),
|
|
|
|
description = eps.overview
|
|
|
|
).apply {
|
|
|
|
this.addDate(eps.airDate)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newTvSeriesLoadResponse(
|
2022-10-27 08:46:19 +00:00
|
|
|
title,
|
2022-10-15 15:26:51 +00:00
|
|
|
url,
|
|
|
|
TvType.TvSeries,
|
|
|
|
episodes
|
|
|
|
) {
|
2022-11-19 04:37:28 +00:00
|
|
|
this.posterUrl = poster
|
2022-11-26 21:25:36 +00:00
|
|
|
this.backgroundPosterUrl = bgPoster
|
2022-10-30 05:29:18 +00:00
|
|
|
this.year = year
|
2022-10-15 15:26:51 +00:00
|
|
|
this.plot = res.overview
|
2022-11-19 04:37:28 +00:00
|
|
|
this.tags = genres
|
2022-11-24 06:27:52 +00:00
|
|
|
this.rating = rating
|
2022-10-15 15:26:51 +00:00
|
|
|
this.showStatus = getStatus(res.status)
|
|
|
|
this.recommendations = recommendations
|
|
|
|
this.actors = actors
|
2022-10-27 09:02:40 +00:00
|
|
|
addTrailer(trailer)
|
2022-10-15 15:26:51 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newMovieLoadResponse(
|
2022-10-27 08:46:19 +00:00
|
|
|
title,
|
2022-10-15 15:26:51 +00:00
|
|
|
url,
|
|
|
|
TvType.Movie,
|
|
|
|
LinkData(
|
|
|
|
data.id,
|
2022-11-22 07:43:11 +00:00
|
|
|
res.external_ids?.imdb_id,
|
2022-10-15 15:26:51 +00:00
|
|
|
data.type,
|
2022-10-27 08:46:19 +00:00
|
|
|
title = title,
|
2022-10-30 05:29:18 +00:00
|
|
|
year = year,
|
2022-11-04 15:54:25 +00:00
|
|
|
orgTitle = orgTitle,
|
2022-12-07 15:06:48 +00:00
|
|
|
isAnime = isAnime,
|
2022-10-15 15:26:51 +00:00
|
|
|
).toJson(),
|
|
|
|
) {
|
2022-11-19 04:37:28 +00:00
|
|
|
this.posterUrl = poster
|
2022-11-26 21:25:36 +00:00
|
|
|
this.backgroundPosterUrl = bgPoster
|
2022-10-30 05:29:18 +00:00
|
|
|
this.year = year
|
2022-10-15 15:26:51 +00:00
|
|
|
this.plot = res.overview
|
2022-11-19 04:37:28 +00:00
|
|
|
this.tags = genres
|
2022-11-24 06:27:52 +00:00
|
|
|
this.rating = rating
|
2022-10-15 15:26:51 +00:00
|
|
|
this.recommendations = recommendations
|
|
|
|
this.actors = actors
|
2022-10-27 09:02:40 +00:00
|
|
|
addTrailer(trailer)
|
2022-10-15 15:26:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override suspend fun loadLinks(
|
|
|
|
data: String,
|
|
|
|
isCasting: Boolean,
|
|
|
|
subtitleCallback: (SubtitleFile) -> Unit,
|
|
|
|
callback: (ExtractorLink) -> Unit
|
|
|
|
): Boolean {
|
|
|
|
|
|
|
|
val res = parseJson<LinkData>(data)
|
|
|
|
|
2022-10-17 03:47:46 +00:00
|
|
|
argamap(
|
2022-11-07 11:03:22 +00:00
|
|
|
{
|
|
|
|
invokeSoraVIP(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
},
|
2022-10-17 05:02:24 +00:00
|
|
|
{
|
|
|
|
invokeTwoEmbed(res.id, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-10-17 04:24:09 +00:00
|
|
|
{
|
2022-10-17 05:01:44 +00:00
|
|
|
invokeVidSrc(res.id, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-11-21 10:27:07 +00:00
|
|
|
// {
|
|
|
|
// invokeOlgply(res.id, res.season, res.episode, callback)
|
|
|
|
// },
|
2022-10-17 08:03:20 +00:00
|
|
|
{
|
|
|
|
invokeDbgo(res.imdbId, res.season, res.episode, subtitleCallback, callback)
|
2022-10-18 00:20:30 +00:00
|
|
|
},
|
|
|
|
{
|
2022-10-19 21:46:22 +00:00
|
|
|
invoke123Movie(
|
|
|
|
res.id,
|
|
|
|
res.imdbId,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-10-18 16:16:43 +00:00
|
|
|
},
|
|
|
|
{
|
2022-10-28 03:57:14 +00:00
|
|
|
invokeMovieHab(res.imdbId, res.season, res.episode, subtitleCallback, callback)
|
2022-10-19 21:46:22 +00:00
|
|
|
},
|
2022-10-27 09:03:24 +00:00
|
|
|
// {
|
|
|
|
// invokeDatabaseGdrive(
|
|
|
|
// res.imdbId,
|
|
|
|
// res.season,
|
|
|
|
// res.episode,
|
|
|
|
// subtitleCallback,
|
|
|
|
// callback
|
|
|
|
// )
|
|
|
|
// },
|
2022-10-19 21:46:22 +00:00
|
|
|
{
|
2022-12-14 09:35:04 +00:00
|
|
|
if (res.season != null && res.isAnime) invokeZoro(
|
2022-11-18 11:00:36 +00:00
|
|
|
res.id,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
2022-11-04 15:54:25 +00:00
|
|
|
callback
|
|
|
|
)
|
2022-10-27 08:46:19 +00:00
|
|
|
},
|
|
|
|
{
|
2022-12-14 09:35:04 +00:00
|
|
|
if (res.season != null && res.isAnime) invokeCrunchyroll(
|
2022-12-14 05:05:18 +00:00
|
|
|
res.title,
|
|
|
|
res.epsTitle,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
if (!res.isAnime) invokeHDMovieBox(res.title, res.season, res.episode, callback)
|
2022-10-27 08:46:19 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
invokeSeries9(res.title, res.season, res.episode, subtitleCallback, callback)
|
2022-10-28 03:57:14 +00:00
|
|
|
},
|
|
|
|
{
|
2022-11-04 15:54:25 +00:00
|
|
|
invokeIdlix(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-10-29 19:32:17 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
invokeNoverse(res.title, res.season, res.episode, callback)
|
2022-11-01 04:37:30 +00:00
|
|
|
},
|
|
|
|
{
|
2022-11-04 15:54:25 +00:00
|
|
|
invokeUniqueStream(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-11-02 06:56:24 +00:00
|
|
|
},
|
2022-11-10 04:28:02 +00:00
|
|
|
{
|
|
|
|
invokeFilmxy(res.imdbId, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-11-07 10:16:02 +00:00
|
|
|
{
|
|
|
|
invokeKimcartoon(res.title, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-11-12 12:08:52 +00:00
|
|
|
{
|
2022-11-19 04:37:28 +00:00
|
|
|
invokeXmovies(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-11-12 12:08:52 +00:00
|
|
|
},
|
2022-11-13 20:02:28 +00:00
|
|
|
{
|
2022-11-19 04:37:28 +00:00
|
|
|
invokeFlixhq(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-11-13 20:02:28 +00:00
|
|
|
},
|
|
|
|
{
|
2022-12-14 09:35:04 +00:00
|
|
|
invokeKisskh(res.title, res.season, res.episode, subtitleCallback, callback)
|
2022-11-13 20:02:28 +00:00
|
|
|
},
|
2022-11-19 04:37:28 +00:00
|
|
|
{
|
|
|
|
invokeLing(
|
|
|
|
res.title,
|
|
|
|
res.airedYear ?: res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
},
|
2022-11-24 08:35:43 +00:00
|
|
|
{
|
2022-12-14 05:05:18 +00:00
|
|
|
if (!res.isAnime) invokeUhdmovies(
|
2022-11-24 08:35:43 +00:00
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.lastSeason,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
},
|
2022-11-22 13:50:37 +00:00
|
|
|
{
|
|
|
|
invokeFwatayako(res.imdbId, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-12-09 08:44:01 +00:00
|
|
|
{
|
2022-12-14 05:05:18 +00:00
|
|
|
if (!res.isAnime) invokeGMovies(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-12-09 08:44:01 +00:00
|
|
|
},
|
2022-12-11 03:09:55 +00:00
|
|
|
{
|
2022-12-14 05:05:18 +00:00
|
|
|
if (!res.isAnime) invokeFDMovies(
|
|
|
|
res.title,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-12-11 03:09:55 +00:00
|
|
|
},
|
2022-12-09 08:44:01 +00:00
|
|
|
{
|
2022-12-14 05:05:18 +00:00
|
|
|
invokeM4uhd(
|
|
|
|
res.title,
|
|
|
|
res.year,
|
|
|
|
res.season,
|
|
|
|
res.episode,
|
|
|
|
subtitleCallback,
|
|
|
|
callback
|
|
|
|
)
|
2022-12-10 12:25:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
invokeTvMovies(res.title, res.season, res.episode, subtitleCallback, callback)
|
|
|
|
},
|
2022-10-27 08:46:19 +00:00
|
|
|
)
|
2022-10-15 15:26:51 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
private data class LinkData(
|
|
|
|
val id: Int? = null,
|
|
|
|
val imdbId: String? = null,
|
|
|
|
val type: String? = null,
|
|
|
|
val season: Int? = null,
|
|
|
|
val episode: Int? = null,
|
2022-10-19 21:46:22 +00:00
|
|
|
val aniId: String? = null,
|
|
|
|
val animeId: String? = null,
|
2022-10-27 08:46:19 +00:00
|
|
|
val title: String? = null,
|
2022-10-30 05:29:18 +00:00
|
|
|
val year: Int? = null,
|
2022-11-04 15:54:25 +00:00
|
|
|
val orgTitle: String? = null,
|
2022-12-07 15:06:48 +00:00
|
|
|
val isAnime: Boolean = false,
|
2022-11-19 04:37:28 +00:00
|
|
|
val airedYear: Int? = null,
|
2022-11-21 10:27:07 +00:00
|
|
|
val lastSeason: Int? = null,
|
2022-12-14 05:05:18 +00:00
|
|
|
val epsTitle: String? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
data class Data(
|
|
|
|
val id: Int? = null,
|
|
|
|
val type: String? = null,
|
2022-10-19 21:46:22 +00:00
|
|
|
val aniId: String? = null,
|
|
|
|
val malId: Int? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
data class Results(
|
|
|
|
@JsonProperty("results") val results: ArrayList<Media>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Media(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("title") val title: String? = null,
|
|
|
|
@JsonProperty("original_title") val originalTitle: String? = null,
|
|
|
|
@JsonProperty("media_type") val mediaType: String? = null,
|
|
|
|
@JsonProperty("poster_path") val posterPath: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Genres(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Seasons(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("season_number") val seasonNumber: Int? = null,
|
2022-11-04 15:54:25 +00:00
|
|
|
@JsonProperty("air_date") val airDate: String? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
data class Cast(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("original_name") val originalName: String? = null,
|
|
|
|
@JsonProperty("character") val character: String? = null,
|
|
|
|
@JsonProperty("known_for_department") val knownForDepartment: String? = null,
|
|
|
|
@JsonProperty("profile_path") val profilePath: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Episodes(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("overview") val overview: String? = null,
|
|
|
|
@JsonProperty("air_date") val airDate: String? = null,
|
|
|
|
@JsonProperty("still_path") val stillPath: String? = null,
|
|
|
|
@JsonProperty("vote_average") val voteAverage: Double? = null,
|
|
|
|
@JsonProperty("episode_number") val episodeNumber: Int? = null,
|
|
|
|
@JsonProperty("season_number") val seasonNumber: Int? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class MediaDetailEpisodes(
|
|
|
|
@JsonProperty("episodes") val episodes: ArrayList<Episodes>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
2022-10-27 09:02:40 +00:00
|
|
|
data class Trailers(
|
|
|
|
@JsonProperty("key") val key: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class ResultsTrailer(
|
|
|
|
@JsonProperty("results") val results: ArrayList<Trailers>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
2022-11-22 07:43:11 +00:00
|
|
|
data class ExternalIds(
|
|
|
|
@JsonProperty("imdb_id") val imdb_id: String? = null,
|
|
|
|
@JsonProperty("tvdb_id") val tvdb_id: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class Credits(
|
|
|
|
@JsonProperty("cast") val cast: ArrayList<Cast>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
|
|
|
data class ResultsRecommendations(
|
|
|
|
@JsonProperty("results") val results: ArrayList<Media>? = arrayListOf(),
|
|
|
|
)
|
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
data class MediaDetail(
|
|
|
|
@JsonProperty("id") val id: Int? = null,
|
|
|
|
@JsonProperty("imdb_id") val imdbId: String? = null,
|
|
|
|
@JsonProperty("title") val title: String? = null,
|
|
|
|
@JsonProperty("name") val name: String? = null,
|
|
|
|
@JsonProperty("original_title") val originalTitle: String? = null,
|
|
|
|
@JsonProperty("original_name") val originalName: String? = null,
|
|
|
|
@JsonProperty("poster_path") val posterPath: String? = null,
|
2022-11-03 06:36:36 +00:00
|
|
|
@JsonProperty("backdrop_path") val backdropPath: String? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
@JsonProperty("release_date") val releaseDate: String? = null,
|
|
|
|
@JsonProperty("first_air_date") val firstAirDate: String? = null,
|
|
|
|
@JsonProperty("overview") val overview: String? = null,
|
2022-11-24 06:27:52 +00:00
|
|
|
@JsonProperty("vote_average") val vote_average: Any? = null,
|
2022-11-19 04:37:28 +00:00
|
|
|
@JsonProperty("original_language") val original_language: String? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
@JsonProperty("status") val status: String? = null,
|
|
|
|
@JsonProperty("genres") val genres: ArrayList<Genres>? = arrayListOf(),
|
|
|
|
@JsonProperty("seasons") val seasons: ArrayList<Seasons>? = arrayListOf(),
|
2022-10-27 09:02:40 +00:00
|
|
|
@JsonProperty("videos") val videos: ResultsTrailer? = null,
|
2022-11-22 07:43:11 +00:00
|
|
|
@JsonProperty("external_ids") val external_ids: ExternalIds? = null,
|
|
|
|
@JsonProperty("credits") val credits: Credits? = null,
|
|
|
|
@JsonProperty("recommendations") val recommendations: ResultsRecommendations? = null,
|
2022-10-15 15:26:51 +00:00
|
|
|
)
|
|
|
|
|
2022-11-22 07:43:11 +00:00
|
|
|
// data class PageProps(
|
|
|
|
// @JsonProperty("id") val id: String? = null,
|
|
|
|
// @JsonProperty("imdb") val imdbId: String? = null,
|
|
|
|
// @JsonProperty("result") val result: MediaDetail? = null,
|
|
|
|
// @JsonProperty("recommandations") val recommandations: ArrayList<Media>? = arrayListOf(),
|
|
|
|
// @JsonProperty("cast") val cast: ArrayList<Cast>? = arrayListOf(),
|
|
|
|
// )
|
2022-10-15 15:26:51 +00:00
|
|
|
|
2022-10-15 16:52:16 +00:00
|
|
|
data class EmbedJson(
|
|
|
|
@JsonProperty("type") val type: String? = null,
|
|
|
|
@JsonProperty("link") val link: String? = null,
|
|
|
|
@JsonProperty("sources") val sources: List<String?> = arrayListOf(),
|
|
|
|
@JsonProperty("tracks") val tracks: List<String>? = null,
|
|
|
|
)
|
|
|
|
|
2022-10-21 08:02:38 +00:00
|
|
|
data class MovieHabData(
|
|
|
|
@JsonProperty("link") val link: String? = null,
|
|
|
|
@JsonProperty("token") val token: String? = null,
|
|
|
|
)
|
|
|
|
|
|
|
|
data class MovieHabRes(
|
|
|
|
@JsonProperty("data") val data: MovieHabData? = null,
|
|
|
|
)
|
|
|
|
|
2022-10-15 15:26:51 +00:00
|
|
|
}
|