fixed sflix

This commit is contained in:
LagradOst 2022-01-09 01:23:35 +01:00
parent 487f6ea03a
commit 4215c094ff

View file

@ -122,8 +122,7 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
} }
override fun load(url: String): LoadResponse { override fun load(url: String): LoadResponse {
val html = app.get(url).text val document = app.get(url).document
val document = Jsoup.parse(html)
val details = document.select("div.detail_page-watch") val details = document.select("div.detail_page-watch")
val img = details.select("img.film-poster-img") val img = details.select("img.film-poster-img")
@ -138,15 +137,14 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
val plot = details.select("div.description").text().replace("Overview:", "").trim() val plot = details.select("div.description").text().replace("Overview:", "").trim()
val isMovie = url.contains("/movie/") val isMovie = url.contains("/movie/")
// https://sflix.to/movie/free-never-say-never-again-hd-18317 -> 18317 // https://sflix.to/movie/free-never-say-never-again-hd-18317 -> 18317
val idRegex = Regex(""".*-(\d+)""") val idRegex = Regex(""".*-(\d+)""")
val dataId = details.attr("data-id") val dataId = details.attr("data-id")
val id = if (dataId.isNullOrEmpty()) val id = if (dataId.isNullOrEmpty())
idRegex.find(url)?.groupValues?.get(1) ?: throw RuntimeException("Unable to get id from '$url'") idRegex.find(url)?.groupValues?.get(1)
?: throw RuntimeException("Unable to get id from '$url'")
else dataId else dataId
if (isMovie) { if (isMovie) {
@ -160,7 +158,8 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
|| it.select("span").text().trim().equals("Vidcloud", ignoreCase = true) || it.select("span").text().trim().equals("Vidcloud", ignoreCase = true)
}?.attr("data-id") }?.attr("data-id")
val webViewUrl = "$url${sourceId?.let { ".$it" } ?: ""}".replace("/movie/", "/watch-movie/") val webViewUrl =
"$url${sourceId?.let { ".$it" } ?: ""}".replace("/movie/", "/watch-movie/")
return newMovieLoadResponse(title, url, TvType.Movie, webViewUrl) { return newMovieLoadResponse(title, url, TvType.Movie, webViewUrl) {
this.year = year this.year = year
@ -169,38 +168,41 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
setDuration(duration) setDuration(duration)
} }
} else { } else {
val seasonsHtml = app.get("$mainUrl/ajax/v2/tv/seasons/$id").text val seasonsDocument = app.get("$mainUrl/ajax/v2/tv/seasons/$id").document
val seasonsDocument = Jsoup.parse(seasonsHtml)
val episodes = arrayListOf<TvSeriesEpisode>() val episodes = arrayListOf<TvSeriesEpisode>()
seasonsDocument.select("div.dropdown-menu.dropdown-menu-model > a").forEachIndexed { season, element -> seasonsDocument.select("div.dropdown-menu.dropdown-menu-model > a")
.forEachIndexed { season, element ->
val seasonId = element.attr("data-id") val seasonId = element.attr("data-id")
if (seasonId.isNullOrBlank()) return@forEachIndexed if (seasonId.isNullOrBlank()) return@forEachIndexed
val seasonHtml = app.get("$mainUrl/ajax/v2/season/episodes/$seasonId").text var episode = 0
val seasonDocument = Jsoup.parse(seasonHtml) app.get("$mainUrl/ajax/v2/season/episodes/$seasonId").document
seasonDocument.select("div.flw-item.film_single-item.episode-item.eps-item") .select("div.flw-item.film_single-item.episode-item.eps-item")
.forEachIndexed { _, it -> .forEach {
val episodeImg = it.select("img") val episodeImg = it.select("img") ?: return@forEach
val episodeTitle = episodeImg.attr("title") val episodeTitle = episodeImg.attr("title") ?: return@forEach
val episodePosterUrl = episodeImg.attr("src") val episodePosterUrl = episodeImg.attr("src") ?: return@forEach
val episodeData = it.attr("data-id") val episodeData = it.attr("data-id") ?: return@forEach
// val episodeNum = episode++
// Regex("""\d+""").find(it.select("div.episode-number").text())?.groupValues?.get(1)
// ?.toIntOrNull() val episodeNum =
(it.select("div.episode-number")?.text() ?: episodeTitle).let { str ->
Regex("""\d+""").find(str)?.groupValues?.firstOrNull()
?.toIntOrNull()
} ?: episode
episodes.add( episodes.add(
TvSeriesEpisode( TvSeriesEpisode(
episodeTitle, episodeTitle.removePrefix("Episode $episodeNum: "),
season + 1, season + 1,
null, episodeNum,
"$url:::$episodeData", "$url:::$episodeData",
fixUrl(episodePosterUrl) fixUrl(episodePosterUrl)
) )
) )
} }
} }
return newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes) { return newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes) {
this.posterUrl = posterUrl this.posterUrl = posterUrl
@ -264,18 +266,19 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
).text ).text
val mapped = mapper.readValue<SourceObject>(sources) val mapped = mapper.readValue<SourceObject>(sources)
mapped.tracks?.forEach { mapped.tracks?.forEach {
it?.toSubtitleFile()?.let { subtitleFile -> it?.toSubtitleFile()?.let { subtitleFile ->
subtitleCallback.invoke(subtitleFile) subtitleCallback.invoke(subtitleFile)
} }
} }
val list = listOf(
listOf(
mapped.sources to "source 1", mapped.sources to "source 1",
mapped.sources1 to "source 2", mapped.sources1 to "source 2",
mapped.sources2 to "source 3", mapped.sources2 to "source 3",
mapped.sourcesBackup to "source backup" mapped.sourcesBackup to "source backup"
) ).forEach { subList ->
list.forEach { subList ->
subList.first?.forEach { subList.first?.forEach {
it?.toExtractorLink(this, subList.second)?.forEach(callback) it?.toExtractorLink(this, subList.second)?.forEach(callback)
} }
@ -288,10 +291,15 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
fun Sources.toExtractorLink(caller: MainAPI, name: String): List<ExtractorLink>? { fun Sources.toExtractorLink(caller: MainAPI, name: String): List<ExtractorLink>? {
return this.file?.let { file -> return this.file?.let { file ->
val isM3u8 = URI(this.file).path.endsWith(".m3u8") || this.type.equals("hls", ignoreCase = true) val isM3u8 = URI(this.file).path.endsWith(".m3u8") || this.type.equals(
"hls",
ignoreCase = true
)
if (isM3u8) { if (isM3u8) {
M3u8Helper().m3u8Generation(M3u8Helper.M3u8Stream(this.file, null), true).map { stream -> M3u8Helper().m3u8Generation(M3u8Helper.M3u8Stream(this.file, null), true)
val qualityString = if ((stream.quality ?: 0) == 0) label ?: "" else "${stream.quality}p" .map { stream ->
val qualityString = if ((stream.quality ?: 0) == 0) label
?: "" else "${stream.quality}p"
ExtractorLink( ExtractorLink(
caller.name, caller.name,
"${caller.name} $qualityString $name", "${caller.name} $qualityString $name",
@ -311,7 +319,6 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
false, false,
)) ))
} }
} }
} }
@ -323,7 +330,6 @@ class SflixProvider(providerUrl: String, providerName: String) : MainAPI() {
) )
} }
} }
} }
} }