mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
sora: bump
This commit is contained in:
parent
f2480f34e2
commit
4e3678a046
3 changed files with 9 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
import org.jetbrains.kotlin.konan.properties.Properties
|
||||
|
||||
// use an integer for version numbers
|
||||
version = 201
|
||||
version = 202
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
|
|
|
@ -2213,12 +2213,13 @@ object SoraExtractor : SoraStream() {
|
|||
"$watchOnlineAPI/shows/play/$id-$slug-$year"
|
||||
}
|
||||
|
||||
val doc = app.get(
|
||||
url.replace(
|
||||
watchOnlineAPI,
|
||||
"https://ditairridgeleg.monster"
|
||||
) + "?mid=1&sid=9k9iupt5sebbnfajrc6ti3ht7l&sec=1974bc4a902c4d69fcbab261dcec69094a9b8164&t=1694986826984"
|
||||
).document
|
||||
val headers = mapOf(
|
||||
"Cookie" to "PHPSESSID=e555h63ilisoj2l6j7b5d4jb6p; _csrf=9597150e45f485ad9c4f2e06a2572534d8415337eda9d48d0ecfa25b73b6a9e1a%3A2%3A%7Bi%3A0%3Bs%3A5%3A%22_csrf%22%3Bi%3A1%3Bs%3A32%3A%222HcnegjGB0nX205FAUPb86fqMx9HWIF1%22%3B%7D; _ga=GA1.1.1195498587.1701871187; _ga_VZD7HJ3WK6=GS1.1.1702130869.2.0.1702130869.0.0.0",
|
||||
"Connection" to "keep-alive",
|
||||
"x-requested-with" to "com.wwcinematv",
|
||||
)
|
||||
|
||||
val doc = app.get(url, headers = headers).document
|
||||
val script = doc.selectFirst("script:containsData(hash:)")?.data()
|
||||
val hash = Regex("hash:\\s*['\"](\\S+)['\"]").find(script ?: return)?.groupValues?.get(1)
|
||||
val expires = Regex("expires:\\s*(\\d+)").find(script)?.groupValues?.get(1)
|
||||
|
|
|
@ -93,7 +93,7 @@ open class SoraStream : TmdbProvider() {
|
|||
const val flixonAPI = "https://flixon.lol"
|
||||
const val smashyStreamAPI = "https://embed.smashystream.com"
|
||||
const val watchSomuchAPI = "https://watchsomuch.tv" // sub only
|
||||
const val watchOnlineAPI = "https://lookmovie.foundation"
|
||||
const val watchOnlineAPI = "https://www.lookmovie2.to"
|
||||
const val nineTvAPI = "https://moviesapi.club"
|
||||
const val nowTvAPI = "https://myfilestorage.xyz"
|
||||
const val gokuAPI = "https://goku.sx"
|
||||
|
|
Loading…
Reference in a new issue