mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Added new arabic provider and added trailers to egybest (#1322)
* Update EgyBestProvider.kt * Add files via upload * Update CimaNowProvider.kt * Update MainAPI.kt * Update EgyBestProvider.kt * Update CimaNowProvider.kt * Update CimaNowProvider.kt * Update EgyBestProvider.kt * Update CimaNowProvider.kt * Update CimaNowProvider.kt
This commit is contained in:
parent
f61d4b217d
commit
31094cb398
3 changed files with 169 additions and 1 deletions
|
@ -85,6 +85,7 @@ object APIHolder {
|
||||||
KdramaHoodProvider(),
|
KdramaHoodProvider(),
|
||||||
AkwamProvider(),
|
AkwamProvider(),
|
||||||
MyCimaProvider(),
|
MyCimaProvider(),
|
||||||
|
CimaNowProvider(),
|
||||||
EgyBestProvider(),
|
EgyBestProvider(),
|
||||||
FaselHDProvider(),
|
FaselHDProvider(),
|
||||||
SoaptwoDayProvider(),
|
SoaptwoDayProvider(),
|
||||||
|
|
|
@ -0,0 +1,163 @@
|
||||||
|
package com.lagradost.cloudstream3.movieproviders
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.*
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
|
import org.jsoup.nodes.Element
|
||||||
|
|
||||||
|
class CimaNowProvider : MainAPI() {
|
||||||
|
override var lang = "ar"
|
||||||
|
override var mainUrl = "https://cimanow.cc"
|
||||||
|
override var name = "CimaNow"
|
||||||
|
override val usesWebView = false
|
||||||
|
override val hasMainPage = true
|
||||||
|
override val supportedTypes = setOf(TvType.TvSeries, TvType.Movie)
|
||||||
|
|
||||||
|
private fun String.getIntFromText(): Int? {
|
||||||
|
return Regex("""\d+""").find(this)?.groupValues?.firstOrNull()?.toIntOrNull()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Element.toSearchResponse(): SearchResponse? {
|
||||||
|
val url = this.attr("href")
|
||||||
|
val posterUrl = select("img")?.attr("data-src")
|
||||||
|
var title = select("li[aria-label=\"title\"]").html().replace(" <em>.*|\\\\n".toRegex(), "").replace(" ", "")
|
||||||
|
val year = select("li[aria-label=\"year\"]").text().toIntOrNull()
|
||||||
|
val tvType = if (url.contains("فيلم|مسرحية|حفلات".toRegex())) TvType.Movie else TvType.TvSeries
|
||||||
|
val quality = select("li[aria-label=\"ribbon\"]").first()?.text()?.replace(" |-|1080|720".toRegex(), "")
|
||||||
|
val dubEl = select("li[aria-label=\"ribbon\"]:nth-child(2)").isNotEmpty()
|
||||||
|
val dubStatus = if(dubEl) select("li[aria-label=\"ribbon\"]:nth-child(2)").text().contains("مدبلج")
|
||||||
|
else select("li[aria-label=\"ribbon\"]:nth-child(1)").text().contains("مدبلج")
|
||||||
|
if(dubStatus) title = "$title (مدبلج)"
|
||||||
|
return MovieSearchResponse(
|
||||||
|
"$title ${select("li[aria-label=\"ribbon\"]:contains(الموسم)").text()}",
|
||||||
|
url,
|
||||||
|
this@CimaNowProvider.name,
|
||||||
|
tvType,
|
||||||
|
posterUrl,
|
||||||
|
year,
|
||||||
|
null,
|
||||||
|
quality = getQualityFromString(quality)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun getMainPage(): HomePageResponse {
|
||||||
|
|
||||||
|
val doc = app.get("$mainUrl/home", headers = mapOf("user-agent" to "MONKE")).document
|
||||||
|
val pages = doc.select("section").not("section:contains(أختر وجهتك المفضلة)").not("section:contains(تم اضافته حديثاً)").apmap {
|
||||||
|
val name = it.select("span").html().replace("<em>.*| <i c.*".toRegex(), "")
|
||||||
|
val list = it.select("a").mapNotNull {
|
||||||
|
if(it.attr("href").contains("$mainUrl/category/|$mainUrl/الاكثر-مشاهدة/".toRegex())) return@mapNotNull null
|
||||||
|
it.toSearchResponse()
|
||||||
|
}
|
||||||
|
HomePageList(name, list)
|
||||||
|
}
|
||||||
|
return HomePageResponse(pages)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
|
val result = arrayListOf<SearchResponse>()
|
||||||
|
val doc = app.get("$mainUrl/page/1/?s=$query").document
|
||||||
|
val paginationElement = doc.select("ul[aria-label=\"pagination\"]")
|
||||||
|
doc.select("section article a").map {
|
||||||
|
val postUrl = it.attr("href")
|
||||||
|
if(it.select("li[aria-label=\"episode\"]").isNotEmpty()) return@map
|
||||||
|
if(postUrl.contains("$mainUrl/expired-download/|$mainUrl/افلام-اون-لاين/".toRegex())) return@map
|
||||||
|
result.add(it.toSearchResponse()!!)
|
||||||
|
}
|
||||||
|
if(paginationElement.isNotEmpty()) {
|
||||||
|
val max = paginationElement.select("li").not("li.active").last()?.text()?.toIntOrNull()
|
||||||
|
if (max != null) {
|
||||||
|
if(max > 5) return result.distinct().sortedBy { it.name }
|
||||||
|
(2..max!!).toList().apmap {
|
||||||
|
app.get("$mainUrl/page/$it/?s=$query\"").document.select("section article a").map { element ->
|
||||||
|
val postUrl = element.attr("href")
|
||||||
|
if(element.select("li[aria-label=\"episode\"]").isNotEmpty()) return@map
|
||||||
|
if(postUrl.contains("$mainUrl/expired-download/|$mainUrl/افلام-اون-لاين/".toRegex())) return@map
|
||||||
|
result.add(element.toSearchResponse()!!)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result.distinct().sortedBy { it.name }
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun load(url: String): LoadResponse {
|
||||||
|
val doc = app.get(url).document
|
||||||
|
val posterUrl = doc.select("body > script:nth-child(3)").html().replace(".*,\"image\":\"|\".*".toRegex(),"").ifEmpty { doc.select("meta[property=\"og:image\"]").attr("content") }
|
||||||
|
val year = doc.select("article ul:nth-child(1) li a").last()?.text()?.toIntOrNull()
|
||||||
|
val title = doc.select("title").text().split(" | ")[0]
|
||||||
|
val isMovie = title.contains("فيلم|حفلات|مسرحية".toRegex())
|
||||||
|
val youtubeTrailer = doc.select("iframe")?.attr("src")
|
||||||
|
|
||||||
|
val synopsis = doc.select("ul#details li:contains(لمحة) p").text()
|
||||||
|
|
||||||
|
val tags = doc.select("article ul").first()?.select("li")?.map { it.text() }
|
||||||
|
|
||||||
|
val recommendations = doc.select("ul#related li").map { element ->
|
||||||
|
MovieSearchResponse(
|
||||||
|
apiName = this@CimaNowProvider.name,
|
||||||
|
url = element.select("a").attr("href"),
|
||||||
|
name = element.select("img:nth-child(2)").attr("alt"),
|
||||||
|
posterUrl = element.select("img:nth-child(2)").attr("src")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return if (isMovie) {
|
||||||
|
newMovieLoadResponse(
|
||||||
|
title,
|
||||||
|
url,
|
||||||
|
TvType.Movie,
|
||||||
|
"$url/watching"
|
||||||
|
) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
this.year = year
|
||||||
|
this.recommendations = recommendations
|
||||||
|
this.plot = synopsis
|
||||||
|
this.tags = tags
|
||||||
|
addTrailer(youtubeTrailer)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
val episodes = doc.select("ul#eps li").map { episode ->
|
||||||
|
Episode(
|
||||||
|
episode.select("a").attr("href")+"/watching",
|
||||||
|
episode.select("a img:nth-child(2)").attr("alt"),
|
||||||
|
doc.select("span[aria-label=\"season-title\"]").html().replace("<p>.*|\n".toRegex(), "").getIntFromText(),
|
||||||
|
episode.select("a em").text().toIntOrNull(),
|
||||||
|
episode.select("a img:nth-child(2)").attr("src")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes.distinct().sortedBy { it.episode }) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
this.tags = tags
|
||||||
|
this.year = year
|
||||||
|
this.plot = synopsis
|
||||||
|
this.recommendations = recommendations
|
||||||
|
addTrailer(youtubeTrailer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String,
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
app.get("$data").document.select("ul#download [aria-label=\"quality\"]").forEach {
|
||||||
|
val name = if(it.select("span").text().contains("فائق السرعة")) "Fast Servers" else "Servers"
|
||||||
|
it.select("a").forEach { media ->
|
||||||
|
callback.invoke(
|
||||||
|
ExtractorLink(
|
||||||
|
source = this.name,
|
||||||
|
name = name,
|
||||||
|
url = media.attr("href"),
|
||||||
|
referer = this.mainUrl,
|
||||||
|
quality = media.text().getIntFromText() ?: Qualities.Unknown.value
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
|
|
||||||
class EgyBestProvider : MainAPI() {
|
class EgyBestProvider : MainAPI() {
|
||||||
|
@ -78,6 +79,7 @@ class EgyBestProvider : MainAPI() {
|
||||||
val posterUrl = doc.select("div.movie_img a img")?.attr("src")
|
val posterUrl = doc.select("div.movie_img a img")?.attr("src")
|
||||||
val year = doc.select("div.movie_title h1 a")?.text()?.toIntOrNull()
|
val year = doc.select("div.movie_title h1 a")?.text()?.toIntOrNull()
|
||||||
val title = doc.select("div.movie_title h1 span").text()
|
val title = doc.select("div.movie_title h1 span").text()
|
||||||
|
val youtubeTrailer = doc.select("div.play")?.attr("url")
|
||||||
|
|
||||||
val synopsis = doc.select("div.mbox").firstOrNull {
|
val synopsis = doc.select("div.mbox").firstOrNull {
|
||||||
it.text().contains("القصة")
|
it.text().contains("القصة")
|
||||||
|
@ -112,6 +114,7 @@ class EgyBestProvider : MainAPI() {
|
||||||
this.plot = synopsis
|
this.plot = synopsis
|
||||||
this.tags = tags
|
this.tags = tags
|
||||||
this.actors = actors
|
this.actors = actors
|
||||||
|
addTrailer(youtubeTrailer)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
val episodes = ArrayList<Episode>()
|
val episodes = ArrayList<Episode>()
|
||||||
|
@ -153,6 +156,7 @@ class EgyBestProvider : MainAPI() {
|
||||||
this.year = year
|
this.year = year
|
||||||
this.plot = synopsis
|
this.plot = synopsis
|
||||||
this.actors = actors
|
this.actors = actors
|
||||||
|
addTrailer(youtubeTrailer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue