mirror of
https://github.com/recloudstream/cloudstream.git
synced 2026-06-19 20:05:41 +00:00
Compare commits
7 commits
OnlyPlayer
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c6bf2984e |
||
|
|
6f458fc9b5 |
||
|
|
b4100dbfca |
||
|
|
943bc551e9 |
||
|
|
c045bfdc0d |
||
|
|
2c03a3d976 |
||
|
|
3417fe0160 |
15 changed files with 124 additions and 33 deletions
|
|
@ -207,7 +207,6 @@ dependencies {
|
||||||
testImplementation(libs.junit)
|
testImplementation(libs.junit)
|
||||||
testImplementation(libs.json)
|
testImplementation(libs.json)
|
||||||
androidTestImplementation(libs.core)
|
androidTestImplementation(libs.core)
|
||||||
androidTestImplementation(libs.classgraph)
|
|
||||||
androidTestImplementation(libs.espresso.core)
|
androidTestImplementation(libs.espresso.core)
|
||||||
androidTestImplementation(libs.ext.junit)
|
androidTestImplementation(libs.ext.junit)
|
||||||
androidTestImplementation(libs.instancio.core)
|
androidTestImplementation(libs.instancio.core)
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ class SerializationClassTester {
|
||||||
}
|
}
|
||||||
|
|
||||||
// DEX files are the best solution to read all our classes dynamically.
|
// DEX files are the best solution to read all our classes dynamically.
|
||||||
// ClassGraph() can be used instead, but it only gives results on the JVM, not Android.
|
// classgraph could be used instead, but it only gives results on the JVM, not Android.
|
||||||
@Suppress("DEPRECATION")
|
@Suppress("DEPRECATION")
|
||||||
private fun findSerializableClasses(packageName: String): List<KClass<*>> {
|
private fun findSerializableClasses(packageName: String): List<KClass<*>> {
|
||||||
val context = InstrumentationRegistry
|
val context = InstrumentationRegistry
|
||||||
|
|
@ -109,7 +109,6 @@ class SerializationClassTester {
|
||||||
.targetContext
|
.targetContext
|
||||||
|
|
||||||
val dexFile = DexFile(context.packageCodePath)
|
val dexFile = DexFile(context.packageCodePath)
|
||||||
|
|
||||||
return dexFile.entries()
|
return dexFile.entries()
|
||||||
.toList()
|
.toList()
|
||||||
.filter { it.startsWith(packageName) }
|
.filter { it.startsWith(packageName) }
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ import com.lagradost.cloudstream3.actions.temp.MpvPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.MpvRxPackage
|
import com.lagradost.cloudstream3.actions.temp.MpvRxPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.MpvYTDLPackage
|
import com.lagradost.cloudstream3.actions.temp.MpvYTDLPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.NextPlayerPackage
|
import com.lagradost.cloudstream3.actions.temp.NextPlayerPackage
|
||||||
|
import com.lagradost.cloudstream3.actions.temp.OnlyPlayer
|
||||||
import com.lagradost.cloudstream3.actions.temp.PlayInBrowserAction
|
import com.lagradost.cloudstream3.actions.temp.PlayInBrowserAction
|
||||||
import com.lagradost.cloudstream3.actions.temp.PlayMirrorAction
|
import com.lagradost.cloudstream3.actions.temp.PlayMirrorAction
|
||||||
import com.lagradost.cloudstream3.actions.temp.ViewM3U8Action
|
import com.lagradost.cloudstream3.actions.temp.ViewM3U8Action
|
||||||
|
|
@ -65,6 +66,7 @@ object VideoClickActionHolder {
|
||||||
MpvYTDLPackage(),
|
MpvYTDLPackage(),
|
||||||
MpvKtPackage(),
|
MpvKtPackage(),
|
||||||
MpvKtPreviewPackage(),
|
MpvKtPreviewPackage(),
|
||||||
|
OnlyPlayer(),
|
||||||
MpvRxPackage(),
|
MpvRxPackage(),
|
||||||
// Always Ask option
|
// Always Ask option
|
||||||
AlwaysAskAction(),
|
AlwaysAskAction(),
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
package com.lagradost.cloudstream3.actions.temp
|
||||||
|
|
||||||
|
import android.app.Activity
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Bundle
|
||||||
|
import androidx.core.net.toUri
|
||||||
|
import com.lagradost.cloudstream3.actions.OpenInAppAction
|
||||||
|
import com.lagradost.cloudstream3.ui.result.LinkLoadingResult
|
||||||
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
|
|
||||||
|
/** https://github.com/Kindness-Kismet/only_player/tree/main
|
||||||
|
* https://github.com/Kindness-Kismet/only_player/blob/main/feature/player/src/main/java/one/only/player/feature/player/PlayerActivity.kt */
|
||||||
|
class OnlyPlayer : OpenInAppAction(
|
||||||
|
txt("Only Player"),
|
||||||
|
"one.only.player",
|
||||||
|
intentClass = "one.only.player.feature.player.PlayerActivity"
|
||||||
|
) {
|
||||||
|
override val oneSource = true
|
||||||
|
override suspend fun putExtra(
|
||||||
|
context: Context,
|
||||||
|
intent: Intent,
|
||||||
|
video: ResultEpisode,
|
||||||
|
result: LinkLoadingResult,
|
||||||
|
index: Int?
|
||||||
|
) {
|
||||||
|
/** https://github.com/Kindness-Kismet/only_player/blob/d3f55049a2913fa762d31b311146073cc2da46cb/app/src/main/java/one/only/player/navigation/CloudNavGraph.kt#L39 */
|
||||||
|
intent.apply {
|
||||||
|
val link = result.links[index!!]
|
||||||
|
setData(link.url.toUri())
|
||||||
|
|
||||||
|
putExtra("headers", Bundle().apply {
|
||||||
|
for ((key, value) in link.headers) {
|
||||||
|
putExtra(key, value)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResult(activity: Activity, intent: Intent?) {
|
||||||
|
/* onResult does not get called */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -50,7 +50,8 @@ class AniListApi : SyncAPI() {
|
||||||
override suspend fun login(redirectUrl: String, payload: String?): AuthToken? {
|
override suspend fun login(redirectUrl: String, payload: String?): AuthToken? {
|
||||||
val sanitizer = splitRedirectUrl(redirectUrl)
|
val sanitizer = splitRedirectUrl(redirectUrl)
|
||||||
val token = AuthToken(
|
val token = AuthToken(
|
||||||
accessToken = sanitizer["access_token"] ?: throw ErrorLoadingException("No access token"),
|
accessToken = sanitizer["access_token"]
|
||||||
|
?: throw ErrorLoadingException("No access token"),
|
||||||
//refreshToken = sanitizer["refresh_token"],
|
//refreshToken = sanitizer["refresh_token"],
|
||||||
accessTokenLifetime = unixTime + sanitizer["expires_in"]!!.toLong(),
|
accessTokenLifetime = unixTime + sanitizer["expires_in"]!!.toLong(),
|
||||||
)
|
)
|
||||||
|
|
@ -83,8 +84,8 @@ class AniListApi : SyncAPI() {
|
||||||
return "$mainUrl/anime/$id"
|
return "$mainUrl/anime/$id"
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun search(auth : AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
override suspend fun search(auth: AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
||||||
val data = searchShows(name) ?: return null
|
val data = searchShows(query) ?: return null
|
||||||
return data.data?.page?.media?.map {
|
return data.data?.page?.media?.map {
|
||||||
SyncAPI.SyncSearchResult(
|
SyncAPI.SyncSearchResult(
|
||||||
it.title.romaji ?: return null,
|
it.title.romaji ?: return null,
|
||||||
|
|
@ -96,7 +97,7 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun load(auth : AuthData?, id: String): SyncAPI.SyncResult? {
|
override suspend fun load(auth: AuthData?, id: String): SyncAPI.SyncResult? {
|
||||||
val internalId = (Regex("anilist\\.co/anime/(\\d*)").find(id)?.groupValues?.getOrNull(1)
|
val internalId = (Regex("anilist\\.co/anime/(\\d*)").find(id)?.groupValues?.getOrNull(1)
|
||||||
?: id).toIntOrNull() ?: throw ErrorLoadingException("Invalid internalId")
|
?: id).toIntOrNull() ?: throw ErrorLoadingException("Invalid internalId")
|
||||||
val season = getSeason(internalId).data.media
|
val season = getSeason(internalId).data.media
|
||||||
|
|
@ -158,7 +159,7 @@ class AniListApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun status(auth : AuthData?, id: String): SyncAPI.AbstractSyncStatus? {
|
override suspend fun status(auth: AuthData?, id: String): SyncAPI.AbstractSyncStatus? {
|
||||||
val internalId = id.toIntOrNull() ?: return null
|
val internalId = id.toIntOrNull() ?: return null
|
||||||
val data = getDataAboutId(auth ?: return null, internalId) ?: return null
|
val data = getDataAboutId(auth ?: return null, internalId) ?: return null
|
||||||
|
|
||||||
|
|
@ -459,7 +460,7 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getDataAboutId(auth : AuthData, id: Int): AniListTitleHolder? {
|
private suspend fun getDataAboutId(auth: AuthData, id: Int): AniListTitleHolder? {
|
||||||
val q =
|
val q =
|
||||||
"""query (${'$'}id: Int = $id) { # Define which variables will be used in the query (id)
|
"""query (${'$'}id: Int = $id) { # Define which variables will be used in the query (id)
|
||||||
Media (id: ${'$'}id, type: ANIME) { # Insert our variables into the query arguments (id) (type: ANIME is hard-coded in the query)
|
Media (id: ${'$'}id, type: ANIME) { # Insert our variables into the query arguments (id) (type: ANIME is hard-coded in the query)
|
||||||
|
|
@ -506,7 +507,7 @@ class AniListApi : SyncAPI() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun postApi(token : AuthToken, q: String, cache: Boolean = false): String? {
|
private suspend fun postApi(token: AuthToken, q: String, cache: Boolean = false): String? {
|
||||||
return app.post(
|
return app.post(
|
||||||
"https://graphql.anilist.co/",
|
"https://graphql.anilist.co/",
|
||||||
headers = mapOf(
|
headers = mapOf(
|
||||||
|
|
@ -638,7 +639,7 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun library(auth : AuthData?): SyncAPI.LibraryMetadata? {
|
override suspend fun library(auth: AuthData?): SyncAPI.LibraryMetadata? {
|
||||||
val list = getAniListAnimeListSmart(auth ?: return null)?.groupBy {
|
val list = getAniListAnimeListSmart(auth ?: return null)?.groupBy {
|
||||||
convertAniListStringToStatus(it.status ?: "").stringRes
|
convertAniListStringToStatus(it.status ?: "").stringRes
|
||||||
}?.mapValues { group ->
|
}?.mapValues { group ->
|
||||||
|
|
@ -666,7 +667,7 @@ class AniListApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getFullAniListList(auth : AuthData): FullAnilistList? {
|
private suspend fun getFullAniListList(auth: AuthData): FullAnilistList? {
|
||||||
val userID = auth.user.id
|
val userID = auth.user.id
|
||||||
val mediaType = "ANIME"
|
val mediaType = "ANIME"
|
||||||
|
|
||||||
|
|
@ -714,7 +715,7 @@ class AniListApi : SyncAPI() {
|
||||||
return text?.toKotlinObject()
|
return text?.toKotlinObject()
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun toggleLike(auth : AuthData, id: Int): Boolean {
|
suspend fun toggleLike(auth: AuthData, id: Int): Boolean {
|
||||||
val q = """mutation (${'$'}animeId: Int = $id) {
|
val q = """mutation (${'$'}animeId: Int = $id) {
|
||||||
ToggleFavourite (animeId: ${'$'}animeId) {
|
ToggleFavourite (animeId: ${'$'}animeId) {
|
||||||
anime {
|
anime {
|
||||||
|
|
@ -737,7 +738,7 @@ class AniListApi : SyncAPI() {
|
||||||
data class MediaListId(@JsonProperty("id") val id: Long? = null)
|
data class MediaListId(@JsonProperty("id") val id: Long? = null)
|
||||||
|
|
||||||
private suspend fun postDataAboutId(
|
private suspend fun postDataAboutId(
|
||||||
auth : AuthData,
|
auth: AuthData,
|
||||||
id: Int,
|
id: Int,
|
||||||
type: AniListStatusType,
|
type: AniListStatusType,
|
||||||
score: Score?,
|
score: Score?,
|
||||||
|
|
@ -786,7 +787,7 @@ class AniListApi : SyncAPI() {
|
||||||
return data != ""
|
return data != ""
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getUser(token : AuthToken): AniListUser? {
|
private suspend fun getUser(token: AuthToken): AniListUser? {
|
||||||
val q = """
|
val q = """
|
||||||
{
|
{
|
||||||
Viewer {
|
Viewer {
|
||||||
|
|
|
||||||
|
|
@ -98,9 +98,9 @@ class MALApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun search(auth : AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
override suspend fun search(auth: AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
||||||
val auth = auth?.token?.accessToken ?: return null
|
val auth = auth?.token?.accessToken ?: return null
|
||||||
val url = "$apiUrl/v2/anime?q=$name&limit=$MAL_MAX_SEARCH_LIMIT"
|
val url = "$apiUrl/v2/anime?q=$query&limit=$MAL_MAX_SEARCH_LIMIT"
|
||||||
val res = app.get(
|
val res = app.get(
|
||||||
url, headers = mapOf(
|
url, headers = mapOf(
|
||||||
"Authorization" to "Bearer $auth",
|
"Authorization" to "Bearer $auth",
|
||||||
|
|
@ -122,7 +122,7 @@ class MALApi : SyncAPI() {
|
||||||
Regex("""/anime/((.*)/|(.*))""").find(url)!!.groupValues.first()
|
Regex("""/anime/((.*)/|(.*))""").find(url)!!.groupValues.first()
|
||||||
|
|
||||||
override suspend fun updateStatus(
|
override suspend fun updateStatus(
|
||||||
auth : AuthData?,
|
auth: AuthData?,
|
||||||
id: String,
|
id: String,
|
||||||
newStatus: SyncAPI.AbstractSyncStatus
|
newStatus: SyncAPI.AbstractSyncStatus
|
||||||
): Boolean {
|
): Boolean {
|
||||||
|
|
@ -225,7 +225,7 @@ class MALApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun load(auth : AuthData?, id: String): SyncAPI.SyncResult? {
|
override suspend fun load(auth: AuthData?, id: String): SyncAPI.SyncResult? {
|
||||||
val auth = auth?.token?.accessToken ?: return null
|
val auth = auth?.token?.accessToken ?: return null
|
||||||
val internalId = id.toIntOrNull() ?: return null
|
val internalId = id.toIntOrNull() ?: return null
|
||||||
val url =
|
val url =
|
||||||
|
|
@ -271,7 +271,7 @@ class MALApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun status(auth : AuthData?, id: String): SyncAPI.AbstractSyncStatus? {
|
override suspend fun status(auth: AuthData?, id: String): SyncAPI.AbstractSyncStatus? {
|
||||||
val auth = auth?.token?.accessToken ?: return null
|
val auth = auth?.token?.accessToken ?: return null
|
||||||
|
|
||||||
// https://myanimelist.net/apiconfig/references/api/v2#operation/anime_anime_id_get
|
// https://myanimelist.net/apiconfig/references/api/v2#operation/anime_anime_id_get
|
||||||
|
|
@ -477,7 +477,7 @@ class MALApi : SyncAPI() {
|
||||||
@JsonProperty("start_time") val startTime: String?
|
@JsonProperty("start_time") val startTime: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
override suspend fun library(auth : AuthData?): LibraryMetadata? {
|
override suspend fun library(auth: AuthData?): LibraryMetadata? {
|
||||||
val list = getMalAnimeListSmart(auth ?: return null)?.groupBy {
|
val list = getMalAnimeListSmart(auth ?: return null)?.groupBy {
|
||||||
convertToStatus(it.listStatus?.status ?: "").stringRes
|
convertToStatus(it.listStatus?.status ?: "").stringRes
|
||||||
}?.mapValues { group ->
|
}?.mapValues { group ->
|
||||||
|
|
@ -505,7 +505,7 @@ class MALApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getMalAnimeListSmart(auth : AuthData): Array<Data>? {
|
private suspend fun getMalAnimeListSmart(auth: AuthData): Array<Data>? {
|
||||||
return if (requireLibraryRefresh) {
|
return if (requireLibraryRefresh) {
|
||||||
val list = getMalAnimeList(auth.token)
|
val list = getMalAnimeList(auth.token)
|
||||||
setKey(MAL_CACHED_LIST, auth.user.id.toString(), list)
|
setKey(MAL_CACHED_LIST, auth.user.id.toString(), list)
|
||||||
|
|
|
||||||
|
|
@ -911,7 +911,7 @@ class SimklApi : SyncAPI() {
|
||||||
|
|
||||||
override suspend fun search(auth: AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
override suspend fun search(auth: AuthData?, query: String): List<SyncAPI.SyncSearchResult>? {
|
||||||
return app.get(
|
return app.get(
|
||||||
"$mainUrl/search/", params = mapOf("client_id" to CLIENT_ID, "q" to name)
|
"$mainUrl/search/", params = mapOf("client_id" to CLIENT_ID, "q" to query)
|
||||||
).parsedSafe<Array<MediaObject>>()?.mapNotNull { it.toSyncSearchResult() }
|
).parsedSafe<Array<MediaObject>>()?.mapNotNull { it.toSyncSearchResult() }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
android:id="@+id/player_metadata_scrim"
|
android:id="@+id/player_metadata_scrim"
|
||||||
android:layout_width="640dp"
|
android:layout_width="640dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginTop="-10dp"
|
||||||
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
android:id="@+id/player_metadata_scrim"
|
android:id="@+id/player_metadata_scrim"
|
||||||
android:layout_width="680dp"
|
android:layout_width="680dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginTop="-10dp"
|
||||||
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
android:id="@+id/player_metadata_scrim"
|
android:id="@+id/player_metadata_scrim"
|
||||||
android:layout_width="640dp"
|
android:layout_width="640dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginTop="-10dp"
|
||||||
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
android:background="@drawable/bg_player_metadata_scrim_netflix"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ annotation = "1.10.0"
|
||||||
appcompat = "1.7.1"
|
appcompat = "1.7.1"
|
||||||
biometric = "1.4.0-alpha07"
|
biometric = "1.4.0-alpha07"
|
||||||
buildkonfigGradlePlugin = "0.21.2"
|
buildkonfigGradlePlugin = "0.21.2"
|
||||||
classgraph = "4.8.184"
|
|
||||||
coil = { strictly = "3.3.0" } # Later versions require jvmTarget 11 or later
|
coil = { strictly = "3.3.0" } # Later versions require jvmTarget 11 or later
|
||||||
colorpicker = "6b46b49"
|
colorpicker = "6b46b49"
|
||||||
conscryptAndroid = { strictly = "2.5.2" } # 2.5.3 crashes everything
|
conscryptAndroid = { strictly = "2.5.2" } # 2.5.3 crashes everything
|
||||||
|
|
@ -70,7 +69,6 @@ anime-db = { module = "com.github.recloudstream:anime-db", version.ref = "animeD
|
||||||
annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" }
|
annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" }
|
||||||
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
|
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
|
||||||
biometric = { module = "androidx.biometric:biometric", version.ref = "biometric" }
|
biometric = { module = "androidx.biometric:biometric", version.ref = "biometric" }
|
||||||
classgraph = { group = "io.github.classgraph", name = "classgraph", version.ref = "classgraph" }
|
|
||||||
coil = { module = "io.coil-kt.coil3:coil", version.ref = "coil" }
|
coil = { module = "io.coil-kt.coil3:coil", version.ref = "coil" }
|
||||||
coil-network-okhttp = { module = "io.coil-kt.coil3:coil-network-okhttp", version.ref = "coil" }
|
coil-network-okhttp = { module = "io.coil-kt.coil3:coil-network-okhttp", version.ref = "coil" }
|
||||||
colorpicker = { module = "com.github.recloudstream:color-picker-android", version.ref = "colorpicker" }
|
colorpicker = { module = "com.github.recloudstream:color-picker-android", version.ref = "colorpicker" }
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,6 @@ import kotlinx.datetime.format.parse
|
||||||
import kotlinx.datetime.toInstant
|
import kotlinx.datetime.toInstant
|
||||||
import kotlinx.serialization.json.Json
|
import kotlinx.serialization.json.Json
|
||||||
import kotlin.io.encoding.Base64
|
import kotlin.io.encoding.Base64
|
||||||
import kotlin.io.encoding.ExperimentalEncodingApi
|
|
||||||
import kotlin.math.absoluteValue
|
import kotlin.math.absoluteValue
|
||||||
import kotlin.math.roundToInt
|
import kotlin.math.roundToInt
|
||||||
import kotlin.time.Clock
|
import kotlin.time.Clock
|
||||||
|
|
@ -716,12 +715,10 @@ fun base64Decode(string: String): String {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalEncodingApi::class)
|
|
||||||
fun base64DecodeArray(string: String): ByteArray {
|
fun base64DecodeArray(string: String): ByteArray {
|
||||||
return Base64.decode(string)
|
return Base64.decode(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalEncodingApi::class)
|
|
||||||
fun base64Encode(array: ByteArray): String {
|
fun base64Encode(array: ByteArray): String {
|
||||||
return Base64.encode(array)
|
return Base64.encode(array)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
package com.lagradost.cloudstream3.extractors
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.Prerelease
|
||||||
|
import com.lagradost.cloudstream3.SubtitleFile
|
||||||
|
import com.lagradost.cloudstream3.app
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorApi
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
|
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
||||||
|
import com.lagradost.cloudstream3.utils.newExtractorLink
|
||||||
|
import kotlinx.serialization.SerialName
|
||||||
|
import kotlinx.serialization.Serializable
|
||||||
|
|
||||||
|
@Prerelease
|
||||||
|
open class Flyfile : ExtractorApi() {
|
||||||
|
override val name: String = "FlyFile"
|
||||||
|
override val mainUrl: String = "https://flyfile.app"
|
||||||
|
open val apiUrl: String = "https://api.flyfile.app"
|
||||||
|
override val requiresReferer: Boolean = false
|
||||||
|
|
||||||
|
override suspend fun getUrl(
|
||||||
|
url: String,
|
||||||
|
referer: String?,
|
||||||
|
subtitleCallback: (SubtitleFile) -> Unit,
|
||||||
|
callback: (ExtractorLink) -> Unit
|
||||||
|
) {
|
||||||
|
val videoId = url.substringAfterLast("/")
|
||||||
|
val videoInfo = app.get("$apiUrl/api/streaming/assign/$videoId")
|
||||||
|
.parsed<StreamInfo>()
|
||||||
|
|
||||||
|
val streamUrl = "${videoInfo.url}/hls/${videoInfo.token}/master.m3u8"
|
||||||
|
callback.invoke(
|
||||||
|
newExtractorLink(
|
||||||
|
source = name,
|
||||||
|
name = name,
|
||||||
|
url = streamUrl,
|
||||||
|
type = ExtractorLinkType.M3U8
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
private data class StreamInfo(
|
||||||
|
@SerialName("url")
|
||||||
|
val url: String,
|
||||||
|
@SerialName("token")
|
||||||
|
val token: String
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
@ -81,6 +81,7 @@ import com.lagradost.cloudstream3.extractors.FilemoonV2
|
||||||
import com.lagradost.cloudstream3.extractors.Filesim
|
import com.lagradost.cloudstream3.extractors.Filesim
|
||||||
import com.lagradost.cloudstream3.extractors.Multimoviesshg
|
import com.lagradost.cloudstream3.extractors.Multimoviesshg
|
||||||
import com.lagradost.cloudstream3.extractors.FlaswishCom
|
import com.lagradost.cloudstream3.extractors.FlaswishCom
|
||||||
|
import com.lagradost.cloudstream3.extractors.Flyfile
|
||||||
import com.lagradost.cloudstream3.extractors.FourCX
|
import com.lagradost.cloudstream3.extractors.FourCX
|
||||||
import com.lagradost.cloudstream3.extractors.FourPichive
|
import com.lagradost.cloudstream3.extractors.FourPichive
|
||||||
import com.lagradost.cloudstream3.extractors.FourPlayRu
|
import com.lagradost.cloudstream3.extractors.FourPlayRu
|
||||||
|
|
@ -1298,6 +1299,7 @@ val extractorApis: AtomicMutableList<ExtractorApi> = atomicListOf(
|
||||||
GUpload(),
|
GUpload(),
|
||||||
HlsWish(),
|
HlsWish(),
|
||||||
ByseQekaho(),
|
ByseQekaho(),
|
||||||
|
Flyfile()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,12 +19,11 @@
|
||||||
*/
|
*/
|
||||||
package com.lagradost.cloudstream3.utils
|
package com.lagradost.cloudstream3.utils
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.base64DecodeArray
|
||||||
import io.ktor.http.Url
|
import io.ktor.http.Url
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.nio.ByteBuffer
|
import java.nio.ByteBuffer
|
||||||
import java.util.UUID
|
import java.util.UUID
|
||||||
import kotlin.io.encoding.Base64
|
|
||||||
import kotlin.io.encoding.ExperimentalEncodingApi
|
|
||||||
|
|
||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
object HlsPlaylistParser {
|
object HlsPlaylistParser {
|
||||||
|
|
@ -1169,7 +1168,6 @@ object HlsPlaylistParser {
|
||||||
return parseOptionalStringAttr(line, pattern, null, variableDefinitions)
|
return parseOptionalStringAttr(line, pattern, null, variableDefinitions)
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalEncodingApi::class)
|
|
||||||
@Throws(ParserException::class)
|
@Throws(ParserException::class)
|
||||||
private fun parseDrmSchemeData(
|
private fun parseDrmSchemeData(
|
||||||
line: String, keyFormat: String, variableDefinitions: Map<String, String>
|
line: String, keyFormat: String, variableDefinitions: Map<String, String>
|
||||||
|
|
@ -1181,7 +1179,7 @@ object HlsPlaylistParser {
|
||||||
return SchemeData(
|
return SchemeData(
|
||||||
uuid = C.WIDEVINE_UUID,
|
uuid = C.WIDEVINE_UUID,
|
||||||
mimeType = MimeTypes.VIDEO_MP4,
|
mimeType = MimeTypes.VIDEO_MP4,
|
||||||
data = Base64.Default.decode(urlString.substring(urlString.indexOf(',')))
|
data = base64DecodeArray(urlString.substring(urlString.indexOf(',')))
|
||||||
)
|
)
|
||||||
} else if (KEYFORMAT_WIDEVINE_PSSH_JSON == keyFormat) {
|
} else if (KEYFORMAT_WIDEVINE_PSSH_JSON == keyFormat) {
|
||||||
return SchemeData(
|
return SchemeData(
|
||||||
|
|
@ -1192,7 +1190,7 @@ object HlsPlaylistParser {
|
||||||
} else if (KEYFORMAT_PLAYREADY == keyFormat && "1" == keyFormatVersions) {
|
} else if (KEYFORMAT_PLAYREADY == keyFormat && "1" == keyFormatVersions) {
|
||||||
val urlString = parseStringAttr(line, REGEX_URI, variableDefinitions)
|
val urlString = parseStringAttr(line, REGEX_URI, variableDefinitions)
|
||||||
val data: ByteArray =
|
val data: ByteArray =
|
||||||
Base64.Default.decode(urlString.substring(urlString.indexOf(',')))
|
base64DecodeArray(urlString.substring(urlString.indexOf(',')))
|
||||||
val psshData: ByteArray =
|
val psshData: ByteArray =
|
||||||
PsshAtomUtil.buildPsshAtom(
|
PsshAtomUtil.buildPsshAtom(
|
||||||
systemId = C.PLAYREADY_UUID,
|
systemId = C.PLAYREADY_UUID,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue