mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
[PinoyMoviesHub] Extract other urls from series links. (#35)
* [PinoyMoviesHub] Extract other urls from series links.
This commit is contained in:
parent
f2933f5c6a
commit
74385f8f82
2 changed files with 69 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 1
|
version = 2
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
@ -24,4 +24,4 @@ cloudstream {
|
||||||
)
|
)
|
||||||
|
|
||||||
iconUrl = "https://www.google.com/s2/favicons?domain=www.pinoymovieshub.ph&sz=%size%"
|
iconUrl = "https://www.google.com/s2/favicons?domain=www.pinoymovieshub.ph&sz=%size%"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,15 +3,14 @@ package com.lagradost
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils
|
import com.lagradost.cloudstream3.utils.*
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
||||||
import com.lagradost.cloudstream3.utils.loadExtractor
|
|
||||||
import org.jsoup.nodes.Document
|
import org.jsoup.nodes.Document
|
||||||
import org.jsoup.select.Elements
|
import org.jsoup.select.Elements
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
|
|
||||||
class PinoyMoviesHub : MainAPI() {
|
class PinoyMoviesHub : MainAPI() {
|
||||||
//private val TAG = "Dev"
|
private val TAG = "DevDebug"
|
||||||
override var name = "Pinoy Movies Hub"
|
override var name = "Pinoy Movies Hub"
|
||||||
override var mainUrl = "https://pinoymovieshub.ph"
|
override var mainUrl = "https://pinoymovieshub.ph"
|
||||||
override var lang = "tl"
|
override var lang = "tl"
|
||||||
|
@ -159,6 +158,7 @@ class PinoyMoviesHub : MainAPI() {
|
||||||
): Boolean {
|
): Boolean {
|
||||||
|
|
||||||
var movieId = data
|
var movieId = data
|
||||||
|
//Log.i(TAG, "movieId => $movieId")
|
||||||
//If episode link, fetch movie id first
|
//If episode link, fetch movie id first
|
||||||
if (movieId.startsWith(mainUrl)) {
|
if (movieId.startsWith(mainUrl)) {
|
||||||
movieId = app.get(data).document.getMovieId() ?: throw Exception("Movie Id is Null!")
|
movieId = app.get(data).document.getMovieId() ?: throw Exception("Movie Id is Null!")
|
||||||
|
@ -168,8 +168,10 @@ class PinoyMoviesHub : MainAPI() {
|
||||||
val action = "doo_player_ajax"
|
val action = "doo_player_ajax"
|
||||||
val nume = "1"
|
val nume = "1"
|
||||||
val type = "movie"
|
val type = "movie"
|
||||||
|
val seriesTvUrl = "https://series.pinoymovies.tv"
|
||||||
|
|
||||||
//Log.i(TAG, "Loading ajax request..")
|
//Log.i(TAG, "Loading ajax request..")
|
||||||
|
//Log.i(TAG, "movieId => $movieId")
|
||||||
val doc = app.post(
|
val doc = app.post(
|
||||||
url = requestLink,
|
url = requestLink,
|
||||||
referer = mainUrl,
|
referer = mainUrl,
|
||||||
|
@ -184,16 +186,58 @@ class PinoyMoviesHub : MainAPI() {
|
||||||
Pair("type", type)
|
Pair("type", type)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
//Log.i(TAG, "Response (${doc.code}) => ${doc.text}")
|
//Log.i(TAG, "Response (${doc.code}) => ${doc.text}")
|
||||||
AppUtils.tryParseJson<Response?>(doc.text)?.embed_url?.let { streamLink ->
|
tryParseJson<Response?>(doc.text)?.embed_url?.let { streamLink ->
|
||||||
//Log.i(TAG, "Response (streamLink) => ${streamLink}")
|
//Log.i(TAG, "Response (streamLink) => $streamLink")
|
||||||
if (streamLink.isNotBlank()) {
|
if (streamLink.isNotBlank()) {
|
||||||
loadExtractor(
|
//Decrypt links from https://series.pinoymovies.tv/video/135647s1e1?sid=503&t=alt
|
||||||
url = streamLink,
|
if (streamLink.startsWith(seriesTvUrl)) {
|
||||||
referer = mainUrl,
|
//Add suffix: '?sid=503&t=alt' to 'series.pinoymovies.tv' links
|
||||||
callback = callback,
|
val linkSuffix = "?sid=503&t=alt"
|
||||||
subtitleCallback = subtitleCallback
|
val newLink = streamLink.replace(linkSuffix, "") + linkSuffix
|
||||||
)
|
//Log.i(TAG, "Response (newLink) => $newLink")
|
||||||
|
app.get(newLink, referer = streamLink).let { packeddoc ->
|
||||||
|
val packedString = packeddoc.document.select("script").toString()
|
||||||
|
//Log.i(TAG, "Response (packedString) => $packedString")
|
||||||
|
|
||||||
|
val newString = getAndUnpack(packedString)
|
||||||
|
//Log.i(TAG, "Response (newString) => $newString")
|
||||||
|
|
||||||
|
val regex = Regex("(?<=playlist:)(.*)(?=autostart)", setOf(RegexOption.DOT_MATCHES_ALL, RegexOption.IGNORE_CASE))
|
||||||
|
val newString2 = regex.find(newString)?.groupValues
|
||||||
|
?.getOrNull(1)?.trim()
|
||||||
|
?.trimEnd(',')
|
||||||
|
?.replace("sources:", "\"sources\":")
|
||||||
|
?.replace("'", "\"")
|
||||||
|
//Log.i(TAG, "Response (newString2) => $newString2")
|
||||||
|
|
||||||
|
tryParseJson<List<ResponseData?>?>(newString2)?.let { respData ->
|
||||||
|
respData.forEach outer@{ respDataItem ->
|
||||||
|
respDataItem?.sources?.forEach inner@{ srclink ->
|
||||||
|
val link = srclink.file ?: return@inner
|
||||||
|
callback.invoke(
|
||||||
|
ExtractorLink(
|
||||||
|
name = this.name,
|
||||||
|
source = this.name,
|
||||||
|
url = link,
|
||||||
|
quality = getQualityFromName(srclink.label),
|
||||||
|
referer = seriesTvUrl,
|
||||||
|
isM3u8 = link.endsWith("m3u8")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
loadExtractor(
|
||||||
|
url = streamLink,
|
||||||
|
referer = mainUrl,
|
||||||
|
callback = callback,
|
||||||
|
subtitleCallback = subtitleCallback
|
||||||
|
)
|
||||||
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -306,4 +350,15 @@ class PinoyMoviesHub : MainAPI() {
|
||||||
private data class Response(
|
private data class Response(
|
||||||
@JsonProperty("embed_url") val embed_url: String?
|
@JsonProperty("embed_url") val embed_url: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
|
private data class ResponseData(
|
||||||
|
@JsonProperty("sources") val sources: List<ResponseSources>?,
|
||||||
|
@JsonProperty("image") val image: String?,
|
||||||
|
)
|
||||||
|
|
||||||
|
private data class ResponseSources(
|
||||||
|
@JsonProperty("label") val label: String?,
|
||||||
|
@JsonProperty("type") val type: String?,
|
||||||
|
@JsonProperty("file") val file: String?
|
||||||
|
)
|
||||||
}
|
}
|
Loading…
Reference in a new issue