mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
temp fix
This commit is contained in:
parent
180b8e77ee
commit
1b9b9fae18
5 changed files with 8 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 23
|
version = 24
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -24,13 +24,11 @@ class Loklok : MainAPI() {
|
||||||
TvType.Anime,
|
TvType.Anime,
|
||||||
TvType.AsianDrama,
|
TvType.AsianDrama,
|
||||||
)
|
)
|
||||||
|
|
||||||
// no license found
|
|
||||||
// thanks to https://github.com/napthedev/filmhot for providing API
|
|
||||||
companion object {
|
companion object {
|
||||||
private const val geoblockError = "Loklok is Geoblock, use vpn or give up"
|
private const val geoblockError = "Loklok is Geoblock, use vpn or give up"
|
||||||
private val api = base64DecodeAPI("dg==LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
private val api = base64DecodeAPI("dg==LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
||||||
private val apiUrl = "$api/${base64Decode("Y21zL2FwcA==")}"
|
private val apiUrl = "$api/${base64Decode("Y21zL2FwcA==")}"
|
||||||
|
private val pcApiUrl = base64DecodeAPI("cGM=Yi8=d2U=cy8=Y20=di8=LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
||||||
private val searchApi = base64Decode("aHR0cHM6Ly9sb2tsb2suY29t")
|
private val searchApi = base64Decode("aHR0cHM6Ly9sb2tsb2suY29t")
|
||||||
private const val mainImageUrl = "https://images.weserv.nl"
|
private const val mainImageUrl = "https://images.weserv.nl"
|
||||||
private val headers = mutableMapOf(
|
private val headers = mutableMapOf(
|
||||||
|
@ -233,7 +231,7 @@ class Loklok : MainAPI() {
|
||||||
RequestBodyTypes.JSON.toMediaTypeOrNull()
|
RequestBodyTypes.JSON.toMediaTypeOrNull()
|
||||||
)
|
)
|
||||||
val json = app.get(
|
val json = app.get(
|
||||||
"$apiUrl/media/previewInfo?category=${res.category}&contentId=${res.id}&episodeId=${res.epId}&definition=${video.code}",
|
"$pcApiUrl/movieDrama/getPlayInfo?category=${res.category}&contentId=${res.id}&episodeId=${res.epId}&definition=${video.code}",
|
||||||
headers = headers,
|
headers = headers,
|
||||||
).parsedSafe<PreviewResponse>()?.data
|
).parsedSafe<PreviewResponse>()?.data
|
||||||
callback.invoke(
|
callback.invoke(
|
||||||
|
@ -241,7 +239,7 @@ class Loklok : MainAPI() {
|
||||||
this.name,
|
this.name,
|
||||||
this.name,
|
this.name,
|
||||||
json?.mediaUrl ?: return@apmap null,
|
json?.mediaUrl ?: return@apmap null,
|
||||||
"",
|
"https://loklok.com/",
|
||||||
getQuality(json.currentDefinition ?: ""),
|
getQuality(json.currentDefinition ?: ""),
|
||||||
isM3u8 = true,
|
isM3u8 = true,
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 116
|
version = 117
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -678,7 +678,7 @@ object SoraExtractor : SoraStream() {
|
||||||
|
|
||||||
json.definitionList?.map { video ->
|
json.definitionList?.map { video ->
|
||||||
val media = app.get(
|
val media = app.get(
|
||||||
"${soraAPI}/media/previewInfo?category=${type}&contentId=${id}&episodeId=${json.id}&definition=${video.code}",
|
"$soraSecondAPI/movieDrama/getPlayInfo?category=${type}&contentId=${id}&episodeId=${json.id}&definition=${video.code}",
|
||||||
headers = soraHeaders,
|
headers = soraHeaders,
|
||||||
).parsedSafe<SorastreamResponse>()?.data
|
).parsedSafe<SorastreamResponse>()?.data
|
||||||
|
|
||||||
|
@ -687,7 +687,7 @@ object SoraExtractor : SoraStream() {
|
||||||
this.name,
|
this.name,
|
||||||
this.name,
|
this.name,
|
||||||
media?.mediaUrl ?: return@map null,
|
media?.mediaUrl ?: return@map null,
|
||||||
"",
|
"https://loklok.com/",
|
||||||
getSoraQuality(media.currentDefinition ?: ""),
|
getSoraQuality(media.currentDefinition ?: ""),
|
||||||
true,
|
true,
|
||||||
)
|
)
|
||||||
|
|
|
@ -41,6 +41,7 @@ import kotlin.collections.ArrayList
|
||||||
import kotlin.math.min
|
import kotlin.math.min
|
||||||
|
|
||||||
val soraAPI = base64DecodeAPI("cA==YXA=cy8=Y20=di8=LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
val soraAPI = base64DecodeAPI("cA==YXA=cy8=Y20=di8=LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
||||||
|
val soraSecondAPI = base64DecodeAPI("cGM=Yi8=d2U=cy8=Y20=di8=LnQ=b2s=a2w=bG8=aS4=YXA=ZS0=aWw=b2I=LW0=Z2E=Ly8=czo=dHA=aHQ=")
|
||||||
val soraBackupAPI = base64DecodeAPI("dg==LnQ=bGw=aGk=dGM=dXM=Lmo=b2s=a2w=bG8=Ly8=czo=dHA=aHQ=")
|
val soraBackupAPI = base64DecodeAPI("dg==LnQ=bGw=aGk=dGM=dXM=Lmo=b2s=a2w=bG8=Ly8=czo=dHA=aHQ=")
|
||||||
|
|
||||||
val soraHeaders = mapOf(
|
val soraHeaders = mapOf(
|
||||||
|
|
Loading…
Reference in a new issue