mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
fixed Rebahin and moved Ngefilm
This commit is contained in:
parent
46c67dbd35
commit
864b266f9e
14 changed files with 76 additions and 234 deletions
|
@ -1,12 +1,12 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 2
|
version = 3
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
language = "id"
|
language = "id"
|
||||||
// All of these properties are optional, you can safely remove them
|
// All of these properties are optional, you can safely remove them
|
||||||
|
|
||||||
description = "Include: DutaMovie"
|
description = "Include: DutaMovie, Ngefilm"
|
||||||
authors = listOf("Hexated")
|
authors = listOf("Hexated")
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -8,13 +8,6 @@ import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
class DutaMovie : Gomov() {
|
class DutaMovie : Gomov() {
|
||||||
override var mainUrl = "https://dutamovie21.live"
|
override var mainUrl = "https://dutamovie21.live"
|
||||||
override var name = "DutaMovie"
|
override var name = "DutaMovie"
|
||||||
override val hasMainPage = true
|
|
||||||
override var lang = "id"
|
|
||||||
override val supportedTypes = setOf(
|
|
||||||
TvType.Movie,
|
|
||||||
TvType.TvSeries,
|
|
||||||
TvType.AsianDrama
|
|
||||||
)
|
|
||||||
|
|
||||||
override val mainPage = mainPageOf(
|
override val mainPage = mainPageOf(
|
||||||
"category/box-office/page/%d/" to "Box Office",
|
"category/box-office/page/%d/" to "Box Office",
|
||||||
|
|
|
@ -43,8 +43,8 @@ open class Gomov : MainAPI() {
|
||||||
private fun Element.toSearchResult(): SearchResponse? {
|
private fun Element.toSearchResult(): SearchResponse? {
|
||||||
val title = this.selectFirst("h2.entry-title > a")?.text()?.trim() ?: return null
|
val title = this.selectFirst("h2.entry-title > a")?.text()?.trim() ?: return null
|
||||||
val href = fixUrl(this.selectFirst("a")!!.attr("href"))
|
val href = fixUrl(this.selectFirst("a")!!.attr("href"))
|
||||||
val posterUrl = fixUrlNull(this.selectFirst("a > img")?.attr("src"))
|
val posterUrl = fixUrlNull(this.selectFirst("a > img")?.attr("src"))?.fixImageQuality()
|
||||||
val quality = this.select("div.gmr-qual").text().trim()
|
val quality = this.select("div.gmr-qual, div.gmr-quality-item > a").text().trim().replace("-", "")
|
||||||
return if (quality.isEmpty()) {
|
return if (quality.isEmpty()) {
|
||||||
val episode = this.select("div.gmr-numbeps > span").text().toIntOrNull()
|
val episode = this.select("div.gmr-numbeps > span").text().toIntOrNull()
|
||||||
newAnimeSearchResponse(title, href, TvType.TvSeries) {
|
newAnimeSearchResponse(title, href, TvType.TvSeries) {
|
||||||
|
@ -59,10 +59,10 @@ open class Gomov : MainAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun Element.toBottomSearchResult(): SearchResponse? {
|
private fun Element.toRecommendResult(): SearchResponse? {
|
||||||
val title = this.selectFirst("a > span.idmuvi-rp-title")?.text()?.trim() ?: return null
|
val title = this.selectFirst("a > span.idmuvi-rp-title")?.text()?.trim() ?: return null
|
||||||
val href = this.selectFirst("a")!!.attr("href")
|
val href = this.selectFirst("a")!!.attr("href")
|
||||||
val posterUrl = fixUrl(this.selectFirst("a > img")?.attr("data-src").toString())
|
val posterUrl = fixUrlNull(this.selectFirst("a > img")?.attr("src").fixImageQuality())
|
||||||
return newMovieSearchResponse(title, href, TvType.Movie) {
|
return newMovieSearchResponse(title, href, TvType.Movie) {
|
||||||
this.posterUrl = posterUrl
|
this.posterUrl = posterUrl
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ open class Gomov : MainAPI() {
|
||||||
document.selectFirst("h1.entry-title")?.text()?.substringBefore("Season")?.trim()
|
document.selectFirst("h1.entry-title")?.text()?.substringBefore("Season")?.trim()
|
||||||
.toString()
|
.toString()
|
||||||
val poster =
|
val poster =
|
||||||
fixUrl(document.selectFirst("figure.pull-left > img")?.attr("src").toString())
|
fixUrlNull(document.selectFirst("figure.pull-left > img")?.attr("src"))?.fixImageQuality()
|
||||||
val tags = document.select("span.gmr-movie-genre:contains(Genre:) > a").map { it.text() }
|
val tags = document.select("span.gmr-movie-genre:contains(Genre:) > a").map { it.text() }
|
||||||
|
|
||||||
val year =
|
val year =
|
||||||
|
@ -97,7 +97,7 @@ open class Gomov : MainAPI() {
|
||||||
?.map { it.select("a").text() }
|
?.map { it.select("a").text() }
|
||||||
|
|
||||||
val recommendations = document.select("div.idmuvi-rp ul li").mapNotNull {
|
val recommendations = document.select("div.idmuvi-rp ul li").mapNotNull {
|
||||||
it.toBottomSearchResult()
|
it.toRecommendResult()
|
||||||
}
|
}
|
||||||
|
|
||||||
return if (tvType == TvType.TvSeries) {
|
return if (tvType == TvType.TvSeries) {
|
||||||
|
@ -109,7 +109,7 @@ open class Gomov : MainAPI() {
|
||||||
Episode(
|
Episode(
|
||||||
href,
|
href,
|
||||||
name,
|
name,
|
||||||
season = season,
|
season = if(name.contains(" ")) season else null,
|
||||||
episode = episode,
|
episode = episode,
|
||||||
)
|
)
|
||||||
}.filter { it.episode != null }
|
}.filter { it.episode != null }
|
||||||
|
@ -160,4 +160,11 @@ open class Gomov : MainAPI() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun String?.fixImageQuality(): String? {
|
||||||
|
if(this == null) return null
|
||||||
|
val regex = Regex("(-\\d*x\\d*)").find(this)?.groupValues
|
||||||
|
if(regex?.isEmpty() == true) return this
|
||||||
|
return this.replace(regex?.get(0) ?: return null, "")
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -11,6 +11,7 @@ class GomovPlugin: Plugin() {
|
||||||
// All providers should be added in this manner. Please don't edit the providers list directly.
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||||
registerMainAPI(Gomov())
|
registerMainAPI(Gomov())
|
||||||
registerMainAPI(DutaMovie())
|
registerMainAPI(DutaMovie())
|
||||||
|
registerMainAPI(Ngefilm())
|
||||||
registerExtractorAPI(Filelions())
|
registerExtractorAPI(Filelions())
|
||||||
registerExtractorAPI(Likessb())
|
registerExtractorAPI(Likessb())
|
||||||
registerExtractorAPI(DbGdriveplayer())
|
registerExtractorAPI(DbGdriveplayer())
|
||||||
|
|
40
Gomov/src/main/kotlin/com/hexated/Ngefilm.kt
Normal file
40
Gomov/src/main/kotlin/com/hexated/Ngefilm.kt
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
package com.hexated
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.SubtitleFile
|
||||||
|
import com.lagradost.cloudstream3.apmap
|
||||||
|
import com.lagradost.cloudstream3.app
|
||||||
|
import com.lagradost.cloudstream3.fixUrl
|
||||||
|
import com.lagradost.cloudstream3.mainPageOf
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
|
|
||||||
|
class Ngefilm : Gomov() {
|
||||||
|
override var mainUrl = "https://ngefilm21.lol"
|
||||||
|
override var name = "Ngefilm"
|
||||||
|
|
||||||
|
override val mainPage = mainPageOf(
|
||||||
|
"/page/%d/?s&search=advanced&post_type=movie&index&orderby&genre&movieyear&country&quality=" to "Movies Terbaru",
|
||||||
|
"/page/%d/?s=&search=advanced&post_type=tv&index=&orderby=&genre=&movieyear=&country=&quality=" to "Series Terbaru",
|
||||||
|
"/page/%d/?s=&search=advanced&post_type=tv&index=&orderby=&genre=drakor&movieyear=&country=&quality=" to "Series Korea",
|
||||||
|
"/page/%d/?s=&search=advanced&post_type=tv&index=&orderby=&genre=&movieyear=&country=indonesia&quality=" to "Series Indonesia",
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String,
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
|
||||||
|
val document = app.get(data).document
|
||||||
|
document.select("ul.muvipro-player-tabs li a").apmap { server ->
|
||||||
|
val iframe = app.get(fixUrl(server.attr("href"))).document.selectFirst("div.gmr-embed-responsive iframe")
|
||||||
|
?.attr("src")?.let { fixUrl(it) } ?: return@apmap
|
||||||
|
loadExtractor(iframe, "$mainUrl/", subtitleCallback, callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,27 +0,0 @@
|
||||||
// use an integer for version numbers
|
|
||||||
version = 4
|
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
|
||||||
language = "id"
|
|
||||||
// All of these properties are optional, you can safely remove them
|
|
||||||
|
|
||||||
// description = "Lorem Ipsum"
|
|
||||||
authors = listOf("Hexated")
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Status int as the following:
|
|
||||||
* 0: Down
|
|
||||||
* 1: Ok
|
|
||||||
* 2: Slow
|
|
||||||
* 3: Beta only
|
|
||||||
* */
|
|
||||||
status = 1 // will be 3 if unspecified
|
|
||||||
tvTypes = listOf(
|
|
||||||
"AsianDrama",
|
|
||||||
"TvSeries",
|
|
||||||
"Movie",
|
|
||||||
)
|
|
||||||
|
|
||||||
iconUrl = "https://www.google.com/s2/favicons?domain=ngefilm21.club&sz=%size%"
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest package="com.hexated"/>
|
|
|
@ -1,164 +0,0 @@
|
||||||
package com.hexated
|
|
||||||
|
|
||||||
import com.lagradost.cloudstream3.*
|
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addActors
|
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
|
||||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
|
||||||
import org.jsoup.nodes.Element
|
|
||||||
|
|
||||||
class Ngefilm : MainAPI() {
|
|
||||||
override var mainUrl = "https://ngefilm21.cfd"
|
|
||||||
override var name = "Ngefilm"
|
|
||||||
override val hasMainPage = true
|
|
||||||
override var lang = "id"
|
|
||||||
override val hasDownloadSupport = true
|
|
||||||
override val supportedTypes = setOf(
|
|
||||||
TvType.Movie,
|
|
||||||
TvType.TvSeries,
|
|
||||||
TvType.AsianDrama
|
|
||||||
)
|
|
||||||
|
|
||||||
override val mainPage = mainPageOf(
|
|
||||||
"?s&search=advanced&post_type=movie&index&orderby&genre&movieyear&country&quality=" to "Movies Terbaru",
|
|
||||||
"?s=&search=advanced&post_type=tv&index=&orderby=&genre=&movieyear=&country=&quality=" to "Series Terbaru",
|
|
||||||
"?s=&search=advanced&post_type=tv&index=&orderby=&genre=drakor&movieyear=&country=&quality=" to "Series Korea",
|
|
||||||
"?s=&search=advanced&post_type=tv&index=&orderby=&genre=&movieyear=&country=indonesia&quality=" to "Series Indonesia",
|
|
||||||
)
|
|
||||||
|
|
||||||
override suspend fun getMainPage(
|
|
||||||
page: Int,
|
|
||||||
request: MainPageRequest
|
|
||||||
): HomePageResponse {
|
|
||||||
val document = app.get("$mainUrl/page/$page/${request.data}").document
|
|
||||||
val home = document.select("main#main article").mapNotNull {
|
|
||||||
it.toSearchResult()
|
|
||||||
}
|
|
||||||
return newHomePageResponse(request.name, home)
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun search(query: String): List<SearchResponse> {
|
|
||||||
val link = "$mainUrl/?s=$query&post_type[]=post&post_type[]=tv"
|
|
||||||
val document = app.get(link).document
|
|
||||||
return document.select("main#main article").mapNotNull {
|
|
||||||
it.toSearchResult()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun load(url: String): LoadResponse {
|
|
||||||
val document = app.get(url).document
|
|
||||||
|
|
||||||
val title =
|
|
||||||
document.selectFirst("h1.entry-title")?.text()?.substringBefore("Season")?.trim() ?: ""
|
|
||||||
val poster = fixUrlNull(
|
|
||||||
document.selectFirst("figure.pull-left > img")?.attr("src")?.fixImageQuality()
|
|
||||||
)
|
|
||||||
val tags = document.select("span.gmr-movie-genre:contains(Genre:) > a").map { it.text() }
|
|
||||||
|
|
||||||
val year =
|
|
||||||
document.select("span.gmr-movie-genre:contains(Year:) > a").text().trim().toIntOrNull()
|
|
||||||
val tvType = if (url.contains("/tv/")) TvType.TvSeries else TvType.Movie
|
|
||||||
val description = document.selectFirst("div[itemprop=description] > p")?.text()?.trim()
|
|
||||||
val trailer = document.selectFirst("ul.gmr-player-nav li a.gmr-trailer-popup")?.attr("href")
|
|
||||||
val rating =
|
|
||||||
document.selectFirst("div.gmr-meta-rating > span[itemprop=ratingValue]")?.text()
|
|
||||||
?.toRatingInt()
|
|
||||||
val actors = document.select("div.gmr-moviedata").last()?.select("span[itemprop=actors]")
|
|
||||||
?.map { it.select("a").text() }
|
|
||||||
|
|
||||||
val recommendations = document.select("div.idmuvi-rp ul li").mapNotNull {
|
|
||||||
it.toRecommendResult()
|
|
||||||
}
|
|
||||||
|
|
||||||
return if (tvType == TvType.TvSeries) {
|
|
||||||
val episodes = document.select("div.gmr-listseries > a")
|
|
||||||
.filter { element -> !element.text().contains("Pilih Episode", true) }
|
|
||||||
.map { eps ->
|
|
||||||
val href = fixUrl(eps.attr("href"))
|
|
||||||
val episode = eps.text().substringAfter("Eps").toIntOrNull()
|
|
||||||
val season =
|
|
||||||
eps.text().split(" ").first().substringAfter("S").toIntOrNull() ?: 1
|
|
||||||
Episode(
|
|
||||||
href,
|
|
||||||
season = season,
|
|
||||||
episode = episode,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes) {
|
|
||||||
this.posterUrl = poster
|
|
||||||
this.year = year
|
|
||||||
this.plot = description
|
|
||||||
this.tags = tags
|
|
||||||
this.rating = rating
|
|
||||||
addActors(actors)
|
|
||||||
this.recommendations = recommendations
|
|
||||||
addTrailer(trailer)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
newMovieLoadResponse(title, url, TvType.Movie, url) {
|
|
||||||
this.posterUrl = poster
|
|
||||||
this.year = year
|
|
||||||
this.plot = description
|
|
||||||
this.tags = tags
|
|
||||||
this.rating = rating
|
|
||||||
addActors(actors)
|
|
||||||
this.recommendations = recommendations
|
|
||||||
addTrailer(trailer)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun loadLinks(
|
|
||||||
data: String,
|
|
||||||
isCasting: Boolean,
|
|
||||||
subtitleCallback: (SubtitleFile) -> Unit,
|
|
||||||
callback: (ExtractorLink) -> Unit
|
|
||||||
): Boolean {
|
|
||||||
|
|
||||||
val document = app.get(data).document
|
|
||||||
|
|
||||||
document.select("ul.muvipro-player-tabs li a").apmap { server ->
|
|
||||||
val iframe = app.get(fixUrl(server.attr("href"))).document.selectFirst("div.gmr-embed-responsive iframe")
|
|
||||||
?.attr("src")?.let { fixUrl(it) } ?: return@apmap
|
|
||||||
loadExtractor(iframe, "$mainUrl/", subtitleCallback, callback)
|
|
||||||
}
|
|
||||||
|
|
||||||
return true
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun Element.toSearchResult(): SearchResponse? {
|
|
||||||
val title = this.selectFirst("h2.entry-title > a")?.text()?.trim() ?: return null
|
|
||||||
val href = fixUrl(this.selectFirst("a")?.attr("href") ?: return null)
|
|
||||||
val posterUrl = fixUrlNull(this.selectFirst("a > img")?.attr("src").fixImageQuality())
|
|
||||||
val quality = this.select("div.gmr-quality-item > a").text().trim()
|
|
||||||
return if (quality.isEmpty()) {
|
|
||||||
val episode =
|
|
||||||
this.select("div.gmr-numbeps > span").text().filter { it.isDigit() }.toIntOrNull()
|
|
||||||
newAnimeSearchResponse(title, href, TvType.TvSeries) {
|
|
||||||
this.posterUrl = posterUrl
|
|
||||||
addSub(episode)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
newMovieSearchResponse(title, href, TvType.Movie) {
|
|
||||||
this.posterUrl = posterUrl
|
|
||||||
addQuality(quality.replace("-", ""))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun Element.toRecommendResult(): SearchResponse? {
|
|
||||||
val title = this.selectFirst("a > span.idmuvi-rp-title")?.text()?.trim() ?: return null
|
|
||||||
val href = this.selectFirst("a")!!.attr("href")
|
|
||||||
val posterUrl = fixUrlNull(this.selectFirst("a > img")?.attr("src").fixImageQuality())
|
|
||||||
return newMovieSearchResponse(title, href, TvType.Movie) {
|
|
||||||
this.posterUrl = posterUrl
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun String?.fixImageQuality(): String? {
|
|
||||||
val quality = Regex("(-\\d*x\\d*)").find(this ?: return null)?.groupValues?.get(0)
|
|
||||||
return this.replace(quality ?: return null, "")
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
package com.hexated
|
|
||||||
|
|
||||||
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
|
||||||
import com.lagradost.cloudstream3.plugins.Plugin
|
|
||||||
import android.content.Context
|
|
||||||
|
|
||||||
@CloudstreamPlugin
|
|
||||||
class NgefilmPlugin: Plugin() {
|
|
||||||
override fun load(context: Context) {
|
|
||||||
// All providers should be added in this manner. Please don't edit the providers list directly.
|
|
||||||
registerMainAPI(Ngefilm())
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -22,8 +22,8 @@ class Phim1080Provider : MainAPI() {
|
||||||
|
|
||||||
private fun encodeString(e: String, t: Int): String {
|
private fun encodeString(e: String, t: Int): String {
|
||||||
var a = ""
|
var a = ""
|
||||||
for (i in 0 until e.length) {
|
for (element in e) {
|
||||||
val r = e[i].code
|
val r = element.code
|
||||||
val o = r xor t
|
val o = r xor t
|
||||||
a += o.toChar()
|
a += o.toChar()
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ class Phim1080Provider : MainAPI() {
|
||||||
"Content-Type" to "application/json",
|
"Content-Type" to "application/json",
|
||||||
"X-Requested-With" to "XMLHttpRequest"
|
"X-Requested-With" to "XMLHttpRequest"
|
||||||
)
|
)
|
||||||
).parsedSafe<filmInfo>()
|
).parsedSafe<FilmInfo>()
|
||||||
val title = filmInfo?.name?.trim().toString()
|
val title = filmInfo?.name?.trim().toString()
|
||||||
val poster = filmInfo?.thumbnail
|
val poster = filmInfo?.thumbnail
|
||||||
val background = filmInfo?.poster
|
val background = filmInfo?.poster
|
||||||
|
@ -209,7 +209,7 @@ class Phim1080Provider : MainAPI() {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
data class filmInfo(
|
data class FilmInfo(
|
||||||
@JsonProperty("name") val name: String? = null,
|
@JsonProperty("name") val name: String? = null,
|
||||||
@JsonProperty("poster") val poster: String? = null,
|
@JsonProperty("poster") val poster: String? = null,
|
||||||
@JsonProperty("thumbnail") val thumbnail: String? = null,
|
@JsonProperty("thumbnail") val thumbnail: String? = null,
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 6
|
version = 7
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
language = "id"
|
language = "id"
|
||||||
// All of these properties are optional, you can safely remove them
|
// All of these properties are optional, you can safely remove them
|
||||||
|
|
||||||
// description = "Lorem Ipsum"
|
description = "Include: Cgvindo, Kitanonton"
|
||||||
authors = listOf("Hexated")
|
authors = listOf("Hexated")
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
9
RebahinProvider/src/main/kotlin/com/hexated/Cgvindo.kt
Normal file
9
RebahinProvider/src/main/kotlin/com/hexated/Cgvindo.kt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
package com.hexated
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.TvType
|
||||||
|
|
||||||
|
class Cgvindo : RebahinProvider() {
|
||||||
|
override var mainUrl = "http://cgvindo.click"
|
||||||
|
override var name = "Cgvindo"
|
||||||
|
|
||||||
|
}
|
|
@ -13,11 +13,10 @@ import org.jsoup.nodes.Element
|
||||||
import java.net.URI
|
import java.net.URI
|
||||||
|
|
||||||
open class RebahinProvider : MainAPI() {
|
open class RebahinProvider : MainAPI() {
|
||||||
override var mainUrl = "http://104.237.198.198"
|
override var mainUrl = "http://179.43.163.50"
|
||||||
override var name = "Rebahin"
|
override var name = "Rebahin"
|
||||||
override val hasMainPage = true
|
override val hasMainPage = true
|
||||||
override var lang = "id"
|
override var lang = "id"
|
||||||
override val hasDownloadSupport = true
|
|
||||||
open var mainServer = "http://172.96.161.72"
|
open var mainServer = "http://172.96.161.72"
|
||||||
override val supportedTypes = setOf(
|
override val supportedTypes = setOf(
|
||||||
TvType.Movie,
|
TvType.Movie,
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package com.hexated
|
package com.hexated
|
||||||
|
|
||||||
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
||||||
|
@ -11,5 +10,6 @@ class RebahinProviderPlugin: Plugin() {
|
||||||
// All providers should be added in this manner. Please don't edit the providers list directly.
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||||
registerMainAPI(RebahinProvider())
|
registerMainAPI(RebahinProvider())
|
||||||
registerMainAPI(Kitanonton())
|
registerMainAPI(Kitanonton())
|
||||||
|
registerMainAPI(Cgvindo())
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue