mirror of
https://github.com/daarkdemon/cs-darkdemon-extensions.git
synced 2024-08-14 23:57:20 +00:00
add cinevez source
This commit is contained in:
parent
582d2b1ab4
commit
672e4d34fc
4 changed files with 174 additions and 0 deletions
25
CinevezProvider/build.gradle.kts
Normal file
25
CinevezProvider/build.gradle.kts
Normal file
|
@ -0,0 +1,25 @@
|
|||
version = 1
|
||||
|
||||
|
||||
cloudstream {
|
||||
language = "hi"
|
||||
// All of these properties are optional, you can safely remove them
|
||||
|
||||
description = "This website support English/Hindi/Kannada/Malayalam/Tamil/Telugu"
|
||||
authors = listOf("darkdemon")
|
||||
|
||||
/**
|
||||
* Status int as the following:
|
||||
* 0: Down
|
||||
* 1: Ok
|
||||
* 2: Slow
|
||||
* 3: Beta only
|
||||
* */
|
||||
status = 1 // will be 3 if unspecified
|
||||
tvTypes = listOf(
|
||||
"TvSeries",
|
||||
"Movie",
|
||||
)
|
||||
|
||||
iconUrl = "https://www.google.com/s2/favicons?domain=cinevez.pe&sz=%size%"
|
||||
}
|
2
CinevezProvider/src/main/AndroidManifest.xml
Normal file
2
CinevezProvider/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.darkdemon"/>
|
|
@ -0,0 +1,15 @@
|
|||
package com.darkdemon
|
||||
|
||||
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
||||
import com.lagradost.cloudstream3.plugins.Plugin
|
||||
import android.content.Context
|
||||
|
||||
@CloudstreamPlugin
|
||||
class CinevezPlugin: Plugin() {
|
||||
override fun load(context: Context) {
|
||||
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||
registerExtractorAPI(StreamTapeTo())
|
||||
registerExtractorAPI(SlTube())
|
||||
registerMainAPI(CinevezProvider())
|
||||
}
|
||||
}
|
132
CinevezProvider/src/main/kotlin/com/darkdemon/CinevezProvider.kt
Normal file
132
CinevezProvider/src/main/kotlin/com/darkdemon/CinevezProvider.kt
Normal file
|
@ -0,0 +1,132 @@
|
|||
package com.darkdemon
|
||||
|
||||
import com.lagradost.cloudstream3.*
|
||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addActors
|
||||
import com.lagradost.cloudstream3.extractors.StreamTape
|
||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||
import com.lagradost.cloudstream3.utils.Qualities
|
||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||
import org.jsoup.nodes.Element
|
||||
|
||||
class CinevezProvider : MainAPI() { // all providers must be an instance of MainAPI
|
||||
override var mainUrl = "https://cinevez.pe"
|
||||
override var name = "Cinevez"
|
||||
override val hasMainPage = true
|
||||
override var lang = "hi"
|
||||
override val hasDownloadSupport = true
|
||||
override val supportedTypes = setOf(
|
||||
TvType.Movie,
|
||||
TvType.TvSeries
|
||||
)
|
||||
|
||||
override val mainPage = mainPageOf(
|
||||
"$mainUrl/featured/page/" to "Popular Movies",
|
||||
"$mainUrl/latest-series/page/" to "Popular Series",
|
||||
"$mainUrl/language/english/page/" to "English",
|
||||
"$mainUrl/language/hindi/page/" to "Hindi",
|
||||
"$mainUrl/language/tamil/page/" to "Tamil",
|
||||
"$mainUrl/language/telugu/page/" to "Telugu",
|
||||
"$mainUrl/language/malayalam/page/" to "Malayalam",
|
||||
"$mainUrl/language/kannada/page/" to "Kannada"
|
||||
)
|
||||
|
||||
override suspend fun getMainPage(
|
||||
page: Int,
|
||||
request: MainPageRequest
|
||||
): HomePageResponse {
|
||||
val document = app.get(request.data + page).document
|
||||
val home = document.select(".post-item").mapNotNull {
|
||||
it.toSearchResult()
|
||||
}
|
||||
return newHomePageResponse(request.name, home)
|
||||
}
|
||||
|
||||
private fun Element.toSearchResult(): SearchResponse? {
|
||||
val title = this.selectFirst("h2")?.text()?.trim() ?: return null
|
||||
val href = fixUrl(this.selectFirst("a")?.attr("href").toString())
|
||||
val posterUrl = fixUrlNull(this.selectFirst("img")?.attr("src"))
|
||||
val quality = getQualityFromString(this.select("span").text().substringBefore("-"))
|
||||
|
||||
return newMovieSearchResponse(title, href, TvType.Movie) {
|
||||
this.posterUrl = posterUrl
|
||||
this.quality = quality
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun search(query: String): List<SearchResponse> {
|
||||
val document = app.get("$mainUrl/?s=$query").document
|
||||
|
||||
return document.select(".post-item").mapNotNull {
|
||||
it.toSearchResult()
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun load(url: String): LoadResponse? {
|
||||
val document = app.get(url).document
|
||||
|
||||
val title = document.selectFirst(".box-title h1")?.text()?.trim() ?: return null
|
||||
val poster = fixUrlNull(document.selectFirst(".post-image img")?.attr("src"))
|
||||
val tags = document.select("div:nth-child(3) > p.text-sm a").map { it.text() }
|
||||
val year = document.select("div:nth-child(2) > p.text-sm a").text().toIntOrNull()
|
||||
val description = document.selectFirst("div.text-left > div:nth-child(8)")?.text()
|
||||
?.replace("Story Plot:", "")?.trim()
|
||||
val actors =
|
||||
document.select("div:nth-child(5) > p.text-sm a").map { it.text() }
|
||||
val recommendations = document.select(".box-content .post-item").mapNotNull {
|
||||
it.toSearchResult()
|
||||
}
|
||||
val sourceUrl =
|
||||
if (document.select("div:nth-child(3) > div.box-title.border-dark").text().trim()
|
||||
.contains("Seasons")
|
||||
) document.select("div:nth-child(3) > div > div > div > a.rounded")
|
||||
.attr("href") else url
|
||||
return newMovieLoadResponse(title, url, TvType.Movie, sourceUrl) {
|
||||
this.posterUrl = poster
|
||||
this.year = year
|
||||
this.plot = description
|
||||
this.tags = tags
|
||||
this.recommendations = recommendations
|
||||
addActors(actors)
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun loadLinks(
|
||||
data: String,
|
||||
isCasting: Boolean,
|
||||
subtitleCallback: (SubtitleFile) -> Unit,
|
||||
callback: (ExtractorLink) -> Unit
|
||||
): Boolean {
|
||||
|
||||
app.get(data).document.select(".list-episodes a.bg-button")
|
||||
.mapNotNull {
|
||||
if (it.attr("href").contains("send.cm")) {
|
||||
val url = app.get(it.attr("href")).document.select("source").attr("src")
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
this.name,
|
||||
this.name,
|
||||
url,
|
||||
mainUrl,
|
||||
quality = Qualities.Unknown.value,
|
||||
)
|
||||
)
|
||||
} else {
|
||||
loadExtractor(
|
||||
it.attr("href").replace("/([a-z])/".toRegex(),"/e/"),
|
||||
"$mainUrl/",
|
||||
subtitleCallback,
|
||||
callback
|
||||
)
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
class StreamTapeTo : StreamTape() {
|
||||
override var mainUrl = "https://streamtape.to"
|
||||
}
|
||||
|
||||
class SlTube : StreamTape() {
|
||||
override var mainUrl = "https://sltube.org"
|
||||
}
|
Loading…
Reference in a new issue