cloudstream/app/src/main/java/com/lagradost/cloudstream3/movieproviders/FilmanProvider.kt

145 lines
5.3 KiB
Kotlin
Raw Normal View History

2021-12-21 17:58:42 +00:00
package com.lagradost.cloudstream3.movieproviders
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.module.kotlin.readValue
import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.loadExtractor
import org.jsoup.Jsoup
import org.jsoup.select.Elements
class FilmanProvider : MainAPI() {
override val mainUrl = "https://filman.cc"
override val name = "filman.cc"
override val lang = "pl"
override val hasMainPage = true
override val supportedTypes = setOf(
TvType.Movie,
TvType.TvSeries
)
2022-01-16 22:31:42 +00:00
override suspend fun getMainPage(): HomePageResponse {
2021-12-21 17:58:42 +00:00
val response = app.get(mainUrl).text
val document = Jsoup.parse(response)
val lists = document.select(".item-list,.series-list")
val categories = ArrayList<HomePageList>()
for (l in lists) {
val title = l.parent().select("h3").text()
2022-03-03 11:26:26 +00:00
val items = l.select(".poster").map { i ->
2021-12-21 17:58:42 +00:00
val name = i.select("a[href]").attr("title")
val href = i.select("a[href]").attr("href")
val poster = i.select("img[src]").attr("src")
val year = l.select(".film_year").text().toIntOrNull()
2022-03-03 11:26:26 +00:00
if (l.hasClass("series-list")) TvSeriesSearchResponse(
2021-12-21 17:58:42 +00:00
name,
href,
this.name,
TvType.TvSeries,
poster,
year,
null
) else MovieSearchResponse(
name,
href,
this.name,
TvType.Movie,
poster,
year
)
}
categories.add(HomePageList(title, items))
}
return HomePageResponse(categories)
}
2022-01-16 22:31:42 +00:00
override suspend fun search(query: String): List<SearchResponse> {
2021-12-21 17:58:42 +00:00
val url = "$mainUrl/wyszukiwarka?phrase=$query"
val response = app.get(url).text
val document = Jsoup.parse(response)
val lists = document.select("#advanced-search > div")
val movies = lists[1].select(".item")
val series = lists[3].select(".item")
if (movies.isEmpty() && series.isEmpty()) return ArrayList()
2022-03-03 11:26:26 +00:00
fun getVideos(type: TvType, items: Elements): List<SearchResponse> {
return items.map { i ->
2021-12-21 17:58:42 +00:00
val href = i.attr("href")
val img = i.selectFirst("> img").attr("src").replace("/thumb/", "/big/")
val name = i.selectFirst(".title").text()
if (type === TvType.TvSeries) {
2022-03-03 11:26:26 +00:00
TvSeriesSearchResponse(
name,
href,
this.name,
type,
img,
null,
null
2022-01-30 01:50:49 +00:00
)
2021-12-21 17:58:42 +00:00
} else {
2022-03-03 11:26:26 +00:00
MovieSearchResponse(name, href, this.name, type, img, null)
2021-12-21 17:58:42 +00:00
}
}
}
return getVideos(TvType.Movie, movies) + getVideos(TvType.TvSeries, series)
}
2022-01-16 22:31:42 +00:00
override suspend fun load(url: String): LoadResponse {
2021-12-21 17:58:42 +00:00
val response = app.get(url).text
val document = Jsoup.parse(response)
var title = document.select("span[itemprop=title]").text()
val data = document.select("#links").outerHtml()
val posterUrl = document.select("#single-poster > img").attr("src")
val year = document.select(".info > ul li")[1].text().toIntOrNull()
val plot = document.select(".description").text()
val episodesElements = document.select("#episode-list a[href]")
if (episodesElements.isEmpty()) {
return MovieLoadResponse(title, url, name, TvType.Movie, data, posterUrl, year, plot)
}
title = document.selectFirst(".info").parent().select("h2").text()
2022-03-03 11:26:26 +00:00
val episodes = episodesElements.mapNotNull { episode ->
2021-12-21 17:58:42 +00:00
val e = episode.text()
2022-03-03 11:26:26 +00:00
val regex = Regex("""\[s(\d{1,3})e(\d{1,3})]""").find(e) ?: return@mapNotNull null
val eid = regex.groups
TvSeriesEpisode(
e.split("]")[1].trim(),
eid[1]?.value?.toInt(),
eid[2]?.value?.toInt(),
episode.attr("href"),
)
}.toMutableList()
2022-01-31 21:02:15 +00:00
episodes.sortBy { (it.season?.times(10000) ?: 0) + (it.episode ?: 0) }
2022-01-30 01:50:49 +00:00
return TvSeriesLoadResponse(
title,
url,
name,
TvType.TvSeries,
episodes,
posterUrl,
year,
plot
)
2021-12-21 17:58:42 +00:00
}
2022-01-16 22:31:42 +00:00
override suspend fun loadLinks(
2021-12-21 17:58:42 +00:00
data: String,
isCasting: Boolean,
subtitleCallback: (SubtitleFile) -> Unit,
callback: (ExtractorLink) -> Unit
): Boolean {
val document = if (data.startsWith("http"))
2022-01-30 01:50:49 +00:00
app.get(data).document.select("#links").first()
else Jsoup.parse(data)
2021-12-21 17:58:42 +00:00
2022-01-30 01:50:49 +00:00
document.select(".link-to-video")?.apmap { item ->
val decoded = base64Decode(item.select("a").attr("data-iframe"))
2021-12-21 17:58:42 +00:00
val link = mapper.readValue<LinkElement>(decoded).src
loadExtractor(link, null, callback)
}
2022-01-30 01:50:49 +00:00
return true
2021-12-21 17:58:42 +00:00
}
}
data class LinkElement(
@JsonProperty("src") val src: String
)