Add more servers

This commit is contained in:
tuan041 2023-07-24 22:21:14 +07:00 committed by GitHub
parent 15e6f63485
commit 7c1810bcb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@ package com.hexated
import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.*
import com.lagradost.cloudstream3.LoadResponse.Companion.addTrailer
import com.lagradost.cloudstream3.mvvm.safeApiCall
import com.lagradost.cloudstream3.utils.*
import com.lagradost.cloudstream3.utils.ExtractorLink
import org.jsoup.nodes.Element
@ -20,10 +21,10 @@ class Phim1080Provider : MainAPI() {
TvType.AsianDrama
)
private fun encodeString(e: String, t: Int): String {
private fun decodeString(e: String, t: Int): String {
var a = ""
for (element in e) {
val r = element.code
for (i in 0 until e.length) {
val r = e[i].code
val o = r xor t
a += o.toChar()
}
@ -109,7 +110,7 @@ class Phim1080Provider : MainAPI() {
"Content-Type" to "application/json",
"X-Requested-With" to "XMLHttpRequest"
)
).parsedSafe<FilmInfo>()
).parsedSafe<filmInfo>()
val title = filmInfo?.name?.trim().toString()
val poster = filmInfo?.thumbnail
val background = filmInfo?.poster
@ -184,18 +185,36 @@ class Phim1080Provider : MainAPI() {
"X-Requested-With" to "XMLHttpRequest"
)
)
val source = doc.text.substringAfter(":{\"hls\":\"").substringBefore("\"},")
val link = encodeString(source, 69)
val optEncode = if (doc.text.indexOf("\"opt\":\"") != -1) {
doc.text.substringAfter("\"opt\":\"").substringBefore("\"},")
} else { "" }
val opt = decodeString(optEncode as String, 69).replace("0uut$", "_").replace("index.m3u8", "3000k/hls/mixed.m3u8")
val hlsEncode = if (doc.text.indexOf(":{\"hls\":\"") != -1) {
doc.text.substringAfter(":{\"hls\":\"").substringBefore("\"},")
} else { "" }
val hls = decodeString(hlsEncode as String, 69)
val fb = if (doc.text.indexOf("\"fb\":[{\"src\":\"") != -1) {
doc.text.substringAfter("\"fb\":[{\"src\":\"").substringBefore("\",").replace("\\", "")
} else { "" }
listOfNotNull(
if (hls.contains(".m3u8")) {Triple("$hls", "HS", true)} else null,
if (fb.contains(".mp4")) {Triple("$fb", "FB", false)} else null,
if (opt.contains(".m3u8")) {Triple("$opt", "OP", true)} else null,
).apmap { (link, source, isM3u8) ->
safeApiCall {
callback.invoke(
ExtractorLink(
"HS",
"HS",
source,
source,
link,
referer = data,
quality = Qualities.Unknown.value,
isM3u8 = true,
isM3u8,
)
)
}
}
val subId = doc.parsedSafe<Media>()?.subtitle?.vi
val isSubIdEmpty = subId.isNullOrBlank()
if (!isSubIdEmpty) {
@ -209,7 +228,7 @@ class Phim1080Provider : MainAPI() {
return true
}
data class FilmInfo(
data class filmInfo(
@JsonProperty("name") val name: String? = null,
@JsonProperty("poster") val poster: String? = null,
@JsonProperty("thumbnail") val thumbnail: String? = null,