Some fixes on Italian providers (#29)

This commit is contained in:
antonydp 2022-10-08 22:51:16 +02:00 committed by GitHub
parent b368fcce02
commit a535ba088d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 542 additions and 32 deletions

View file

@ -0,0 +1,25 @@
// 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(
"Live",
)
iconUrl = "https://www.google.com/s2/favicons?domain=starlive.xyz&sz=%size%"
}

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.lagradost"/>

View file

@ -0,0 +1,145 @@
package com.lagradost
import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.utils.*
import com.lagradost.cloudstream3.utils.AppUtils.toJson
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
class StarLiveProvider : MainAPI() {
override var mainUrl = "https://starlive.xyz"
override var name = "StarLive"
override val hasMainPage = true
override var lang = "it"
override val hasChromecastSupport = true
override val supportedTypes = setOf(TvType.Live)
private data class LinkParser(
@JsonProperty("link") val link: String,
@JsonProperty("lang") val language: String,
@JsonProperty("name") val name: String
)
private data class MatchDataParser(
@JsonProperty("time") val time: String,
@JsonProperty("poster") val poster: String
)
private data class MatchParser(
@JsonProperty("linkData") val linkData: List<LinkParser>,
@JsonProperty("matchData") val MatchData: MatchDataParser
)
override suspend fun getMainPage(page: Int, request: MainPageRequest): HomePageResponse {
val document = app.get(mainUrl).document
val sections = document.select("div.panel")
if (sections.isEmpty()) throw ErrorLoadingException()
return HomePageResponse(sections.mapNotNull { sport ->
val dayMatch = sport.previousElementSiblings().toList().first { it.`is`("h3") }.text()
val categoryName = sport.selectFirst("h4")?.text() ?: "Other"
val showsList = sport.select("tr").takeWhile { it.text().contains("Player").not() }
.filter { it.hasAttr("class") }.drop(1)
val shows = showsList.groupBy { it.text().substringBeforeLast(" ") }.map { matchs ->
val posterUrl = fixUrl(
sport.selectFirst("h4")?.attr("style")
?.substringAfter("(")?.substringBefore(")") ?: ""
)
val hasDate = matchs.key.contains(":")
val matchName = if (hasDate) { matchs.key.substringAfter(" ")}
else { matchs.key }
val href = matchs.value.map { match ->
val linkUrl = fixUrl(match.selectFirst("a")?.attr("href") ?: return@mapNotNull null)
val lang = match.attr("class")
LinkParser(linkUrl, lang, matchName)
}
val date = if (hasDate) {
dayMatch + " - " + matchs.key.substringBefore(" ")
} else {
dayMatch
}
LiveSearchResponse(
matchName,
MatchParser(href, MatchDataParser(date, posterUrl)).toJson(),
this@StarLiveProvider.name,
TvType.Live,
posterUrl,
)
}
HomePageList(
categoryName,
shows
)
})
}
override suspend fun load(url: String): LoadResponse {
val matchdata = tryParseJson<MatchParser>(url)
val poster = matchdata?.MatchData?.poster
val matchstart = matchdata?.MatchData?.time
return LiveStreamLoadResponse(
dataUrl = url,
url = matchdata?.linkData?.firstOrNull()?.link ?: mainUrl,
name = matchdata?.linkData?.firstOrNull()?.name ?: "No name",
posterUrl = poster,
plot = matchstart,
apiName = this@StarLiveProvider.name
)
}
private suspend fun extractVideoLinks(
data: LinkParser,
callback: (ExtractorLink) -> Unit
) {
val linktoStream = fixUrl(app.get(data.link).document.selectFirst("iframe")!!.attr("src"))
val referrerLink = if (linktoStream.contains("starlive")) {
app.get(linktoStream, referer = data.link).document.selectFirst("iframe")?.attr("src")
?: return
} else {
linktoStream
}
val packed = when (linktoStream.contains("starlive")) {
true -> app.get(
referrerLink,
referer = linktoStream
).document.select("script").toString()
false -> app.get(linktoStream, referer = data.link).document.select("script")
.select("script").toString()
}
val streamUrl = getAndUnpack(packed).substringAfter("var src=\"").substringBefore("\"")
callback(
ExtractorLink(
source = this.name,
name = data.name + " - " + data.language,
url = streamUrl,
quality = Qualities.Unknown.value,
referer = referrerLink,
isM3u8 = true
)
)
}
override suspend fun loadLinks(
data: String,
isCasting: Boolean,
subtitleCallback: (SubtitleFile) -> Unit,
callback: (ExtractorLink) -> Unit
): Boolean {
tryParseJson<MatchParser>(data)?.linkData?.map { link ->
extractVideoLinks(link, callback)
}
return true
}
}

View file

@ -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 StarLiveProviderPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(StarLiveProvider())
}
}