mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
fix vizjer and add one more webflix instance
This commit is contained in:
parent
d8ed50157c
commit
4cda67d0a1
4 changed files with 15 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 3
|
version = 4
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -5,11 +5,12 @@ import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
|
import com.lagradost.cloudstream3.network.CloudflareKiller
|
||||||
import org.jsoup.Jsoup
|
import org.jsoup.Jsoup
|
||||||
import org.jsoup.select.Elements
|
import org.jsoup.select.Elements
|
||||||
|
|
||||||
class VizjerProvider : MainAPI() {
|
class VizjerProvider : MainAPI() {
|
||||||
override var mainUrl = "http://93.185.166.160"
|
override var mainUrl = "https://vizjer.pl"
|
||||||
override var name = "Vizjer.pl"
|
override var name = "Vizjer.pl"
|
||||||
override var lang = "pl"
|
override var lang = "pl"
|
||||||
override val hasMainPage = true
|
override val hasMainPage = true
|
||||||
|
@ -19,8 +20,10 @@ class VizjerProvider : MainAPI() {
|
||||||
TvType.Movie
|
TvType.Movie
|
||||||
)
|
)
|
||||||
|
|
||||||
|
private val interceptor = CloudflareKiller()
|
||||||
|
|
||||||
override suspend fun getMainPage(page: Int, request : MainPageRequest): HomePageResponse {
|
override suspend fun getMainPage(page: Int, request : MainPageRequest): HomePageResponse {
|
||||||
val document = app.get(mainUrl).document
|
val document = app.get(mainUrl, interceptor = interceptor).document
|
||||||
val lists = document.select(".item-list")
|
val lists = document.select(".item-list")
|
||||||
val categories = ArrayList<HomePageList>()
|
val categories = ArrayList<HomePageList>()
|
||||||
for (l in lists) {
|
for (l in lists) {
|
||||||
|
@ -37,7 +40,9 @@ class VizjerProvider : MainAPI() {
|
||||||
this.name,
|
this.name,
|
||||||
TvType.Movie,
|
TvType.Movie,
|
||||||
properUrl(poster)!!,
|
properUrl(poster)!!,
|
||||||
year
|
year,
|
||||||
|
null,
|
||||||
|
posterHeaders = interceptor.getCookieHeaders(mainUrl).toMap()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
categories.add(HomePageList(title, items))
|
categories.add(HomePageList(title, items))
|
||||||
|
@ -47,7 +52,7 @@ class VizjerProvider : MainAPI() {
|
||||||
|
|
||||||
override suspend fun search(query: String): List<SearchResponse> {
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
val url = "$mainUrl/wyszukaj?phrase=$query"
|
val url = "$mainUrl/wyszukaj?phrase=$query"
|
||||||
val document = app.get(url).document
|
val document = app.get(url, interceptor = interceptor).document
|
||||||
val lists = document.select("#advanced-search > div")
|
val lists = document.select("#advanced-search > div")
|
||||||
val movies = lists[1].select("div:not(.clearfix)")
|
val movies = lists[1].select("div:not(.clearfix)")
|
||||||
val series = lists[3].select("div:not(.clearfix)")
|
val series = lists[3].select("div:not(.clearfix)")
|
||||||
|
@ -66,10 +71,10 @@ class VizjerProvider : MainAPI() {
|
||||||
type,
|
type,
|
||||||
properUrl(img)!!,
|
properUrl(img)!!,
|
||||||
null,
|
null,
|
||||||
null
|
posterHeaders = interceptor.getCookieHeaders(url).toMap()
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
MovieSearchResponse(name, properUrl(href)!!, this.name, type, properUrl(img)!!, null)
|
MovieSearchResponse(name, properUrl(href)!!, this.name, type, properUrl(img)!!, null, posterHeaders = interceptor.getCookieHeaders(url).toMap())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -77,7 +82,7 @@ class VizjerProvider : MainAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun load(url: String): LoadResponse {
|
override suspend fun load(url: String): LoadResponse {
|
||||||
val document = app.get(url).document
|
val document = app.get(url, interceptor = interceptor).document
|
||||||
val documentTitle = document.select("title").text().trim()
|
val documentTitle = document.select("title").text().trim()
|
||||||
|
|
||||||
if (documentTitle.startsWith("Logowanie")) {
|
if (documentTitle.startsWith("Logowanie")) {
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 1
|
version = 2
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
// All of these properties are optional, you can safely remove them
|
// All of these properties are optional, you can safely remove them
|
||||||
|
|
|
@ -15,5 +15,6 @@ class WebFlixProviderPlugin: Plugin() {
|
||||||
registerMainAPI(WebFlixProvider("fr", "http://www.vanflix.cm", "Vanflix", setOf(TvType.Movie, TvType.TvSeries, TvType.Live)))
|
registerMainAPI(WebFlixProvider("fr", "http://www.vanflix.cm", "Vanflix", setOf(TvType.Movie, TvType.TvSeries, TvType.Live)))
|
||||||
registerMainAPI(WebFlixProvider("pt-pt", "https://www.brflix.xyz", "BrFlix", setOf(TvType.Movie, TvType.TvSeries, TvType.Live)))
|
registerMainAPI(WebFlixProvider("pt-pt", "https://www.brflix.xyz", "BrFlix", setOf(TvType.Movie, TvType.TvSeries, TvType.Live)))
|
||||||
registerMainAPI(WebFlixProvider("ar", "https://ifilm.live", "ifilm.live", setOf(TvType.Movie, TvType.TvSeries)))
|
registerMainAPI(WebFlixProvider("ar", "https://ifilm.live", "ifilm.live", setOf(TvType.Movie, TvType.TvSeries)))
|
||||||
|
registerMainAPI(WebFlixProvider("en", "https://karmadarna.com", "KarMaDarNa", setOf(TvType.NSFW)))
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue