klontv: parse info from json

This commit is contained in:
CakesTwix 2023-03-20 15:50:29 +02:00
parent 9c2cfe31e8
commit f257f02710
Signed by: CakesTwix
GPG key ID: 7B11051D5CE19825
2 changed files with 55 additions and 6 deletions

View file

@ -1,13 +1,13 @@
package com.lagradost
import android.util.Log
import com.lagradost.models.PlayerJson
import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.LoadResponse.Companion.addAniListId
import com.lagradost.cloudstream3.LoadResponse.Companion.addMalId
import com.lagradost.cloudstream3.LoadResponse.Companion.addActors
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.M3u8Helper
import com.lagradost.models.GeneralInfo
import org.jsoup.Jsoup
import org.jsoup.nodes.Element
class KlonTVProvider : MainAPI() {
@ -92,9 +92,15 @@ class KlonTVProvider : MainAPI() {
override suspend fun load(url: String): LoadResponse {
val document = app.get(url).document
// Parse info
val titleJson = tryParseJson<GeneralInfo>(document.selectFirst("script[type=application/ld+json]")?.html())!!
val title = document.selectFirst(titleLoadSelector)?.text()?.trim().toString()
val poster = mainUrl + document.selectFirst(posterSelector)?.attr("data-src")
// JSON
val title = titleJson.name
val poster = titleJson.image
val rating = titleJson.aggregateRating.ratingValue.toString().toRatingInt()
val actors = titleJson.actor.map { it.name }
// HTML
val tags = document.select(genresSelector).map { it.text() }
val year = document.selectFirst(yearSelector)?.text()?.toIntOrNull()
val playerUrl = document.select(playerSelector).attr("data-src")
@ -109,7 +115,7 @@ class KlonTVProvider : MainAPI() {
else -> TvType.TvSeries
}
}
val description = document.selectFirst(descriptionSelector)?.text()?.trim()
val description = Jsoup.parse(titleJson.description).text()
val recommendations = document.select(recommendationsSelector).map {
it.toSearchResponse()
@ -146,6 +152,7 @@ class KlonTVProvider : MainAPI() {
this.rating = rating
this.recommendations = recommendations
addEpisodes(DubStatus.Dubbed, episodes)
addActors(actors)
}
} else { // Parse as Movie.
newMovieLoadResponse(title, url, tvType, "$title, $playerUrl") {
@ -155,6 +162,7 @@ class KlonTVProvider : MainAPI() {
this.tags = tags
this.rating = rating
this.recommendations = recommendations
addActors(actors)
}
}
}

View file

@ -0,0 +1,41 @@
package com.lagradost.models
data class GeneralInfo (
val url : String,
val name : String,
val alternativeHeadline : String,
val description : String,
val image : String,
val isFamilyFriendly : Boolean,
val timeRequired : Int,
val datePublished : String,
val director : List<Director>,
val actor : List<Actor>,
val countryOfOrigin : List<CountryOfOrigin>,
val aggregateRating : AggregateRating
)
data class Director (
val name : String
)
data class Actor (
val name : String
)
data class CountryOfOrigin (
val name : String
)
data class AggregateRating (
val bestRating : Int,
val ratingValue : Double,
val ratingCount : Int
)