-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(src/es): Some fixes for Spanish extensions (#3065)
- Loading branch information
1 parent
156d06d
commit 7449da5
Showing
9 changed files
with
494 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
235 changes: 235 additions & 0 deletions
235
src/es/gnula/src/eu/kanade/tachiyomi/animeextension/es/gnula/DataModel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
package eu.kanade.tachiyomi.animeextension.es.gnula | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
// ---------------------Popular Model------------------------- | ||
@Serializable | ||
data class PopularModel( | ||
val props: Props = Props(), | ||
val page: String? = null, | ||
val query: Query? = null, | ||
) | ||
|
||
@Serializable | ||
data class Props( | ||
val pageProps: PageProps = PageProps(), | ||
@SerialName("__N_SSG") | ||
val nSsg: Boolean = false, | ||
) | ||
|
||
@Serializable | ||
data class PageProps( | ||
val currentPage: String? = null, | ||
val results: Results = Results(), | ||
) | ||
|
||
@Serializable | ||
data class Results( | ||
@SerialName("__typename") | ||
val typename: String? = null, | ||
val pages: Long? = null, | ||
val data: List<Daum> = emptyList(), | ||
) | ||
|
||
@Serializable | ||
data class Daum( | ||
val titles: Titles = Titles(), | ||
@SerialName("TMDbId") | ||
val tmdbId: String? = null, | ||
val images: Images = Images(), | ||
val releaseDate: String? = null, | ||
val slug: Slug = Slug(), | ||
val url: Url = Url(), | ||
) | ||
|
||
@Serializable | ||
data class Titles( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Images( | ||
val poster: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Slug( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Url( | ||
val slug: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Query( | ||
val slug: List<String> = emptyList(), | ||
) | ||
|
||
// ---------------------Season Model------------------------- | ||
|
||
@Serializable | ||
data class SeasonModel( | ||
val props: SeasonProps = SeasonProps(), | ||
val page: String, | ||
val query: SeasonQuery = SeasonQuery(), | ||
) | ||
|
||
@Serializable | ||
data class SeasonProps( | ||
val pageProps: SeasonPageProps = SeasonPageProps(), | ||
@SerialName("__N_SSG") | ||
val nSsg: Boolean = false, | ||
) | ||
|
||
@Serializable | ||
data class SeasonPageProps( | ||
val post: SeasonPost = SeasonPost(), | ||
) | ||
|
||
@Serializable | ||
data class SeasonPost( | ||
@SerialName("TMDbId") | ||
val tmdbId: String? = null, | ||
val titles: SeasonTitles = SeasonTitles(), | ||
val images: SeasonImages = SeasonImages(), | ||
val overview: String? = null, | ||
val genres: List<SeasonGenre> = emptyList(), | ||
val cast: SeasonCast = SeasonCast(), | ||
val slug: SeasonSlug = SeasonSlug(), | ||
val players: Players = Players(), | ||
val releaseDate: String? = null, | ||
val seasons: List<Season> = emptyList(), | ||
) | ||
|
||
@Serializable | ||
data class Players( | ||
val latino: List<Region> = emptyList(), | ||
val spanish: List<Region> = emptyList(), | ||
val english: List<Region> = emptyList(), | ||
) | ||
|
||
@Serializable | ||
data class Region( | ||
val cyberlocker: String = "", | ||
val result: String = "", | ||
val quality: String = "", | ||
) | ||
|
||
@Serializable | ||
data class SeasonTitles( | ||
val name: String? = null, | ||
val original: Original? = null, | ||
) | ||
|
||
@Serializable | ||
data class Original( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class SeasonImages( | ||
val poster: String? = null, | ||
val backdrop: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class SeasonGenre( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class SeasonCast( | ||
val acting: List<Acting> = emptyList(), | ||
val directing: List<Directing> = emptyList(), | ||
val production: List<Production> = emptyList(), | ||
) | ||
|
||
@Serializable | ||
data class Acting( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Directing( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Production( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class SeasonSlug( | ||
val name: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class Season( | ||
val number: Long? = null, | ||
val episodes: List<SeasonEpisode> = emptyList(), | ||
) | ||
|
||
@Serializable | ||
data class SeasonEpisode( | ||
val title: String? = null, | ||
@SerialName("TMDbId") | ||
val tmdbId: String? = null, | ||
val number: Long? = null, | ||
val releaseDate: String? = null, | ||
val image: String? = null, | ||
val slug: Slug2 = Slug2(), | ||
) | ||
|
||
@Serializable | ||
data class Slug2( | ||
val name: String? = null, | ||
val season: String? = null, | ||
val episode: String? = null, | ||
) | ||
|
||
@Serializable | ||
data class SeasonQuery( | ||
val slug: String? = null, | ||
) | ||
|
||
// -----------------------Episode Model---------------------- | ||
|
||
@Serializable | ||
data class EpisodeModel( | ||
val props: EpisodeProps = EpisodeProps(), | ||
val page: String, | ||
) | ||
|
||
@Serializable | ||
data class EpisodeProps( | ||
val pageProps: EpisodePageProps = EpisodePageProps(), | ||
@SerialName("__N_SSG") | ||
val nSsg: Boolean = false, | ||
) | ||
|
||
@Serializable | ||
data class EpisodePageProps( | ||
val episode: Episode = Episode(), | ||
) | ||
|
||
@Serializable | ||
data class Episode( | ||
@SerialName("TMDbId") | ||
val tmdbId: String? = null, | ||
val title: String? = null, | ||
val number: Long? = null, | ||
val image: String? = null, | ||
val slug: EpisodeSlug = EpisodeSlug(), | ||
val players: Players = Players(), | ||
) | ||
|
||
@Serializable | ||
data class EpisodeSlug( | ||
val name: String? = null, | ||
val season: String? = null, | ||
val episode: String? = null, | ||
) |
Oops, something went wrong.