mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Add TamilYogiProvider.kt for testing
This commit is contained in:
parent
03eb17149f
commit
2a102f3d1d
1 changed files with 174 additions and 0 deletions
|
@ -0,0 +1,174 @@
|
||||||
|
package com.likdev256
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.*
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addActors
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
|
||||||
|
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||||
|
import org.jsoup.nodes.Element
|
||||||
|
|
||||||
|
class TamilYogiProvider : MainAPI() { // all providers must be an instance of MainAPI
|
||||||
|
override var mainUrl = "https://tamilyogi.tube"
|
||||||
|
override var name = "TamilYogi"
|
||||||
|
override val hasMainPage = true
|
||||||
|
override var lang = "ta"
|
||||||
|
override val hasDownloadSupport = true
|
||||||
|
override val supportedTypes = setOf(
|
||||||
|
TvType.Movie,
|
||||||
|
TvType.TvSeries
|
||||||
|
)
|
||||||
|
|
||||||
|
override val mainPage = mainPageOf(
|
||||||
|
"$mainUrl/category/tamilyogi-full-movie-online/" to "New Movies",
|
||||||
|
"$mainUrl/category/tamil-hd-movies/" to "HD Movies",
|
||||||
|
"$mainUrl/category/tamilyogi-dubbed-movies-online/" to "Dubbed Movies",
|
||||||
|
"$mainUrl/category/tamil-web-series/" to "TV Series"
|
||||||
|
)
|
||||||
|
|
||||||
|
override suspend fun getMainPage(
|
||||||
|
page: Int,
|
||||||
|
request: MainPageRequest
|
||||||
|
): HomePageResponse {
|
||||||
|
print("request")
|
||||||
|
println(request)
|
||||||
|
print("Check")
|
||||||
|
println(request.data.removeSuffix("page/"))
|
||||||
|
val document = if (page == 1) {
|
||||||
|
app.get(request.data.removeSuffix("page/")).document
|
||||||
|
} else {
|
||||||
|
app.get(request.data + page).document
|
||||||
|
}
|
||||||
|
val home = document.select("div.cover").mapNotNull {
|
||||||
|
it.toSearchResult()
|
||||||
|
}
|
||||||
|
return newHomePageResponse(request.name, home)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun Element.toSearchResult(): SearchResponse? {
|
||||||
|
val title = this.selectFirst("div.postcontent h2 a[title]")?.text()?.trim() ?: return null
|
||||||
|
println(title)
|
||||||
|
val href = fixUrl(this.selectFirst("a")?.attr("href").toString())
|
||||||
|
println(href)
|
||||||
|
val posterUrl = fixUrlNull(this.selectFirst("img")?.attr("src"))
|
||||||
|
println(posterUrl)
|
||||||
|
|
||||||
|
return newMovieSearchResponse(title, href, TvType.Movie) {
|
||||||
|
this.posterUrl = posterUrl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun search(query: String): List<SearchResponse> {
|
||||||
|
val document = app.get("$mainUrl/?s=$query").document
|
||||||
|
|
||||||
|
return document.select("div.cover").mapNotNull {
|
||||||
|
it.toSearchResult()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun load(url: String): LoadResponse? {
|
||||||
|
val document = app.get(url).document
|
||||||
|
|
||||||
|
val title = document.selectFirst("div.postcontent h2 a[title]")?.text()?.trim() ?: return null
|
||||||
|
println(title)
|
||||||
|
//val titleRegex = Regex()
|
||||||
|
//val title =
|
||||||
|
val poster = fixUrlNull(document.selectFirst("img")?.attr("src"))
|
||||||
|
println(poster)
|
||||||
|
//val tags = document.select("div.mvici-left p:nth-child(1) a").map { it.text() }
|
||||||
|
val yearRegex = Regex("\"(?<=\\()[\\d\\(\\]]+(?!=\\))\"")
|
||||||
|
val year = yearRegex.find(title)?.groups?.get(1)?.value
|
||||||
|
?.toIntOrNull()
|
||||||
|
val tvType = if (document.selectFirst("div.les-content")
|
||||||
|
?.select("a")?.size!! > 1 || document.selectFirst("ul.idTabs li strong")?.text()
|
||||||
|
?.contains(Regex("(?i)(EP\\s?[0-9]+)|(episode\\s?[0-9]+)")) == true
|
||||||
|
) TvType.TvSeries else TvType.Movie
|
||||||
|
//val description = document.selectFirst("p.f-desc")?.text()?.trim()
|
||||||
|
//val trailer = fixUrlNull(document.select("iframe#iframe-trailer").attr("src"))
|
||||||
|
//val rating = document.select("div.mvici-right > div.imdb_r span").text().toRatingInt()
|
||||||
|
//val actors = document.select("div.mvici-left p:nth-child(3) a").map { it.text() }
|
||||||
|
val recommendations = document.select("div.ml-item").mapNotNull {
|
||||||
|
it.toSearchResult()
|
||||||
|
}
|
||||||
|
|
||||||
|
return if (tvType == TvType.TvSeries) {
|
||||||
|
val episodes = if (document.selectFirst("div.les-title strong")?.text().toString()
|
||||||
|
.contains(Regex("(?i)EP\\s?[0-9]+|Episode\\s?[0-9]+"))
|
||||||
|
) {
|
||||||
|
document.select("ul.idTabs li").map {
|
||||||
|
val id = it.select("a").attr("href")
|
||||||
|
Episode(
|
||||||
|
data = fixUrl(document.select("div$id iframe").attr("src")),
|
||||||
|
name = it.select("strong").text().replace("Server Ep", "Episode")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
document.select("div.les-content a").map {
|
||||||
|
Episode(
|
||||||
|
data = it.attr("href"),
|
||||||
|
name = it.text().replace("Server Ep", "Episode").trim(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
newTvSeriesLoadResponse(title, url, TvType.TvSeries, episodes) {
|
||||||
|
this.posterUrl = poster
|
||||||
|
this.year = year
|
||||||
|
//this.plot = description
|
||||||
|
//this.tags = tags
|
||||||
|
//this.rating = rating
|
||||||
|
//addActors(actors)
|
||||||
|
this.recommendations = recommendations
|
||||||
|
//addTrailer(trailer)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
newMovieLoadResponse(title, url, TvType.Movie, url) {
|
||||||
|
this.posterUrl = poster
|
||||||
|
this.year = year
|
||||||
|
//this.plot = description
|
||||||
|
//this.tags = tags
|
||||||
|
//this.rating = rating
|
||||||
|
//addActors(actors)
|
||||||
|
this.recommendations = recommendations
|
||||||
|
//addTrailer(trailer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override suspend fun loadLinks(
|
||||||
|
data: String,
|
||||||
|
isCasting: Boolean,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
): Boolean {
|
||||||
|
|
||||||
|
if (data.startsWith(mainUrl)) {
|
||||||
|
app.get(data).document.select("div.movieplay iframe").map { fixUrl(it.attr("src")) }
|
||||||
|
.apmap { source ->
|
||||||
|
safeApiCall {
|
||||||
|
when {
|
||||||
|
source.startsWith("https://membed.net") -> app.get(
|
||||||
|
source,
|
||||||
|
referer = "$mainUrl/"
|
||||||
|
).document.select("ul.list-server-items li")
|
||||||
|
.apmap {
|
||||||
|
loadExtractor(
|
||||||
|
it.attr("data-video").substringBefore("=https://msubload"),
|
||||||
|
"$mainUrl/",
|
||||||
|
subtitleCallback,
|
||||||
|
callback
|
||||||
|
)
|
||||||
|
}
|
||||||
|
else -> loadExtractor(source, "$mainUrl/", subtitleCallback, callback)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
loadExtractor(data, "$mainUrl/", subtitleCallback, callback)
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue