kinovezha: done
This commit is contained in:
parent
a511a3774e
commit
4a7e08a4b5
5 changed files with 245 additions and 0 deletions
27
KinoVezhaProvider/build.gradle.kts
Normal file
27
KinoVezhaProvider/build.gradle.kts
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
// use an integer for version numbers
|
||||||
|
version = 1
|
||||||
|
|
||||||
|
|
||||||
|
cloudstream {
|
||||||
|
language = "uk"
|
||||||
|
// All of these properties are optional, you can safely remove them
|
||||||
|
|
||||||
|
description = "Наша мета — популяризація нашої рідної мови, шляхом збору в одному місці величезної колекції найкращих і найпопулярніших фільмів, серіалів, мультфільмів та мультсеріалів українською мовою, які ви можете дивитися онлайн в HD якості безкоштовно. Приємного перегляду!"
|
||||||
|
authors = listOf("CakesTwix")
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Status int as the following:
|
||||||
|
* 0: Down
|
||||||
|
* 1: Ok
|
||||||
|
* 2: Slow
|
||||||
|
* 3: Beta only
|
||||||
|
* */
|
||||||
|
status = 1 // will be 3 if unspecified
|
||||||
|
tvTypes = listOf(
|
||||||
|
"Cartoon",
|
||||||
|
"TvSeries",
|
||||||
|
"Movie",
|
||||||
|
)
|
||||||
|
|
||||||
|
iconUrl = "https://www.google.com/s2/favicons?domain=kinovezha.com&sz=%size%"
|
||||||
|
}
|
2
KinoVezhaProvider/src/main/AndroidManifest.xml
Normal file
2
KinoVezhaProvider/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest package="com.lagradost"/>
|
|
@ -0,0 +1,181 @@
|
||||||
|
package com.lagradost
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.lagradost.cloudstream3.*
|
||||||
|
import com.lagradost.models.PlayerJson
|
||||||
|
import com.lagradost.cloudstream3.utils.AppUtils
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.M3u8Helper
|
||||||
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
|
import org.jsoup.nodes.Element
|
||||||
|
|
||||||
|
class KinoVezhaProvider : MainAPI() {
|
||||||
|
|
||||||
|
// Basic Info
|
||||||
|
override var mainUrl = "https://kinovezha.com"
|
||||||
|
override var name = "KinoVezha"
|
||||||
|
override val hasMainPage = true
|
||||||
|
override var lang = "uk"
|
||||||
|
override val hasDownloadSupport = true
|
||||||
|
override val supportedTypes = setOf(
|
||||||
|
TvType.Movie,
|
||||||
|
TvType.Cartoon,
|
||||||
|
TvType.TvSeries
|
||||||
|
)
|
||||||
|
|
||||||
|
// Sections
|
||||||
|
override val mainPage = mainPageOf(
|
||||||
|
"$mainUrl/series/page/" to "Серіали",
|
||||||
|
"$mainUrl/films/page/" to "Фільми",
|
||||||
|
"$mainUrl/cartoons/page/" to "Мультфільми",
|
||||||
|
"$mainUrl/s-cartoons/page/" to "Мультсеріали",
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun getMainPage(
|
||||||
|
page: Int,
|
||||||
|
request: MainPageRequest
|
||||||
|
): HomePageResponse {
|
||||||
|
val document = app.get(request.data + page).document
|
||||||
|
|
||||||
|
val home = document.select(".movie-item").map {
|
||||||
|
it.toSearchResponse()
|
||||||
|
}
|
||||||
|
return newHomePageResponse(request.name, home)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Element.toSearchResponse(): SearchResponse {
|
||||||
|
val title = this.select(".movie-item__title").text()
|
||||||
|
val href = this.select(".movie-item__link").attr("href").toString()
|
||||||
|
val posterUrl = mainUrl + this.select(".img-fit-cover img").attr("data-src")
|
||||||
|
|
||||||
|
return newMovieSearchResponse(title, href, TvType.TvSeries) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
|
val document = app.post(
|
||||||
|
url = "$mainUrl/index.php?do=search",
|
||||||
|
data = mapOf(
|
||||||
|
"do" to "search",
|
||||||
|
"subaction" to "search",
|
||||||
|
"story" to query.replace(" ", "+")
|
||||||
|
)
|
||||||
|
).document
|
||||||
|
|
||||||
|
return document.select(".movie-item").map {
|
||||||
|
it.toSearchResponse()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Detailed information
|
||||||
|
override suspend fun load(url: String): LoadResponse {
|
||||||
|
val document = app.get(url).document
|
||||||
|
|
||||||
|
|
||||||
|
// Parse info
|
||||||
|
val title = document.select(".inner-page__title").text()
|
||||||
|
val poster = mainUrl + document.select(".img-fit-cover img").attr("src")
|
||||||
|
var tags = document.select(".inner-page__list li")[1].select("a").map { it.text() }
|
||||||
|
Log.d("load-debug", tags.toString())
|
||||||
|
val year = document.select(".inner-page__list li")[0].select("a").text().toIntOrNull()
|
||||||
|
|
||||||
|
val tvType = if(tags.contains("Мультсеріали") or tags.contains("Серіали")) TvType.TvSeries else TvType.Movie
|
||||||
|
val description = document.select("div.inner-page__text").text()
|
||||||
|
// val author = someInfo.select("strong:contains(Студія:)").next().html()
|
||||||
|
val rating = document.selectFirst(".dd-imdb-colours")?.text().toRatingInt()
|
||||||
|
|
||||||
|
// Parse episodes
|
||||||
|
var episodes: List<Episode> = emptyList()
|
||||||
|
val playerUrl = document.select(".video-responsive > iframe").attr("src")
|
||||||
|
|
||||||
|
// Return to app
|
||||||
|
// Parse Episodes as Series
|
||||||
|
return if (tvType == TvType.TvSeries) {
|
||||||
|
var episodes: List<Episode> = emptyList()
|
||||||
|
val playerRawJson = app.get(playerUrl).document.select("script").html()
|
||||||
|
.substringAfterLast("file:\'")
|
||||||
|
.substringBefore("\',")
|
||||||
|
|
||||||
|
AppUtils.tryParseJson<List<PlayerJson>>(playerRawJson)?.map { dubs -> // Dubs
|
||||||
|
for(season in dubs.folder){ // Seasons
|
||||||
|
for(episode in season.folder){ // Episodes
|
||||||
|
episodes = episodes.plus(
|
||||||
|
Episode(
|
||||||
|
"${season.title}, ${episode.title}, $playerUrl",
|
||||||
|
episode.title,
|
||||||
|
season.title.replace(" Сезон ","").toIntOrNull(),
|
||||||
|
episode.title.replace("Серія ","").toIntOrNull(),
|
||||||
|
episode.poster
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes) {
|
||||||
|
this.posterUrl = poster
|
||||||
|
this.year = year
|
||||||
|
this.plot = description
|
||||||
|
this.tags = tags
|
||||||
|
this.rating = rating
|
||||||
|
}
|
||||||
|
} else { // Parse as Movie.
|
||||||
|
newMovieLoadResponse(title, url, TvType.Movie, "$title, $playerUrl") {
|
||||||
|
this.posterUrl = poster
|
||||||
|
this.year = year
|
||||||
|
this.plot = description
|
||||||
|
this.tags = tags
|
||||||
|
this.rating = rating
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// It works when I click to view the series
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String, // (Serisl) [Season, Episode, Player Url] | (Film) [Title, Player Url]
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
val dataList = data.split(", ")
|
||||||
|
|
||||||
|
// Its film, parse one m3u8
|
||||||
|
if(dataList.size == 2){
|
||||||
|
val m3u8Url = app.get(dataList[1]).document.select("script").html()
|
||||||
|
.substringAfterLast("file:\"")
|
||||||
|
.substringBefore("\",")
|
||||||
|
M3u8Helper.generateM3u8(
|
||||||
|
source = dataList[0],
|
||||||
|
streamUrl = m3u8Url,
|
||||||
|
referer = "https://tortuga.wtf/"
|
||||||
|
).forEach(callback)
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
val playerRawJson = app.get(dataList[2]).document.select("script").html()
|
||||||
|
.substringAfterLast("file:\'")
|
||||||
|
.substringBefore("\',")
|
||||||
|
|
||||||
|
AppUtils.tryParseJson<List<PlayerJson>>(playerRawJson)?.map { dubs -> // Dubs
|
||||||
|
for(season in dubs.folder){ // Seasons
|
||||||
|
if(season.title == dataList[0]){
|
||||||
|
for(episode in season.folder){ // Episodes
|
||||||
|
if(episode.title == dataList[1]){
|
||||||
|
// Add as source
|
||||||
|
M3u8Helper.generateM3u8(
|
||||||
|
source = dubs.title,
|
||||||
|
streamUrl = episode.file,
|
||||||
|
referer = "https://tortuga.wtf/"
|
||||||
|
).forEach(callback)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.lagradost
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
||||||
|
import com.lagradost.cloudstream3.plugins.Plugin
|
||||||
|
import android.content.Context
|
||||||
|
|
||||||
|
@CloudstreamPlugin
|
||||||
|
class KinoVezhaProviderPlugin: Plugin() {
|
||||||
|
override fun load(context: Context) {
|
||||||
|
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||||
|
registerMainAPI(KinoVezhaProvider())
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package com.lagradost.models
|
||||||
|
|
||||||
|
data class PlayerJson (
|
||||||
|
|
||||||
|
val title : String,
|
||||||
|
val folder : List<Season>
|
||||||
|
)
|
||||||
|
|
||||||
|
data class Season (
|
||||||
|
|
||||||
|
val title : String,
|
||||||
|
val folder : List<Episode>
|
||||||
|
)
|
||||||
|
|
||||||
|
data class Episode (
|
||||||
|
|
||||||
|
val title : String,
|
||||||
|
val file : String,
|
||||||
|
val id : String,
|
||||||
|
val poster : String,
|
||||||
|
val subtitle : String,
|
||||||
|
)
|
Loading…
Reference in a new issue