mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
added trailer Sora
This commit is contained in:
parent
5f37e5be53
commit
bc9f2d8165
1 changed files with 25 additions and 10 deletions
|
@ -17,6 +17,7 @@ import com.hexated.SoraExtractor.invokeVidSrc
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addAniListId
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addAniListId
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.addMalId
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addMalId
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
||||||
import com.lagradost.cloudstream3.metaproviders.TmdbProvider
|
import com.lagradost.cloudstream3.metaproviders.TmdbProvider
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
|
@ -205,6 +206,8 @@ open class SoraStream : TmdbProvider() {
|
||||||
val recommendations =
|
val recommendations =
|
||||||
responses.recommandations?.mapNotNull { media -> media.toSearchResponse() }
|
responses.recommandations?.mapNotNull { media -> media.toSearchResponse() }
|
||||||
|
|
||||||
|
val trailer = responses.result.videos?.results?.map { "https://www.youtube.com/watch?v=${it.key}" }?.first()
|
||||||
|
|
||||||
return if (type == TvType.TvSeries) {
|
return if (type == TvType.TvSeries) {
|
||||||
val episodes = mutableListOf<Episode>()
|
val episodes = mutableListOf<Episode>()
|
||||||
res.seasons?.apmap { season ->
|
res.seasons?.apmap { season ->
|
||||||
|
@ -244,6 +247,7 @@ open class SoraStream : TmdbProvider() {
|
||||||
this.showStatus = getStatus(res.status)
|
this.showStatus = getStatus(res.status)
|
||||||
this.recommendations = recommendations
|
this.recommendations = recommendations
|
||||||
this.actors = actors
|
this.actors = actors
|
||||||
|
addTrailer(trailer)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
newMovieLoadResponse(
|
newMovieLoadResponse(
|
||||||
|
@ -264,6 +268,7 @@ open class SoraStream : TmdbProvider() {
|
||||||
this.tags = res.genres?.mapNotNull { it.name }
|
this.tags = res.genres?.mapNotNull { it.name }
|
||||||
this.recommendations = recommendations
|
this.recommendations = recommendations
|
||||||
this.actors = actors
|
this.actors = actors
|
||||||
|
addTrailer(trailer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -349,15 +354,15 @@ open class SoraStream : TmdbProvider() {
|
||||||
{
|
{
|
||||||
invokeMovieHab(res.id, res.season, res.episode, subtitleCallback, callback)
|
invokeMovieHab(res.id, res.season, res.episode, subtitleCallback, callback)
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// invokeDatabaseGdrive(
|
invokeDatabaseGdrive(
|
||||||
// res.imdbId,
|
res.imdbId,
|
||||||
// res.season,
|
res.season,
|
||||||
// res.episode,
|
res.episode,
|
||||||
// subtitleCallback,
|
subtitleCallback,
|
||||||
// callback
|
callback
|
||||||
// )
|
)
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
if (res.aniId?.isNotEmpty() == true) invokeGogo(res.aniId, res.animeId, callback)
|
if (res.aniId?.isNotEmpty() == true) invokeGogo(res.aniId, res.animeId, callback)
|
||||||
},
|
},
|
||||||
|
@ -454,6 +459,14 @@ open class SoraStream : TmdbProvider() {
|
||||||
@JsonProperty("episodes") val episodes: ArrayList<Episodes>? = arrayListOf(),
|
@JsonProperty("episodes") val episodes: ArrayList<Episodes>? = arrayListOf(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
data class Trailers(
|
||||||
|
@JsonProperty("key") val key: String? = null,
|
||||||
|
)
|
||||||
|
|
||||||
|
data class ResultsTrailer(
|
||||||
|
@JsonProperty("results") val results: ArrayList<Trailers>? = arrayListOf(),
|
||||||
|
)
|
||||||
|
|
||||||
data class MediaDetail(
|
data class MediaDetail(
|
||||||
@JsonProperty("id") val id: Int? = null,
|
@JsonProperty("id") val id: Int? = null,
|
||||||
@JsonProperty("imdb_id") val imdbId: String? = null,
|
@JsonProperty("imdb_id") val imdbId: String? = null,
|
||||||
|
@ -468,7 +481,9 @@ open class SoraStream : TmdbProvider() {
|
||||||
@JsonProperty("status") val status: String? = null,
|
@JsonProperty("status") val status: String? = null,
|
||||||
@JsonProperty("genres") val genres: ArrayList<Genres>? = arrayListOf(),
|
@JsonProperty("genres") val genres: ArrayList<Genres>? = arrayListOf(),
|
||||||
@JsonProperty("seasons") val seasons: ArrayList<Seasons>? = arrayListOf(),
|
@JsonProperty("seasons") val seasons: ArrayList<Seasons>? = arrayListOf(),
|
||||||
)
|
@JsonProperty("videos") val videos: ResultsTrailer? = null,
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
data class PageProps(
|
data class PageProps(
|
||||||
@JsonProperty("id") val id: String? = null,
|
@JsonProperty("id") val id: String? = null,
|
||||||
|
|
Loading…
Reference in a new issue