package com.lagradost.cloudstream3 import android.content.Context import androidx.preference.PreferenceManager import com.fasterxml.jackson.databind.DeserializationFeature import com.fasterxml.jackson.databind.json.JsonMapper import com.fasterxml.jackson.module.kotlin.KotlinModule import com.lagradost.cloudstream3.animeproviders.* import com.lagradost.cloudstream3.movieproviders.* import com.lagradost.cloudstream3.utils.ExtractorLink import java.util.* const val USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" //val baseHeader = mapOf("User-Agent" to USER_AGENT) val mapper = JsonMapper.builder().addModule(KotlinModule()) .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false).build()!! object APIHolder { val unixTime: Long get() = System.currentTimeMillis() / 1000L val unixTimeMS: Long get() = System.currentTimeMillis() private const val defProvider = 0 val apis = arrayListOf( GogoanimeProvider(), //ShiroProvider(), // v2 fucked me //AnimePaheProvider(), //ddos guard AnimeFlickProvider(), KawaiifuProvider(), TenshiProvider(), WcoProvider(), // MeloMovieProvider(), // Captcha for links DubbedAnimeProvider(), HDMProvider(), //LookMovieProvider(), // RECAPTCHA (Please allow up to 5 seconds...) VMoveeProvider(), WatchCartoonOnlineProvider(), AllMoviesForYouProvider(), VidEmbedProvider(), VfFilmProvider(), AsianLoadProvider(), SflixProvider(), ) val restrictedApis = arrayListOf( TrailersToProvider(), // be aware that this is fuckery //NyaaProvider(), //torrents in cs3 is wack ThenosProvider(), AsiaFlixProvider(), ) fun getApiFromName(apiName: String?): MainAPI { for (api in apis) { if (apiName == api.name) return api } return apis[defProvider] } fun getApiFromNameNull(apiName: String?): MainAPI? { for (api in apis) { if (apiName == api.name) return api } return null } fun LoadResponse.getId(): Int { return url.replace(getApiFromName(apiName).mainUrl, "").replace("/", "").hashCode() } fun Context.getApiSettings(): HashSet { val settingsManager = PreferenceManager.getDefaultSharedPreferences(this) val hashSet = HashSet() val activeLangs = getApiProviderLangSettings() hashSet.addAll(apis.filter { activeLangs.contains(it.lang) }.map { it.name }) val set = settingsManager.getStringSet( this.getString(R.string.search_providers_list_key), hashSet )?.toHashSet() ?: hashSet val list = HashSet() for (name in set) { val api = getApiFromNameNull(name) ?: continue if (activeLangs.contains(api.lang)) { list.add(name) } } if (list.isEmpty()) return hashSet return list } fun Context.getApiDubstatusSettings(): HashSet { val settingsManager = PreferenceManager.getDefaultSharedPreferences(this) val hashSet = HashSet() hashSet.addAll(DubStatus.values()) val list = settingsManager.getStringSet( this.getString(R.string.display_sub_key), hashSet.map { it.name }.toMutableSet() ) ?: return hashSet val names = DubStatus.values().map { it.name }.toHashSet() //if(realSet.isEmpty()) return hashSet return list.filter { names.contains(it) }.map { DubStatus.valueOf(it) }.toHashSet() } fun Context.getApiProviderLangSettings(): HashSet { val settingsManager = PreferenceManager.getDefaultSharedPreferences(this) val hashSet = HashSet() hashSet.add("en") // def is only en val list = settingsManager.getStringSet( this.getString(R.string.provider_lang_key), hashSet.toMutableSet() ) if (list.isNullOrEmpty()) return hashSet return list.toHashSet() } fun Context.getApiTypeSettings(): HashSet { val settingsManager = PreferenceManager.getDefaultSharedPreferences(this) val hashSet = HashSet() hashSet.addAll(TvType.values()) val list = settingsManager.getStringSet( this.getString(R.string.search_types_list_key), hashSet.map { it.name }.toMutableSet() ) if (list.isNullOrEmpty()) return hashSet val names = TvType.values().map { it.name }.toHashSet() val realSet = list.filter { names.contains(it) }.map { TvType.valueOf(it) }.toHashSet() if (realSet.isEmpty()) return hashSet return realSet } } /**Every provider will **not** have try catch built in, so handle exceptions when calling these functions*/ abstract class MainAPI { open val name = "NONE" open val mainUrl = "NONE" open val lang = "en" // ISO_639_1 check SubtitleHelper /**If link is stored in the "data" string, so links can be instantly loaded*/ open val instantLinkLoading = false /**Set false if links require referer or for some reason cant be played on a chromecast*/ open val hasChromecastSupport = true /**If all links are m3u8 then set this to false*/ open val hasDownloadSupport = true open val hasMainPage = false open val hasQuickSearch = false open val supportedTypes = setOf( TvType.Movie, TvType.TvSeries, TvType.Cartoon, TvType.Anime, TvType.ONA, ) open val vpnStatus = VPNStatus.None open fun getMainPage(): HomePageResponse? { throw NotImplementedError() } open fun search(query: String): List? { throw NotImplementedError() } open fun quickSearch(query: String): List? { throw NotImplementedError() } open fun load(url: String): LoadResponse? { throw NotImplementedError() } /**Callback is fired once a link is found, will return true if method is executed successfully*/ open fun loadLinks( data: String, isCasting: Boolean, subtitleCallback: (SubtitleFile) -> Unit, callback: (ExtractorLink) -> Unit ): Boolean { throw NotImplementedError() } } /** Might need a different implementation for desktop*/ fun base64Decode(string: String): String { return try { String(android.util.Base64.decode(string, android.util.Base64.DEFAULT), Charsets.ISO_8859_1) } catch (e: Exception) { String(Base64.getDecoder().decode(string)) } } class ErrorLoadingException(message: String? = null) : Exception(message) fun parseRating(ratingString: String?): Int? { if (ratingString == null) return null val floatRating = ratingString.toFloatOrNull() ?: return null return (floatRating * 10).toInt() } fun MainAPI.fixUrl(url: String): String { if (url.startsWith("http")) { return url } val startsWithNoHttp = url.startsWith("//") if (startsWithNoHttp) { return "https:$url" } else { if (url.startsWith('/')) { return mainUrl + url } return "$mainUrl/$url" } } fun sortUrls(urls: List): List { return urls.sortedBy { t -> -t.quality } } fun sortSubs(urls: List): List { val encounteredTimes = HashMap() return urls.sortedBy { t -> t.lang }.map { val times = encounteredTimes[it.lang]?.plus(1) ?: 1 encounteredTimes[it.lang] = times SubtitleFile("${it.lang} ${if (times > 1) "($times)" else ""}", it.url) } } /** https://www.imdb.com/title/tt2861424/ -> tt2861424 */ fun imdbUrlToId(url: String): String { return url .removePrefix("https://www.imdb.com/title/") .removePrefix("https://imdb.com/title/tt2861424/") .replace("/", "") } fun imdbUrlToIdNullable(url: String?): String? { if (url == null) return null return imdbUrlToId(url) } enum class VPNStatus { None, MightBeNeeded, Torrent, } enum class ShowStatus { Completed, Ongoing, } enum class DubStatus { Dubbed, Subbed, } enum class TvType { Movie, AnimeMovie, TvSeries, Cartoon, Anime, ONA, Torrent, } // IN CASE OF FUTURE ANIME MOVIE OR SMTH fun TvType.isMovieType(): Boolean { return this == TvType.Movie || this == TvType.AnimeMovie || this == TvType.Torrent } data class SubtitleFile(val lang: String, val url: String) class HomePageResponse( val items: List ) class HomePageList( val name: String, var list: List ) interface SearchResponse { val name: String val url: String val apiName: String val type: TvType val posterUrl: String? val id: Int? } data class AnimeSearchResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, override val posterUrl: String?, val year: Int?, val otherName: String?, val dubStatus: EnumSet?, val dubEpisodes: Int?, val subEpisodes: Int?, override val id: Int? = null, ) : SearchResponse data class TorrentSearchResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, override val posterUrl: String?, override val id: Int? = null, ) : SearchResponse data class MovieSearchResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, override val posterUrl: String?, val year: Int?, override val id: Int? = null, ) : SearchResponse data class TvSeriesSearchResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, override val posterUrl: String?, val year: Int?, val episodes: Int?, override val id: Int? = null, ) : SearchResponse interface LoadResponse { val name: String val url: String val apiName: String val type: TvType val posterUrl: String? val year: Int? val plot: String? val rating: Int? // 0-100 val tags: List? val duration: String? val trailerUrl: String? val recommendations: List? } fun LoadResponse?.isEpisodeBased(): Boolean { if (this == null) return false return (this is AnimeLoadResponse || this is TvSeriesLoadResponse) && (this.type == TvType.TvSeries || this.type == TvType.Anime) } fun LoadResponse?.isAnimeBased(): Boolean { if (this == null) return false return (this.type == TvType.Anime || this.type == TvType.ONA) // && (this is AnimeLoadResponse) } data class AnimeEpisode( val url: String, val name: String? = null, val posterUrl: String? = null, val date: String? = null, val rating: Int? = null, val descript: String? = null, val episode: Int? = null, ) data class TorrentLoadResponse( override val name: String, override val url: String, override val apiName: String, val magnet: String?, val torrent: String?, override val plot: String?, override val type: TvType = TvType.Torrent, override val posterUrl: String? = null, override val year: Int? = null, override val rating: Int? = null, override val tags: List? = null, override val duration: String? = null, override val trailerUrl: String? = null, override val recommendations: List? = null, ) : LoadResponse data class AnimeLoadResponse( val engName: String?, val japName: String?, override val name: String, override val url: String, override val apiName: String, override val type: TvType, override val posterUrl: String?, override val year: Int?, val dubEpisodes: List?, val subEpisodes: List?, val showStatus: ShowStatus?, override val plot: String?, override val tags: List? = null, val synonyms: List? = null, val malId: Int? = null, val anilistId: Int? = null, override val rating: Int? = null, override val duration: String? = null, override val trailerUrl: String? = null, override val recommendations: List? = null, ) : LoadResponse data class MovieLoadResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, val dataUrl: String, override val posterUrl: String?, override val year: Int?, override val plot: String?, val imdbId: String?, override val rating: Int? = null, override val tags: List? = null, override val duration: String? = null, override val trailerUrl: String? = null, override val recommendations: List? = null, ) : LoadResponse data class TvSeriesEpisode( val name: String?, val season: Int?, val episode: Int?, val data: String, val posterUrl: String? = null, val date: String? = null, val rating: Int? = null, val descript: String? = null, ) data class TvSeriesLoadResponse( override val name: String, override val url: String, override val apiName: String, override val type: TvType, val episodes: List, override val posterUrl: String?, override val year: Int?, override val plot: String?, val showStatus: ShowStatus?, val imdbId: String?, override val rating: Int? = null, override val tags: List? = null, override val duration: String? = null, override val trailerUrl: String? = null, override val recommendations: List? = null, ) : LoadResponse