feat: add NPJioTV+

This commit is contained in:
darkdemon 2022-11-20 14:56:47 +05:30
parent 94bb3fc9d0
commit 61f7e7fff7
4 changed files with 143 additions and 0 deletions

View File

@ -0,0 +1,24 @@
version = 1
cloudstream {
language = "hi"
// All of these properties are optional, you can safely remove them
description = "JioTV Plus channels"
authors = listOf("darkdemon")
/**
* Status int as the following:
* 0: Down
* 1: Ok
* 2: Slow
* 3: Beta only
* */
status = 1 // will be 3 if unspecified
tvTypes = listOf(
"Live",
)
iconUrl = "https://www.google.com/s2/favicons?domain=nayeemparvez.chadasaniya.cf&sz=%size%"
}

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.darkdemon"/>

View File

@ -0,0 +1,14 @@
package com.darkdemon
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
import com.lagradost.cloudstream3.plugins.Plugin
import android.content.Context
@CloudstreamPlugin
class NPJioTVPlugin: Plugin() {
override fun load(context: Context) {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(NPJioTVProvider())
}
}

View File

@ -0,0 +1,103 @@
package com.darkdemon
import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.Qualities
class NPJioTVProvider : MainAPI() { // all providers must be an instance of MainAPI
override var mainUrl = "https://nayeemparvez.chadasaniya.cf"
override var name = "NPJioTV+"
override val hasMainPage = true
override var lang = "hi"
override val hasDownloadSupport = false
override val supportedTypes = setOf(
TvType.Live,
)
override suspend fun getMainPage(
page: Int,
request: MainPageRequest
): HomePageResponse {
val categories = listOf(
"Sports",
"Entertainment",
"Movies",
"News",
"Music",
"Kids",
"Infotainment",
"Lifestyle",
"Business",
"Devotional",
"Educational",
"JioDarshan",
"Shopping",
)
val items = ArrayList<HomePageList>()
val document = app.get(mainUrl).document
categories.forEach { cat ->
val results: MutableList<SearchResponse> = mutableListOf()
document.select(".card-parent .card:contains($cat)").mapNotNull {
val title = it.selectFirst("h5")?.text()?.trim() ?: return@mapNotNull
val posterUrl = fixUrlNull(it.selectFirst("img")?.attr("data-src"))
results.add(
newMovieSearchResponse(title, title, TvType.Live) {
this.posterUrl = posterUrl
}
)
}
items.add(
HomePageList(
capitalizeString(cat),
results,
isHorizontalImages = true
)
)
}
return HomePageResponse(items)
}
override suspend fun search(query: String): List<SearchResponse> {
val document = app.get(mainUrl).document
val elements = document.select(".card-parent .card h5:contains($query)").map { it.parent()
?.parent() }
return elements.map {
val title = it?.selectFirst("h5")?.text()?.trim().toString()
val posterUrl = fixUrlNull(it?.selectFirst("img")?.attr("data-src"))
newMovieSearchResponse(title, title, TvType.Live) {
this.posterUrl = posterUrl
}
}
}
override suspend fun load(url: String): LoadResponse {
val document = app.get(mainUrl).document.selectFirst(".card:contains(${url.substringAfterLast("/")})")
val title = url.substringAfterLast("/")
val poster = fixUrlNull(document?.select("img")?.attr("data-src"))
val href = fixUrl("$mainUrl/" + document?.selectFirst("a")?.attr("href").toString())
return newMovieLoadResponse(title, url, TvType.Live, href) {
this.posterUrl = poster
}
}
override suspend fun loadLinks(
data: String,
isCasting: Boolean,
subtitleCallback: (SubtitleFile) -> Unit,
callback: (ExtractorLink) -> Unit
): Boolean {
val document = app.get(data).document
val link = "$mainUrl/${document.selectFirst("source")?.attr("src")}"
callback.invoke(
ExtractorLink(
this.name,
this.name,
link,
referer = "",
quality = Qualities.Unknown.value,
isM3u8 = true,
)
)
return true
}
}