mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
CineBlog01Provider, Guardaserie fix and small generic fixes (#34)
This commit is contained in:
parent
5db1331939
commit
5aa10f47aa
12 changed files with 247 additions and 178 deletions
27
CineBlog01Provider/build.gradle.kts
Normal file
27
CineBlog01Provider/build.gradle.kts
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
// use an integer for version numbers
|
||||||
|
version = 1
|
||||||
|
|
||||||
|
|
||||||
|
cloudstream {
|
||||||
|
language = "it"
|
||||||
|
// All of these properties are optional, you can safely remove them
|
||||||
|
|
||||||
|
// description = "Lorem Ipsum"
|
||||||
|
authors = listOf("Adippe")
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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=cineblog01.legal&sz=%size%"
|
||||||
|
}
|
2
CineBlog01Provider/src/main/AndroidManifest.xml
Normal file
2
CineBlog01Provider/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest package="com.lagradost"/>
|
|
@ -0,0 +1,111 @@
|
||||||
|
package com.lagradost
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.*
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
|
|
||||||
|
class CineBlog01Provider : MainAPI() {
|
||||||
|
override var lang = "it"
|
||||||
|
override var mainUrl = "https://www.cineblog01.legal"
|
||||||
|
override var name = "CineBlog01"
|
||||||
|
override val hasMainPage = true
|
||||||
|
override val hasChromecastSupport = true
|
||||||
|
override var sequentialMainPage = true
|
||||||
|
override val supportedTypes = setOf(
|
||||||
|
TvType.Movie,
|
||||||
|
)
|
||||||
|
override val mainPage = mainPageOf(
|
||||||
|
Pair("$mainUrl/page/", "Film Popolari"),
|
||||||
|
Pair("$mainUrl/film-sub-ita/page/", "Film Sub-ita")
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun getMainPage(
|
||||||
|
page: Int,
|
||||||
|
request: MainPageRequest
|
||||||
|
): HomePageResponse {
|
||||||
|
val url = request.data + page
|
||||||
|
val soup = app.get(url).document
|
||||||
|
|
||||||
|
val home = soup.select("div.filmbox").map { series ->
|
||||||
|
val title = series.selectFirst("img")!!.attr("alt")
|
||||||
|
val link = series.selectFirst("a")!!.attr("href")
|
||||||
|
val posterUrl = fixUrl(series.selectFirst("img")!!.attr("src"))
|
||||||
|
val quality = Regex("\\[([^\\]]*)]").find(series.selectFirst("h1")!!.text())?.groupValues?.get(1)
|
||||||
|
val year = Regex("\\(([^)]*)\\)").find(series.selectFirst("h1")!!.text())?.groupValues?.get(1)?.toIntOrNull()
|
||||||
|
|
||||||
|
newMovieSearchResponse(
|
||||||
|
title,
|
||||||
|
link,
|
||||||
|
TvType.TvSeries
|
||||||
|
) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
this.quality = getQualityFromString(quality)
|
||||||
|
this.year = year
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return newHomePageResponse(request.name, home)
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
|
val doc = app.post(
|
||||||
|
"$mainUrl/index.php?do=search", data = mapOf(
|
||||||
|
"do" to "search",
|
||||||
|
"subaction" to "search",
|
||||||
|
"story" to query
|
||||||
|
)
|
||||||
|
).document
|
||||||
|
return doc.select("div.filmbox").map { series ->
|
||||||
|
val title = series.selectFirst("img")!!.attr("alt")
|
||||||
|
val link = series.selectFirst("a")!!.attr("href")
|
||||||
|
val posterUrl = fixUrl(series.selectFirst("img")!!.attr("src"))
|
||||||
|
var quality = Regex("\\[([^\\]]*)]").find(series.selectFirst("h1")!!.text())?.groupValues?.get(1)
|
||||||
|
var year = Regex("\\(([^)]*)\\)").find(series.selectFirst("h1")!!.text())?.groupValues?.get(1)?.toIntOrNull()
|
||||||
|
|
||||||
|
newMovieSearchResponse(
|
||||||
|
title,
|
||||||
|
link,
|
||||||
|
TvType.TvSeries
|
||||||
|
) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
this.quality = getQualityFromString(quality)
|
||||||
|
this.year = year
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun load(url: String): LoadResponse {
|
||||||
|
val document = app.get(url).document
|
||||||
|
val title = document.selectFirst("div.imgrow > img")!!.attr("alt")
|
||||||
|
val description = document.selectFirst("div.fstory")?.text()?.removeSuffix(" +Info »")?.substringAfter("′ - ")
|
||||||
|
var year = document.selectFirst("div.filmboxfull")?.getElementsByAttributeValueContaining("href" , "/anno/")?.text()?.toIntOrNull()
|
||||||
|
val poster = fixUrl(document.selectFirst("div.imgrow > img")!!.attr("src"))
|
||||||
|
val dataUrl = document.select("ul.mirrors-list__list > li").map {
|
||||||
|
it.select("a").attr("href")
|
||||||
|
}.drop(1).joinToString (",")
|
||||||
|
return newMovieLoadResponse(
|
||||||
|
title,
|
||||||
|
url,
|
||||||
|
TvType.Movie,
|
||||||
|
dataUrl = dataUrl
|
||||||
|
) {
|
||||||
|
|
||||||
|
this.plot = description
|
||||||
|
this.year = year
|
||||||
|
this.posterUrl = poster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String,
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
val links = data.split(",")
|
||||||
|
links.map { url ->
|
||||||
|
loadExtractor(fixUrl(url), fixUrl(url), subtitleCallback, callback)
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
package com.lagradost
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
||||||
|
import com.lagradost.cloudstream3.plugins.Plugin
|
||||||
|
import android.content.Context
|
||||||
|
|
||||||
|
@CloudstreamPlugin
|
||||||
|
class CineBlog01ProviderPlugin: Plugin() {
|
||||||
|
override fun load(context: Context) {
|
||||||
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||||
|
registerMainAPI(CineBlog01Provider())
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 1
|
version = 2
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
class CineBlogProvider : MainAPI() {
|
class CineBlogProvider : MainAPI() {
|
||||||
override var lang = "it"
|
override var lang = "it"
|
||||||
override var mainUrl = "https://cb01.rip"
|
override var mainUrl = "https://cb01.rip"
|
||||||
override var name = "CineBlog"
|
override var name = "CB01"
|
||||||
override val hasMainPage = true
|
override val hasMainPage = true
|
||||||
override val hasChromecastSupport = true
|
override val hasChromecastSupport = true
|
||||||
override val supportedTypes = setOf(
|
override val supportedTypes = setOf(
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 2
|
version = 3
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -11,6 +11,7 @@ import com.lagradost.cloudstream3.utils.ShortLink
|
||||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.html
|
import com.lagradost.cloudstream3.utils.AppUtils.html
|
||||||
|
import com.lagradost.cloudstream3.network.CloudflareKiller
|
||||||
|
|
||||||
|
|
||||||
class FilmpertuttiProvider : MainAPI() {
|
class FilmpertuttiProvider : MainAPI() {
|
||||||
|
@ -30,12 +31,13 @@ class FilmpertuttiProvider : MainAPI() {
|
||||||
Pair("$mainUrl/prime-visioni/", "Ultime uscite")
|
Pair("$mainUrl/prime-visioni/", "Ultime uscite")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
private val interceptor = CloudflareKiller()
|
||||||
override suspend fun getMainPage(
|
override suspend fun getMainPage(
|
||||||
page: Int,
|
page: Int,
|
||||||
request: MainPageRequest
|
request: MainPageRequest
|
||||||
): HomePageResponse {
|
): HomePageResponse {
|
||||||
val url = request.data + page
|
val url = request.data + page
|
||||||
val soup = app.get(url, referer = mainUrl).document
|
val soup = app.get(url, interceptor = interceptor, referer = mainUrl).document
|
||||||
val home = soup.select("ul.posts > li").map {
|
val home = soup.select("ul.posts > li").map {
|
||||||
val title = it.selectFirst("div.title")!!.text().substringBeforeLast("(")
|
val title = it.selectFirst("div.title")!!.text().substringBeforeLast("(")
|
||||||
.substringBeforeLast("[")
|
.substringBeforeLast("[")
|
||||||
|
@ -62,7 +64,7 @@ class FilmpertuttiProvider : MainAPI() {
|
||||||
override suspend fun search(query: String): List<SearchResponse> {
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
val queryformatted = query.replace(" ", "+")
|
val queryformatted = query.replace(" ", "+")
|
||||||
val url = "$mainUrl/?s=$queryformatted"
|
val url = "$mainUrl/?s=$queryformatted"
|
||||||
val doc = app.get(url).document
|
val doc = app.get(url, interceptor = interceptor).document
|
||||||
return doc.select("ul.posts > li").map {
|
return doc.select("ul.posts > li").map {
|
||||||
val title = it.selectFirst("div.title")!!.text().substringBeforeLast("(")
|
val title = it.selectFirst("div.title")!!.text().substringBeforeLast("(")
|
||||||
.substringBeforeLast("[")
|
.substringBeforeLast("[")
|
||||||
|
@ -81,7 +83,7 @@ class FilmpertuttiProvider : 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 type =
|
val type =
|
||||||
if (document.selectFirst("a.taxonomy.category")!!.attr("href").contains("serie-tv")
|
if (document.selectFirst("a.taxonomy.category")!!.attr("href").contains("serie-tv")
|
||||||
.not()
|
.not()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 1
|
version = 2
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -1,181 +1,108 @@
|
||||||
package com.lagradost
|
package com.lagradost
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addAniListId
|
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addDuration
|
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addMalId
|
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addRating
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addRating
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.Qualities
|
|
||||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
import com.lagradost.nicehttp.NiceResponse
|
|
||||||
import org.jsoup.nodes.Element
|
|
||||||
import org.mozilla.javascript.ConsString
|
|
||||||
import org.mozilla.javascript.Context
|
|
||||||
import org.mozilla.javascript.Scriptable
|
|
||||||
|
|
||||||
class GuardaSerieProvider : MainAPI() {
|
class GuardaSerieProvider : MainAPI() {
|
||||||
override var mainUrl = "https://guardaserie.golf"
|
|
||||||
override var name = "GuardaSerie"
|
|
||||||
override var lang = "it"
|
override var lang = "it"
|
||||||
|
override var mainUrl = "https://guardaserie.skin"
|
||||||
|
override var name = "GuardaSerie"
|
||||||
override val hasMainPage = true
|
override val hasMainPage = true
|
||||||
override val hasQuickSearch = true
|
override val hasChromecastSupport = true
|
||||||
|
override var sequentialMainPage = true
|
||||||
override val supportedTypes = setOf(
|
override val supportedTypes = setOf(
|
||||||
TvType.TvSeries,
|
TvType.TvSeries,
|
||||||
TvType.Movie
|
|
||||||
)
|
)
|
||||||
override val mainPage = mainPageOf(
|
override val mainPage = mainPageOf(
|
||||||
Pair("$mainUrl/stagioni/page/", "Ultime Serie Tv"),
|
Pair("$mainUrl/serietv-popolari/page/", "Serie Tv Popolari"),
|
||||||
Pair("$mainUrl/viste/page/", "Film e Serie più viste"),
|
Pair("$mainUrl/serietv-streaming/page/", "Ultime Serie Tv"),
|
||||||
Pair("$mainUrl/votati/page/", "Ora al cinema")
|
Pair("$mainUrl/top-imdb/page/", "Top IMDB")
|
||||||
)
|
|
||||||
companion object {
|
|
||||||
private lateinit var token : String
|
|
||||||
}
|
|
||||||
|
|
||||||
data class QuickSearchParser (
|
|
||||||
@JsonProperty ("title") val title : String? = null,
|
|
||||||
@JsonProperty ("url") val url : String? = null,
|
|
||||||
@JsonProperty ("img") val img : String? = null
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
override suspend fun search(query: String): List<SearchResponse> {
|
override suspend fun getMainPage(
|
||||||
val queryFormatted = query.replace(" ", "+")
|
page: Int,
|
||||||
val url = "$mainUrl?s=$queryFormatted"
|
request: MainPageRequest
|
||||||
val doc = app.get(url,referer= mainUrl ).document
|
): HomePageResponse {
|
||||||
return doc.select("div.result-item").map {
|
|
||||||
val href = it.selectFirst("div.image > div > a")!!.attr("href")
|
|
||||||
val poster = it.selectFirst("div.image > div > a > img")!!.attr("src")
|
|
||||||
val name = it.selectFirst("div.details > div.title > a")!!.text().substringBefore("(")
|
|
||||||
MovieSearchResponse(
|
|
||||||
name,
|
|
||||||
href,
|
|
||||||
this.name,
|
|
||||||
TvType.Movie,
|
|
||||||
poster
|
|
||||||
)
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override suspend fun quickSearch(query: String): List<SearchResponse>? {
|
|
||||||
val response = app.get("$mainUrl/wp-json/dooplay/search/?keyword=$query&nonce=$token").text
|
|
||||||
val p = tryParseJson<HashMap<String,QuickSearchParser>>(response)?.values?.map {
|
|
||||||
MovieSearchResponse(
|
|
||||||
name = it.title!!,
|
|
||||||
url = it.url!!,
|
|
||||||
posterUrl = it.img!!,
|
|
||||||
type = TvType.Movie,
|
|
||||||
apiName = this.name
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return p
|
|
||||||
}
|
|
||||||
override suspend fun getMainPage(page: Int, request : MainPageRequest): HomePageResponse {
|
|
||||||
val url = request.data + page
|
val url = request.data + page
|
||||||
val soup = app.get(url).document
|
val soup = app.get(url).document
|
||||||
|
val home = soup.select("div.mlnew").drop(1).map { series ->
|
||||||
|
val title = series.selectFirst("div.mlnh-2")!!.text()
|
||||||
|
val link = series.selectFirst("div.mlnh-2 > h2 > a")!!.attr("href")
|
||||||
|
val posterUrl = fixUrl(series.selectFirst("img")!!.attr("src"))
|
||||||
|
|
||||||
token = Regex("nonce\":\"[^\"]*").find(app.get(mainUrl).toString())?.value?.drop(8)?:""
|
newTvSeriesSearchResponse(
|
||||||
val home = soup.select("article").map {
|
|
||||||
val title = it.selectFirst("img")!!.attr("alt")
|
|
||||||
val link = it.selectFirst("a")!!.attr("href")
|
|
||||||
val image = it.selectFirst("img")!!.attr("src")
|
|
||||||
val quality = getQualityFromString(it.selectFirst("span.quality")?.text())
|
|
||||||
|
|
||||||
MovieSearchResponse(
|
|
||||||
title,
|
title,
|
||||||
link,
|
link,
|
||||||
this.name,
|
TvType.TvSeries
|
||||||
TvType.Movie,
|
) {
|
||||||
image,
|
this.posterUrl = posterUrl
|
||||||
null,
|
}
|
||||||
null,
|
|
||||||
quality,
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
return newHomePageResponse(request.name, home)
|
return newHomePageResponse(request.name, home)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun load(url: String): LoadResponse {
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
val document = app.get(url).document
|
val doc = app.post(
|
||||||
val name = document.selectFirst("h1")!!.text()
|
mainUrl, data = mapOf(
|
||||||
val poster = document.selectFirst("div.poster")?.selectFirst("img")!!.attr("src")
|
"do" to "search",
|
||||||
val rating = document.selectFirst("span.dt_rating_vgs")!!.text().toIntOrNull()
|
"subaction" to "search",
|
||||||
val tags = document.select("div.sgeneros > a").map { it.text() }
|
"story" to query
|
||||||
val actors = document.select("div.person").map {
|
)
|
||||||
val actorName = it.selectFirst("div.name > a")!!.text()
|
).document
|
||||||
val actorPoster = it.selectFirst("img")?.attr("src")
|
return doc.select("div.mlnew").drop(1).map { series ->
|
||||||
val role = it.selectFirst("div.caracter")?.text()
|
val title = series.selectFirst("div.mlnh-2")!!.text()
|
||||||
ActorData(Actor(actorName, actorPoster), roleString = role )
|
val link = series.selectFirst("div.mlnh-2 > h2 > a")!!.attr("href")
|
||||||
}
|
val posterUrl = fixUrl(series.selectFirst("img")!!.attr("src"))
|
||||||
if(url.contains("/film/")){
|
newMovieSearchResponse(
|
||||||
val description = document.selectFirst("div.wp-content > p")!!.text()
|
title,
|
||||||
val year = document.selectFirst("span.date")!!.text().substringAfterLast(" ").toIntOrNull()
|
link,
|
||||||
val recomm = document.selectFirst("div.sbox.srelacionados")?.select("article")?.map{
|
TvType.Movie
|
||||||
MovieSearchResponse(
|
|
||||||
name = it.selectFirst("img")!!.attr("alt"),
|
|
||||||
url = it.selectFirst("a")!!.attr("href"),
|
|
||||||
this.name,
|
|
||||||
TvType.Movie,
|
|
||||||
posterUrl = it.selectFirst("img")!!.attr("src"),
|
|
||||||
null
|
|
||||||
)
|
|
||||||
}
|
|
||||||
val duration = document.selectFirst("div.runtime")?.text()?.filter { it.isDigit() }?.toIntOrNull()
|
|
||||||
return newMovieLoadResponse(
|
|
||||||
name = name,
|
|
||||||
url = url,
|
|
||||||
type = TvType.Movie,
|
|
||||||
dataUrl = url
|
|
||||||
) {
|
) {
|
||||||
posterUrl = fixUrlNull(poster)
|
this.posterUrl = posterUrl
|
||||||
this.year = year
|
|
||||||
this.plot = description
|
|
||||||
this.rating = rating
|
|
||||||
this.recommendations = recomm
|
|
||||||
this.duration = duration
|
|
||||||
this.actors = actors
|
|
||||||
this.tags = tags
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else{
|
|
||||||
val episodes = document.select("#seasons > div").reversed().mapIndexed{season, data->
|
|
||||||
data.select("li").mapIndexed { epNum , ep ->
|
|
||||||
val href = ep.selectFirst("a")!!.attr("href")
|
|
||||||
val epTitle = ep.selectFirst("a")?.text()
|
|
||||||
val posterUrl = ep.selectFirst("img")?.attr("src")
|
|
||||||
Episode(
|
|
||||||
href,
|
|
||||||
epTitle,
|
|
||||||
season + 1,
|
|
||||||
epNum + 1,
|
|
||||||
posterUrl,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
val plot = document.selectFirst("#info > div.wp-content > p")?.text()
|
|
||||||
return newTvSeriesLoadResponse(
|
|
||||||
name = name,
|
|
||||||
url = url,
|
|
||||||
type = TvType.TvSeries,
|
|
||||||
episodes = episodes.flatten(),
|
|
||||||
){
|
|
||||||
this.posterUrl = poster
|
|
||||||
this.rating = rating
|
|
||||||
this.tags = tags
|
|
||||||
this.actors = actors
|
|
||||||
this.plot = plot
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override suspend fun load(url: String): LoadResponse {
|
||||||
|
val document = app.get(url).document
|
||||||
|
val title = document.selectFirst("h1")!!.text().removeSuffix(" streaming")
|
||||||
|
val description = document.selectFirst("div.tv_info_right")?.textNodes()?.joinToString("")
|
||||||
|
val rating = document.selectFirst("span.post-ratings")?.text()
|
||||||
|
var year = document.select("div.tv_info_list > ul").find { it.text().contains("Anno") }?.text()?.substringBefore("-")?.filter { it.isDigit() }?.toIntOrNull()
|
||||||
|
val poster = fixUrl(document.selectFirst("#cover")!!.attr("src")).replace("/141x200-0-85/", "/60x85-0-85/")
|
||||||
|
|
||||||
|
val episodeList = document.select("div.tab-content > div").mapIndexed { season, data ->
|
||||||
|
data.select("li").mapIndexed { epNum, epData ->
|
||||||
|
val epName = epData.selectFirst("a")?.attr("data-title")
|
||||||
|
val data = epData.select("div.mirrors > a").map { it.attr("data-link") }
|
||||||
|
.joinToString ( "," )
|
||||||
|
Episode(
|
||||||
|
data = data,
|
||||||
|
name = epName,
|
||||||
|
season = season + 1,
|
||||||
|
episode = epNum + 1,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}.flatten()
|
||||||
|
|
||||||
|
return newTvSeriesLoadResponse(
|
||||||
|
title,
|
||||||
|
url,
|
||||||
|
TvType.TvSeries,
|
||||||
|
episodeList
|
||||||
|
) {
|
||||||
|
addRating(rating)
|
||||||
|
this.plot = description
|
||||||
|
this.year = year
|
||||||
|
this.posterUrl = poster
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override suspend fun loadLinks(
|
override suspend fun loadLinks(
|
||||||
data: String,
|
data: String,
|
||||||
|
@ -183,22 +110,10 @@ class GuardaSerieProvider : MainAPI() {
|
||||||
subtitleCallback: (SubtitleFile) -> Unit,
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
callback: (ExtractorLink) -> Unit
|
callback: (ExtractorLink) -> Unit
|
||||||
): Boolean {
|
): Boolean {
|
||||||
val doc = app.get(data).document
|
val links = data.split(",")
|
||||||
val type = if( data.contains("film") ){"movie"} else {"tv"}
|
links.map { url ->
|
||||||
val idpost = doc.select("#player-option-1").attr("data-post")
|
loadExtractor(fixUrl(url), fixUrl(url), subtitleCallback, callback)
|
||||||
val postInfo = app.post("$mainUrl/wp-admin/admin-ajax.php", headers = mapOf(
|
}
|
||||||
"content-type" to "application/x-www-form-urlencoded; charset=UTF-8",
|
return true
|
||||||
"accept" to "*/*",
|
|
||||||
"X-Requested-With" to "XMLHttpRequest",
|
|
||||||
), data = mapOf(
|
|
||||||
"action" to "doo_player_ajax",
|
|
||||||
"post" to idpost,
|
|
||||||
"nume" to "1",
|
|
||||||
"type" to type,
|
|
||||||
))
|
|
||||||
|
|
||||||
val url= Regex("""src='((.|\\n)*?)'""").find(postInfo.text)?.groups?.get(1)?.value.toString()
|
|
||||||
val streamUrl = app.get(url, headers = mapOf("referer" to mainUrl)).url
|
|
||||||
return loadExtractor(streamUrl, data, subtitleCallback, callback)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 3
|
version = 4
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.lagradost
|
||||||
|
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addRating
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addRating
|
||||||
|
import com.lagradost.cloudstream3.network.CloudflareKiller
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
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
|
||||||
|
@ -27,13 +28,13 @@ class IlGenioDelloStreamingProvider : MainAPI() {
|
||||||
Pair("$mainUrl/the-most-voted/page/", "I più votati"),
|
Pair("$mainUrl/the-most-voted/page/", "I più votati"),
|
||||||
Pair("$mainUrl/prime-visioni/page/", "Ultime uscite"),
|
Pair("$mainUrl/prime-visioni/page/", "Ultime uscite"),
|
||||||
)
|
)
|
||||||
|
private val interceptor = CloudflareKiller()
|
||||||
override suspend fun getMainPage(
|
override suspend fun getMainPage(
|
||||||
page: Int,
|
page: Int,
|
||||||
request: MainPageRequest
|
request: MainPageRequest
|
||||||
): HomePageResponse {
|
): HomePageResponse {
|
||||||
val url = request.data + page
|
val url = request.data + page
|
||||||
val soup = app.get(url).document
|
val soup = app.get(url, interceptor = interceptor).document
|
||||||
val home = soup.select("div.items > article.item").map {
|
val home = soup.select("div.items > article.item").map {
|
||||||
val title = it.selectFirst("div.data > h3 > a")!!.text().substringBeforeLast("(").substringBeforeLast("[")
|
val title = it.selectFirst("div.data > h3 > a")!!.text().substringBeforeLast("(").substringBeforeLast("[")
|
||||||
val link = it.selectFirst("div.poster > a")!!.attr("href")
|
val link = it.selectFirst("div.poster > a")!!.attr("href")
|
||||||
|
@ -55,7 +56,7 @@ class IlGenioDelloStreamingProvider : MainAPI() {
|
||||||
override suspend fun search(query: String): List<SearchResponse> {
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
val queryformatted = query.replace(" ", "+")
|
val queryformatted = query.replace(" ", "+")
|
||||||
val url = "$mainUrl?s=$queryformatted"
|
val url = "$mainUrl?s=$queryformatted"
|
||||||
val doc = app.get(url,referer= mainUrl ).document
|
val doc = app.get(url, interceptor = interceptor, referer = mainUrl).document
|
||||||
return doc.select("div.result-item").map {
|
return doc.select("div.result-item").map {
|
||||||
val href = it.selectFirst("div.image > div > a")!!.attr("href")
|
val href = it.selectFirst("div.image > div > a")!!.attr("href")
|
||||||
val poster = it.selectFirst("div.image > div > a > img")!!.attr("src")
|
val poster = it.selectFirst("div.image > div > a > img")!!.attr("src")
|
||||||
|
@ -72,7 +73,7 @@ class IlGenioDelloStreamingProvider : MainAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun load(url: String): LoadResponse {
|
override suspend fun load(url: String): LoadResponse {
|
||||||
val page = app.get(url)
|
val page = app.get(url, interceptor = interceptor)
|
||||||
val document = page.document
|
val document = page.document
|
||||||
val type = if (document.select("div.seasons-wraper").isNotEmpty()){TvType.TvSeries} else{TvType.Movie}
|
val type = if (document.select("div.seasons-wraper").isNotEmpty()){TvType.TvSeries} else{TvType.Movie}
|
||||||
val title = document.selectFirst("div.data > h1")!!.text().substringBefore("(").substringBefore("[")
|
val title = document.selectFirst("div.data > h1")!!.text().substringBefore("(").substringBefore("[")
|
||||||
|
@ -127,9 +128,6 @@ class IlGenioDelloStreamingProvider : MainAPI() {
|
||||||
|
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue