forked from recloudstream/cloudstream
Indian Provider because monke is gone (#1059)
* * Added New Source, HDMovie5 Co-authored-by: Blatzar <46196380+Blatzar@users.noreply.github.com>
This commit is contained in:
parent
670c613f71
commit
f3e73b1e3c
8 changed files with 257 additions and 1 deletions
|
@ -86,6 +86,7 @@ object APIHolder {
|
||||||
TheFlixToProvider(),
|
TheFlixToProvider(),
|
||||||
StreamingcommunityProvider(),
|
StreamingcommunityProvider(),
|
||||||
TantifilmProvider(),
|
TantifilmProvider(),
|
||||||
|
HDMovie5(),
|
||||||
|
|
||||||
// Metadata providers
|
// Metadata providers
|
||||||
//TmdbProvider(),
|
//TmdbProvider(),
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
package com.lagradost.cloudstream3.extractors
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.app
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorApi
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.M3u8Helper
|
||||||
|
|
||||||
|
class BullStream : ExtractorApi() {
|
||||||
|
override val name = "BullStream"
|
||||||
|
override val mainUrl = "https://bullstream.xyz"
|
||||||
|
override val requiresReferer = false
|
||||||
|
val regex = Regex("(?<=sniff\\()(.*)(?=\\)\\);)")
|
||||||
|
|
||||||
|
override suspend fun getUrl(url: String, referer: String?): List<ExtractorLink>? {
|
||||||
|
val data = regex.find(app.get(url).text)?.value
|
||||||
|
?.replace("\"", "")
|
||||||
|
?.split(",")
|
||||||
|
?: return null
|
||||||
|
|
||||||
|
val m3u8 = "$mainUrl/m3u8/${data[1]}/${data[2]}/master.txt?s=1&cache=${data[4]}"
|
||||||
|
println("shiv : $m3u8")
|
||||||
|
return M3u8Helper.generateM3u8(
|
||||||
|
name,
|
||||||
|
m3u8,
|
||||||
|
url,
|
||||||
|
headers = mapOf("referer" to url, "accept" to "*/*")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
|
@ -6,6 +6,14 @@ import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.Qualities
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
|
|
||||||
|
class DoodCxExtractor : DoodLaExtractor() {
|
||||||
|
override var mainUrl = "https://dood.cx"
|
||||||
|
}
|
||||||
|
|
||||||
|
class DoodPmExtractor : DoodLaExtractor() {
|
||||||
|
override var mainUrl = "https://dood.pm"
|
||||||
|
}
|
||||||
|
|
||||||
class DoodToExtractor : DoodLaExtractor() {
|
class DoodToExtractor : DoodLaExtractor() {
|
||||||
override var mainUrl = "https://dood.to"
|
override var mainUrl = "https://dood.to"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
package com.lagradost.cloudstream3.extractors
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.app
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorApi
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.M3u8Helper
|
||||||
|
|
||||||
|
class GMPlayer : ExtractorApi() {
|
||||||
|
override val name = "GM Player"
|
||||||
|
override val mainUrl = "https://gmplayer.xyz"
|
||||||
|
override val requiresReferer = true
|
||||||
|
|
||||||
|
override suspend fun getUrl(url: String, referer: String?): List<ExtractorLink>? {
|
||||||
|
val ref = referer ?: return null
|
||||||
|
val id = url.substringAfter("/video/").substringBefore("/")
|
||||||
|
|
||||||
|
val m3u8 = app.post(
|
||||||
|
"$mainUrl/player/index.php?data=$id&do=getVideo",
|
||||||
|
mapOf(
|
||||||
|
"accept" to "*/*",
|
||||||
|
"referer" to ref,
|
||||||
|
"x-requested-with" to "XMLHttpRequest",
|
||||||
|
"origin" to mainUrl
|
||||||
|
),
|
||||||
|
data = mapOf("hash" to id, "r" to ref)
|
||||||
|
).also { println("shiv " + it.text) }.parsed<GmResponse>().videoSource ?: return null
|
||||||
|
|
||||||
|
return M3u8Helper.generateM3u8(
|
||||||
|
name,
|
||||||
|
m3u8,
|
||||||
|
ref,
|
||||||
|
headers = mapOf("accept" to "*/*")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private data class GmResponse(
|
||||||
|
val videoSource: String? = null
|
||||||
|
)
|
||||||
|
}
|
|
@ -3,7 +3,15 @@ package com.lagradost.cloudstream3.extractors
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.utils.*
|
import com.lagradost.cloudstream3.utils.*
|
||||||
|
|
||||||
class MixDrop : ExtractorApi() {
|
class MixDropBz : MixDrop(){
|
||||||
|
override var mainUrl = "https://mixdrop.bz"
|
||||||
|
}
|
||||||
|
|
||||||
|
class MixDropCh : MixDrop(){
|
||||||
|
override var mainUrl = "https://mixdrop.ch"
|
||||||
|
}
|
||||||
|
|
||||||
|
open class MixDrop : ExtractorApi() {
|
||||||
override var name = "MixDrop"
|
override var name = "MixDrop"
|
||||||
override var mainUrl = "https://mixdrop.co"
|
override var mainUrl = "https://mixdrop.co"
|
||||||
private val srcRegex = Regex("""wurl.*?=.*?"(.*?)";""")
|
private val srcRegex = Regex("""wurl.*?=.*?"(.*?)";""")
|
||||||
|
|
|
@ -24,6 +24,10 @@ data class Videos (
|
||||||
@JsonProperty("disallowed") var disallowed : Boolean? = null
|
@JsonProperty("disallowed") var disallowed : Boolean? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
|
class OkRuHttps: OkRu(){
|
||||||
|
override var mainUrl = "https://ok.ru"
|
||||||
|
}
|
||||||
|
|
||||||
open class OkRu : ExtractorApi() {
|
open class OkRu : ExtractorApi() {
|
||||||
override var name = "Okru"
|
override var name = "Okru"
|
||||||
override var mainUrl = "http://ok.ru"
|
override var mainUrl = "http://ok.ru"
|
||||||
|
|
|
@ -0,0 +1,154 @@
|
||||||
|
package com.lagradost.cloudstream3.movieproviders
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
|
import com.lagradost.cloudstream3.*
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.httpsify
|
||||||
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
|
import okhttp3.Interceptor
|
||||||
|
import org.jsoup.Jsoup
|
||||||
|
|
||||||
|
class HDMovie5 : MainAPI() {
|
||||||
|
override var mainUrl = "https://hdmovie5.tv"
|
||||||
|
override var name = "HDMovie"
|
||||||
|
override val lang = "hi"
|
||||||
|
|
||||||
|
override val hasQuickSearch = true
|
||||||
|
override val hasMainPage = true
|
||||||
|
override val supportedTypes = setOf(
|
||||||
|
TvType.Movie,
|
||||||
|
TvType.TvSeries,
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun getMainPage(): HomePageResponse {
|
||||||
|
val doc = app.get(mainUrl).document.select("div.content")
|
||||||
|
val list = mapOf(
|
||||||
|
"Featured Movies" to "featured",
|
||||||
|
"Updated Movies" to "normal"
|
||||||
|
)
|
||||||
|
return HomePageResponse(list.map { item ->
|
||||||
|
HomePageList(item.key,
|
||||||
|
doc.select("div.${item.value}>.item").map {
|
||||||
|
val data = it.select(".data")
|
||||||
|
val a = data.select("a")
|
||||||
|
MovieSearchResponse(
|
||||||
|
a.text(),
|
||||||
|
a.attr("href"),
|
||||||
|
this.name,
|
||||||
|
TvType.Movie,
|
||||||
|
it.select("img").attr("src"),
|
||||||
|
data.select("span").text().toIntOrNull()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
private data class QuickSearchResponse(
|
||||||
|
val title: String,
|
||||||
|
val url: String,
|
||||||
|
val img: String,
|
||||||
|
val extra: Extra
|
||||||
|
) {
|
||||||
|
data class Extra(
|
||||||
|
val date: String
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun quickSearch(query: String): List<SearchResponse> {
|
||||||
|
return app.get("$mainUrl/wp-json/dooplay/search/?keyword=$query&nonce=ddbde04d9c")
|
||||||
|
.parsed<Map<String, QuickSearchResponse>>().map {
|
||||||
|
val res = it.value
|
||||||
|
MovieSearchResponse(
|
||||||
|
res.title,
|
||||||
|
res.url,
|
||||||
|
this.name,
|
||||||
|
TvType.Movie,
|
||||||
|
res.img,
|
||||||
|
res.extra.date.toIntOrNull()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
|
return app.get("$mainUrl/?s=$query").document.select(".search-page>div.result-item").map {
|
||||||
|
val image = it.select(".image")
|
||||||
|
MovieSearchResponse(
|
||||||
|
image.select("img").attr("alt"),
|
||||||
|
image.select("a").attr("href"),
|
||||||
|
this.name,
|
||||||
|
TvType.Movie,
|
||||||
|
image.select("img").attr("src"),
|
||||||
|
it.select(".year").text().toIntOrNull()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun load(url: String): LoadResponse {
|
||||||
|
val doc = app.get(url).document
|
||||||
|
val info = doc.select(".sheader")
|
||||||
|
val links = doc.select("#playeroptionsul>li")
|
||||||
|
val data = links.joinToString(",") { it.attr("data-post") }
|
||||||
|
return MovieLoadResponse(
|
||||||
|
info.select(".data>h1").text(),
|
||||||
|
url,
|
||||||
|
this.name,
|
||||||
|
TvType.Movie,
|
||||||
|
data,
|
||||||
|
info.select(".poster>img").attr("src"),
|
||||||
|
info.select(".date").text().substringAfter(", ").toIntOrNull(),
|
||||||
|
doc.select(".wp-content>p").let { it.getOrNull(it.size - 1)?.text() },
|
||||||
|
(doc.select("#repimdb>strong").text().toFloatOrNull()?.times(1000))?.toInt(),
|
||||||
|
info.select(".sgeneros>a").map { it.text() },
|
||||||
|
info.select(".runtime").text().substringBefore(" Min.").toIntOrNull(),
|
||||||
|
null,
|
||||||
|
doc.select("#single_relacionados>article>a").map {
|
||||||
|
val img = it.select("img")
|
||||||
|
MovieSearchResponse(
|
||||||
|
img.attr("alt"),
|
||||||
|
it.attr("href"),
|
||||||
|
this.name,
|
||||||
|
TvType.Movie,
|
||||||
|
img.attr("src")
|
||||||
|
)
|
||||||
|
},
|
||||||
|
doc.select("#cast>.persons>.person").mapNotNull {
|
||||||
|
if (it.attr("itemprop") != "director") {
|
||||||
|
ActorData(
|
||||||
|
Actor(
|
||||||
|
it.select("meta").attr("content"),
|
||||||
|
it.select("img").attr("src")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
} else null
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private data class PlayerAjaxResponse(
|
||||||
|
@JsonProperty("embed_url")
|
||||||
|
val embedURL: String? = null
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String,
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
return data.split(",").apmapIndexed { index, it ->
|
||||||
|
val html = app.post(
|
||||||
|
"$mainUrl/wp-admin/admin-ajax.php",
|
||||||
|
data = mapOf(
|
||||||
|
"action" to "doo_player_ajax",
|
||||||
|
"post" to it,
|
||||||
|
"nume" to "${index + 1}",
|
||||||
|
"type" to "movie"
|
||||||
|
)
|
||||||
|
).parsed<PlayerAjaxResponse>().embedURL ?: return@apmapIndexed false
|
||||||
|
val doc = Jsoup.parse(html)
|
||||||
|
val link = doc.select("iframe").attr("src")
|
||||||
|
loadExtractor(httpsify(link), "$mainUrl/",callback)
|
||||||
|
}.contains(true)
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.USER_AGENT
|
import com.lagradost.cloudstream3.USER_AGENT
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.extractors.*
|
import com.lagradost.cloudstream3.extractors.*
|
||||||
|
import com.lagradost.cloudstream3.extractors.BullStream
|
||||||
import com.lagradost.cloudstream3.mvvm.suspendSafeApiCall
|
import com.lagradost.cloudstream3.mvvm.suspendSafeApiCall
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import org.jsoup.Jsoup
|
import org.jsoup.Jsoup
|
||||||
|
@ -119,9 +120,15 @@ val extractorApis: Array<ExtractorApi> = arrayOf(
|
||||||
VizcloudDigital(),
|
VizcloudDigital(),
|
||||||
Mp4Upload(),
|
Mp4Upload(),
|
||||||
StreamTape(),
|
StreamTape(),
|
||||||
|
|
||||||
|
//mixdrop extractors
|
||||||
|
MixDropBz(),
|
||||||
|
MixDropCh(),
|
||||||
MixDrop(),
|
MixDrop(),
|
||||||
|
|
||||||
Mcloud(),
|
Mcloud(),
|
||||||
XStreamCdn(),
|
XStreamCdn(),
|
||||||
|
|
||||||
StreamSB(),
|
StreamSB(),
|
||||||
StreamSB1(),
|
StreamSB1(),
|
||||||
StreamSB2(),
|
StreamSB2(),
|
||||||
|
@ -150,8 +157,11 @@ val extractorApis: Array<ExtractorApi> = arrayOf(
|
||||||
Tomatomatela(),
|
Tomatomatela(),
|
||||||
Cinestart(),
|
Cinestart(),
|
||||||
OkRu(),
|
OkRu(),
|
||||||
|
OkRuHttps(),
|
||||||
|
|
||||||
// dood extractors
|
// dood extractors
|
||||||
|
DoodCxExtractor(),
|
||||||
|
DoodPmExtractor(),
|
||||||
DoodToExtractor(),
|
DoodToExtractor(),
|
||||||
DoodSoExtractor(),
|
DoodSoExtractor(),
|
||||||
DoodLaExtractor(),
|
DoodLaExtractor(),
|
||||||
|
@ -172,6 +182,9 @@ val extractorApis: Array<ExtractorApi> = arrayOf(
|
||||||
// SBPlay2(),
|
// SBPlay2(),
|
||||||
|
|
||||||
PlayerVoxzer(),
|
PlayerVoxzer(),
|
||||||
|
|
||||||
|
BullStream(),
|
||||||
|
GMPlayer()
|
||||||
)
|
)
|
||||||
|
|
||||||
fun getExtractorApiFromName(name: String): ExtractorApi {
|
fun getExtractorApiFromName(name: String): ExtractorApi {
|
||||||
|
|
Loading…
Reference in a new issue