mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
Yacien TV initial
This commit is contained in:
parent
9f6f5e8430
commit
aecd08db25
4 changed files with 204 additions and 0 deletions
25
YacienTVProvider/build.gradle.kts
Normal file
25
YacienTVProvider/build.gradle.kts
Normal file
|
@ -0,0 +1,25 @@
|
|||
// use an integer for version numbers
|
||||
version = 1
|
||||
|
||||
|
||||
cloudstream {
|
||||
language = "ar"
|
||||
// All of these properties are optional, you can safely remove them
|
||||
|
||||
description = "Yacien TV livestreams"
|
||||
authors = listOf("KingLucius")
|
||||
|
||||
/**
|
||||
* 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=app.yacineapp.tv&sz=%size%"
|
||||
}
|
2
YacienTVProvider/src/main/AndroidManifest.xml
Normal file
2
YacienTVProvider/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.yacientv"/>
|
|
@ -0,0 +1,11 @@
|
|||
package com.yacientv
|
||||
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin
|
||||
import com.lagradost.cloudstream3.plugins.Plugin
|
||||
import android.content.Context
|
||||
|
||||
@CloudstreamPlugin
|
||||
class YacienTVPlugin: Plugin() {
|
||||
override fun load(context: Context) {
|
||||
registerMainAPI(YacienTV())
|
||||
}
|
||||
}
|
|
@ -0,0 +1,166 @@
|
|||
package com.yacientv
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty
|
||||
import com.lagradost.cloudstream3.*
|
||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||
import com.lagradost.cloudstream3.utils.M3u8Helper
|
||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
||||
import com.lagradost.cloudstream3.network.CloudflareKiller
|
||||
import org.jsoup.nodes.Element
|
||||
import android.util.Log
|
||||
import java.util.Base64
|
||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||
import com.lagradost.cloudstream3.utils.Qualities
|
||||
|
||||
class YacienTV : MainAPI() {
|
||||
override var lang = "ar"
|
||||
|
||||
override var name = "YacienTV"
|
||||
override val usesWebView = false
|
||||
override val hasMainPage = true
|
||||
override val hasDownloadSupport = false
|
||||
override val supportedTypes =
|
||||
setOf(
|
||||
TvType.Live
|
||||
)
|
||||
private val yacienTVAPI = "http://ver3.yacinelive.com/api"
|
||||
private val mainkey = "c!xZj+N9&G@Ev@vw"
|
||||
|
||||
fun decrypt(enc: String, headerstr: String): String {
|
||||
var key = mainkey + headerstr
|
||||
val decodedBytes = Base64.getDecoder().decode(enc.toByteArray())
|
||||
val encString = String(decodedBytes)
|
||||
var result = ""
|
||||
for (i in encString.indices) {
|
||||
result += (encString[i].toInt() xor key[i % key.length].toInt()).toChar()
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
override val mainPage = mainPageOf(
|
||||
"$yacienTVAPI/categories/4/channels" to "beIN SPORTS (1080P)",
|
||||
"$yacienTVAPI/categories/5/channels" to "beIN SPORTS (720P)",
|
||||
"$yacienTVAPI/categories/6/channels" to "beIN SPORTS (360P)",
|
||||
"$yacienTVAPI/categories/7/channels" to "beIN SPORTS (244P)",
|
||||
"$yacienTVAPI/categories/8/channels" to "beIN ENTERTAINMENT",
|
||||
"$yacienTVAPI/categories/86/channels" to "SSC SPORTS",
|
||||
//"$yacienTVAPI/categories/9/channels" to "ARABIC CHANNELS",
|
||||
"$yacienTVAPI/categories/10/channels" to "OSN CHANNELS",
|
||||
"$yacienTVAPI/categories/11/channels" to "MBC CHANNELS",
|
||||
"$yacienTVAPI/categories/12/channels" to "FRANCE CHANNELS",
|
||||
"$yacienTVAPI/categories/88/channels" to "TURKISH CHANNELS",
|
||||
"$yacienTVAPI/categories/13/channels" to "KIDS CHANNELS",
|
||||
"$yacienTVAPI/categories/87/channels" to "WEYYAK",
|
||||
"$yacienTVAPI/categories/94/channels" to "SHAHID VIP",
|
||||
)
|
||||
|
||||
data class Channel(
|
||||
@JsonProperty("id") val id: String? = null,
|
||||
@JsonProperty("name") val name: String? = null,
|
||||
@JsonProperty("logo") val logo: String? = null,
|
||||
)
|
||||
|
||||
data class Results(
|
||||
@JsonProperty("data") val results: ArrayList<Channel>? = arrayListOf(),
|
||||
)
|
||||
|
||||
data class ChannelResults(
|
||||
@JsonProperty("data") val links: ArrayList<Links>? = arrayListOf(),
|
||||
)
|
||||
|
||||
data class Links(
|
||||
@JsonProperty("name") val name: String,
|
||||
@JsonProperty("url") val url: String,
|
||||
@JsonProperty("url_type") val urltype: String,
|
||||
@JsonProperty("user_agent") val useragent: String,
|
||||
@JsonProperty("referer") val referer: String,
|
||||
)
|
||||
|
||||
override suspend fun getMainPage(page: Int, request: MainPageRequest): HomePageResponse {
|
||||
val items = mutableListOf<HomePageList>()
|
||||
if (page <= 1) {
|
||||
val req = app.get(request.data)
|
||||
val response = req.document
|
||||
val theader = req.headers.get("t").toString()
|
||||
val responsebody = decrypt(response.select("body").text(), theader)
|
||||
|
||||
val list = parseJson<Results>(responsebody)?.results?.mapNotNull { element ->
|
||||
element.toSearchResponse()
|
||||
} ?: throw ErrorLoadingException("Invalid Json reponse")
|
||||
if (list.isNotEmpty()) items.add(HomePageList(request.name, list, true))
|
||||
}
|
||||
return newHomePageResponse(items)
|
||||
}
|
||||
|
||||
data class Data(
|
||||
val id: String? = null,
|
||||
val name: String,
|
||||
val posterUrl: String? = null,
|
||||
)
|
||||
|
||||
data class LinksData(
|
||||
val id: String,
|
||||
val name: String,
|
||||
val posterUrl: String? = null,
|
||||
)
|
||||
|
||||
fun Channel.toSearchResponse(type: String? = null): SearchResponse? {
|
||||
//Log.d("King", "Channel.toSearchResponse")
|
||||
val hr = LiveSearchResponse(
|
||||
name ?: return null,
|
||||
Data(id = id, name = name, posterUrl = logo).toJson(),
|
||||
this@YacienTV.name,
|
||||
TvType.Live,
|
||||
logo,
|
||||
)
|
||||
//Log.d("King", hr.toString())
|
||||
return hr
|
||||
}
|
||||
|
||||
override suspend fun load(url: String): LoadResponse {
|
||||
//Log.d("King", "Load:" + url)
|
||||
val data = parseJson<LinksData>(url)
|
||||
Log.d("King", "Load:" + data)
|
||||
val loadret = LiveStreamLoadResponse(
|
||||
name = data.name,
|
||||
url = data.id,
|
||||
dataUrl = data.id,
|
||||
apiName = this.name,
|
||||
posterUrl = data.posterUrl,
|
||||
type = TvType.Live,
|
||||
plot = "${data.name} live stream."
|
||||
)
|
||||
Log.d("King", loadret.toString())
|
||||
return loadret
|
||||
}
|
||||
|
||||
override suspend fun loadLinks(
|
||||
data: String,
|
||||
isCasting: Boolean,
|
||||
subtitleCallback: (SubtitleFile) -> Unit,
|
||||
callback: (ExtractorLink) -> Unit
|
||||
): Boolean {
|
||||
Log.d("King", "loadlinks:"+ data)
|
||||
|
||||
val chaurl = "$yacienTVAPI/channel/$data"
|
||||
val req = app.get(chaurl)
|
||||
val response = req.document
|
||||
var theader = req.headers.get("t").toString()
|
||||
val responsebody = decrypt(response.select("body").text(), theader)
|
||||
|
||||
val channel = parseJson<ChannelResults>(responsebody)?.links?.mapNotNull { element ->
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
source = element.name,
|
||||
name = element.name,
|
||||
url = element.url,
|
||||
referer = "",
|
||||
quality = Qualities.Unknown.value,
|
||||
isM3u8 = true,
|
||||
)
|
||||
)
|
||||
} ?: throw ErrorLoadingException("Invalid Json reponse")
|
||||
return true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue