mirror of
https://github.com/recloudstream/cloudstream.git
synced 2026-08-22 08:23:18 +00:00
Compare commits
1 commit
master
...
fix-player
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
09eeb93f35 |
311 changed files with 7401 additions and 24740 deletions
3
.github/workflows/build_to_archive.yml
vendored
3
.github/workflows/build_to_archive.yml
vendored
|
|
@ -71,10 +71,7 @@ jobs:
|
||||||
SIGNING_STORE_PASSWORD: ${{ steps.fetch_keystore.outputs.key_pwd }}
|
SIGNING_STORE_PASSWORD: ${{ steps.fetch_keystore.outputs.key_pwd }}
|
||||||
SIMKL_CLIENT_ID: ${{ secrets.SIMKL_CLIENT_ID }}
|
SIMKL_CLIENT_ID: ${{ secrets.SIMKL_CLIENT_ID }}
|
||||||
SIMKL_CLIENT_SECRET: ${{ secrets.SIMKL_CLIENT_SECRET }}
|
SIMKL_CLIENT_SECRET: ${{ secrets.SIMKL_CLIENT_SECRET }}
|
||||||
TRAKT_CLIENT_ID: ${{ secrets.TRAKT_CLIENT_ID }}
|
|
||||||
MDL_API_KEY: ${{ secrets.MDL_API_KEY }}
|
MDL_API_KEY: ${{ secrets.MDL_API_KEY }}
|
||||||
MAL_KEY: ${{ secrets.MAL_KEY }}
|
|
||||||
ANILIST_KEY: ${{ secrets.ANILIST_KEY }}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
105
.github/workflows/instrumented-tests.yml
vendored
105
.github/workflows/instrumented-tests.yml
vendored
|
|
@ -1,105 +0,0 @@
|
||||||
name: Instrumented Tests
|
|
||||||
|
|
||||||
on:
|
|
||||||
issue_comment:
|
|
||||||
types: [created]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
instrumented-tests:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: |
|
|
||||||
github.event.issue.pull_request &&
|
|
||||||
github.event.comment.body == '/run-tests'
|
|
||||||
steps:
|
|
||||||
- name: Check permission
|
|
||||||
uses: actions/github-script@v9
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const login = context.payload.comment.user.login;
|
|
||||||
const association = context.payload.comment.author_association;
|
|
||||||
const allowed = ['OWNER', 'MEMBER'];
|
|
||||||
|
|
||||||
const isAllowed =
|
|
||||||
login === 'Luna712' ||
|
|
||||||
allowed.includes(association);
|
|
||||||
|
|
||||||
if (!isAllowed) {
|
|
||||||
core.setFailed(`User ${login} is not permitted to trigger this workflow.`);
|
|
||||||
}
|
|
||||||
|
|
||||||
- uses: actions/checkout@v6
|
|
||||||
with:
|
|
||||||
ref: refs/pull/${{ github.event.issue.number }}/head
|
|
||||||
|
|
||||||
- name: Post started comment
|
|
||||||
uses: actions/github-script@v9
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
github.rest.issues.createComment({
|
|
||||||
issue_number: context.issue.number,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
body: 'Instrumented tests are running. [View live progress](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})'
|
|
||||||
})
|
|
||||||
|
|
||||||
- name: Set up JDK 17
|
|
||||||
uses: actions/setup-java@v5
|
|
||||||
with:
|
|
||||||
distribution: temurin
|
|
||||||
java-version: 17
|
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
|
||||||
run: chmod +x gradlew
|
|
||||||
|
|
||||||
- name: Setup Gradle
|
|
||||||
uses: gradle/actions/setup-gradle@v5
|
|
||||||
with:
|
|
||||||
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
|
|
||||||
cache-read-only: false
|
|
||||||
|
|
||||||
- name: Get target SDK
|
|
||||||
id: sdk
|
|
||||||
run: |
|
|
||||||
TARGET_SDK=$(grep 'targetSdk' gradle/libs.versions.toml | grep -o '[0-9]\+' | head -1)
|
|
||||||
echo "version=$TARGET_SDK" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Enable KVM
|
|
||||||
run: |
|
|
||||||
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
|
|
||||||
sudo udevadm control --reload-rules
|
|
||||||
sudo udevadm trigger --name-match=kvm
|
|
||||||
|
|
||||||
- name: Run Instrumented Tests
|
|
||||||
id: tests
|
|
||||||
uses: reactivecircus/android-emulator-runner@v2
|
|
||||||
with:
|
|
||||||
api-level: ${{ steps.sdk.outputs.version }}
|
|
||||||
arch: x86_64
|
|
||||||
profile: Nexus 6
|
|
||||||
script: ./gradlew connectedPrereleaseDebugAndroidTest
|
|
||||||
|
|
||||||
- name: Upload Test Results
|
|
||||||
if: always()
|
|
||||||
uses: actions/upload-artifact@v7
|
|
||||||
with:
|
|
||||||
name: instrumented-test-results
|
|
||||||
path: '**/build/reports/androidTests/'
|
|
||||||
|
|
||||||
- name: Post finished comment
|
|
||||||
if: always()
|
|
||||||
uses: actions/github-script@v9
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const success = '${{ steps.tests.outcome }}' === 'success';
|
|
||||||
github.rest.issues.createComment({
|
|
||||||
issue_number: context.issue.number,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
body: success
|
|
||||||
? 'Instrumented tests passed. [View results](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})'
|
|
||||||
: 'Instrumented tests failed. [View results](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})'
|
|
||||||
})
|
|
||||||
98
.github/workflows/issue_action.yml
vendored
Normal file
98
.github/workflows/issue_action.yml
vendored
Normal file
|
|
@ -0,0 +1,98 @@
|
||||||
|
name: Issue automatic actions
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
issues: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
issue-moderator:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Generate access token
|
||||||
|
id: generate_token
|
||||||
|
uses: tibdex/github-app-token@v2
|
||||||
|
with:
|
||||||
|
app_id: ${{ secrets.GH_APP_ID }}
|
||||||
|
private_key: ${{ secrets.GH_APP_KEY }}
|
||||||
|
|
||||||
|
- name: Similarity analysis
|
||||||
|
id: similarity
|
||||||
|
uses: actions-cool/issues-similarity-analysis@v1
|
||||||
|
with:
|
||||||
|
token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
filter-threshold: 0.60
|
||||||
|
title-excludes: ''
|
||||||
|
comment-title: |
|
||||||
|
### Your issue looks similar to these issues:
|
||||||
|
Please close if duplicate.
|
||||||
|
comment-body: '${index}. ${similarity} #${number}'
|
||||||
|
|
||||||
|
- name: Label if possible duplicate
|
||||||
|
if: steps.similarity.outputs.similar-issues-found =='true'
|
||||||
|
uses: actions/github-script@v9
|
||||||
|
with:
|
||||||
|
github-token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
script: |
|
||||||
|
github.rest.issues.addLabels({
|
||||||
|
issue_number: context.issue.number,
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
labels: ["possible duplicate"]
|
||||||
|
})
|
||||||
|
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Automatically close issues that dont follow the issue template
|
||||||
|
uses: lucasbento/auto-close-issues@v1.0.2
|
||||||
|
with:
|
||||||
|
github-token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
issue-close-message: |
|
||||||
|
@${issue.user.login}: hello! :wave:
|
||||||
|
This issue is being automatically closed because it does not follow the issue template."
|
||||||
|
closed-issues-label: "invalid"
|
||||||
|
|
||||||
|
- name: Check if issue mentions a provider
|
||||||
|
id: provider_check
|
||||||
|
env:
|
||||||
|
GH_TEXT: "${{ github.event.issue.title }} ${{ github.event.issue.body }}"
|
||||||
|
run: |
|
||||||
|
wget --output-document check_issue.py "https://raw.githubusercontent.com/recloudstream/.github/master/.github/check_issue.py"
|
||||||
|
pip3 install httpx
|
||||||
|
RES="$(python3 ./check_issue.py)"
|
||||||
|
echo "name=${RES}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Comment if issue mentions a provider
|
||||||
|
if: steps.provider_check.outputs.name != 'none'
|
||||||
|
uses: actions-cool/issues-helper@v3
|
||||||
|
with:
|
||||||
|
actions: 'create-comment'
|
||||||
|
token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
body: |
|
||||||
|
Hello ${{ github.event.issue.user.login }}.
|
||||||
|
Please do not report any provider bugs here. This repository does not contain any providers. Please find the appropriate repository and report your issue there or join the [discord](https://discord.gg/5Hus6fM).
|
||||||
|
|
||||||
|
Found provider name: `${{ steps.provider_check.outputs.name }}`
|
||||||
|
|
||||||
|
- name: Label if mentions provider
|
||||||
|
if: steps.provider_check.outputs.name != 'none'
|
||||||
|
uses: actions/github-script@v9
|
||||||
|
with:
|
||||||
|
github-token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
script: |
|
||||||
|
github.rest.issues.addLabels({
|
||||||
|
issue_number: context.issue.number,
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
labels: ["possible provider issue"]
|
||||||
|
})
|
||||||
|
|
||||||
|
- name: Add eyes reaction to all issues
|
||||||
|
uses: actions-cool/emoji-helper@v1.0.0
|
||||||
|
with:
|
||||||
|
type: 'issue'
|
||||||
|
token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
emoji: 'eyes'
|
||||||
3
.github/workflows/prerelease.yml
vendored
3
.github/workflows/prerelease.yml
vendored
|
|
@ -62,10 +62,7 @@ jobs:
|
||||||
SIGNING_STORE_PASSWORD: ${{ steps.fetch_keystore.outputs.key_pwd }}
|
SIGNING_STORE_PASSWORD: ${{ steps.fetch_keystore.outputs.key_pwd }}
|
||||||
SIMKL_CLIENT_ID: ${{ secrets.SIMKL_CLIENT_ID }}
|
SIMKL_CLIENT_ID: ${{ secrets.SIMKL_CLIENT_ID }}
|
||||||
SIMKL_CLIENT_SECRET: ${{ secrets.SIMKL_CLIENT_SECRET }}
|
SIMKL_CLIENT_SECRET: ${{ secrets.SIMKL_CLIENT_SECRET }}
|
||||||
TRAKT_CLIENT_ID: ${{ secrets.TRAKT_CLIENT_ID }}
|
|
||||||
MDL_API_KEY: ${{ secrets.MDL_API_KEY }}
|
MDL_API_KEY: ${{ secrets.MDL_API_KEY }}
|
||||||
MAL_KEY: ${{ secrets.MAL_KEY }}
|
|
||||||
ANILIST_KEY: ${{ secrets.ANILIST_KEY }}
|
|
||||||
|
|
||||||
- name: Create pre-release
|
- name: Create pre-release
|
||||||
uses: marvinpinto/action-automatic-releases@latest
|
uses: marvinpinto/action-automatic-releases@latest
|
||||||
|
|
|
||||||
7
.github/workflows/pull_request.yml
vendored
7
.github/workflows/pull_request.yml
vendored
|
|
@ -26,13 +26,8 @@ jobs:
|
||||||
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
|
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
|
||||||
cache-read-only: false
|
cache-read-only: false
|
||||||
|
|
||||||
- name: Ensure binary compatibility
|
|
||||||
# This is to ensure that your code is backwards compatible.
|
|
||||||
# If this fails you need to add a @Prerelease annotation to new code.
|
|
||||||
run: ./gradlew library:checkKotlinAbi
|
|
||||||
|
|
||||||
- name: Run Gradle
|
- name: Run Gradle
|
||||||
run: ./gradlew assemblePrereleaseDebug lint check
|
run: ./gradlew assemblePrereleaseDebug lint
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
|
|
|
||||||
21
COMPOSE.md
21
COMPOSE.md
|
|
@ -1,21 +0,0 @@
|
||||||
# Migration guide to Compose
|
|
||||||
|
|
||||||
### 1. MVI instead of MVVM
|
|
||||||
|
|
||||||
The current design of CloudStream loosely uses the MVVM architecture.
|
|
||||||
|
|
||||||
This means that the UI invokes the viewmodel with function calls, and it responds with LiveData fields that are observed. While this has worked, it generates a lot of boilerplate and has created some friction.
|
|
||||||
|
|
||||||
To make it easier to work with Compose, the new architecture will be based on MVI. In short this means that the viewmodel exposes a singular immutable class that is observed, and receives all UI events with a singular event that is a sealed class. All the UI should be able to be recreated based on this singular state class, and all interactions should be able to be replayed using only the event callback.
|
|
||||||
|
|
||||||
For a more detailed overview, see: https://www.youtube.com/watch?v=b2z1jvD4VMQ
|
|
||||||
|
|
||||||
This is part of the effort to make CloudStream cross platform, as it allows us to decouple UI and logic.
|
|
||||||
|
|
||||||
### 2. KMP-compatible libraries
|
|
||||||
|
|
||||||
We plan to leverage Kotlin's KMP project to compile our code to different architectures. However, this requires us to only use KMP-compatible libraries, no Java. Therefore any pull requests must ensure that they use KMP-compatible libraries only.
|
|
||||||
|
|
||||||
### 3. UI Changes
|
|
||||||
|
|
||||||
While migrating to the new compose UI, you also have the opportunity to change the UI. However, this should only be to freshen up the UI, not completely redesign it. It is also important to stress that this process should not lose any features of the old UI, and be very conservative with adding new features.
|
|
||||||
|
|
@ -8,7 +8,6 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.application)
|
alias(libs.plugins.android.application)
|
||||||
alias(libs.plugins.dokka)
|
alias(libs.plugins.dokka)
|
||||||
alias(libs.plugins.kotlin.serialization)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val javaTarget = JvmTarget.fromTarget(libs.versions.jvmTarget.get())
|
val javaTarget = JvmTarget.fromTarget(libs.versions.jvmTarget.get())
|
||||||
|
|
@ -104,8 +103,8 @@ android {
|
||||||
applicationId = "com.lagradost.cloudstream3"
|
applicationId = "com.lagradost.cloudstream3"
|
||||||
minSdk = libs.versions.minSdk.get().toInt()
|
minSdk = libs.versions.minSdk.get().toInt()
|
||||||
targetSdk = libs.versions.targetSdk.get().toInt()
|
targetSdk = libs.versions.targetSdk.get().toInt()
|
||||||
versionCode = libs.versions.versionCode.get().toInt()
|
versionCode = 68
|
||||||
versionName = libs.versions.versionName.get()
|
versionName = "4.7.0"
|
||||||
|
|
||||||
manifestPlaceholders["target_sdk_version"] = libs.versions.targetSdk.get()
|
manifestPlaceholders["target_sdk_version"] = libs.versions.targetSdk.get()
|
||||||
|
|
||||||
|
|
@ -127,16 +126,6 @@ android {
|
||||||
"SIMKL_CLIENT_SECRET",
|
"SIMKL_CLIENT_SECRET",
|
||||||
"\"" + (System.getenv("SIMKL_CLIENT_SECRET") ?: localProperties["simkl.secret"]) + "\""
|
"\"" + (System.getenv("SIMKL_CLIENT_SECRET") ?: localProperties["simkl.secret"]) + "\""
|
||||||
)
|
)
|
||||||
buildConfigField(
|
|
||||||
"String",
|
|
||||||
"MAL_KEY",
|
|
||||||
"\"" + (System.getenv("MAL_KEY") ?: localProperties["mal.key"]) + "\""
|
|
||||||
)
|
|
||||||
buildConfigField(
|
|
||||||
"String",
|
|
||||||
"ANILIST_KEY",
|
|
||||||
"\"" + (System.getenv("ANILIST_KEY") ?: localProperties["anilist.key"]) + "\""
|
|
||||||
)
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -217,11 +206,9 @@ dependencies {
|
||||||
testImplementation(libs.junit)
|
testImplementation(libs.junit)
|
||||||
testImplementation(libs.json)
|
testImplementation(libs.json)
|
||||||
androidTestImplementation(libs.core)
|
androidTestImplementation(libs.core)
|
||||||
androidTestImplementation(libs.espresso.core)
|
implementation(libs.junit.ktx)
|
||||||
androidTestImplementation(libs.ext.junit)
|
androidTestImplementation(libs.ext.junit)
|
||||||
androidTestImplementation(libs.instancio.core)
|
androidTestImplementation(libs.espresso.core)
|
||||||
androidTestImplementation(libs.junit.ktx)
|
|
||||||
androidTestImplementation(libs.kotlin.test)
|
|
||||||
|
|
||||||
// Android Core & Lifecycle
|
// Android Core & Lifecycle
|
||||||
implementation(libs.core.ktx)
|
implementation(libs.core.ktx)
|
||||||
|
|
@ -232,7 +219,6 @@ dependencies {
|
||||||
implementation(libs.bundles.lifecycle)
|
implementation(libs.bundles.lifecycle)
|
||||||
implementation(libs.bundles.navigation)
|
implementation(libs.bundles.navigation)
|
||||||
implementation(libs.kotlinx.collections.immutable)
|
implementation(libs.kotlinx.collections.immutable)
|
||||||
implementation(libs.kotlinx.serialization.json) // JSON Parser
|
|
||||||
|
|
||||||
// Design & UI
|
// Design & UI
|
||||||
implementation(libs.preference.ktx)
|
implementation(libs.preference.ktx)
|
||||||
|
|
@ -268,19 +254,14 @@ dependencies {
|
||||||
|
|
||||||
// Extensions & Other Libs
|
// Extensions & Other Libs
|
||||||
implementation(libs.jsoup) // HTML Parser
|
implementation(libs.jsoup) // HTML Parser
|
||||||
implementation(libs.ksoup) // HTML Parser
|
|
||||||
implementation(libs.rhino) // Run JavaScript
|
implementation(libs.rhino) // Run JavaScript
|
||||||
|
implementation(libs.fuzzywuzzy) // Library/Ext Searching with Levenshtein Distance
|
||||||
implementation(libs.safefile) // To Prevent the URI File Fu*kery
|
implementation(libs.safefile) // To Prevent the URI File Fu*kery
|
||||||
coreLibraryDesugaring(libs.desugar.jdk.libs.nio) // NIO Flavor Needed for NewPipeExtractor
|
coreLibraryDesugaring(libs.desugar.jdk.libs.nio) // NIO Flavor Needed for NewPipeExtractor
|
||||||
implementation(libs.conscrypt.android) // To Fix SSL Fu*kery on Android 9
|
implementation(libs.conscrypt.android) // To Fix SSL Fu*kery on Android 9
|
||||||
implementation(libs.jackson.module.kotlin) // JSON Parser
|
implementation(libs.jackson.module.kotlin) // JSON Parser
|
||||||
implementation(libs.zipline)
|
implementation(libs.zipline)
|
||||||
|
|
||||||
// Temp/deprecated; will be removed once extensions have time to migrate from using it
|
|
||||||
implementation("com.google.code.gson:gson:2.11.0")
|
|
||||||
// Deprecated; will be removed once extensions have time to migrate from using it
|
|
||||||
implementation("me.xdrop:fuzzywuzzy:1.4.0")
|
|
||||||
|
|
||||||
// Torrent Support
|
// Torrent Support
|
||||||
implementation(libs.torrentserver)
|
implementation(libs.torrentserver)
|
||||||
|
|
||||||
|
|
@ -325,6 +306,7 @@ tasks.withType<KotlinJvmCompile> {
|
||||||
compilerOptions {
|
compilerOptions {
|
||||||
jvmTarget.set(javaTarget)
|
jvmTarget.set(javaTarget)
|
||||||
jvmDefault.set(JvmDefaultMode.ENABLE)
|
jvmDefault.set(JvmDefaultMode.ENABLE)
|
||||||
|
freeCompilerArgs.add("-Xannotation-default-target=param-property")
|
||||||
optIn.addAll(
|
optIn.addAll(
|
||||||
"com.lagradost.cloudstream3.InternalAPI",
|
"com.lagradost.cloudstream3.InternalAPI",
|
||||||
"com.lagradost.cloudstream3.Prerelease",
|
"com.lagradost.cloudstream3.Prerelease",
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,12 @@ class ExampleInstrumentedTest {
|
||||||
return APIHolder.allProviders.toTypedArray() //.filter { !it.usesWebView }
|
return APIHolder.allProviders.toTypedArray() //.filter { !it.usesWebView }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun providersExist() {
|
||||||
|
Assert.assertTrue(getAllProviders().isNotEmpty())
|
||||||
|
println("Done providersExist")
|
||||||
|
}
|
||||||
|
|
||||||
@Throws
|
@Throws
|
||||||
private inline fun <reified T : ViewBinding> testAllLayouts(
|
private inline fun <reified T : ViewBinding> testAllLayouts(
|
||||||
activity: Activity,
|
activity: Activity,
|
||||||
|
|
|
||||||
|
|
@ -1,154 +0,0 @@
|
||||||
package com.lagradost.cloudstream3
|
|
||||||
|
|
||||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
||||||
import androidx.test.platform.app.InstrumentationRegistry
|
|
||||||
import com.lagradost.cloudstream3.SkipSerializationTest
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
||||||
import dalvik.system.DexFile
|
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
|
||||||
import kotlinx.serialization.InternalSerializationApi
|
|
||||||
import kotlinx.serialization.KSerializer
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import kotlinx.serialization.serializer
|
|
||||||
import kotlinx.serialization.serializerOrNull
|
|
||||||
import org.instancio.Instancio
|
|
||||||
import org.junit.Test
|
|
||||||
import org.junit.runner.RunWith
|
|
||||||
import kotlin.reflect.KClass
|
|
||||||
import kotlin.reflect.jvm.jvmName
|
|
||||||
import kotlin.test.assertEquals
|
|
||||||
import kotlin.test.assertNotNull
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4::class)
|
|
||||||
class SerializationClassTester {
|
|
||||||
// Same as app, or using app reference
|
|
||||||
val jacksonMapper = mapper
|
|
||||||
val kotlinxMapper = json
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun isIdenticalSerialization() {
|
|
||||||
val serializableClasses = findSerializableClasses("com.lagradost")
|
|
||||||
println("Number of serializable classes: ${serializableClasses.size}")
|
|
||||||
|
|
||||||
val failures = mutableListOf<String>()
|
|
||||||
|
|
||||||
serializableClasses.forEach { kClass ->
|
|
||||||
runCatching {
|
|
||||||
val instance = Instancio.of(kClass.java).withMaxDepth(10).create()
|
|
||||||
|
|
||||||
val jacksonJson = jacksonMapper.writeValueAsString(instance)
|
|
||||||
val kotlinxJson = serializeWithKotlinx(kClass, instance)
|
|
||||||
|
|
||||||
assertEquals(
|
|
||||||
jacksonJson,
|
|
||||||
kotlinxJson,
|
|
||||||
"""
|
|
||||||
Serialization mismatch for:
|
|
||||||
${kClass.qualifiedName}
|
|
||||||
|
|
||||||
Jackson:
|
|
||||||
$jacksonJson
|
|
||||||
|
|
||||||
Kotlinx:
|
|
||||||
$kotlinxJson
|
|
||||||
|
|
||||||
""".trimIndent()
|
|
||||||
)
|
|
||||||
println("Identical serialization for: ${kClass.jvmName}")
|
|
||||||
}.onFailure { e ->
|
|
||||||
failures.add("FAILED ${kClass.qualifiedName}: ${e.message}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (failures.isNotEmpty()) {
|
|
||||||
throw AssertionError("${failures.size} class(es) failed:\n${failures.joinToString("\n")}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(InternalSerializationApi::class, ExperimentalSerializationApi::class)
|
|
||||||
@Test
|
|
||||||
fun isIdenticalDeserialization() {
|
|
||||||
val serializableClasses = findSerializableClasses("com.lagradost")
|
|
||||||
println("Number of serializable classes: ${serializableClasses.size}")
|
|
||||||
|
|
||||||
val failures = mutableListOf<String>()
|
|
||||||
|
|
||||||
serializableClasses.forEach { kClass ->
|
|
||||||
runCatching {
|
|
||||||
val instance = Instancio.of(kClass.java).withMaxDepth(10).create()
|
|
||||||
// Convert to JSON to get example JSON object
|
|
||||||
// We prefer jackson here because the app may have many jackson JSON strings in local storage
|
|
||||||
val originalJson = jacksonMapper.writeValueAsString(instance)
|
|
||||||
|
|
||||||
// Create an object from the JSON using kotlinx
|
|
||||||
val serializer =
|
|
||||||
kClass.serializerOrNull() ?: kotlinxMapper.serializersModule.getContextual(kClass)
|
|
||||||
assertNotNull(serializer, "The class: ${kClass.jvmName} must be serializable!")
|
|
||||||
val kotlinxDecoded = kotlinxMapper.decodeFromString(serializer, originalJson)
|
|
||||||
|
|
||||||
// Create an object from the JSON using jackson
|
|
||||||
val mapperDecoded = jacksonMapper.readValue(originalJson, kClass.java)
|
|
||||||
|
|
||||||
// Deep inspect both object using the mapper toJson function.
|
|
||||||
// This deep equality check can be performed using other methods, but this just works.
|
|
||||||
val jacksonJson = mapperDecoded.toJson()
|
|
||||||
val kotlinxJson = kotlinxDecoded.toJson()
|
|
||||||
|
|
||||||
assertEquals(
|
|
||||||
jacksonJson,
|
|
||||||
kotlinxJson,
|
|
||||||
"""
|
|
||||||
Serialization mismatch for:
|
|
||||||
${kClass.qualifiedName}
|
|
||||||
|
|
||||||
Jackson:
|
|
||||||
$jacksonJson
|
|
||||||
|
|
||||||
Kotlinx:
|
|
||||||
$kotlinxJson
|
|
||||||
|
|
||||||
""".trimIndent()
|
|
||||||
)
|
|
||||||
println("Identical deserialization for: ${kClass.jvmName}")
|
|
||||||
}.onFailure { e ->
|
|
||||||
failures.add("FAILED ${kClass.qualifiedName}: ${e.message}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (failures.isNotEmpty()) {
|
|
||||||
throw AssertionError("${failures.size} class(es) failed:\n${failures.joinToString("\n")}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// DEX files are the best solution to read all our classes dynamically.
|
|
||||||
// classgraph could be used instead, but it only gives results on the JVM, not Android.
|
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
private fun findSerializableClasses(packageName: String): List<KClass<*>> {
|
|
||||||
val context = InstrumentationRegistry
|
|
||||||
.getInstrumentation()
|
|
||||||
.targetContext
|
|
||||||
|
|
||||||
val dexFile = DexFile(context.packageCodePath)
|
|
||||||
return dexFile.entries()
|
|
||||||
.toList()
|
|
||||||
.filter { it.startsWith(packageName) }
|
|
||||||
.mapNotNull {
|
|
||||||
runCatching { Class.forName(it).kotlin }.getOrNull()
|
|
||||||
}.filter { kClass ->
|
|
||||||
// Not possible to use .hasAnnotation() on newer Android versions.
|
|
||||||
kClass.java.annotations.any { it is Serializable }
|
|
||||||
&& kClass.java.annotations.none { it is SkipSerializationTest }
|
|
||||||
&& !kClass.isAbstract
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(InternalSerializationApi::class)
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
private fun serializeWithKotlinx(
|
|
||||||
kClass: KClass<*>,
|
|
||||||
value: Any
|
|
||||||
): String {
|
|
||||||
val serializer = kClass.serializer() as KSerializer<Any>
|
|
||||||
return kotlinxMapper.encodeToString(serializer, value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
package com.lagradost.cloudstream3.utils.serializers
|
|
||||||
|
|
||||||
import android.net.Uri
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import org.junit.Assert.assertEquals
|
|
||||||
import org.junit.Assert.assertTrue
|
|
||||||
import org.junit.Test
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class UriData(
|
|
||||||
@Serializable(with = UriSerializer::class)
|
|
||||||
@SerialName("uri") val uri: Uri = Uri.EMPTY,
|
|
||||||
)
|
|
||||||
|
|
||||||
class UriSerializerTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun uriSerializerSerializesUriToString() {
|
|
||||||
val data = UriData(uri = Uri.parse("https://example.com/path?query=1"))
|
|
||||||
val result = data.toJson()
|
|
||||||
assertTrue(result.contains("https://example.com/path?query=1"))
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun uriSerializerDeserializesStringToUri() {
|
|
||||||
val input = """{"uri":"https://example.com/path?query=1"}"""
|
|
||||||
val result = parseJson<UriData>(input)
|
|
||||||
assertEquals(Uri.parse("https://example.com/path?query=1"), result.uri)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun uriSerializerRoundtripsCorrectly() {
|
|
||||||
val data = UriData(uri = Uri.parse("https://example.com/path?query=1"))
|
|
||||||
val encoded = data.toJson()
|
|
||||||
val decoded = parseJson<UriData>(encoded)
|
|
||||||
assertEquals(data.uri, decoded.uri)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -22,47 +22,6 @@
|
||||||
android:name="android.permission.QUERY_ALL_PACKAGES"
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
||||||
tools:ignore="QueryAllPackagesPermission" />
|
tools:ignore="QueryAllPackagesPermission" />
|
||||||
|
|
||||||
<queries>
|
|
||||||
<!--
|
|
||||||
QUERY_ALL_PACKAGES does not work on some devices running Android 11+ (like Google TV 14),
|
|
||||||
so we must explicitly specify the packages and intent patterns we query to ensure visibility.
|
|
||||||
-->
|
|
||||||
<!-- For external video players -->
|
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<data android:mimeType="video/*" />
|
|
||||||
</intent>
|
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<data android:mimeType="application/x-mpegURL" />
|
|
||||||
</intent>
|
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<data android:mimeType="application/vnd.apple.mpegurl" />
|
|
||||||
</intent>
|
|
||||||
<intent>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
<data android:scheme="magnet" />
|
|
||||||
</intent>
|
|
||||||
|
|
||||||
<!-- Common players supported in actions/temp -->
|
|
||||||
<package android:name="org.videolan.vlc" />
|
|
||||||
<package android:name="org.videolan.vlc.debug" />
|
|
||||||
<package android:name="is.xyz.mpv" />
|
|
||||||
<package android:name="is.xyz.mpv.ytdl" />
|
|
||||||
<package android:name="app.marlboroadvance.mpvex" />
|
|
||||||
<package android:name="live.mehiz.mpvkt" />
|
|
||||||
<package android:name="live.mehiz.mpvkt.preview" />
|
|
||||||
<package android:name="com.brouken.player" />
|
|
||||||
<package android:name="dev.anilbeesetti.nextplayer" />
|
|
||||||
<package android:name="com.instantbits.cast.webvideo" />
|
|
||||||
<package android:name="com.gianlu.aria2android" />
|
|
||||||
|
|
||||||
<!-- Torrent clients -->
|
|
||||||
<package android:name="org.proninyaroslav.libretorrent" />
|
|
||||||
<package android:name="com.biglybt.android.client" />
|
|
||||||
</queries>
|
|
||||||
|
|
||||||
<!-- Fixes android tv fuckery -->
|
<!-- Fixes android tv fuckery -->
|
||||||
<uses-feature
|
<uses-feature
|
||||||
android:name="android.hardware.touchscreen"
|
android:name="android.hardware.touchscreen"
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ package com.lagradost.cloudstream3
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
class AcraApplication {
|
class AcraApplication {
|
||||||
companion object {
|
companion object {
|
||||||
|
|
@ -15,14 +15,14 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.context"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.context"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
val context get() = CloudStreamApp.context
|
val context get() = CloudStreamApp.context
|
||||||
|
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.removeKeys(folder)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.removeKeys(folder)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
fun removeKeys(folder: String): Int? =
|
fun removeKeys(folder: String): Int? =
|
||||||
CloudStreamApp.removeKeys(folder)
|
CloudStreamApp.removeKeys(folder)
|
||||||
|
|
@ -30,7 +30,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.setKey(path, value)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.setKey(path, value)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
fun <T> setKey(path: String, value: T) =
|
fun <T> setKey(path: String, value: T) =
|
||||||
CloudStreamApp.setKey(path, value)
|
CloudStreamApp.setKey(path, value)
|
||||||
|
|
@ -38,7 +38,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.setKey(folder, path, value)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.setKey(folder, path, value)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
fun <T> setKey(folder: String, path: String, value: T) =
|
fun <T> setKey(folder: String, path: String, value: T) =
|
||||||
CloudStreamApp.setKey(folder, path, value)
|
CloudStreamApp.setKey(folder, path, value)
|
||||||
|
|
@ -46,7 +46,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(path, defVal)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(path, defVal)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
inline fun <reified T : Any> getKey(path: String, defVal: T?): T? =
|
inline fun <reified T : Any> getKey(path: String, defVal: T?): T? =
|
||||||
CloudStreamApp.getKey(path, defVal)
|
CloudStreamApp.getKey(path, defVal)
|
||||||
|
|
@ -54,7 +54,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(path)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(path)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
inline fun <reified T : Any> getKey(path: String): T? =
|
inline fun <reified T : Any> getKey(path: String): T? =
|
||||||
CloudStreamApp.getKey(path)
|
CloudStreamApp.getKey(path)
|
||||||
|
|
@ -62,7 +62,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(folder, path)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(folder, path)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
inline fun <reified T : Any> getKey(folder: String, path: String): T? =
|
inline fun <reified T : Any> getKey(folder: String, path: String): T? =
|
||||||
CloudStreamApp.getKey(folder, path)
|
CloudStreamApp.getKey(folder, path)
|
||||||
|
|
@ -70,7 +70,7 @@ class AcraApplication {
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
message = "AcraApplication is deprecated, use CloudStreamApp instead",
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(folder, path, defVal)"),
|
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(folder, path, defVal)"),
|
||||||
level = DeprecationLevel.ERROR
|
level = DeprecationLevel.WARNING
|
||||||
)
|
)
|
||||||
inline fun <reified T : Any> getKey(folder: String, path: String, defVal: T?): T? =
|
inline fun <reified T : Any> getKey(folder: String, path: String, defVal: T?): T? =
|
||||||
CloudStreamApp.getKey(folder, path, defVal)
|
CloudStreamApp.getKey(folder, path, defVal)
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ class CloudStreamApp : Application(), SingletonImageLoader.Factory {
|
||||||
get() = _context?.get()
|
get() = _context?.get()
|
||||||
private set(value) {
|
private set(value) {
|
||||||
_context = WeakReference(value)
|
_context = WeakReference(value)
|
||||||
setContext(value)
|
setContext(WeakReference(value))
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T : Any> getKeyClass(path: String, valueType: Class<T>): T? {
|
fun <T : Any> getKeyClass(path: String, valueType: Class<T>): T? {
|
||||||
|
|
|
||||||
|
|
@ -579,10 +579,8 @@ object CommonActivity {
|
||||||
|
|
||||||
// TODO: Figure out why removing the check for SearchAutoComplete seems
|
// TODO: Figure out why removing the check for SearchAutoComplete seems
|
||||||
// to break focus on TV as it shouldn't need to be used.
|
// to break focus on TV as it shouldn't need to be used.
|
||||||
// Also handle KEYCODE_ENTER here because some remotes (e.g. LG Magic Remote)
|
|
||||||
// send KEYCODE_ENTER instead of KEYCODE_DPAD_CENTER when clicking the OK button.
|
|
||||||
@SuppressLint("RestrictedApi")
|
@SuppressLint("RestrictedApi")
|
||||||
if ((keyCode == KeyEvent.KEYCODE_DPAD_CENTER || keyCode == KeyEvent.KEYCODE_ENTER) &&
|
if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER &&
|
||||||
(act.currentFocus is SearchView || act.currentFocus is SearchView.SearchAutoComplete)
|
(act.currentFocus is SearchView || act.currentFocus is SearchView.SearchAutoComplete)
|
||||||
) {
|
) {
|
||||||
showInputMethod(act.currentFocus?.findFocus())
|
showInputMethod(act.currentFocus?.findFocus())
|
||||||
|
|
|
||||||
|
|
@ -171,17 +171,13 @@ import com.lagradost.cloudstream3.utils.UIHelper.hideKeyboard
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
|
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.setNavigationBarColorCompat
|
import com.lagradost.cloudstream3.utils.UIHelper.setNavigationBarColorCompat
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
||||||
import com.lagradost.cloudstream3.utils.USER_PROVIDER_API
|
import com.lagradost.cloudstream3.utils.USER_PROVIDER_API
|
||||||
import com.lagradost.cloudstream3.utils.USER_SELECTED_HOMEPAGE_API
|
import com.lagradost.cloudstream3.utils.USER_SELECTED_HOMEPAGE_API
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
|
||||||
import com.lagradost.cloudstream3.utils.setText
|
import com.lagradost.cloudstream3.utils.setText
|
||||||
import com.lagradost.cloudstream3.utils.setTextHtml
|
import com.lagradost.cloudstream3.utils.setTextHtml
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import com.lagradost.safefile.SafeFile
|
import com.lagradost.safefile.SafeFile
|
||||||
import kotlinx.coroutines.Job
|
|
||||||
import kotlinx.coroutines.cancel
|
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
@ -191,8 +187,10 @@ import java.net.URLDecoder
|
||||||
import java.nio.charset.Charset
|
import java.nio.charset.Charset
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
import kotlin.math.absoluteValue
|
import kotlin.math.absoluteValue
|
||||||
import kotlin.reflect.full.createInstance
|
|
||||||
import kotlin.system.exitProcess
|
import kotlin.system.exitProcess
|
||||||
|
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
||||||
|
import kotlinx.coroutines.Job
|
||||||
|
import kotlinx.coroutines.cancel
|
||||||
|
|
||||||
class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCallback {
|
class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCallback {
|
||||||
companion object {
|
companion object {
|
||||||
|
|
@ -410,14 +408,17 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
val matchedApi = apis.filter { str.startsWith(it.mainUrl) }.firstOrNull()
|
synchronized(apis) {
|
||||||
if (matchedApi != null) {
|
for (api in apis) {
|
||||||
loadResult(str, matchedApi.name, "")
|
if (str.startsWith(api.mainUrl)) {
|
||||||
|
loadResult(str, api.name, "")
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -786,6 +787,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
val builder = NavOptions.Builder().setLaunchSingleTop(true).setRestoreState(true)
|
val builder = NavOptions.Builder().setLaunchSingleTop(true).setRestoreState(true)
|
||||||
.setEnterAnim(R.anim.enter_anim)
|
.setEnterAnim(R.anim.enter_anim)
|
||||||
.setExitAnim(R.anim.exit_anim)
|
.setExitAnim(R.anim.exit_anim)
|
||||||
|
|
@ -807,33 +809,32 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private val pluginsLock = Mutex()
|
private val pluginsLock = Mutex()
|
||||||
private fun onAllPluginsLoaded(success: Boolean = false) {
|
private fun onAllPluginsLoaded(success: Boolean = false) {
|
||||||
ioSafe {
|
ioSafe {
|
||||||
pluginsLock.withLock {
|
pluginsLock.withLock {
|
||||||
allProviders.withLock {
|
synchronized(allProviders) {
|
||||||
// Load cloned sites after plugins have been loaded since clones depend on plugins.
|
// Load cloned sites after plugins have been loaded since clones depend on plugins.
|
||||||
try {
|
try {
|
||||||
getKey<Array<SettingsGeneral.CustomSite>>(USER_PROVIDER_API)?.let { list ->
|
getKey<Array<SettingsGeneral.CustomSite>>(USER_PROVIDER_API)?.let { list ->
|
||||||
list.forEach { custom ->
|
list.forEach { custom ->
|
||||||
allProviders.firstOrNull {
|
allProviders.firstOrNull { it.javaClass.simpleName == custom.parentJavaClass }
|
||||||
it::class.simpleName == custom.parentClassName
|
?.let {
|
||||||
}?.let {
|
|
||||||
allProviders.add(
|
allProviders.add(
|
||||||
it::class.createInstance().apply {
|
it.javaClass.getDeclaredConstructor().newInstance()
|
||||||
|
.apply {
|
||||||
name = custom.name
|
name = custom.name
|
||||||
lang = custom.lang
|
lang = custom.lang
|
||||||
mainUrl = custom.url.trimEnd('/')
|
mainUrl = custom.url.trimEnd('/')
|
||||||
canBeOverridden = false
|
canBeOverridden = false
|
||||||
}
|
})
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// it.hashCode() is not enough to make sure they are distinct
|
// it.hashCode() is not enough to make sure they are distinct
|
||||||
apis = allProviders.distinctBy {
|
apis =
|
||||||
it.lang + it.name + it.mainUrl + it::class.qualifiedName
|
allProviders.distinctBy { it.lang + it.name + it.mainUrl + it.javaClass.name }
|
||||||
}
|
|
||||||
APIHolder.apiMap = null
|
APIHolder.apiMap = null
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
|
|
@ -1215,7 +1216,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
// backup when we update the app, I don't trust myself to not boot lock users, might want to make this a setting?
|
// backup when we update the app, I don't trust myself to not boot lock users, might want to make this a setting?
|
||||||
safe {
|
safe {
|
||||||
val appVer = BuildConfig.VERSION_NAME
|
val appVer = BuildConfig.VERSION_NAME
|
||||||
val lastAppAutoBackup: String = getKey<String>("VERSION_NAME") ?: ""
|
val lastAppAutoBackup: String = getKey("VERSION_NAME") ?: ""
|
||||||
if (appVer != lastAppAutoBackup) {
|
if (appVer != lastAppAutoBackup) {
|
||||||
setKey("VERSION_NAME", BuildConfig.VERSION_NAME)
|
setKey("VERSION_NAME", BuildConfig.VERSION_NAME)
|
||||||
if (lastAppAutoBackup.isEmpty()) return@safe
|
if (lastAppAutoBackup.isEmpty()) return@safe
|
||||||
|
|
@ -1429,9 +1430,8 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
resultviewPreviewBookmark.isEnabled = false
|
resultviewPreviewBookmark.isEnabled = false
|
||||||
resultviewPreviewBookmark.showProgress()
|
resultviewPreviewBookmark.setIconResource(R.drawable.ic_baseline_bookmark_border_24)
|
||||||
//resultviewPreviewBookmark.setIconResource(R.drawable.ic_baseline_bookmark_border_24)
|
resultviewPreviewBookmark.setText(R.string.loading)
|
||||||
//resultviewPreviewBookmark.setText(R.string.loading)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1657,7 +1657,9 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
ioSafe {
|
ioSafe {
|
||||||
initAll()
|
initAll()
|
||||||
// No duplicates (which can happen by registerMainAPI)
|
// No duplicates (which can happen by registerMainAPI)
|
||||||
apis = allProviders.distinctBy { it }
|
apis = synchronized(allProviders) {
|
||||||
|
allProviders.distinctBy { it }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// val navView: BottomNavigationView = findViewById(R.id.nav_view)
|
// val navView: BottomNavigationView = findViewById(R.id.nav_view)
|
||||||
|
|
@ -1965,7 +1967,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
|
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
var providersAndroidManifestString = "Current androidmanifest should be:\n"
|
var providersAndroidManifestString = "Current androidmanifest should be:\n"
|
||||||
allProviders.withLock {
|
synchronized(allProviders) {
|
||||||
for (api in allProviders) {
|
for (api in allProviders) {
|
||||||
providersAndroidManifestString += "<data android:scheme=\"https\" android:host=\"${
|
providersAndroidManifestString += "<data android:scheme=\"https\" android:host=\"${
|
||||||
api.mainUrl.removePrefix(
|
api.mainUrl.removePrefix(
|
||||||
|
|
@ -2018,7 +2020,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (getKey<Boolean>(HAS_DONE_SETUP_KEY, false) != true) {
|
if (getKey(HAS_DONE_SETUP_KEY, false) != true) {
|
||||||
navController.navigate(R.id.navigation_setup_language)
|
navController.navigate(R.id.navigation_setup_language)
|
||||||
// If no plugins bring up extensions screen
|
// If no plugins bring up extensions screen
|
||||||
} else if (PluginManager.getPluginsOnline().isEmpty()
|
} else if (PluginManager.getPluginsOnline().isEmpty()
|
||||||
|
|
|
||||||
|
|
@ -20,10 +20,8 @@ import com.lagradost.cloudstream3.actions.temp.MpvExPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.MpvKtPackage
|
import com.lagradost.cloudstream3.actions.temp.MpvKtPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.MpvKtPreviewPackage
|
import com.lagradost.cloudstream3.actions.temp.MpvKtPreviewPackage
|
||||||
import com.lagradost.cloudstream3.actions.temp.MpvPackage
|
import com.lagradost.cloudstream3.actions.temp.MpvPackage
|
||||||
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
|
||||||
|
|
@ -34,17 +32,18 @@ import com.lagradost.cloudstream3.actions.temp.fcast.FcastAction
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.ui.result.LinkLoadingResult
|
import com.lagradost.cloudstream3.ui.result.LinkLoadingResult
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.atomicListOf
|
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
|
import com.lagradost.cloudstream3.utils.Coroutines.threadSafeListOf
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
||||||
import com.lagradost.cloudstream3.utils.UiText
|
import com.lagradost.cloudstream3.utils.UiText
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import java.util.concurrent.Callable
|
import java.util.concurrent.Callable
|
||||||
import java.util.concurrent.FutureTask
|
import java.util.concurrent.FutureTask
|
||||||
|
import kotlin.reflect.jvm.jvmName
|
||||||
|
|
||||||
object VideoClickActionHolder {
|
object VideoClickActionHolder {
|
||||||
val allVideoClickActions = atomicListOf(
|
val allVideoClickActions = threadSafeListOf(
|
||||||
// Default
|
// Default
|
||||||
PlayInBrowserAction(),
|
PlayInBrowserAction(),
|
||||||
CopyClipboardAction(),
|
CopyClipboardAction(),
|
||||||
|
|
@ -65,8 +64,6 @@ object VideoClickActionHolder {
|
||||||
MpvYTDLPackage(),
|
MpvYTDLPackage(),
|
||||||
MpvKtPackage(),
|
MpvKtPackage(),
|
||||||
MpvKtPreviewPackage(),
|
MpvKtPreviewPackage(),
|
||||||
OnlyPlayer(),
|
|
||||||
MpvRxPackage(),
|
|
||||||
// Always Ask option
|
// Always Ask option
|
||||||
AlwaysAskAction(),
|
AlwaysAskAction(),
|
||||||
// added by plugins
|
// added by plugins
|
||||||
|
|
@ -160,7 +157,7 @@ abstract class VideoClickAction {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun uniqueId() = "$sourcePlugin:${this::class.qualifiedName}"
|
fun uniqueId() = "$sourcePlugin:${this::class.jvmName}"
|
||||||
|
|
||||||
@Throws
|
@Throws
|
||||||
abstract fun shouldShow(context: Context?, video: ResultEpisode?): Boolean
|
abstract fun shouldShow(context: Context?, video: ResultEpisode?): Boolean
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ import android.net.Uri
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.actions.OpenInAppAction
|
import com.lagradost.cloudstream3.actions.OpenInAppAction
|
||||||
import com.lagradost.cloudstream3.BuildConfig
|
import com.lagradost.cloudstream3.BuildConfig
|
||||||
import com.lagradost.cloudstream3.SkipSerializationTest
|
|
||||||
import com.lagradost.cloudstream3.ui.player.ExtractorUri
|
import com.lagradost.cloudstream3.ui.player.ExtractorUri
|
||||||
import com.lagradost.cloudstream3.ui.player.SubtitleData
|
import com.lagradost.cloudstream3.ui.player.SubtitleData
|
||||||
import com.lagradost.cloudstream3.ui.player.SubtitleOrigin
|
import com.lagradost.cloudstream3.ui.player.SubtitleOrigin
|
||||||
|
|
@ -23,10 +22,7 @@ import com.lagradost.cloudstream3.utils.newExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.Qualities
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToLangTagIETF
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToLangTagIETF
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromLanguageToTagIETF
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromLanguageToTagIETF
|
||||||
import com.lagradost.cloudstream3.utils.serializers.UriSerializer
|
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If you want to support CloudStream 3 as an external player, then this shows how to play any video link
|
* If you want to support CloudStream 3 as an external player, then this shows how to play any video link
|
||||||
|
|
@ -53,17 +49,19 @@ class CloudStreamPackage : OpenInAppAction(
|
||||||
const val DURATION_EXTRA: String = "dur" // Duration time in MS (Long)
|
const val DURATION_EXTRA: String = "dur" // Duration time in MS (Long)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
@SkipSerializationTest //.Uri has issues with Jackson
|
|
||||||
data class MinimalVideoLink(
|
data class MinimalVideoLink(
|
||||||
@JsonProperty("uri") @SerialName("uri")
|
@JsonProperty("uri")
|
||||||
@Serializable(with = UriSerializer::class)
|
|
||||||
val uri: Uri?,
|
val uri: Uri?,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("url")
|
||||||
@JsonProperty("mimeType") @SerialName("mimeType") val mimeType: String = "video/mp4",
|
val url: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("mimeType")
|
||||||
@JsonProperty("headers") @SerialName("headers") var headers: Map<String, String> = mapOf(),
|
val mimeType: String = "video/mp4",
|
||||||
@JsonProperty("quality") @SerialName("quality") val quality: Int?,
|
@JsonProperty("name")
|
||||||
|
val name: String?,
|
||||||
|
@JsonProperty("headers")
|
||||||
|
var headers: Map<String, String> = mapOf(),
|
||||||
|
@JsonProperty("quality")
|
||||||
|
val quality: Int?,
|
||||||
) {
|
) {
|
||||||
companion object {
|
companion object {
|
||||||
fun fromExtractor(link: ExtractorLink): MinimalVideoLink = MinimalVideoLink(
|
fun fromExtractor(link: ExtractorLink): MinimalVideoLink = MinimalVideoLink(
|
||||||
|
|
@ -99,12 +97,16 @@ class CloudStreamPackage : OpenInAppAction(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MinimalSubtitleLink(
|
data class MinimalSubtitleLink(
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url")
|
||||||
@JsonProperty("mimeType") @SerialName("mimeType") val mimeType: String = "text/vtt",
|
val url: String,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("mimeType")
|
||||||
@JsonProperty("headers") @SerialName("headers") var headers: Map<String, String> = mapOf(),
|
val mimeType: String = "text/vtt",
|
||||||
|
@JsonProperty("name")
|
||||||
|
val name: String?,
|
||||||
|
@JsonProperty("headers")
|
||||||
|
var headers: Map<String, String> = mapOf(),
|
||||||
) {
|
) {
|
||||||
companion object {
|
companion object {
|
||||||
fun fromSubtitle(sub: SubtitleData): MinimalSubtitleLink = MinimalSubtitleLink(
|
fun fromSubtitle(sub: SubtitleData): MinimalSubtitleLink = MinimalSubtitleLink(
|
||||||
|
|
|
||||||
|
|
@ -1,75 +0,0 @@
|
||||||
package com.lagradost.cloudstream3.actions.temp
|
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import androidx.core.net.toUri
|
|
||||||
import com.lagradost.api.Log
|
|
||||||
import com.lagradost.cloudstream3.actions.OpenInAppAction
|
|
||||||
import com.lagradost.cloudstream3.actions.updateDurationAndPosition
|
|
||||||
import com.lagradost.cloudstream3.isEpisodeBased
|
|
||||||
import com.lagradost.cloudstream3.ui.result.LinkLoadingResult
|
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper.getViewPos
|
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
|
||||||
|
|
||||||
/** https://github.com/Riteshp2001/mpvRx
|
|
||||||
*
|
|
||||||
* https://github.com/Riteshp2001/mpvRx/blob/00e0c5e803ab53e5757426cbf2248448ba1f49bf/app/src/main/java/app/gyrolet/mpvrx/utils/media/MediaUtils.kt#L132
|
|
||||||
* https://github.com/Riteshp2001/mpvRx/blob/00e0c5e803ab53e5757426cbf2248448ba1f49bf/app/src/main/java/app/gyrolet/mpvrx/utils/media/MediaUtils.kt#L56
|
|
||||||
* */
|
|
||||||
class MpvRxPackage : OpenInAppAction(
|
|
||||||
appName = txt("mpvRx"),
|
|
||||||
packageName = "app.gyrolet.mpvrx",
|
|
||||||
intentClass = "app.gyrolet.mpvrx.ui.player.PlayerActivity"
|
|
||||||
) {
|
|
||||||
override val oneSource = true
|
|
||||||
override suspend fun putExtra(
|
|
||||||
context: Context,
|
|
||||||
intent: Intent,
|
|
||||||
video: ResultEpisode,
|
|
||||||
result: LinkLoadingResult,
|
|
||||||
index: Int?
|
|
||||||
) {
|
|
||||||
intent.apply {
|
|
||||||
putExtra("title", video.name)
|
|
||||||
val link = result.links[index!!]
|
|
||||||
val headers = link.headers
|
|
||||||
|
|
||||||
setData(link.url.toUri())
|
|
||||||
if (headers.isNotEmpty()) {
|
|
||||||
// PlayerActivity expects a flat array: [key1, value1, key2, value2, ...]
|
|
||||||
val flat = headers.entries.flatMap { listOf(it.key, it.value) }.toTypedArray()
|
|
||||||
intent.putExtra("headers", flat)
|
|
||||||
}
|
|
||||||
/*val subs = result.subs // disabled due to https://github.com/Riteshp2001/mpvRx/issues/146
|
|
||||||
intent.putExtra("subs", subs.map { it.url.toUri() }.toTypedArray())
|
|
||||||
intent.putExtra(
|
|
||||||
"subs.titles",
|
|
||||||
subs.map { it.name }.toTypedArray(),
|
|
||||||
)
|
|
||||||
intent.putExtra(
|
|
||||||
"subs.langs",
|
|
||||||
subs.map { it.languageCode }.toTypedArray(),
|
|
||||||
)
|
|
||||||
val selected = subs.firstOrNull { it.matchesLanguageCode("en") }?.url?.toUri()
|
|
||||||
intent.putExtra("subs.enable", selected?.let { arrayOf(it) } ?: arrayOf<Uri>() )*/
|
|
||||||
|
|
||||||
if (video.tvType.isEpisodeBased()) {
|
|
||||||
video.season?.let { intent.putExtra("introdb_season", it) }
|
|
||||||
video.episode.let { intent.putExtra("introdb_episode", it) }
|
|
||||||
}
|
|
||||||
|
|
||||||
val position = getViewPos(video.id)?.position
|
|
||||||
if (position != null)
|
|
||||||
putExtra("position", position.toInt())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onResult(activity: Activity, intent: Intent?) {
|
|
||||||
val position = intent?.getIntExtra("position", -1) ?: -1
|
|
||||||
val duration = intent?.getIntExtra("duration", -1) ?: -1
|
|
||||||
Log.d("MPV", "Position: $position, Duration: $duration")
|
|
||||||
updateDurationAndPosition(position.toLong(), duration.toLong())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
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 */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -60,7 +60,7 @@ open class VlcPackage: OpenInAppAction(
|
||||||
intent.putExtra("secure_uri", true)
|
intent.putExtra("secure_uri", true)
|
||||||
intent.putExtra("title", video.name)
|
intent.putExtra("title", video.name)
|
||||||
|
|
||||||
val subsLang = getKey<String>(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
|
val subsLang = getKey(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
|
||||||
result.subs.firstOrNull {
|
result.subs.firstOrNull {
|
||||||
subsLang == it.languageCode
|
subsLang == it.languageCode
|
||||||
}?.let {
|
}?.let {
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,5 @@
|
||||||
package com.lagradost.cloudstream3.actions.temp.fcast
|
package com.lagradost.cloudstream3.actions.temp.fcast
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
// See https://gitlab.com/futo-org/fcast/-/wikis/Protocol-version-1
|
// See https://gitlab.com/futo-org/fcast/-/wikis/Protocol-version-1
|
||||||
enum class Opcode(val value: Byte) {
|
enum class Opcode(val value: Byte) {
|
||||||
None(0),
|
None(0),
|
||||||
|
|
@ -22,18 +18,18 @@ enum class Opcode(val value: Byte) {
|
||||||
Pong(13);
|
Pong(13);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class PlayMessage(
|
data class PlayMessage(
|
||||||
@JsonProperty("container") @SerialName("container") val container: String,
|
val container: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String? = null,
|
val url: String? = null,
|
||||||
@JsonProperty("content") @SerialName("content") val content: String? = null,
|
val content: String? = null,
|
||||||
@JsonProperty("time") @SerialName("time") val time: Double? = null,
|
val time: Double? = null,
|
||||||
@JsonProperty("speed") @SerialName("speed") val speed: Double? = null,
|
val speed: Double? = null,
|
||||||
@JsonProperty("headers") @SerialName("headers") val headers: Map<String, String>? = null,
|
val headers: Map<String, String>? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
data class SeekMessage(
|
data class SeekMessage(
|
||||||
val time: Double,
|
val time: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
data class PlaybackUpdateMessage(
|
data class PlaybackUpdateMessage(
|
||||||
|
|
@ -41,26 +37,26 @@ data class PlaybackUpdateMessage(
|
||||||
val time: Double,
|
val time: Double,
|
||||||
val duration: Double,
|
val duration: Double,
|
||||||
val state: Int,
|
val state: Int,
|
||||||
val speed: Double,
|
val speed: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
data class VolumeUpdateMessage(
|
data class VolumeUpdateMessage(
|
||||||
val generationTime: Long,
|
val generationTime: Long,
|
||||||
val volume: Double,
|
val volume: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
data class PlaybackErrorMessage(
|
data class PlaybackErrorMessage(
|
||||||
val message: String,
|
val message: String
|
||||||
)
|
)
|
||||||
|
|
||||||
data class SetSpeedMessage(
|
data class SetSpeedMessage(
|
||||||
val speed: Double,
|
val speed: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
data class SetVolumeMessage(
|
data class SetVolumeMessage(
|
||||||
val volume: Double,
|
val volume: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
data class VersionMessage(
|
data class VersionMessage(
|
||||||
val version: Long,
|
val version: Long
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ fun Requests.initClient(context: Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Only use ignoreSSL if you know what you are doing*/
|
/** Only use ignoreSSL if you know what you are doing*/
|
||||||
|
@Prerelease
|
||||||
fun Requests.initClient(context: Context, ignoreSSL: Boolean = false) {
|
fun Requests.initClient(context: Context, ignoreSSL: Boolean = false) {
|
||||||
this.baseClient = buildDefaultClient(context, ignoreSSL)
|
this.baseClient = buildDefaultClient(context, ignoreSSL)
|
||||||
}
|
}
|
||||||
|
|
@ -33,6 +34,7 @@ fun buildDefaultClient(context: Context): OkHttpClient {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Only use ignoreSSL if you know what you are doing*/
|
/** Only use ignoreSSL if you know what you are doing*/
|
||||||
|
@Prerelease
|
||||||
fun buildDefaultClient(context: Context, ignoreSSL: Boolean = false): OkHttpClient {
|
fun buildDefaultClient(context: Context, ignoreSSL: Boolean = false): OkHttpClient {
|
||||||
safe { Security.insertProviderAt(Conscrypt.newProvider(), 1) }
|
safe { Security.insertProviderAt(Conscrypt.newProvider(), 1) }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ import com.lagradost.cloudstream3.actions.VideoClickAction
|
||||||
import com.lagradost.cloudstream3.actions.VideoClickActionHolder
|
import com.lagradost.cloudstream3.actions.VideoClickActionHolder
|
||||||
import kotlin.Throws
|
import kotlin.Throws
|
||||||
|
|
||||||
|
|
||||||
abstract class Plugin : BasePlugin() {
|
abstract class Plugin : BasePlugin() {
|
||||||
/**
|
/**
|
||||||
* Called when your Plugin is loaded
|
* Called when your Plugin is loaded
|
||||||
|
|
@ -25,8 +26,10 @@ abstract class Plugin : BasePlugin() {
|
||||||
fun registerVideoClickAction(element: VideoClickAction) {
|
fun registerVideoClickAction(element: VideoClickAction) {
|
||||||
Log.i(PLUGIN_TAG, "Adding ${element.name} VideoClickAction")
|
Log.i(PLUGIN_TAG, "Adding ${element.name} VideoClickAction")
|
||||||
element.sourcePlugin = this.filename
|
element.sourcePlugin = this.filename
|
||||||
|
synchronized(VideoClickActionHolder.allVideoClickActions) {
|
||||||
VideoClickActionHolder.allVideoClickActions.add(element)
|
VideoClickActionHolder.allVideoClickActions.add(element)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This will contain your resources if you specified requiresResources in gradle
|
* This will contain your resources if you specified requiresResources in gradle
|
||||||
|
|
|
||||||
|
|
@ -61,8 +61,6 @@ import com.lagradost.cloudstream3.utils.txt
|
||||||
import dalvik.system.PathClassLoader
|
import dalvik.system.PathClassLoader
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
|
|
@ -75,13 +73,12 @@ const val EXTENSIONS_CHANNEL_NAME = "Extensions"
|
||||||
const val EXTENSIONS_CHANNEL_DESCRIPT = "Extension notification channel"
|
const val EXTENSIONS_CHANNEL_DESCRIPT = "Extension notification channel"
|
||||||
|
|
||||||
// Data class for internal storage
|
// Data class for internal storage
|
||||||
@Serializable
|
|
||||||
data class PluginData(
|
data class PluginData(
|
||||||
@JsonProperty("internalName") @SerialName("internalName") val internalName: String,
|
@JsonProperty("internalName") val internalName: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("url") val url: String?,
|
||||||
@JsonProperty("isOnline") @SerialName("isOnline") val isOnline: Boolean,
|
@JsonProperty("isOnline") val isOnline: Boolean,
|
||||||
@JsonProperty("filePath") @SerialName("filePath") val filePath: String,
|
@JsonProperty("filePath") val filePath: String,
|
||||||
@JsonProperty("version") @SerialName("version") val version: Int,
|
@JsonProperty("version") val version: Int,
|
||||||
) {
|
) {
|
||||||
@WorkerThread
|
@WorkerThread
|
||||||
fun toSitePlugin(): SitePlugin {
|
fun toSitePlugin(): SitePlugin {
|
||||||
|
|
@ -176,11 +173,11 @@ object PluginManager {
|
||||||
|
|
||||||
|
|
||||||
fun getPluginsOnline(): Array<PluginData> {
|
fun getPluginsOnline(): Array<PluginData> {
|
||||||
return getKey<Array<PluginData>>(PLUGINS_KEY) ?: emptyArray()
|
return getKey(PLUGINS_KEY) ?: emptyArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getPluginsLocal(): Array<PluginData> {
|
fun getPluginsLocal(): Array<PluginData> {
|
||||||
return getKey<Array<PluginData>>(PLUGINS_KEY_LOCAL) ?: emptyArray()
|
return getKey(PLUGINS_KEY_LOCAL) ?: emptyArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
private val CLOUD_STREAM_FOLDER =
|
private val CLOUD_STREAM_FOLDER =
|
||||||
|
|
@ -224,17 +221,17 @@ object PluginManager {
|
||||||
// Helper class for updateAllOnlinePluginsAndLoadThem
|
// Helper class for updateAllOnlinePluginsAndLoadThem
|
||||||
data class OnlinePluginData(
|
data class OnlinePluginData(
|
||||||
val savedData: PluginData,
|
val savedData: PluginData,
|
||||||
val onlineData: PluginWrapper,
|
val onlineData: Pair<String, SitePlugin>,
|
||||||
) {
|
) {
|
||||||
val isOutdated =
|
val isOutdated =
|
||||||
onlineData.plugin.version > savedData.version || onlineData.plugin.version == PLUGIN_VERSION_ALWAYS_UPDATE
|
onlineData.second.version > savedData.version || onlineData.second.version == PLUGIN_VERSION_ALWAYS_UPDATE
|
||||||
val isDisabled = onlineData.plugin.status == PROVIDER_STATUS_DOWN
|
val isDisabled = onlineData.second.status == PROVIDER_STATUS_DOWN
|
||||||
|
|
||||||
fun validOnlineData(context: Context): Boolean {
|
fun validOnlineData(context: Context): Boolean {
|
||||||
return getPluginPath(
|
return getPluginPath(
|
||||||
context,
|
context,
|
||||||
savedData.internalName,
|
savedData.internalName,
|
||||||
onlineData.repositoryData.url
|
onlineData.first
|
||||||
).absolutePath == savedData.filePath
|
).absolutePath == savedData.filePath
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -282,19 +279,19 @@ object PluginManager {
|
||||||
?: emptyArray()) + PREBUILT_REPOSITORIES
|
?: emptyArray()) + PREBUILT_REPOSITORIES
|
||||||
|
|
||||||
val onlinePlugins = urls.toList().amap {
|
val onlinePlugins = urls.toList().amap {
|
||||||
getRepoPlugins(it) ?: emptyList()
|
getRepoPlugins(it.url)?.toList() ?: emptyList()
|
||||||
}.flatten().distinctBy { it.plugin.url }
|
}.flatten().distinctBy { it.second.url }
|
||||||
|
|
||||||
// Iterates over all offline plugins, compares to remote repo and returns the plugins which are outdated
|
// Iterates over all offline plugins, compares to remote repo and returns the plugins which are outdated
|
||||||
val outdatedPlugins = getPluginsOnline().map { savedData ->
|
val outdatedPlugins = getPluginsOnline().map { savedData ->
|
||||||
onlinePlugins
|
onlinePlugins
|
||||||
.filter { onlineData -> savedData.internalName == onlineData.plugin.internalName }
|
.filter { onlineData -> savedData.internalName == onlineData.second.internalName }
|
||||||
.map { onlineData ->
|
.map { onlineData ->
|
||||||
OnlinePluginData(savedData, onlineData)
|
OnlinePluginData(savedData, onlineData)
|
||||||
}.filter {
|
}.filter {
|
||||||
it.validOnlineData(activity)
|
it.validOnlineData(activity)
|
||||||
}
|
}
|
||||||
}.flatten().distinctBy { it.onlineData.plugin.url }
|
}.flatten().distinctBy { it.onlineData.second.url }
|
||||||
|
|
||||||
debugPrint {
|
debugPrint {
|
||||||
"Outdated plugins: ${outdatedPlugins.filter { it.isOutdated }}"
|
"Outdated plugins: ${outdatedPlugins.filter { it.isOutdated }}"
|
||||||
|
|
@ -309,14 +306,14 @@ object PluginManager {
|
||||||
} else if (pluginData.isOutdated) {
|
} else if (pluginData.isOutdated) {
|
||||||
downloadPlugin(
|
downloadPlugin(
|
||||||
activity,
|
activity,
|
||||||
pluginData.onlineData.plugin.url,
|
pluginData.onlineData.second.url,
|
||||||
pluginData.onlineData.plugin.fileHash,
|
pluginData.onlineData.second.fileHash,
|
||||||
pluginData.savedData.internalName,
|
pluginData.savedData.internalName,
|
||||||
File(pluginData.savedData.filePath),
|
File(pluginData.savedData.filePath),
|
||||||
true
|
true
|
||||||
).let { success ->
|
).let { success ->
|
||||||
if (success)
|
if (success)
|
||||||
updatedPlugins.add(pluginData.onlineData.plugin.name)
|
updatedPlugins.add(pluginData.onlineData.second.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -359,15 +356,15 @@ object PluginManager {
|
||||||
val urls = (getKey<Array<RepositoryData>>(REPOSITORIES_KEY)
|
val urls = (getKey<Array<RepositoryData>>(REPOSITORIES_KEY)
|
||||||
?: emptyArray()) + PREBUILT_REPOSITORIES
|
?: emptyArray()) + PREBUILT_REPOSITORIES
|
||||||
val onlinePlugins = urls.toList().amap {
|
val onlinePlugins = urls.toList().amap {
|
||||||
getRepoPlugins(it)?.toList() ?: emptyList()
|
getRepoPlugins(it.url)?.toList() ?: emptyList()
|
||||||
}.flatten().distinctBy { it.plugin.url }
|
}.flatten().distinctBy { it.second.url }
|
||||||
|
|
||||||
val providerLang = activity.getApiProviderLangSettings()
|
val providerLang = activity.getApiProviderLangSettings()
|
||||||
//Log.i(TAG, "providerLang => ${providerLang.toJson()}")
|
//Log.i(TAG, "providerLang => ${providerLang.toJson()}")
|
||||||
|
|
||||||
// Iterate online repos and returns not downloaded plugins
|
// Iterate online repos and returns not downloaded plugins
|
||||||
val notDownloadedPlugins = onlinePlugins.mapNotNull { onlineData ->
|
val notDownloadedPlugins = onlinePlugins.mapNotNull { onlineData ->
|
||||||
val sitePlugin = onlineData.plugin
|
val sitePlugin = onlineData.second
|
||||||
val tvtypes = sitePlugin.tvTypes ?: listOf()
|
val tvtypes = sitePlugin.tvTypes ?: listOf()
|
||||||
|
|
||||||
//Don't include empty urls
|
//Don't include empty urls
|
||||||
|
|
@ -379,7 +376,7 @@ object PluginManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Omit already existing plugins
|
//Omit already existing plugins
|
||||||
if (getPluginPath(activity, sitePlugin.internalName, onlineData.repositoryData.url).exists()) {
|
if (getPluginPath(activity, sitePlugin.internalName, onlineData.first).exists()) {
|
||||||
Log.i(TAG, "Skip > ${sitePlugin.internalName}")
|
Log.i(TAG, "Skip > ${sitePlugin.internalName}")
|
||||||
return@mapNotNull null
|
return@mapNotNull null
|
||||||
}
|
}
|
||||||
|
|
@ -421,14 +418,14 @@ object PluginManager {
|
||||||
notDownloadedPlugins.amap { pluginData ->
|
notDownloadedPlugins.amap { pluginData ->
|
||||||
downloadPlugin(
|
downloadPlugin(
|
||||||
activity,
|
activity,
|
||||||
pluginData.onlineData.plugin.url,
|
pluginData.onlineData.second.url,
|
||||||
pluginData.onlineData.plugin.fileHash,
|
pluginData.onlineData.second.fileHash,
|
||||||
pluginData.savedData.internalName,
|
pluginData.savedData.internalName,
|
||||||
pluginData.onlineData.repositoryData.url,
|
pluginData.onlineData.first,
|
||||||
!pluginData.isDisabled
|
!pluginData.isDisabled
|
||||||
).let { success ->
|
).let { success ->
|
||||||
if (success)
|
if (success)
|
||||||
newDownloadPlugins.add(pluginData.onlineData.plugin.name)
|
newDownloadPlugins.add(pluginData.onlineData.second.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -512,9 +509,6 @@ object PluginManager {
|
||||||
val res = dir.mkdirs()
|
val res = dir.mkdirs()
|
||||||
if (!res) {
|
if (!res) {
|
||||||
Log.w(TAG, "Failed to create local directories")
|
Log.w(TAG, "Failed to create local directories")
|
||||||
// We have tried to load local plugins, but exit early.
|
|
||||||
// This needs to be true to prevent the downloader waiting for plugins.
|
|
||||||
loadedLocalPlugins = true
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -616,7 +610,7 @@ object PluginManager {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
InputStreamReader(stream).use { reader ->
|
InputStreamReader(stream).use { reader ->
|
||||||
manifest = parseJson<BasePlugin.Manifest>(reader.readText())
|
manifest = parseJson(reader, BasePlugin.Manifest::class.java)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -657,15 +651,9 @@ object PluginManager {
|
||||||
context.resources.configuration
|
context.resources.configuration
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
synchronized(plugins) {
|
|
||||||
plugins[filePath] = pluginInstance
|
plugins[filePath] = pluginInstance
|
||||||
}
|
|
||||||
synchronized(classLoaders) {
|
|
||||||
classLoaders[loader] = pluginInstance
|
classLoaders[loader] = pluginInstance
|
||||||
}
|
|
||||||
synchronized(urlPlugins) {
|
|
||||||
urlPlugins[data.url ?: filePath] = pluginInstance
|
urlPlugins[data.url ?: filePath] = pluginInstance
|
||||||
}
|
|
||||||
if (pluginInstance is Plugin) {
|
if (pluginInstance is Plugin) {
|
||||||
pluginInstance.load(context)
|
pluginInstance.load(context)
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -701,20 +689,21 @@ object PluginManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove all registered apis
|
// remove all registered apis
|
||||||
|
synchronized(APIHolder.apis) {
|
||||||
APIHolder.apis.filter { api -> api.sourcePlugin == plugin.filename }.forEach {
|
APIHolder.apis.filter { api -> api.sourcePlugin == plugin.filename }.forEach {
|
||||||
removePluginMapping(it)
|
removePluginMapping(it)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
APIHolder.allProviders.withLock {
|
synchronized(APIHolder.allProviders) {
|
||||||
APIHolder.allProviders.removeAll { provider -> provider.sourcePlugin == plugin.filename }
|
APIHolder.allProviders.removeIf { provider: MainAPI -> provider.sourcePlugin == plugin.filename }
|
||||||
}
|
}
|
||||||
|
|
||||||
extractorApis.withLock {
|
synchronized(extractorApis) {
|
||||||
extractorApis.removeAll { provider -> provider.sourcePlugin == plugin.filename }
|
extractorApis.removeIf { provider: ExtractorApi -> provider.sourcePlugin == plugin.filename }
|
||||||
}
|
}
|
||||||
|
|
||||||
VideoClickActionHolder.allVideoClickActions.withLock {
|
synchronized(VideoClickActionHolder.allVideoClickActions) {
|
||||||
VideoClickActionHolder.allVideoClickActions.removeAll { action -> action.sourcePlugin == plugin.filename }
|
VideoClickActionHolder.allVideoClickActions.removeIf { action: VideoClickAction -> action.sourcePlugin == plugin.filename }
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized(classLoaders) {
|
synchronized(classLoaders) {
|
||||||
|
|
@ -838,16 +827,16 @@ object PluginManager {
|
||||||
val urls = (getKey<Array<RepositoryData>>(REPOSITORIES_KEY)
|
val urls = (getKey<Array<RepositoryData>>(REPOSITORIES_KEY)
|
||||||
?: emptyArray()) + PREBUILT_REPOSITORIES
|
?: emptyArray()) + PREBUILT_REPOSITORIES
|
||||||
val onlinePlugins = urls.toList().amap {
|
val onlinePlugins = urls.toList().amap {
|
||||||
getRepoPlugins(it) ?: emptyList()
|
getRepoPlugins(it.url)?.toList() ?: emptyList()
|
||||||
}.flatten().distinctBy { it.plugin.url }
|
}.flatten().distinctBy { it.second.url }
|
||||||
|
|
||||||
val allPlugins = getPluginsOnline().flatMap { savedData ->
|
val allPlugins = getPluginsOnline().flatMap { savedData ->
|
||||||
onlinePlugins
|
onlinePlugins
|
||||||
.filter { it.plugin.internalName == savedData.internalName }
|
.filter { it.second.internalName == savedData.internalName }
|
||||||
.mapNotNull { onlineData ->
|
.mapNotNull { onlineData ->
|
||||||
OnlinePluginData(savedData, onlineData).takeIf { it.validOnlineData(activity) }
|
OnlinePluginData(savedData, onlineData).takeIf { it.validOnlineData(activity) }
|
||||||
}
|
}
|
||||||
}.distinctBy { it.onlineData.plugin.url }
|
}.distinctBy { it.onlineData.second.url }
|
||||||
|
|
||||||
val updatedPlugins = mutableListOf<String>()
|
val updatedPlugins = mutableListOf<String>()
|
||||||
|
|
||||||
|
|
@ -855,7 +844,7 @@ object PluginManager {
|
||||||
if (pluginData.isDisabled) {
|
if (pluginData.isDisabled) {
|
||||||
Log.e(
|
Log.e(
|
||||||
"PluginManager",
|
"PluginManager",
|
||||||
"Unloading disabled plugin: ${pluginData.onlineData.plugin.name}"
|
"Unloading disabled plugin: ${pluginData.onlineData.second.name}"
|
||||||
)
|
)
|
||||||
unloadPlugin(pluginData.savedData.filePath)
|
unloadPlugin(pluginData.savedData.filePath)
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -864,14 +853,14 @@ object PluginManager {
|
||||||
|
|
||||||
if (downloadPlugin(
|
if (downloadPlugin(
|
||||||
activity,
|
activity,
|
||||||
pluginData.onlineData.plugin.url,
|
pluginData.onlineData.second.url,
|
||||||
pluginData.onlineData.plugin.fileHash,
|
pluginData.onlineData.second.fileHash,
|
||||||
pluginData.savedData.internalName,
|
pluginData.savedData.internalName,
|
||||||
existingFile,
|
existingFile,
|
||||||
true
|
true
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
updatedPlugins.add(pluginData.onlineData.plugin.name)
|
updatedPlugins.add(pluginData.onlineData.second.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.also {
|
}.also {
|
||||||
|
|
|
||||||
|
|
@ -16,27 +16,26 @@ import com.lagradost.cloudstream3.plugins.PluginManager.getPluginSanitizedFileNa
|
||||||
import com.lagradost.cloudstream3.plugins.PluginManager.unloadPlugin
|
import com.lagradost.cloudstream3.plugins.PluginManager.unloadPlugin
|
||||||
import com.lagradost.cloudstream3.ui.settings.extensions.REPOSITORIES_KEY
|
import com.lagradost.cloudstream3.ui.settings.extensions.REPOSITORIES_KEY
|
||||||
import com.lagradost.cloudstream3.ui.settings.extensions.RepositoryData
|
import com.lagradost.cloudstream3.ui.settings.extensions.RepositoryData
|
||||||
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.nio.file.AtomicMoveNotSupportedException
|
import java.nio.file.AtomicMoveNotSupportedException
|
||||||
import java.nio.file.Files
|
import java.nio.file.Files
|
||||||
import java.nio.file.StandardCopyOption
|
import java.nio.file.StandardCopyOption
|
||||||
import java.security.MessageDigest
|
import java.security.MessageDigest
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.atomic.AtomicInteger
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Comes with the app, always available in the app, non removable.
|
* Comes with the app, always available in the app, non removable.
|
||||||
*/
|
* */
|
||||||
@Serializable
|
|
||||||
data class Repository(
|
data class Repository(
|
||||||
@JsonProperty("iconUrl") @SerialName("iconUrl") val iconUrl: String?,
|
@JsonProperty("iconUrl") val iconUrl: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
@JsonProperty("description") val description: String?,
|
||||||
@JsonProperty("manifestVersion") @SerialName("manifestVersion") val manifestVersion: Int,
|
@JsonProperty("manifestVersion") val manifestVersion: Int,
|
||||||
@JsonProperty("pluginLists") @SerialName("pluginLists") val pluginLists: List<String>,
|
@JsonProperty("pluginLists") val pluginLists: List<String>
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -45,60 +44,40 @@ data class Repository(
|
||||||
* 1: Ok
|
* 1: Ok
|
||||||
* 2: Slow
|
* 2: Slow
|
||||||
* 3: Beta only
|
* 3: Beta only
|
||||||
*/
|
* */
|
||||||
@Serializable
|
|
||||||
data class SitePlugin(
|
data class SitePlugin(
|
||||||
// Url to the .cs3 file
|
// Url to the .cs3 file
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url") val url: String,
|
||||||
// Status to remotely disable the provider
|
// Status to remotely disable the provider
|
||||||
@JsonProperty("status") @SerialName("status") val status: Int,
|
@JsonProperty("status") val status: Int,
|
||||||
// Integer over 0, any change of this will trigger an auto update
|
// Integer over 0, any change of this will trigger an auto update
|
||||||
@JsonProperty("version") @SerialName("version") val version: Int,
|
@JsonProperty("version") val version: Int,
|
||||||
// Unused currently, used to make the api backwards compatible?
|
// Unused currently, used to make the api backwards compatible?
|
||||||
// Set to 1
|
// Set to 1
|
||||||
@JsonProperty("apiVersion") @SerialName("apiVersion") val apiVersion: Int,
|
@JsonProperty("apiVersion") val apiVersion: Int,
|
||||||
// Name to be shown in app
|
// Name to be shown in app
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
// Name to be referenced internally. Separate to make name and url changes possible
|
// Name to be referenced internally. Separate to make name and url changes possible
|
||||||
@JsonProperty("internalName") @SerialName("internalName") val internalName: String,
|
@JsonProperty("internalName") val internalName: String,
|
||||||
@JsonProperty("authors") @SerialName("authors") val authors: List<String>,
|
@JsonProperty("authors") val authors: List<String>,
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
@JsonProperty("description") val description: String?,
|
||||||
// Might be used to go directly to the plugin repo in the future
|
// Might be used to go directly to the plugin repo in the future
|
||||||
@JsonProperty("repositoryUrl") @SerialName("repositoryUrl") val repositoryUrl: String?,
|
@JsonProperty("repositoryUrl") val repositoryUrl: String?,
|
||||||
// These types are yet to be mapped and used, ignore for now
|
// These types are yet to be mapped and used, ignore for now
|
||||||
@JsonProperty("tvTypes") @SerialName("tvTypes") val tvTypes: List<String>?,
|
@JsonProperty("tvTypes") val tvTypes: List<String>?,
|
||||||
// Most often a language tag like "en" or "zh-TW"
|
// Most often a language tag like "en" or "zh-TW"
|
||||||
@JsonProperty("language") @SerialName("language") val language: String?,
|
@JsonProperty("language") val language: String?,
|
||||||
@JsonProperty("iconUrl") @SerialName("iconUrl") val iconUrl: String?,
|
@JsonProperty("iconUrl") val iconUrl: String?,
|
||||||
// Automatically generated by the gradle plugin
|
// Automatically generated by the gradle plugin
|
||||||
@JsonProperty("fileSize") @SerialName("fileSize") val fileSize: Long?,
|
@JsonProperty("fileSize") val fileSize: Long?,
|
||||||
@JsonProperty("fileHash") @SerialName("fileHash") val fileHash: String?,
|
@JsonProperty("fileHash") val fileHash: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class PluginWrapper(
|
|
||||||
@JsonProperty("repository") @SerialName("repository") val repository: Repository,
|
|
||||||
@JsonProperty("repositoryData") @SerialName("repositoryData") val repositoryData: RepositoryData,
|
|
||||||
@JsonProperty("plugin") @SerialName("plugin") val plugin: SitePlugin
|
|
||||||
) {
|
|
||||||
companion object {
|
|
||||||
private val localRepository = Repository("", "", "", 1, emptyList())
|
|
||||||
private val localRepositoryData = RepositoryData("", "", "")
|
|
||||||
fun getLocalPluginWrapper(plugin: SitePlugin): PluginWrapper {
|
|
||||||
return PluginWrapper(
|
|
||||||
localRepository,
|
|
||||||
localRepositoryData,
|
|
||||||
plugin
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
object RepositoryManager {
|
object RepositoryManager {
|
||||||
const val ONLINE_PLUGINS_FOLDER = "Extensions"
|
const val ONLINE_PLUGINS_FOLDER = "Extensions"
|
||||||
val PREBUILT_REPOSITORIES: Array<RepositoryData> by lazy {
|
val PREBUILT_REPOSITORIES: Array<RepositoryData> by lazy {
|
||||||
getKey<Array<RepositoryData>>("PREBUILT_REPOSITORIES") ?: emptyArray()
|
getKey("PREBUILT_REPOSITORIES") ?: emptyArray()
|
||||||
}
|
}
|
||||||
private val GH_REGEX =
|
private val GH_REGEX =
|
||||||
Regex("^https://raw.githubusercontent.com/([A-Za-z0-9-]+)/([A-Za-z0-9_.-]+)/(.*)$")
|
Regex("^https://raw.githubusercontent.com/([A-Za-z0-9-]+)/([A-Za-z0-9_.-]+)/(.*)$")
|
||||||
|
|
@ -141,36 +120,31 @@ object RepositoryManager {
|
||||||
}
|
}
|
||||||
} else if (fixedUrl.matches("^[a-zA-Z0-9!_-]+$".toRegex())) {
|
} else if (fixedUrl.matches("^[a-zA-Z0-9!_-]+$".toRegex())) {
|
||||||
safeAsync {
|
safeAsync {
|
||||||
if (fixedUrl.startsWith("!")) {
|
app.get("https://cutt.ly/${fixedUrl}", allowRedirects = false).let { it2 ->
|
||||||
val response = app.get("https://py.md/${fixedUrl.removePrefix("!")}", allowRedirects = false)
|
it2.headers["Location"]?.let { url ->
|
||||||
val url = response.headers["Location"] ?: return@safeAsync null
|
|
||||||
if (url.startsWith("https://py.md/404")) return@safeAsync null
|
|
||||||
if (url.removeSuffix("/") == "https://py.md") return@safeAsync null
|
|
||||||
return@safeAsync url
|
|
||||||
} else {
|
|
||||||
val response = app.get("https://cutt.ly/${fixedUrl}", allowRedirects = false)
|
|
||||||
val url = response.headers["Location"] ?: return@safeAsync null
|
|
||||||
if (url.startsWith("https://cutt.ly/404")) return@safeAsync null
|
if (url.startsWith("https://cutt.ly/404")) return@safeAsync null
|
||||||
if (url.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
|
if (url.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
|
||||||
return@safeAsync url
|
return@safeAsync url
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else null
|
} else null
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun parseRepository(url: String): Repository? {
|
suspend fun parseRepository(url: String): Repository? {
|
||||||
return safeAsync {
|
return safeAsync {
|
||||||
// Take manifestVersion and such into account later
|
// Take manifestVersion and such into account later
|
||||||
app.get(convertRawGitUrl(url), cacheTime = 5, cacheUnit = TimeUnit.MINUTES)
|
app.get(convertRawGitUrl(url)).parsedSafe()
|
||||||
.parsedSafe<Repository>()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun parsePlugins(pluginUrls: String): List<SitePlugin> {
|
private suspend fun parsePlugins(pluginUrls: String): List<SitePlugin> {
|
||||||
// Take manifestVersion and such into account later
|
// Take manifestVersion and such into account later
|
||||||
return try {
|
return try {
|
||||||
app.get(convertRawGitUrl(pluginUrls), cacheTime = 5, cacheUnit = TimeUnit.MINUTES)
|
val response = app.get(convertRawGitUrl(pluginUrls))
|
||||||
.parsed<Array<SitePlugin>>().toList()
|
// Normal parsed function not working?
|
||||||
|
// return response.parsedSafe()
|
||||||
|
tryParseJson<Array<SitePlugin>>(response.text)?.toList() ?: emptyList()
|
||||||
} catch (t: Throwable) {
|
} catch (t: Throwable) {
|
||||||
logError(t)
|
logError(t)
|
||||||
emptyList()
|
emptyList()
|
||||||
|
|
@ -179,17 +153,17 @@ object RepositoryManager {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets all plugins from repositories and pairs them with the repository url
|
* Gets all plugins from repositories and pairs them with the repository url
|
||||||
*/
|
* */
|
||||||
suspend fun getRepoPlugins(repositoryData: RepositoryData): List<PluginWrapper>? {
|
suspend fun getRepoPlugins(repositoryUrl: String): List<Pair<String, SitePlugin>>? {
|
||||||
val repo = parseRepository(repositoryData.url) ?: return null
|
val repo = parseRepository(repositoryUrl) ?: return null
|
||||||
val list = repo.pluginLists.amap { url ->
|
return repo.pluginLists.amap { url ->
|
||||||
parsePlugins(url).map {
|
parsePlugins(url).map {
|
||||||
PluginWrapper(repo, repositoryData, it)
|
repositoryUrl to it
|
||||||
}
|
}
|
||||||
}.flatten()
|
}.flatten()
|
||||||
return list
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
suspend fun downloadPluginToFile(
|
suspend fun downloadPluginToFile(
|
||||||
context: Context,
|
context: Context,
|
||||||
pluginUrl: String,
|
pluginUrl: String,
|
||||||
|
|
@ -240,7 +214,7 @@ object RepositoryManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getRepositories(): Array<RepositoryData> {
|
fun getRepositories(): Array<RepositoryData> {
|
||||||
return getKey<Array<RepositoryData>>(REPOSITORIES_KEY) ?: emptyArray()
|
return getKey(REPOSITORIES_KEY) ?: emptyArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't want to read before we write in another thread
|
// Don't want to read before we write in another thread
|
||||||
|
|
@ -255,7 +229,7 @@ object RepositoryManager {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Also deletes downloaded repository plugins
|
* Also deletes downloaded repository plugins
|
||||||
*/
|
* */
|
||||||
suspend fun removeRepository(context: Context, repository: RepositoryData) {
|
suspend fun removeRepository(context: Context, repository: RepositoryData) {
|
||||||
val extensionsDir = File(context.filesDir, ONLINE_PLUGINS_FOLDER)
|
val extensionsDir = File(context.filesDir, ONLINE_PLUGINS_FOLDER)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ package com.lagradost.cloudstream3.plugins
|
||||||
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
||||||
|
|
@ -12,10 +11,9 @@ import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
import com.lagradost.cloudstream3.utils.Coroutines.main
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
object VotingApi {
|
object VotingApi {
|
||||||
|
|
||||||
private const val LOGKEY = "VotingApi"
|
private const val LOGKEY = "VotingApi"
|
||||||
private const val API_DOMAIN = "https://api.countify.xyz"
|
private const val API_DOMAIN = "https://api.countify.xyz"
|
||||||
|
|
||||||
|
|
@ -52,8 +50,8 @@ object VotingApi {
|
||||||
votesCache[pluginUrl] = it
|
votesCache[pluginUrl] = it
|
||||||
}
|
}
|
||||||
|
|
||||||
fun hasVoted(pluginUrl: String): Boolean =
|
fun hasVoted(pluginUrl: String) =
|
||||||
getKey<Boolean>("cs3-votes/${transformUrl(pluginUrl)}") ?: false
|
getKey("cs3-votes/${transformUrl(pluginUrl)}") ?: false
|
||||||
|
|
||||||
fun canVote(pluginUrl: String): Boolean =
|
fun canVote(pluginUrl: String): Boolean =
|
||||||
PluginManager.urlPlugins.contains(pluginUrl)
|
PluginManager.urlPlugins.contains(pluginUrl)
|
||||||
|
|
@ -93,9 +91,8 @@ object VotingApi {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class CountifyResult(
|
private data class CountifyResult(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String? = null,
|
val id: String? = null,
|
||||||
@JsonProperty("count") @SerialName("count") val count: Int? = null,
|
val count: Int? = null
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@ import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.flow.MutableStateFlow
|
import kotlinx.coroutines.flow.MutableStateFlow
|
||||||
import kotlinx.coroutines.flow.StateFlow
|
import kotlinx.coroutines.flow.StateFlow
|
||||||
import kotlinx.coroutines.flow.combine
|
import kotlinx.coroutines.flow.combine
|
||||||
import kotlinx.coroutines.flow.debounce
|
|
||||||
import kotlinx.coroutines.flow.takeWhile
|
import kotlinx.coroutines.flow.takeWhile
|
||||||
import kotlinx.coroutines.flow.update
|
import kotlinx.coroutines.flow.update
|
||||||
import kotlinx.coroutines.flow.updateAndGet
|
import kotlinx.coroutines.flow.updateAndGet
|
||||||
|
|
@ -187,16 +186,6 @@ class DownloadQueueService : Service() {
|
||||||
debugAssert({ timeTaken == null }, { "Downloader startup should not time out" })
|
debugAssert({ timeTaken == null }, { "Downloader startup should not time out" })
|
||||||
|
|
||||||
totalDownloadFlow
|
totalDownloadFlow
|
||||||
.debounce { (instances, queue) ->
|
|
||||||
// Filter away incorrect transient queue states.
|
|
||||||
// For example when we pop the queue and add a download instance there exists a transient state where
|
|
||||||
// there is no queue and no download instances (leading to an early exit)
|
|
||||||
if (instances.isEmpty() && queue.isEmpty()) {
|
|
||||||
500.milliseconds
|
|
||||||
} else {
|
|
||||||
0.milliseconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.takeWhile { (instances, queue) ->
|
.takeWhile { (instances, queue) ->
|
||||||
// Stop if destroyed
|
// Stop if destroyed
|
||||||
isRunning
|
isRunning
|
||||||
|
|
|
||||||
|
|
@ -70,8 +70,7 @@ abstract class AccountManager {
|
||||||
SubtitleRepo(openSubtitlesApi),
|
SubtitleRepo(openSubtitlesApi),
|
||||||
SubtitleRepo(addic7ed),
|
SubtitleRepo(addic7ed),
|
||||||
SubtitleRepo(subDlApi),
|
SubtitleRepo(subDlApi),
|
||||||
PlainAuthRepo(animeSkipApi),
|
PlainAuthRepo(animeSkipApi)
|
||||||
SubtitleRepo(subSourceApi)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
fun updateAccountIds() {
|
fun updateAccountIds() {
|
||||||
|
|
@ -121,8 +120,7 @@ abstract class AccountManager {
|
||||||
val subtitleProviders = arrayOf(
|
val subtitleProviders = arrayOf(
|
||||||
SubtitleRepo(openSubtitlesApi),
|
SubtitleRepo(openSubtitlesApi),
|
||||||
SubtitleRepo(addic7ed),
|
SubtitleRepo(addic7ed),
|
||||||
SubtitleRepo(subDlApi),
|
SubtitleRepo(subDlApi)
|
||||||
SubtitleRepo(subSourceApi)
|
|
||||||
)
|
)
|
||||||
val syncApis = arrayOf(
|
val syncApis = arrayOf(
|
||||||
SyncRepo(malApi),
|
SyncRepo(malApi),
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,50 @@
|
||||||
package com.lagradost.cloudstream3.syncproviders
|
package com.lagradost.cloudstream3.syncproviders
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonAlias
|
import android.util.Base64
|
||||||
|
import androidx.annotation.WorkerThread
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
|
||||||
import com.lagradost.cloudstream3.APIHolder.unixTime
|
import com.lagradost.cloudstream3.APIHolder.unixTime
|
||||||
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
|
import com.lagradost.cloudstream3.ActorData
|
||||||
import com.lagradost.cloudstream3.base64Encode
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
||||||
import com.lagradost.cloudstream3.splitUrlParameters
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.openBrowser
|
||||||
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
||||||
|
import com.lagradost.cloudstream3.CommonActivity.showToast
|
||||||
|
import com.lagradost.cloudstream3.ErrorLoadingException
|
||||||
|
import com.lagradost.cloudstream3.LoadResponse
|
||||||
|
import com.lagradost.cloudstream3.NextAiring
|
||||||
|
import com.lagradost.cloudstream3.R
|
||||||
|
import com.lagradost.cloudstream3.Score
|
||||||
|
import com.lagradost.cloudstream3.SearchQuality
|
||||||
|
import com.lagradost.cloudstream3.SearchResponse
|
||||||
|
import com.lagradost.cloudstream3.ShowStatus
|
||||||
|
import com.lagradost.cloudstream3.TvType
|
||||||
|
import com.lagradost.cloudstream3.mvvm.Resource
|
||||||
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
|
import com.lagradost.cloudstream3.mvvm.safe
|
||||||
|
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
||||||
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.APP_STRING
|
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.APP_STRING
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.NONE_ID
|
||||||
import kotlinx.serialization.SerialName
|
import com.lagradost.cloudstream3.syncproviders.providers.Addic7ed
|
||||||
import kotlinx.serialization.Serializable
|
import com.lagradost.cloudstream3.syncproviders.providers.AniListApi
|
||||||
import kotlinx.serialization.json.JsonNames
|
import com.lagradost.cloudstream3.syncproviders.providers.LocalList
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.MALApi
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.KitsuApi
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.OpenSubtitlesApi
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.SimklApi
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.SubDlApi
|
||||||
|
import com.lagradost.cloudstream3.syncproviders.providers.SubSourceApi
|
||||||
|
import com.lagradost.cloudstream3.ui.SyncWatchType
|
||||||
|
import com.lagradost.cloudstream3.ui.library.ListSorting
|
||||||
|
import com.lagradost.cloudstream3.utils.AppContextUtils.splitQuery
|
||||||
|
import com.lagradost.cloudstream3.utils.Coroutines.threadSafeListOf
|
||||||
|
import com.lagradost.cloudstream3.utils.DataStoreHelper
|
||||||
|
import com.lagradost.cloudstream3.utils.UiText
|
||||||
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
|
import me.xdrop.fuzzywuzzy.FuzzySearch
|
||||||
|
import java.net.URL
|
||||||
import java.security.SecureRandom
|
import java.security.SecureRandom
|
||||||
|
import java.util.Date
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
data class AuthLoginPage(
|
data class AuthLoginPage(
|
||||||
/** The website to open to authenticate */
|
/** The website to open to authenticate */
|
||||||
|
|
@ -20,60 +52,55 @@ data class AuthLoginPage(
|
||||||
/**
|
/**
|
||||||
* State/control code to verify against the redirectUrl to make sure the request is valid.
|
* State/control code to verify against the redirectUrl to make sure the request is valid.
|
||||||
* This parameter will be saved, and then used in AuthAPI::login.
|
* This parameter will be saved, and then used in AuthAPI::login.
|
||||||
*/
|
* */
|
||||||
val payload: String? = null,
|
val payload: String? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AuthToken(
|
data class AuthToken(
|
||||||
/**
|
/**
|
||||||
* This is the general access tokens/api token representing a logged in user.
|
* This is the general access tokens/api token representing a logged in user.
|
||||||
* Access tokens are the thing that applications use to make API requests on behalf of a user.
|
*
|
||||||
*/
|
* `Access tokens are the thing that applications use to make API requests on behalf of a user.`
|
||||||
@JsonProperty("accessToken") @SerialName("accessToken")
|
* */
|
||||||
|
@JsonProperty("accessToken")
|
||||||
val accessToken: String? = null,
|
val accessToken: String? = null,
|
||||||
/** For OAuth a special refresh token is issues to refresh the access token. */
|
/**
|
||||||
@JsonProperty("refreshToken") @SerialName("refreshToken")
|
* For OAuth a special refresh token is issues to refresh the access token.
|
||||||
|
* */
|
||||||
|
@JsonProperty("refreshToken")
|
||||||
val refreshToken: String? = null,
|
val refreshToken: String? = null,
|
||||||
/** In UnixTime (sec) when it expires */
|
/** In UnixTime (sec) when it expires */
|
||||||
@JsonProperty("accessTokenLifetime") @SerialName("accessTokenLifetime")
|
@JsonProperty("accessTokenLifetime")
|
||||||
val accessTokenLifetime: Long? = null,
|
val accessTokenLifetime: Long? = null,
|
||||||
/** In UnixTime (sec) when it expires */
|
/** In UnixTime (sec) when it expires */
|
||||||
@JsonProperty("refreshTokenLifetime") @SerialName("refreshTokenLifetime")
|
@JsonProperty("refreshTokenLifetime")
|
||||||
val refreshTokenLifetime: Long? = null,
|
val refreshTokenLifetime: Long? = null,
|
||||||
/**
|
/** Sometimes AuthToken needs to be customized to store e.g. username/password,
|
||||||
* Sometimes AuthToken needs to be customized to store e.g. username/password,
|
* this acts as a catch all to store text or JSON data. */
|
||||||
* this acts as a catch all to store text or JSON data.
|
@JsonProperty("payload")
|
||||||
*/
|
|
||||||
@JsonProperty("payload") @SerialName("payload")
|
|
||||||
val payload: String? = null,
|
val payload: String? = null,
|
||||||
) {
|
) {
|
||||||
fun isAccessTokenExpired(marginSec: Long = 10L) =
|
fun isAccessTokenExpired(marginSec: Long = 10L) =
|
||||||
accessTokenLifetime != null && unixTime + marginSec >= accessTokenLifetime
|
accessTokenLifetime != null && (System.currentTimeMillis() / 1000) + marginSec >= accessTokenLifetime
|
||||||
|
|
||||||
fun isRefreshTokenExpired(marginSec: Long = 10L) =
|
fun isRefreshTokenExpired(marginSec: Long = 10L) =
|
||||||
refreshTokenLifetime != null && unixTime + marginSec >= refreshTokenLifetime
|
refreshTokenLifetime != null && (System.currentTimeMillis() / 1000) + marginSec >= refreshTokenLifetime
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // JsonNames is an experimental annotation for now
|
|
||||||
@Serializable
|
|
||||||
data class AuthUser(
|
data class AuthUser(
|
||||||
/** Account display-name, can also be email if name does not exist */
|
/** Account display-name, can also be email if name does not exist */
|
||||||
@JsonProperty("name") @SerialName("name")
|
@JsonProperty("name")
|
||||||
val name: String?,
|
val name: String?,
|
||||||
/**
|
/** Unique account identifier,
|
||||||
* Unique account identifier. If a subsequent login is done then it
|
* if a subsequent login is done then it will be refused if another account with the same id exists*/
|
||||||
* will be refused if another account with the same id exists.
|
@JsonProperty("id")
|
||||||
*/
|
|
||||||
@JsonProperty("id") @SerialName("id")
|
|
||||||
val id: Int,
|
val id: Int,
|
||||||
/** Profile picture URL */
|
/** Profile picture URL */
|
||||||
@JsonProperty("profilePicture") @SerialName("profilePicture")
|
@JsonProperty("profilePicture")
|
||||||
val profilePicture: String? = null,
|
val profilePicture: String? = null,
|
||||||
/** Profile picture Headers of the URL */
|
/** Profile picture Headers of the URL */
|
||||||
@JsonProperty("profilePictureHeaders") @JsonAlias("profilePictureHeader")
|
@JsonProperty("profilePictureHeader")
|
||||||
@SerialName("profilePictureHeaders") @JsonNames("profilePictureHeader")
|
val profilePictureHeaders: Map<String, String>? = null
|
||||||
val profilePictureHeaders: Map<String, String>? = null,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -83,11 +110,12 @@ data class AuthUser(
|
||||||
*
|
*
|
||||||
* Any local set/get key should use user.id.toString(),
|
* Any local set/get key should use user.id.toString(),
|
||||||
* as token.accessToken (even hashed) is unsecure, and will rotate.
|
* as token.accessToken (even hashed) is unsecure, and will rotate.
|
||||||
*/
|
* */
|
||||||
@Serializable
|
|
||||||
data class AuthData(
|
data class AuthData(
|
||||||
@JsonProperty("user") @SerialName("user") val user: AuthUser,
|
@JsonProperty("user")
|
||||||
@JsonProperty("token") @SerialName("token") val token: AuthToken,
|
val user: AuthUser,
|
||||||
|
@JsonProperty("token")
|
||||||
|
val token: AuthToken,
|
||||||
)
|
)
|
||||||
|
|
||||||
data class AuthPinData(
|
data class AuthPinData(
|
||||||
|
|
@ -110,12 +138,15 @@ data class AuthLoginRequirement(
|
||||||
)
|
)
|
||||||
|
|
||||||
/** What the user responds to the AuthLoginRequirement */
|
/** What the user responds to the AuthLoginRequirement */
|
||||||
@Serializable
|
|
||||||
data class AuthLoginResponse(
|
data class AuthLoginResponse(
|
||||||
@JsonProperty("password") @SerialName("password") val password: String?,
|
@JsonProperty("password")
|
||||||
@JsonProperty("username") @SerialName("username") val username: String?,
|
val password: String?,
|
||||||
@JsonProperty("email") @SerialName("email") val email: String?,
|
@JsonProperty("username")
|
||||||
@JsonProperty("server") @SerialName("server") val server: String?,
|
val username: String?,
|
||||||
|
@JsonProperty("email")
|
||||||
|
val email: String?,
|
||||||
|
@JsonProperty("server")
|
||||||
|
val server: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
/** Stateless Authentication class used for all personalized content */
|
/** Stateless Authentication class used for all personalized content */
|
||||||
|
|
@ -148,32 +179,17 @@ abstract class AuthAPI {
|
||||||
open val inAppLoginRequirement: AuthLoginRequirement? = null
|
open val inAppLoginRequirement: AuthLoginRequirement? = null
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
@Deprecated(
|
|
||||||
message = "Use APIHolder.unixTime instead",
|
|
||||||
replaceWith = ReplaceWith(
|
|
||||||
expression = "APIHolder.unixTime",
|
|
||||||
imports = ["com.lagradost.cloudstream3.APIHolder"]
|
|
||||||
),
|
|
||||||
level = DeprecationLevel.WARNING,
|
|
||||||
)
|
|
||||||
val unixTime: Long
|
val unixTime: Long
|
||||||
get() = APIHolder.unixTime
|
get() = System.currentTimeMillis() / 1000L
|
||||||
|
|
||||||
@Deprecated(
|
|
||||||
message = "Use APIHolder.unixTimeMS instead",
|
|
||||||
replaceWith = ReplaceWith(
|
|
||||||
expression = "unixTimeMS",
|
|
||||||
imports = ["com.lagradost.cloudstream3.APIHolder.unixTimeMS"]
|
|
||||||
),
|
|
||||||
level = DeprecationLevel.WARNING,
|
|
||||||
)
|
|
||||||
val unixTimeMs: Long
|
val unixTimeMs: Long
|
||||||
get() = unixTimeMS
|
get() = System.currentTimeMillis()
|
||||||
|
|
||||||
fun splitRedirectUrl(redirectUrl: String): Map<String, String> {
|
fun splitRedirectUrl(redirectUrl: String): Map<String, String> {
|
||||||
return splitUrlParameters(
|
return splitQuery(
|
||||||
|
URL(
|
||||||
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
|
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
|
||||||
)
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun generateCodeVerifier(): String {
|
fun generateCodeVerifier(): String {
|
||||||
|
|
@ -182,8 +198,9 @@ abstract class AuthAPI {
|
||||||
val secureRandom = SecureRandom()
|
val secureRandom = SecureRandom()
|
||||||
val codeVerifierBytes = ByteArray(96) // base64 has 6bit per char; (8/6)*96 = 128
|
val codeVerifierBytes = ByteArray(96) // base64 has 6bit per char; (8/6)*96 = 128
|
||||||
secureRandom.nextBytes(codeVerifierBytes)
|
secureRandom.nextBytes(codeVerifierBytes)
|
||||||
return base64Encode(codeVerifierBytes).trimEnd('=')
|
return Base64.encodeToString(codeVerifierBytes, Base64.DEFAULT).trimEnd('=')
|
||||||
.replace("+", "-").replace("/", "_").replace("\n", "")
|
.replace("+", "-")
|
||||||
|
.replace("/", "_").replace("\n", "")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -226,7 +243,7 @@ abstract class AuthAPI {
|
||||||
*
|
*
|
||||||
* Note that this will currently only be called *once* on logout,
|
* Note that this will currently only be called *once* on logout,
|
||||||
* and as such any network issues it will fail silently, and the token will not be revoked.
|
* and as such any network issues it will fail silently, and the token will not be revoked.
|
||||||
*/
|
**/
|
||||||
@Throws
|
@Throws
|
||||||
open suspend fun invalidateToken(token: AuthToken): Nothing = throw NotImplementedError()
|
open suspend fun invalidateToken(token: AuthToken): Nothing = throw NotImplementedError()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,11 @@ package com.lagradost.cloudstream3.syncproviders
|
||||||
|
|
||||||
import androidx.annotation.WorkerThread
|
import androidx.annotation.WorkerThread
|
||||||
import com.lagradost.cloudstream3.APIHolder.unixTime
|
import com.lagradost.cloudstream3.APIHolder.unixTime
|
||||||
|
import com.lagradost.cloudstream3.ErrorLoadingException
|
||||||
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleEntity
|
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleEntity
|
||||||
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleSearch
|
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleSearch
|
||||||
import com.lagradost.cloudstream3.subtitles.SubtitleResource
|
import com.lagradost.cloudstream3.subtitles.SubtitleResource
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.atomicListOf
|
import com.lagradost.cloudstream3.utils.Coroutines.threadSafeListOf
|
||||||
|
|
||||||
/** Stateless safe abstraction of SubtitleAPI */
|
/** Stateless safe abstraction of SubtitleAPI */
|
||||||
class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
|
|
@ -13,8 +14,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
data class SavedSearchResponse(
|
data class SavedSearchResponse(
|
||||||
val unixTime: Long,
|
val unixTime: Long,
|
||||||
val response: List<SubtitleEntity>,
|
val response: List<SubtitleEntity>,
|
||||||
val query: SubtitleSearch,
|
val query: SubtitleSearch
|
||||||
val idPrefix: String,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
data class SavedResourceResponse(
|
data class SavedResourceResponse(
|
||||||
|
|
@ -24,30 +24,26 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
)
|
)
|
||||||
|
|
||||||
// maybe make this a generic struct? right now there is a lot of boilerplate
|
// maybe make this a generic struct? right now there is a lot of boilerplate
|
||||||
private val searchCache = atomicListOf<SavedSearchResponse>()
|
private val searchCache = threadSafeListOf<SavedSearchResponse>()
|
||||||
private var searchCacheIndex: Int = 0
|
private var searchCacheIndex: Int = 0
|
||||||
private val resourceCache = atomicListOf<SavedResourceResponse>()
|
private val resourceCache = threadSafeListOf<SavedResourceResponse>()
|
||||||
private var resourceCacheIndex: Int = 0
|
private var resourceCacheIndex: Int = 0
|
||||||
const val CACHE_SIZE = 20
|
const val CACHE_SIZE = 20
|
||||||
}
|
}
|
||||||
|
|
||||||
@WorkerThread
|
@WorkerThread
|
||||||
suspend fun resource(data: SubtitleEntity): Result<SubtitleResource> = runCatching {
|
suspend fun resource(data: SubtitleEntity): Result<SubtitleResource> = runCatching {
|
||||||
val cached = resourceCache.withLock {
|
synchronized(resourceCache) {
|
||||||
var found: SubtitleResource? = null
|
|
||||||
for (item in resourceCache) {
|
for (item in resourceCache) {
|
||||||
// 20 min save
|
// 20 min save
|
||||||
if (item.query == data && (unixTime - item.unixTime) < 60 * 20) {
|
if (item.query == data && (unixTime - item.unixTime) < 60 * 20) {
|
||||||
found = item.response
|
return@runCatching item.response
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
found
|
|
||||||
}
|
}
|
||||||
if (cached != null) return@runCatching cached
|
|
||||||
|
|
||||||
val returnValue = api.resource(freshAuth(), data)
|
val returnValue = api.resource(freshAuth(), data)
|
||||||
resourceCache.withLock {
|
synchronized(resourceCache) {
|
||||||
val add = SavedResourceResponse(unixTime, returnValue, data)
|
val add = SavedResourceResponse(unixTime, returnValue, data)
|
||||||
if (resourceCache.size > CACHE_SIZE) {
|
if (resourceCache.size > CACHE_SIZE) {
|
||||||
resourceCache[resourceCacheIndex] = add // rolling cache
|
resourceCache[resourceCacheIndex] = add // rolling cache
|
||||||
|
|
@ -62,25 +58,22 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
@WorkerThread
|
@WorkerThread
|
||||||
suspend fun search(query: SubtitleSearch): Result<List<SubtitleEntity>> {
|
suspend fun search(query: SubtitleSearch): Result<List<SubtitleEntity>> {
|
||||||
return runCatching {
|
return runCatching {
|
||||||
val cached = searchCache.withLock {
|
synchronized(searchCache) {
|
||||||
var found: List<SubtitleEntity>? = null
|
|
||||||
for (item in searchCache) {
|
for (item in searchCache) {
|
||||||
// 120 min save
|
// 120 min save
|
||||||
if (item.idPrefix == idPrefix && item.query == query && (unixTime - item.unixTime) < 60 * 120) {
|
if (item.query == query && (unixTime - item.unixTime) < 60 * 120) {
|
||||||
found = item.response
|
return@runCatching item.response
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
found
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cached != null) return@runCatching cached
|
val returnValue =
|
||||||
val returnValue = api.search(freshAuth(), query) ?: emptyList()
|
api.search(freshAuth(), query) ?: emptyList()
|
||||||
|
|
||||||
// only cache valid return values
|
// only cache valid return values
|
||||||
if (returnValue.isNotEmpty()) {
|
if (returnValue.isNotEmpty()) {
|
||||||
val add = SavedSearchResponse(unixTime, returnValue, query, idPrefix)
|
val add = SavedSearchResponse(unixTime, returnValue, query)
|
||||||
searchCache.withLock {
|
synchronized(searchCache) {
|
||||||
if (searchCache.size > CACHE_SIZE) {
|
if (searchCache.size > CACHE_SIZE) {
|
||||||
searchCache[searchCacheIndex] = add // rolling cache
|
searchCache[searchCacheIndex] = add // rolling cache
|
||||||
searchCacheIndex = (searchCacheIndex + 1) % CACHE_SIZE
|
searchCacheIndex = (searchCacheIndex + 1) % CACHE_SIZE
|
||||||
|
|
@ -93,3 +86,4 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@ import com.lagradost.cloudstream3.ShowStatus
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.ui.SyncWatchType
|
import com.lagradost.cloudstream3.ui.SyncWatchType
|
||||||
import com.lagradost.cloudstream3.ui.library.ListSorting
|
import com.lagradost.cloudstream3.ui.library.ListSorting
|
||||||
import com.lagradost.cloudstream3.utils.Levenshtein
|
|
||||||
import com.lagradost.cloudstream3.utils.UiText
|
import com.lagradost.cloudstream3.utils.UiText
|
||||||
|
import me.xdrop.fuzzywuzzy.FuzzySearch
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -138,7 +138,7 @@ abstract class SyncAPI : AuthAPI() {
|
||||||
ListSorting.Query ->
|
ListSorting.Query ->
|
||||||
if (query != null) {
|
if (query != null) {
|
||||||
items.sortedBy {
|
items.sortedBy {
|
||||||
-Levenshtein.partialRatio(
|
-FuzzySearch.partialRatio(
|
||||||
query.lowercase(), it.name.lowercase()
|
query.lowercase(), it.name.lowercase()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,6 @@ import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.Actor
|
import com.lagradost.cloudstream3.Actor
|
||||||
import com.lagradost.cloudstream3.ActorData
|
import com.lagradost.cloudstream3.ActorData
|
||||||
import com.lagradost.cloudstream3.ActorRole
|
import com.lagradost.cloudstream3.ActorRole
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
|
||||||
import com.lagradost.cloudstream3.BuildConfig
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
||||||
import com.lagradost.cloudstream3.ErrorLoadingException
|
import com.lagradost.cloudstream3.ErrorLoadingException
|
||||||
|
|
@ -27,10 +25,9 @@ import com.lagradost.cloudstream3.ui.library.ListSorting
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
||||||
|
import com.lagradost.cloudstream3.utils.DataStore.toKotlinObject
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper.toYear
|
import com.lagradost.cloudstream3.utils.DataStoreHelper.toYear
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.net.URLEncoder
|
import java.net.URLEncoder
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
|
|
@ -38,7 +35,7 @@ class AniListApi : SyncAPI() {
|
||||||
override var name = "AniList"
|
override var name = "AniList"
|
||||||
override val idPrefix = "anilist"
|
override val idPrefix = "anilist"
|
||||||
|
|
||||||
private val key = BuildConfig.ANILIST_KEY
|
val key = "6871"
|
||||||
override val redirectUrlIdentifier = "anilistlogin"
|
override val redirectUrlIdentifier = "anilistlogin"
|
||||||
override var requireLibraryRefresh = true
|
override var requireLibraryRefresh = true
|
||||||
override val hasOAuth2 = true
|
override val hasOAuth2 = true
|
||||||
|
|
@ -53,10 +50,9 @@ 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"]
|
accessToken = sanitizer["access_token"] ?: throw ErrorLoadingException("No access token"),
|
||||||
?: throw ErrorLoadingException("No access token"),
|
//refreshToken = sanitizer["refresh_token"],
|
||||||
// refreshToken = sanitizer["refresh_token"],
|
accessTokenLifetime = unixTime + sanitizer["expires_in"]!!.toLong(),
|
||||||
accessTokenLifetime = APIHolder.unixTime + sanitizer["expires_in"]!!.toLong(),
|
|
||||||
)
|
)
|
||||||
return token
|
return token
|
||||||
}
|
}
|
||||||
|
|
@ -82,12 +78,13 @@ class AniListApi : SyncAPI() {
|
||||||
override fun urlToId(url: String): String? =
|
override fun urlToId(url: String): String? =
|
||||||
url.removePrefix("$mainUrl/anime/").removeSuffix("/")
|
url.removePrefix("$mainUrl/anime/").removeSuffix("/")
|
||||||
|
|
||||||
|
|
||||||
private fun getUrlFromId(id: Int): String {
|
private fun getUrlFromId(id: Int): String {
|
||||||
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(query) ?: return null
|
val data = searchShows(name) ?: 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,
|
||||||
|
|
@ -99,16 +96,17 @@ 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
|
||||||
|
|
||||||
return SyncAPI.SyncResult(
|
return SyncAPI.SyncResult(
|
||||||
season.id.toString(),
|
season.id.toString(),
|
||||||
nextAiring = season.nextAiringEpisode?.let {
|
nextAiring = season.nextAiringEpisode?.let {
|
||||||
NextAiring(
|
NextAiring(
|
||||||
it.episode ?: return@let null,
|
it.episode ?: return@let null,
|
||||||
(it.timeUntilAiring ?: return@let null) + APIHolder.unixTime
|
(it.timeUntilAiring ?: return@let null) + unixTime
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
title = season.title?.userPreferred,
|
title = season.title?.userPreferred,
|
||||||
|
|
@ -156,13 +154,14 @@ class AniListApi : SyncAPI() {
|
||||||
"youtube" -> listOf("https://www.youtube.com/watch?v=${season.trailer.id}")
|
"youtube" -> listOf("https://www.youtube.com/watch?v=${season.trailer.id}")
|
||||||
else -> null
|
else -> null
|
||||||
}
|
}
|
||||||
// TODO REST
|
//TODO REST
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
return SyncAPI.SyncStatus(
|
return SyncAPI.SyncStatus(
|
||||||
score = Score.from100(data.score),
|
score = Score.from100(data.score),
|
||||||
watchedEpisodes = data.progress,
|
watchedEpisodes = data.progress,
|
||||||
|
|
@ -258,24 +257,24 @@ class AniListApi : SyncAPI() {
|
||||||
val data =
|
val data =
|
||||||
mapOf(
|
mapOf(
|
||||||
"query" to query,
|
"query" to query,
|
||||||
"variables" to Variables(
|
"variables" to
|
||||||
search = name,
|
mapOf(
|
||||||
page = 1,
|
"search" to name,
|
||||||
type = "ANIME",
|
"page" to 1,
|
||||||
|
"type" to "ANIME"
|
||||||
).toJson()
|
).toJson()
|
||||||
)
|
)
|
||||||
|
|
||||||
val res = app.post(
|
val res = app.post(
|
||||||
"https://graphql.anilist.co/",
|
"https://graphql.anilist.co/",
|
||||||
// headers = mapOf(),
|
//headers = mapOf(),
|
||||||
data = data, // (if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
|
data = data,//(if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
|
||||||
timeout = 5000 // REASONABLE TIMEOUT
|
timeout = 5000 // REASONABLE TIMEOUT
|
||||||
).text.replace("\\", "")
|
).text.replace("\\", "")
|
||||||
return parseJson<GetSearchRoot>(res)
|
return res.toKotlinObject()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -298,7 +297,7 @@ class AniListApi : SyncAPI() {
|
||||||
.replace(")", "\\)")
|
.replace(")", "\\)")
|
||||||
})"""
|
})"""
|
||||||
)
|
)
|
||||||
// println("NAME $name NEW NAME ${name.replace(blackListRegex, "")}")
|
//println("NAME $name NEW NAME ${name.replace(blackListRegex, "")}")
|
||||||
val shows = searchShows(name.replace(blackListRegex, ""))
|
val shows = searchShows(name.replace(blackListRegex, ""))
|
||||||
|
|
||||||
shows?.data?.page?.media?.find {
|
shows?.data?.page?.media?.find {
|
||||||
|
|
@ -456,11 +455,11 @@ class AniListApi : SyncAPI() {
|
||||||
cacheTime = 0,
|
cacheTime = 0,
|
||||||
).text
|
).text
|
||||||
|
|
||||||
return tryParseJson<SeasonResponse>(data) ?: throw ErrorLoadingException("Error parsing $data")
|
return tryParseJson(data) ?: throw ErrorLoadingException("Error parsing $data")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
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)
|
||||||
|
|
@ -504,9 +503,10 @@ class AniListApi : SyncAPI() {
|
||||||
type = AniListStatusType.None,
|
type = AniListStatusType.None,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
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(
|
||||||
|
|
@ -519,84 +519,71 @@ class AniListApi : SyncAPI() {
|
||||||
q,
|
q,
|
||||||
"UTF-8"
|
"UTF-8"
|
||||||
)
|
)
|
||||||
), // (if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
|
), //(if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
|
||||||
timeout = 5 // REASONABLE TIMEOUT
|
timeout = 5 // REASONABLE TIMEOUT
|
||||||
).text.replace("\\/", "/")
|
).text.replace("\\/", "/")
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Variables(
|
|
||||||
@JsonProperty("search") @SerialName("search") val search: String,
|
|
||||||
@JsonProperty("page") @SerialName("page") val page: Int,
|
|
||||||
@JsonProperty("type") @SerialName("type") val type: String,
|
|
||||||
)
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaRecommendation(
|
data class MediaRecommendation(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("title") @SerialName("title") val title: Title?,
|
@JsonProperty("title") val title: Title?,
|
||||||
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
|
@JsonProperty("idMal") val idMal: Int?,
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage?,
|
@JsonProperty("coverImage") val coverImage: CoverImage?,
|
||||||
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
|
@JsonProperty("averageScore") val averageScore: Int?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class FullAnilistList(
|
data class FullAnilistList(
|
||||||
@JsonProperty("data") @SerialName("data") val data: Data?,
|
@JsonProperty("data") val data: Data?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CompletedAt(
|
data class CompletedAt(
|
||||||
@JsonProperty("year") @SerialName("year") val year: Int,
|
@JsonProperty("year") val year: Int,
|
||||||
@JsonProperty("month") @SerialName("month") val month: Int,
|
@JsonProperty("month") val month: Int,
|
||||||
@JsonProperty("day") @SerialName("day") val day: Int,
|
@JsonProperty("day") val day: Int
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class StartedAt(
|
data class StartedAt(
|
||||||
@JsonProperty("year") @SerialName("year") val year: String?,
|
@JsonProperty("year") val year: String?,
|
||||||
@JsonProperty("month") @SerialName("month") val month: String?,
|
@JsonProperty("month") val month: String?,
|
||||||
@JsonProperty("day") @SerialName("day") val day: String?,
|
@JsonProperty("day") val day: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Title(
|
data class Title(
|
||||||
@JsonProperty("english") @SerialName("english") val english: String?,
|
@JsonProperty("english") val english: String?,
|
||||||
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
|
@JsonProperty("romaji") val romaji: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CoverImage(
|
data class CoverImage(
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("extraLarge") @SerialName("extraLarge") val extraLarge: String?,
|
@JsonProperty("extraLarge") val extraLarge: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Media(
|
data class Media(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
|
@JsonProperty("idMal") val idMal: Int?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: String?,
|
@JsonProperty("season") val season: String?,
|
||||||
@JsonProperty("seasonYear") @SerialName("seasonYear") val seasonYear: Int,
|
@JsonProperty("seasonYear") val seasonYear: Int,
|
||||||
@JsonProperty("format") @SerialName("format") val format: String?,
|
@JsonProperty("format") val format: String?,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int,
|
//@JsonProperty("source") val source: String,
|
||||||
@JsonProperty("title") @SerialName("title") val title: Title,
|
@JsonProperty("episodes") val episodes: Int,
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
@JsonProperty("title") val title: Title,
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage,
|
@JsonProperty("description") val description: String?,
|
||||||
@JsonProperty("synonyms") @SerialName("synonyms") val synonyms: List<String>,
|
@JsonProperty("coverImage") val coverImage: CoverImage,
|
||||||
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
@JsonProperty("synonyms") val synonyms: List<String>,
|
||||||
|
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Entries(
|
data class Entries(
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("completedAt") @SerialName("completedAt") val completedAt: CompletedAt,
|
@JsonProperty("completedAt") val completedAt: CompletedAt,
|
||||||
@JsonProperty("startedAt") @SerialName("startedAt") val startedAt: StartedAt,
|
@JsonProperty("startedAt") val startedAt: StartedAt,
|
||||||
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: Int,
|
@JsonProperty("updatedAt") val updatedAt: Int,
|
||||||
@JsonProperty("progress") @SerialName("progress") val progress: Int,
|
@JsonProperty("progress") val progress: Int,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int,
|
@JsonProperty("score") val score: Int,
|
||||||
@JsonProperty("private") @SerialName("private") val private: Boolean,
|
@JsonProperty("private") val private: Boolean,
|
||||||
@JsonProperty("media") @SerialName("media") val media: Media,
|
@JsonProperty("media") val media: Media
|
||||||
) {
|
) {
|
||||||
fun toLibraryItem(): SyncAPI.LibraryItem {
|
fun toLibraryItem(): SyncAPI.LibraryItem {
|
||||||
return SyncAPI.LibraryItem(
|
return SyncAPI.LibraryItem(
|
||||||
|
|
@ -623,20 +610,17 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Lists(
|
data class Lists(
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("entries") @SerialName("entries") val entries: List<Entries>,
|
@JsonProperty("entries") val entries: List<Entries>
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaListCollection(
|
data class MediaListCollection(
|
||||||
@JsonProperty("lists") @SerialName("lists") val lists: List<Lists>,
|
@JsonProperty("lists") val lists: List<Lists>
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Data(
|
data class Data(
|
||||||
@JsonProperty("MediaListCollection") @SerialName("MediaListCollection") val mediaListCollection: MediaListCollection,
|
@JsonProperty("MediaListCollection") val mediaListCollection: MediaListCollection
|
||||||
)
|
)
|
||||||
|
|
||||||
private suspend fun getAniListAnimeListSmart(auth: AuthData): Array<Lists>? {
|
private suspend fun getAniListAnimeListSmart(auth: AuthData): Array<Lists>? {
|
||||||
|
|
@ -654,7 +638,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 ->
|
||||||
|
|
@ -682,9 +666,10 @@ 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"
|
||||||
|
|
||||||
val query = """
|
val query = """
|
||||||
query (${'$'}userID: Int = $userID, ${'$'}MEDIA: MediaType = $mediaType) {
|
query (${'$'}userID: Int = $userID, ${'$'}MEDIA: MediaType = $mediaType) {
|
||||||
MediaListCollection (userId: ${'$'}userID, type: ${'$'}MEDIA) {
|
MediaListCollection (userId: ${'$'}userID, type: ${'$'}MEDIA) {
|
||||||
|
|
@ -726,10 +711,10 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
val text = postApi(auth.token, query)
|
val text = postApi(auth.token, query)
|
||||||
return tryParseJson<FullAnilistList>(text)
|
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 {
|
||||||
|
|
@ -747,29 +732,19 @@ class AniListApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Used to query a saved MediaItem on the list to get the id for removal */
|
/** Used to query a saved MediaItem on the list to get the id for removal */
|
||||||
@Serializable
|
data class MediaListItemRoot(@JsonProperty("data") val data: MediaListItem? = null)
|
||||||
data class MediaListItemRoot(
|
data class MediaListItem(@JsonProperty("MediaList") val mediaList: MediaListId? = null)
|
||||||
@JsonProperty("data") @SerialName("data") val data: MediaListItem? = null,
|
data class MediaListId(@JsonProperty("id") val id: Long? = null)
|
||||||
)
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaListItem(
|
|
||||||
@JsonProperty("MediaList") @SerialName("MediaList") val mediaList: MediaListId? = null,
|
|
||||||
)
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaListId(
|
|
||||||
@JsonProperty("id") @SerialName("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?,
|
||||||
progress: Int?
|
progress: Int?
|
||||||
): Boolean {
|
): Boolean {
|
||||||
val userID = auth.user.id
|
val userID = auth.user.id
|
||||||
|
|
||||||
val q =
|
val q =
|
||||||
// Delete item if status type is None
|
// Delete item if status type is None
|
||||||
if (type == AniListStatusType.None) {
|
if (type == AniListStatusType.None) {
|
||||||
|
|
@ -811,7 +786,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 {
|
||||||
|
|
@ -861,356 +836,305 @@ class AniListApi : SyncAPI() {
|
||||||
return seasons.toList()
|
return seasons.toList()
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonResponse(
|
data class SeasonResponse(
|
||||||
@JsonProperty("data") @SerialName("data") val data: SeasonData,
|
@JsonProperty("data") val data: SeasonData,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonData(
|
data class SeasonData(
|
||||||
@JsonProperty("Media") @SerialName("Media") val media: SeasonMedia,
|
@JsonProperty("Media") val media: SeasonMedia,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class RecommendedMedia(
|
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
|
||||||
@JsonProperty("title") @SerialName("title") val title: MediaTitle?,
|
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: MediaCoverImage?,
|
|
||||||
)
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CharacterMedia(
|
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
|
||||||
@JsonProperty("title") @SerialName("title") val title: MediaTitle?,
|
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: MediaCoverImage?,
|
|
||||||
)
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonMedia(
|
data class SeasonMedia(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: MediaTitle?,
|
@JsonProperty("title") val title: MediaTitle?,
|
||||||
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
|
@JsonProperty("idMal") val idMal: Int?,
|
||||||
@JsonProperty("format") @SerialName("format") val format: String?,
|
@JsonProperty("format") val format: String?,
|
||||||
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
||||||
@JsonProperty("relations") @SerialName("relations") val relations: SeasonEdges?,
|
@JsonProperty("relations") val relations: SeasonEdges?,
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: MediaCoverImage?,
|
@JsonProperty("coverImage") val coverImage: MediaCoverImage?,
|
||||||
@JsonProperty("duration") @SerialName("duration") val duration: Int?,
|
@JsonProperty("duration") val duration: Int?,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
|
@JsonProperty("episodes") val episodes: Int?,
|
||||||
@JsonProperty("genres") @SerialName("genres") val genres: List<String>?,
|
@JsonProperty("genres") val genres: List<String>?,
|
||||||
@JsonProperty("synonyms") @SerialName("synonyms") val synonyms: List<String>?,
|
@JsonProperty("synonyms") val synonyms: List<String>?,
|
||||||
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
|
@JsonProperty("averageScore") val averageScore: Int?,
|
||||||
@JsonProperty("isAdult") @SerialName("isAdult") val isAdult: Boolean?,
|
@JsonProperty("isAdult") val isAdult: Boolean?,
|
||||||
@JsonProperty("trailer") @SerialName("trailer") val trailer: MediaTrailer?,
|
@JsonProperty("trailer") val trailer: MediaTrailer?,
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
@JsonProperty("description") val description: String?,
|
||||||
@JsonProperty("characters") @SerialName("characters") val characters: CharacterConnection?,
|
@JsonProperty("characters") val characters: CharacterConnection?,
|
||||||
@JsonProperty("recommendations") @SerialName("recommendations") val recommendations: RecommendationConnection?,
|
@JsonProperty("recommendations") val recommendations: RecommendationConnection?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class RecommendationConnection(
|
data class RecommendationConnection(
|
||||||
@JsonProperty("edges") @SerialName("edges") val edges: List<RecommendationEdge> = emptyList(),
|
@JsonProperty("edges") val edges: List<RecommendationEdge> = emptyList(),
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Recommendation> = emptyList(),
|
@JsonProperty("nodes") val nodes: List<Recommendation> = emptyList(),
|
||||||
|
//@JsonProperty("pageInfo") val pageInfo: PageInfo,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class RecommendationEdge(
|
data class RecommendationEdge(
|
||||||
@JsonProperty("node") @SerialName("node") val node: Recommendation,
|
//@JsonProperty("rating") val rating: Int,
|
||||||
|
@JsonProperty("node") val node: Recommendation,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Recommendation(
|
data class Recommendation(
|
||||||
@JsonProperty("mediaRecommendation") @SerialName("mediaRecommendation") val mediaRecommendation: RecommendedMedia?,
|
val id: Long,
|
||||||
|
@JsonProperty("mediaRecommendation") val mediaRecommendation: SeasonMedia?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CharacterName(
|
data class CharacterName(
|
||||||
@JsonProperty("name") @SerialName("name") val first: String?,
|
@JsonProperty("name") val first: String?,
|
||||||
@JsonProperty("middle") @SerialName("middle") val middle: String?,
|
@JsonProperty("middle") val middle: String?,
|
||||||
@JsonProperty("last") @SerialName("last") val last: String?,
|
@JsonProperty("last") val last: String?,
|
||||||
@JsonProperty("full") @SerialName("full") val full: String?,
|
@JsonProperty("full") val full: String?,
|
||||||
@JsonProperty("native") @SerialName("native") val native: String?,
|
@JsonProperty("native") val native: String?,
|
||||||
@JsonProperty("alternative") @SerialName("alternative") val alternative: List<String>?,
|
@JsonProperty("alternative") val alternative: List<String>?,
|
||||||
@JsonProperty("alternativeSpoiler") @SerialName("alternativeSpoiler") val alternativeSpoiler: List<String>?,
|
@JsonProperty("alternativeSpoiler") val alternativeSpoiler: List<String>?,
|
||||||
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
|
@JsonProperty("userPreferred") val userPreferred: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CharacterImage(
|
data class CharacterImage(
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Character(
|
data class Character(
|
||||||
@JsonProperty("name") @SerialName("name") val name: CharacterName?,
|
@JsonProperty("name") val name: CharacterName?,
|
||||||
@JsonProperty("age") @SerialName("age") val age: String?,
|
@JsonProperty("age") val age: String?,
|
||||||
@JsonProperty("image") @SerialName("image") val image: CharacterImage?,
|
@JsonProperty("image") val image: CharacterImage?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CharacterEdge(
|
data class CharacterEdge(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
/**
|
/**
|
||||||
* MAIN - A primary character role in the media
|
MAIN
|
||||||
* SUPPORTING - A supporting character role in the media
|
A primary character role in the media
|
||||||
* BACKGROUND - A background character in the media
|
|
||||||
|
SUPPORTING
|
||||||
|
A supporting character role in the media
|
||||||
|
|
||||||
|
BACKGROUND
|
||||||
|
A background character in the media
|
||||||
*/
|
*/
|
||||||
@JsonProperty("role") @SerialName("role") val role: String?,
|
@JsonProperty("role") val role: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("name") val name: String?,
|
||||||
@JsonProperty("voiceActors") @SerialName("voiceActors") val voiceActors: List<Staff>?,
|
@JsonProperty("voiceActors") val voiceActors: List<Staff>?,
|
||||||
@JsonProperty("favouriteOrder") @SerialName("favouriteOrder") val favouriteOrder: Int?,
|
@JsonProperty("favouriteOrder") val favouriteOrder: Int?,
|
||||||
@JsonProperty("media") @SerialName("media") val media: List<CharacterMedia>?,
|
@JsonProperty("media") val media: List<SeasonMedia>?,
|
||||||
@JsonProperty("node") @SerialName("node") val node: Character?,
|
@JsonProperty("node") val node: Character?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class StaffImage(
|
data class StaffImage(
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class StaffName(
|
data class StaffName(
|
||||||
@JsonProperty("name") @SerialName("name") val first: String?,
|
@JsonProperty("name") val first: String?,
|
||||||
@JsonProperty("middle") @SerialName("middle") val middle: String?,
|
@JsonProperty("middle") val middle: String?,
|
||||||
@JsonProperty("last") @SerialName("last") val last: String?,
|
@JsonProperty("last") val last: String?,
|
||||||
@JsonProperty("full") @SerialName("full") val full: String?,
|
@JsonProperty("full") val full: String?,
|
||||||
@JsonProperty("native") @SerialName("native") val native: String?,
|
@JsonProperty("native") val native: String?,
|
||||||
@JsonProperty("alternative") @SerialName("alternative") val alternative: List<String>?,
|
@JsonProperty("alternative") val alternative: List<String>?,
|
||||||
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
|
@JsonProperty("userPreferred") val userPreferred: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Staff(
|
data class Staff(
|
||||||
@JsonProperty("image") @SerialName("image") val image: StaffImage?,
|
@JsonProperty("image") val image: StaffImage?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: StaffName?,
|
@JsonProperty("name") val name: StaffName?,
|
||||||
@JsonProperty("age") @SerialName("age") val age: Int?,
|
@JsonProperty("age") val age: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CharacterConnection(
|
data class CharacterConnection(
|
||||||
@JsonProperty("edges") @SerialName("edges") val edges: List<CharacterEdge>?,
|
@JsonProperty("edges") val edges: List<CharacterEdge>?,
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Character>?,
|
@JsonProperty("nodes") val nodes: List<Character>?,
|
||||||
|
//@JsonProperty("pageInfo") pageInfo: PageInfo
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaTrailer(
|
data class MediaTrailer(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String?,
|
@JsonProperty("id") val id: String?,
|
||||||
@JsonProperty("site") @SerialName("site") val site: String?,
|
@JsonProperty("site") val site: String?,
|
||||||
@JsonProperty("thumbnail") @SerialName("thumbnail") val thumbnail: String?,
|
@JsonProperty("thumbnail") val thumbnail: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaCoverImage(
|
data class MediaCoverImage(
|
||||||
@JsonProperty("extraLarge") @SerialName("extraLarge") val extraLarge: String?,
|
@JsonProperty("extraLarge") val extraLarge: String?,
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
@JsonProperty("color") @SerialName("color") val color: String?,
|
@JsonProperty("color") val color: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonNextAiringEpisode(
|
data class SeasonNextAiringEpisode(
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
|
@JsonProperty("episode") val episode: Int?,
|
||||||
@JsonProperty("timeUntilAiring") @SerialName("timeUntilAiring") val timeUntilAiring: Int?,
|
@JsonProperty("timeUntilAiring") val timeUntilAiring: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonEdges(
|
data class SeasonEdges(
|
||||||
@JsonProperty("edges") @SerialName("edges") val edges: List<SeasonEdge>?,
|
@JsonProperty("edges") val edges: List<SeasonEdge>?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonEdge(
|
data class SeasonEdge(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("relationType") @SerialName("relationType") val relationType: String?,
|
@JsonProperty("relationType") val relationType: String?,
|
||||||
@JsonProperty("node") @SerialName("node") val node: SeasonNode?,
|
@JsonProperty("node") val node: SeasonNode?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListFavoritesMediaConnection(
|
data class AniListFavoritesMediaConnection(
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<LikeNode>,
|
@JsonProperty("nodes") val nodes: List<LikeNode>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListFavourites(
|
data class AniListFavourites(
|
||||||
@JsonProperty("anime") @SerialName("anime") val anime: AniListFavoritesMediaConnection,
|
@JsonProperty("anime") val anime: AniListFavoritesMediaConnection,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MediaTitle(
|
data class MediaTitle(
|
||||||
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
|
@JsonProperty("romaji") val romaji: String?,
|
||||||
@JsonProperty("english") @SerialName("english") val english: String?,
|
@JsonProperty("english") val english: String?,
|
||||||
@JsonProperty("native") @SerialName("native") val native: String?,
|
@JsonProperty("native") val native: String?,
|
||||||
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
|
@JsonProperty("userPreferred") val userPreferred: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SeasonNode(
|
data class SeasonNode(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("format") @SerialName("format") val format: String?,
|
@JsonProperty("format") val format: String?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: Title?,
|
@JsonProperty("title") val title: Title?,
|
||||||
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
|
@JsonProperty("idMal") val idMal: Int?,
|
||||||
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage?,
|
@JsonProperty("coverImage") val coverImage: CoverImage?,
|
||||||
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
|
@JsonProperty("averageScore") val averageScore: Int?
|
||||||
|
// @JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListAvatar(
|
data class AniListAvatar(
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListViewer(
|
data class AniListViewer(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("avatar") @SerialName("avatar") val avatar: AniListAvatar?,
|
@JsonProperty("avatar") val avatar: AniListAvatar?,
|
||||||
@JsonProperty("favourites") @SerialName("favourites") val favourites: AniListFavourites?,
|
@JsonProperty("favourites") val favourites: AniListFavourites?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListData(
|
data class AniListData(
|
||||||
@JsonProperty("Viewer") @SerialName("Viewer") val viewer: AniListViewer?,
|
@JsonProperty("Viewer") val viewer: AniListViewer?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListRoot(
|
data class AniListRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: AniListData?,
|
@JsonProperty("data") val data: AniListData?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListUser(
|
data class AniListUser(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("picture") @SerialName("picture") val picture: String?,
|
@JsonProperty("picture") val picture: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeNode(
|
data class LikeNode(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
|
//@JsonProperty("idMal") public int idMal;
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikePageInfo(
|
data class LikePageInfo(
|
||||||
@JsonProperty("total") @SerialName("total") val total: Int?,
|
@JsonProperty("total") val total: Int?,
|
||||||
@JsonProperty("currentPage") @SerialName("currentPage") val currentPage: Int?,
|
@JsonProperty("currentPage") val currentPage: Int?,
|
||||||
@JsonProperty("lastPage") @SerialName("lastPage") val lastPage: Int?,
|
@JsonProperty("lastPage") val lastPage: Int?,
|
||||||
@JsonProperty("perPage") @SerialName("perPage") val perPage: Int?,
|
@JsonProperty("perPage") val perPage: Int?,
|
||||||
@JsonProperty("hasNextPage") @SerialName("hasNextPage") val hasNextPage: Boolean?,
|
@JsonProperty("hasNextPage") val hasNextPage: Boolean?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeAnime(
|
data class LikeAnime(
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<LikeNode>?,
|
@JsonProperty("nodes") val nodes: List<LikeNode>?,
|
||||||
@JsonProperty("pageInfo") @SerialName("pageInfo") val pageInfo: LikePageInfo?,
|
@JsonProperty("pageInfo") val pageInfo: LikePageInfo?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeFavourites(
|
data class LikeFavourites(
|
||||||
@JsonProperty("anime") @SerialName("anime") val anime: LikeAnime?,
|
@JsonProperty("anime") val anime: LikeAnime?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeViewer(
|
data class LikeViewer(
|
||||||
@JsonProperty("favourites") @SerialName("favourites") val favourites: LikeFavourites?,
|
@JsonProperty("favourites") val favourites: LikeFavourites?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeData(
|
data class LikeData(
|
||||||
@JsonProperty("Viewer") @SerialName("Viewer") val viewer: LikeViewer?,
|
@JsonProperty("Viewer") val viewer: LikeViewer?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LikeRoot(
|
data class LikeRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: LikeData?,
|
@JsonProperty("data") val data: LikeData?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniListTitleHolder(
|
data class AniListTitleHolder(
|
||||||
@JsonProperty("title") @SerialName("title") val title: Title?,
|
@JsonProperty("title") val title: Title?,
|
||||||
@JsonProperty("isFavourite") @SerialName("isFavourite") val isFavourite: Boolean?,
|
@JsonProperty("isFavourite") val isFavourite: Boolean?,
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("progress") @SerialName("progress") val progress: Int?,
|
@JsonProperty("progress") val progress: Int?,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
|
@JsonProperty("episodes") val episodes: Int?,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int?,
|
@JsonProperty("score") val score: Int?,
|
||||||
@JsonProperty("type") @SerialName("type") val type: AniListStatusType?,
|
@JsonProperty("type") val type: AniListStatusType?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetDataMediaListEntry(
|
data class GetDataMediaListEntry(
|
||||||
@JsonProperty("progress") @SerialName("progress") val progress: Int?,
|
@JsonProperty("progress") val progress: Int?,
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int?,
|
@JsonProperty("score") val score: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Nodes(
|
data class Nodes(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("mediaRecommendation") @SerialName("mediaRecommendation") val mediaRecommendation: MediaRecommendation?,
|
@JsonProperty("mediaRecommendation") val mediaRecommendation: MediaRecommendation?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetDataMedia(
|
data class GetDataMedia(
|
||||||
@JsonProperty("isFavourite") @SerialName("isFavourite") val isFavourite: Boolean?,
|
@JsonProperty("isFavourite") val isFavourite: Boolean?,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
|
@JsonProperty("episodes") val episodes: Int?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: Title?,
|
@JsonProperty("title") val title: Title?,
|
||||||
@JsonProperty("mediaListEntry") @SerialName("mediaListEntry") val mediaListEntry: GetDataMediaListEntry?,
|
@JsonProperty("mediaListEntry") val mediaListEntry: GetDataMediaListEntry?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Recommendations(
|
data class Recommendations(
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Nodes>?,
|
@JsonProperty("nodes") val nodes: List<Nodes>?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetDataData(
|
data class GetDataData(
|
||||||
@JsonProperty("Media") @SerialName("Media") val media: GetDataMedia?,
|
@JsonProperty("Media") val media: GetDataMedia?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetDataRoot(
|
data class GetDataRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: GetDataData?,
|
@JsonProperty("data") val data: GetDataData?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetSearchTitle(
|
data class GetSearchTitle(
|
||||||
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
|
@JsonProperty("romaji") val romaji: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class TrailerObject(
|
data class TrailerObject(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String?,
|
@JsonProperty("id") val id: String?,
|
||||||
@JsonProperty("thumbnail") @SerialName("thumbnail") val thumbnail: String?,
|
@JsonProperty("thumbnail") val thumbnail: String?,
|
||||||
@JsonProperty("site") @SerialName("site") val site: String?,
|
@JsonProperty("site") val site: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetSearchMedia(
|
data class GetSearchMedia(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
|
@JsonProperty("idMal") val idMal: Int?,
|
||||||
@JsonProperty("seasonYear") @SerialName("seasonYear") val seasonYear: Int,
|
@JsonProperty("seasonYear") val seasonYear: Int,
|
||||||
@JsonProperty("title") @SerialName("title") val title: GetSearchTitle,
|
@JsonProperty("title") val title: GetSearchTitle,
|
||||||
@JsonProperty("startDate") @SerialName("startDate") val startDate: StartedAt,
|
@JsonProperty("startDate") val startDate: StartedAt,
|
||||||
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
|
@JsonProperty("averageScore") val averageScore: Int?,
|
||||||
@JsonProperty("meanScore") @SerialName("meanScore") val meanScore: Int?,
|
@JsonProperty("meanScore") val meanScore: Int?,
|
||||||
@JsonProperty("bannerImage") @SerialName("bannerImage") val bannerImage: String?,
|
@JsonProperty("bannerImage") val bannerImage: String?,
|
||||||
@JsonProperty("trailer") @SerialName("trailer") val trailer: TrailerObject?,
|
@JsonProperty("trailer") val trailer: TrailerObject?,
|
||||||
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
|
||||||
@JsonProperty("recommendations") @SerialName("recommendations") val recommendations: Recommendations?,
|
@JsonProperty("recommendations") val recommendations: Recommendations?,
|
||||||
@JsonProperty("relations") @SerialName("relations") val relations: SeasonEdges?,
|
@JsonProperty("relations") val relations: SeasonEdges?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetSearchPage(
|
data class GetSearchPage(
|
||||||
@JsonProperty("Page") @SerialName("Page") val page: GetSearchData?,
|
@JsonProperty("Page") val page: GetSearchData?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetSearchData(
|
data class GetSearchData(
|
||||||
@JsonProperty("media") @SerialName("media") val media: List<GetSearchMedia>?,
|
@JsonProperty("media") val media: List<GetSearchMedia>?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class GetSearchRoot(
|
data class GetSearchRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: GetSearchPage?,
|
@JsonProperty("data") val data: GetSearchPage?,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
package com.lagradost.cloudstream3.syncproviders.providers
|
package com.lagradost.cloudstream3.syncproviders.providers
|
||||||
|
|
||||||
|
|
||||||
import androidx.annotation.StringRes
|
import androidx.annotation.StringRes
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
|
|
@ -22,15 +22,14 @@ import com.lagradost.cloudstream3.ui.SyncWatchType
|
||||||
import com.lagradost.cloudstream3.ui.library.ListSorting
|
import com.lagradost.cloudstream3.ui.library.ListSorting
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import okhttp3.Interceptor
|
import okhttp3.Interceptor
|
||||||
import okhttp3.Request
|
import okhttp3.Request
|
||||||
import okhttp3.RequestBody.Companion.toRequestBody
|
import okhttp3.RequestBody.Companion.toRequestBody
|
||||||
import okhttp3.Response
|
import okhttp3.Response
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
|
import java.time.Instant
|
||||||
import java.time.LocalDate
|
import java.time.LocalDate
|
||||||
import java.time.ZoneId
|
import java.time.format.DateTimeFormatter
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
|
|
@ -69,9 +68,13 @@ class KitsuApi: SyncAPI() {
|
||||||
val request: Request = chain.request()
|
val request: Request = chain.request()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
val response = chain.proceed(request);
|
val response = chain.proceed(request);
|
||||||
|
|
||||||
if (response.isSuccessful) return response
|
if (response.isSuccessful) return response
|
||||||
|
|
||||||
response.close()
|
response.close()
|
||||||
|
|
||||||
} catch (_: Exception) {
|
} catch (_: Exception) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -80,6 +83,7 @@ class KitsuApi: SyncAPI() {
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
return chain.proceed(fallbackRequest)
|
return chain.proceed(fallbackRequest)
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -103,7 +107,7 @@ class KitsuApi: SyncAPI() {
|
||||||
).parsed<ResponseToken>()
|
).parsed<ResponseToken>()
|
||||||
|
|
||||||
return AuthToken(
|
return AuthToken(
|
||||||
accessTokenLifetime = APIHolder.unixTime + token.expiresIn.toLong(),
|
accessTokenLifetime = unixTime + token.expiresIn.toLong(),
|
||||||
refreshToken = token.refreshToken,
|
refreshToken = token.refreshToken,
|
||||||
accessToken = token.accessToken,
|
accessToken = token.accessToken,
|
||||||
)
|
)
|
||||||
|
|
@ -122,7 +126,7 @@ class KitsuApi: SyncAPI() {
|
||||||
return AuthToken(
|
return AuthToken(
|
||||||
accessToken = res.accessToken,
|
accessToken = res.accessToken,
|
||||||
refreshToken = res.refreshToken,
|
refreshToken = res.refreshToken,
|
||||||
accessTokenLifetime = APIHolder.unixTime + res.expiresIn.toLong()
|
accessTokenLifetime = unixTime + res.expiresIn.toLong()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -179,9 +183,9 @@ class KitsuApi: SyncAPI() {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuResponse(
|
data class KitsuResponse(
|
||||||
@JsonProperty("data") @SerialName("data") val data: KitsuNode,
|
@field:JsonProperty(value = "data")
|
||||||
|
val data: KitsuNode,
|
||||||
)
|
)
|
||||||
|
|
||||||
val url =
|
val url =
|
||||||
|
|
@ -198,10 +202,10 @@ class KitsuApi: SyncAPI() {
|
||||||
id = id,
|
id = id,
|
||||||
totalEpisodes = anime.episodeCount,
|
totalEpisodes = anime.episodeCount,
|
||||||
title = anime.canonicalTitle ?: anime.titles?.enJp ?: anime.titles?.jaJp.orEmpty(),
|
title = anime.canonicalTitle ?: anime.titles?.enJp ?: anime.titles?.jaJp.orEmpty(),
|
||||||
publicScore = Score.from(anime.ratingTwenty, 20),
|
publicScore = Score.from(anime.ratingTwenty.toString(), 20),
|
||||||
duration = anime.episodeLength,
|
duration = anime.episodeLength,
|
||||||
synopsis = anime.synopsis,
|
synopsis = anime.synopsis,
|
||||||
airStatus = when (anime.status) {
|
airStatus = when(anime.status) {
|
||||||
"finished" -> ShowStatus.Completed
|
"finished" -> ShowStatus.Completed
|
||||||
"current" -> ShowStatus.Ongoing
|
"current" -> ShowStatus.Ongoing
|
||||||
else -> null
|
else -> null
|
||||||
|
|
@ -217,6 +221,7 @@ class KitsuApi: SyncAPI() {
|
||||||
prevSeason = null,
|
prevSeason = null,
|
||||||
actors = null,
|
actors = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun status(auth : AuthData?, id: String): AbstractSyncStatus? {
|
override suspend fun status(auth : AuthData?, id: String): AbstractSyncStatus? {
|
||||||
|
|
@ -245,19 +250,21 @@ class KitsuApi: SyncAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return SyncStatus(
|
return SyncStatus(
|
||||||
score = Score.from(anime.ratingTwenty, 20),
|
score = Score.from(anime.ratingTwenty.toString(), 20),
|
||||||
status = SyncWatchType.fromInternalId(kitsuStatusAsString.indexOf(anime.status)),
|
status = SyncWatchType.fromInternalId(kitsuStatusAsString.indexOf(anime.status)),
|
||||||
isFavorite = null,
|
isFavorite = null,
|
||||||
watchedEpisodes = anime.progress,
|
watchedEpisodes = anime.progress,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getAnimeIdByTitle(title: String): String? {
|
suspend fun getAnimeIdByTitle(title: String): String? {
|
||||||
|
|
||||||
val animeSelectedFields = arrayOf("titles","canonicalTitle")
|
val animeSelectedFields = arrayOf("titles","canonicalTitle")
|
||||||
val url = "$apiUrl/anime?filter[text]=$title&page[limit]=$KITSU_MAX_SEARCH_LIMIT&fields[anime]=${animeSelectedFields.joinToString(",")}"
|
val url = "$apiUrl/anime?filter[text]=$title&page[limit]=$KITSU_MAX_SEARCH_LIMIT&fields[anime]=${animeSelectedFields.joinToString(",")}"
|
||||||
|
|
||||||
val res = app.get(url, interceptor = apiFallbackInterceptor).parsed<KitsuResponse>()
|
val res = app.get(url, interceptor = apiFallbackInterceptor).parsed<KitsuResponse>()
|
||||||
|
|
||||||
return res.data.firstOrNull()?.id
|
return res.data.firstOrNull()?.id
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun urlToId(url: String): String? =
|
override fun urlToId(url: String): String? =
|
||||||
|
|
@ -268,6 +275,7 @@ class KitsuApi: SyncAPI() {
|
||||||
id: String,
|
id: String,
|
||||||
newStatus: AbstractSyncStatus
|
newStatus: AbstractSyncStatus
|
||||||
): Boolean {
|
): Boolean {
|
||||||
|
|
||||||
return setScoreRequest(
|
return setScoreRequest(
|
||||||
auth ?: return false,
|
auth ?: return false,
|
||||||
id.toIntOrNull() ?: return false,
|
id.toIntOrNull() ?: return false,
|
||||||
|
|
@ -278,18 +286,21 @@ class KitsuApi: SyncAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun setScoreRequest(
|
private suspend fun setScoreRequest(
|
||||||
auth: AuthData,
|
auth : AuthData,
|
||||||
id: Int,
|
id: Int,
|
||||||
status: KitsuStatusType? = null,
|
status: KitsuStatusType? = null,
|
||||||
score: Int? = null,
|
score: Int? = null,
|
||||||
numWatchedEpisodes: Int? = null,
|
numWatchedEpisodes: Int? = null,
|
||||||
): Boolean {
|
): Boolean {
|
||||||
|
|
||||||
val libraryEntryId = getAnimeLibraryEntryId(auth, id)
|
val libraryEntryId = getAnimeLibraryEntryId(auth, id)
|
||||||
|
|
||||||
// Exists entry for anime in library
|
// Exists entry for anime in library
|
||||||
if (libraryEntryId != null) {
|
if (libraryEntryId != null) {
|
||||||
|
|
||||||
// Delete anime from library
|
// Delete anime from library
|
||||||
if (status == null || status == KitsuStatusType.None) {
|
if (status == null || status == KitsuStatusType.None) {
|
||||||
|
|
||||||
val res = app.delete(
|
val res = app.delete(
|
||||||
"$apiUrl/library-entries/$libraryEntryId",
|
"$apiUrl/library-entries/$libraryEntryId",
|
||||||
headers = mapOf(
|
headers = mapOf(
|
||||||
|
|
@ -298,7 +309,9 @@ class KitsuApi: SyncAPI() {
|
||||||
interceptor = apiFallbackInterceptor
|
interceptor = apiFallbackInterceptor
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
return res.isSuccessful
|
return res.isSuccessful
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return setScoreRequest(
|
return setScoreRequest(
|
||||||
|
|
@ -308,6 +321,7 @@ class KitsuApi: SyncAPI() {
|
||||||
score,
|
score,
|
||||||
numWatchedEpisodes
|
numWatchedEpisodes
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val data = mapOf(
|
val data = mapOf(
|
||||||
|
|
@ -346,6 +360,7 @@ class KitsuApi: SyncAPI() {
|
||||||
)
|
)
|
||||||
|
|
||||||
return res.isSuccessful
|
return res.isSuccessful
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
@Suppress("UNCHECKED_CAST")
|
||||||
|
|
@ -378,11 +393,15 @@ class KitsuApi: SyncAPI() {
|
||||||
interceptor = apiFallbackInterceptor
|
interceptor = apiFallbackInterceptor
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
return res.isSuccessful
|
return res.isSuccessful
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getAnimeLibraryEntryId(auth: AuthData, id: Int): Int? {
|
private suspend fun getAnimeLibraryEntryId(auth: AuthData, id: Int): Int? {
|
||||||
|
|
||||||
val userId = auth.user.id
|
val userId = auth.user.id
|
||||||
|
|
||||||
val res = app.get(
|
val res = app.get(
|
||||||
"$apiUrl/library-entries?filter[userId]=$userId&filter[animeId]=$id",
|
"$apiUrl/library-entries?filter[userId]=$userId&filter[animeId]=$id",
|
||||||
headers = mapOf(
|
headers = mapOf(
|
||||||
|
|
@ -392,6 +411,7 @@ class KitsuApi: SyncAPI() {
|
||||||
).parsed<KitsuResponse>().data.firstOrNull() ?: return null
|
).parsed<KitsuResponse>().data.firstOrNull() ?: return null
|
||||||
|
|
||||||
return res.id.toInt()
|
return res.id.toInt()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun library(auth : AuthData?): LibraryMetadata? {
|
override suspend fun library(auth : AuthData?): LibraryMetadata? {
|
||||||
|
|
@ -433,52 +453,58 @@ class KitsuApi: SyncAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getKitsuAnimeList(token: AuthToken, userId: Int): Array<KitsuNode> {
|
private suspend fun getKitsuAnimeList(token: AuthToken, userId: Int): Array<KitsuNode> {
|
||||||
val animeSelectedFields = arrayOf("titles","canonicalTitle","posterImage","synopsis","startDate","endDate","episodeCount")
|
|
||||||
val libraryEntriesSelectedFields = arrayOf("progress","ratingTwenty","updatedAt", "status")
|
val animeSelectedFields = arrayOf("titles","canonicalTitle","posterImage","synopsis","startDate","episodeCount")
|
||||||
|
val libraryEntriesSelectedFields = arrayOf("progress","rating","updatedAt", "status")
|
||||||
val limit = 500
|
val limit = 500
|
||||||
var url = "$apiUrl/library-entries?filter[userId]=$userId&filter[kind]=anime&include=anime&page[limit]=$limit&page[offset]=0&fields[anime]=${animeSelectedFields.joinToString(",")}&fields[libraryEntries]=${libraryEntriesSelectedFields.joinToString(",")}"
|
var url = "$apiUrl/library-entries?filter[userId]=$userId&filter[kind]=anime&include=anime&page[limit]=$limit&page[offset]=0&fields[anime]=${animeSelectedFields.joinToString(",")}&fields[libraryEntries]=${libraryEntriesSelectedFields.joinToString(",")}"
|
||||||
|
|
||||||
val fullList = mutableListOf<KitsuNode>()
|
val fullList = mutableListOf<KitsuNode>()
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|
||||||
val data: KitsuResponse = getKitsuAnimeListSlice(token, url)
|
val data: KitsuResponse = getKitsuAnimeListSlice(token, url)
|
||||||
|
|
||||||
data.data.forEachIndexed { index, value ->
|
data.data.forEachIndexed { index, value ->
|
||||||
value.anime = data.included?.get(index)
|
value.anime = data.included?.get(index)
|
||||||
}
|
}
|
||||||
|
|
||||||
fullList.addAll(data.data)
|
fullList.addAll(data.data)
|
||||||
|
|
||||||
url = data.links?.next ?: break
|
url = data.links?.next ?: break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return fullList.toTypedArray()
|
return fullList.toTypedArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getKitsuAnimeListSlice(token: AuthToken, url: String): KitsuResponse {
|
private suspend fun getKitsuAnimeListSlice(token: AuthToken, url: String): KitsuResponse {
|
||||||
return app.get(
|
val res = app.get(
|
||||||
url, headers = mapOf(
|
url, headers = mapOf(
|
||||||
"Authorization" to "Bearer ${token.accessToken}",
|
"Authorization" to "Bearer ${token.accessToken}",
|
||||||
),
|
),
|
||||||
interceptor = apiFallbackInterceptor
|
interceptor = apiFallbackInterceptor
|
||||||
).parsed<KitsuResponse>()
|
).parsed<KitsuResponse>()
|
||||||
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResponseToken(
|
data class ResponseToken(
|
||||||
@JsonProperty("token_type") @SerialName("token_type") val tokenType: String,
|
@JsonProperty("token_type") val tokenType: String,
|
||||||
@JsonProperty("expires_in") @SerialName("expires_in") val expiresIn: Int,
|
@JsonProperty("expires_in") val expiresIn: Int,
|
||||||
@JsonProperty("access_token") @SerialName("access_token") val accessToken: String,
|
@JsonProperty("access_token") val accessToken: String,
|
||||||
@JsonProperty("refresh_token") @SerialName("refresh_token") val refreshToken: String,
|
@JsonProperty("refresh_token") val refreshToken: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuNode(
|
data class KitsuNode(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String,
|
@JsonProperty("id") val id: String,
|
||||||
@JsonProperty("attributes") @SerialName("attributes") val attributes: KitsuNodeAttributes,
|
@JsonProperty("attributes") val attributes: KitsuNodeAttributes,
|
||||||
/* User list anime node */
|
/* User list anime node */
|
||||||
@JsonProperty("relationships") @SerialName("relationships") val relationships: KitsuRelationships?,
|
@JsonProperty("relationships") val relationships: KitsuRelationships?,
|
||||||
@JsonProperty("anime") @SerialName("anime") var anime: KitsuAnimeData?,
|
var anime: KitsuAnimeData?
|
||||||
) {
|
) {
|
||||||
fun toLibraryItem(): LibraryItem {
|
fun toLibraryItem(): LibraryItem {
|
||||||
|
|
||||||
val animeItem = this.anime
|
val animeItem = this.anime
|
||||||
|
|
||||||
val numEpisodes = animeItem?.attributes?.episodeCount
|
val numEpisodes = animeItem?.attributes?.episodeCount
|
||||||
|
|
@ -500,7 +526,7 @@ class KitsuApi: SyncAPI() {
|
||||||
this.id,
|
this.id,
|
||||||
this.attributes.progress,
|
this.attributes.progress,
|
||||||
numEpisodes,
|
numEpisodes,
|
||||||
Score.from(this.attributes.ratingTwenty, 20),
|
Score.from(this.attributes.ratingTwenty.toString(), 20),
|
||||||
parseDateLong(this.attributes.updatedAt),
|
parseDateLong(this.attributes.updatedAt),
|
||||||
"Kitsu",
|
"Kitsu",
|
||||||
TvType.Anime,
|
TvType.Anime,
|
||||||
|
|
@ -509,9 +535,12 @@ class KitsuApi: SyncAPI() {
|
||||||
null,
|
null,
|
||||||
plot = synopsis,
|
plot = synopsis,
|
||||||
releaseDate = if (startDate == null) null else try {
|
releaseDate = if (startDate == null) null else try {
|
||||||
Date.from(LocalDate.parse(startDate).atStartOfDay()
|
Date.from(
|
||||||
.atZone(ZoneId.systemDefault())
|
Instant.from(
|
||||||
.toInstant())
|
DateTimeFormatter.ofPattern(if (startDate.length == 4) "yyyy" else if (startDate.length == 7) "yyyy-MM" else "yyyy-MM-dd")
|
||||||
|
.parse(startDate)
|
||||||
|
)
|
||||||
|
)
|
||||||
} catch (_: RuntimeException) {
|
} catch (_: RuntimeException) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
|
@ -520,100 +549,93 @@ class KitsuApi: SyncAPI() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuAnimeAttributes(
|
data class KitsuAnimeAttributes(
|
||||||
@JsonProperty("titles") @SerialName("titles") val titles: KitsuTitles?,
|
@JsonProperty("titles") val titles: KitsuTitles?,
|
||||||
@JsonProperty("canonicalTitle") @SerialName("canonicalTitle") val canonicalTitle: String?,
|
@JsonProperty("canonicalTitle") val canonicalTitle: String?,
|
||||||
@JsonProperty("posterImage") @SerialName("posterImage") val posterImage: KitsuPosterImage?,
|
@JsonProperty("posterImage") val posterImage: KitsuPosterImage?,
|
||||||
@JsonProperty("synopsis") @SerialName("synopsis") val synopsis: String?,
|
@JsonProperty("synopsis") val synopsis: String?,
|
||||||
@JsonProperty("startDate") @SerialName("startDate") val startDate: String?,
|
@JsonProperty("startDate") val startDate: String?,
|
||||||
@JsonProperty("endDate") @SerialName("endDate") val endDate: String?,
|
@JsonProperty("endDate") val endDate: String?,
|
||||||
@JsonProperty("episodeCount") @SerialName("episodeCount") val episodeCount: Int?,
|
@JsonProperty("episodeCount") val episodeCount: Int?,
|
||||||
@JsonProperty("episodeLength") @SerialName("episodeLength") val episodeLength: Int?,
|
@JsonProperty("episodeLength") val episodeLength: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuAnimeData(
|
data class KitsuAnimeData(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String,
|
@JsonProperty("id") val id: String,
|
||||||
@JsonProperty("attributes") @SerialName("attributes") val attributes: KitsuAnimeAttributes,
|
@JsonProperty("attributes") val attributes: KitsuAnimeAttributes,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuNodeAttributes(
|
data class KitsuNodeAttributes(
|
||||||
/* General attributes */
|
/* General attributes */
|
||||||
@JsonProperty("titles") @SerialName("titles") val titles: KitsuTitles?,
|
@JsonProperty("titles") val titles: KitsuTitles?,
|
||||||
@JsonProperty("canonicalTitle") @SerialName("canonicalTitle") val canonicalTitle: String?,
|
@JsonProperty("canonicalTitle") val canonicalTitle: String?,
|
||||||
@JsonProperty("posterImage") @SerialName("posterImage") val posterImage: KitsuPosterImage?,
|
@JsonProperty("posterImage") val posterImage: KitsuPosterImage?,
|
||||||
@JsonProperty("synopsis") @SerialName("synopsis") val synopsis: String?,
|
@JsonProperty("synopsis") val synopsis: String?,
|
||||||
@JsonProperty("startDate") @SerialName("startDate") val startDate: String?,
|
@JsonProperty("startDate") val startDate: String?,
|
||||||
@JsonProperty("endDate") @SerialName("endDate") val endDate: String?,
|
@JsonProperty("endDate") val endDate: String?,
|
||||||
@JsonProperty("episodeCount") @SerialName("episodeCount") val episodeCount: Int?,
|
@JsonProperty("episodeCount") val episodeCount: Int?,
|
||||||
@JsonProperty("episodeLength") @SerialName("episodeLength") val episodeLength: Int?,
|
@JsonProperty("episodeLength") val episodeLength: Int?,
|
||||||
/* User attributes */
|
/* User attributes */
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("name") val name: String?,
|
||||||
@JsonProperty("location") @SerialName("location") val location: String?,
|
@JsonProperty("location") val location: String?,
|
||||||
@JsonProperty("createdAt") @SerialName("createdAt") val createdAt: String?,
|
@JsonProperty("createdAt") val createdAt: String?,
|
||||||
@JsonProperty("avatar") @SerialName("avatar") val avatar: KitsuUserAvatar?,
|
@JsonProperty("avatar") val avatar: KitsuUserAvatar?,
|
||||||
/* User list anime attributes */
|
/* User list anime attributes */
|
||||||
@JsonProperty("progress") @SerialName("progress") val progress: Int?,
|
@JsonProperty("progress") val progress: Int?,
|
||||||
@JsonProperty("ratingTwenty") @SerialName("ratingTwenty") val ratingTwenty: Int?,
|
@JsonProperty("ratingTwenty") val ratingTwenty: Float?,
|
||||||
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: String?,
|
@JsonProperty("updatedAt") val updatedAt: String?,
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuRelationships(
|
data class KitsuRelationships(
|
||||||
@JsonProperty("anime") @SerialName("anime") val anime: KitsuRelationshipsAnime?,
|
@JsonProperty("anime") val anime: KitsuRelationshipsAnime?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuRelationshipsAnime(
|
data class KitsuRelationshipsAnime(
|
||||||
@JsonProperty("links") @SerialName("links") val links: KitsuLinks?,
|
@JsonProperty("links") val links: KitsuLinks?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuPosterImage(
|
data class KitsuPosterImage(
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuTitles(
|
data class KitsuTitles(
|
||||||
@JsonProperty("en_jp") @SerialName("en_jp") val enJp: String?,
|
@JsonProperty("en_jp") val enJp: String?,
|
||||||
@JsonProperty("ja_jp") @SerialName("ja_jp") val jaJp: String?,
|
@JsonProperty("ja_jp") val jaJp: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuUserAvatar(
|
data class KitsuUserAvatar(
|
||||||
@JsonProperty("original") @SerialName("original") val original: String?,
|
@JsonProperty("original") val original: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuLinks(
|
data class KitsuLinks(
|
||||||
/* Pagination */
|
/* Pagination */
|
||||||
@JsonProperty("first") @SerialName("first") val first: String?,
|
@JsonProperty("first") val first: String?,
|
||||||
@JsonProperty("next") @SerialName("next") val next: String?,
|
@JsonProperty("next") val next: String?,
|
||||||
@JsonProperty("last") @SerialName("last") val last: String?,
|
@JsonProperty("last") val last: String?,
|
||||||
/* Relationships */
|
/* Relationships */
|
||||||
@JsonProperty("related") @SerialName("related") val related: String?,
|
@JsonProperty("related") val related: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuResponse(
|
data class KitsuResponse(
|
||||||
@JsonProperty("links") @SerialName("links") val links: KitsuLinks?,
|
@JsonProperty("links") val links: KitsuLinks?,
|
||||||
@JsonProperty("data") @SerialName("data") val data: List<KitsuNode>,
|
@JsonProperty("data") val data: List<KitsuNode>,
|
||||||
/* When requesting related info (User library entry -> anime) */
|
/* When requesting related info (User library entry -> anime) */
|
||||||
@JsonProperty("included") @SerialName("included") val included: List<KitsuAnimeData>?,
|
@JsonProperty("included") val included: List<KitsuAnimeData>?,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
||||||
const val KITSU_CACHED_LIST: String = "kitsu_cached_list"
|
const val KITSU_CACHED_LIST: String = "kitsu_cached_list"
|
||||||
private fun parseDateLong(string: String?): Long? {
|
private fun parseDateLong(string: String?): Long? {
|
||||||
return try {
|
return try {
|
||||||
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.getDefault()).parse(
|
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ", Locale.getDefault()).parse(
|
||||||
string ?: return null
|
string ?: return null
|
||||||
)?.time?.div(1000)
|
)?.time?.div(1000)
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -670,7 +692,7 @@ object Kitsu {
|
||||||
"https://kitsu.io/api/graphql",
|
"https://kitsu.io/api/graphql",
|
||||||
headers = headers,
|
headers = headers,
|
||||||
data = mapOf("query" to query)
|
data = mapOf("query" to query)
|
||||||
).parsed<KitsuResponse>()
|
).parsed()
|
||||||
}
|
}
|
||||||
|
|
||||||
private val cache: MutableMap<Pair<String, String>, Map<Int, KitsuResponse.Node>> =
|
private val cache: MutableMap<Pair<String, String>, Map<Int, KitsuResponse.Node>> =
|
||||||
|
|
@ -752,52 +774,44 @@ query {
|
||||||
return map
|
return map
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class KitsuResponse(
|
data class KitsuResponse(
|
||||||
@JsonProperty("data") @SerialName("data") val data: Data? = null,
|
val data: Data? = null
|
||||||
) {
|
) {
|
||||||
@Serializable
|
|
||||||
data class Data(
|
data class Data(
|
||||||
@JsonProperty("lookupMapping") @SerialName("lookupMapping") val lookupMapping: LookupMapping? = null,
|
val lookupMapping: LookupMapping? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LookupMapping(
|
data class LookupMapping(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String? = null,
|
val id: String? = null,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: Episodes? = null,
|
val episodes: Episodes? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Episodes(
|
data class Episodes(
|
||||||
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Node?>? = null,
|
val nodes: List<Node?>? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Node(
|
data class Node(
|
||||||
@JsonProperty("number") @SerialName("number") val num: Int? = null,
|
@JsonProperty("number")
|
||||||
@JsonProperty("titles") @SerialName("titles") val titles: Titles? = null,
|
val num: Int? = null,
|
||||||
@JsonProperty("description") @SerialName("description") val description: Description? = null,
|
val titles: Titles? = null,
|
||||||
@JsonProperty("thumbnail") @SerialName("thumbnail") val thumbnail: Thumbnail? = null,
|
val description: Description? = null,
|
||||||
|
val thumbnail: Thumbnail? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Description(
|
data class Description(
|
||||||
@JsonProperty("en") @SerialName("en") val en: String? = null,
|
val en: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Thumbnail(
|
data class Thumbnail(
|
||||||
@JsonProperty("original") @SerialName("original") val original: Original? = null,
|
val original: Original? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Original(
|
data class Original(
|
||||||
@JsonProperty("url") @SerialName("url") val url: String? = null,
|
val url: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Titles(
|
data class Titles(
|
||||||
@JsonProperty("canonical") @SerialName("canonical") val canonical: String? = null,
|
val canonical: String? = null
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,6 @@ package com.lagradost.cloudstream3.syncproviders.providers
|
||||||
|
|
||||||
import androidx.annotation.StringRes
|
import androidx.annotation.StringRes
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
|
||||||
import com.lagradost.cloudstream3.BuildConfig
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
|
|
@ -21,9 +19,8 @@ import com.lagradost.cloudstream3.ui.SyncWatchType
|
||||||
import com.lagradost.cloudstream3.ui.library.ListSorting
|
import com.lagradost.cloudstream3.ui.library.ListSorting
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
|
import com.lagradost.cloudstream3.utils.DataStore.toKotlinObject
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.time.Instant
|
import java.time.Instant
|
||||||
import java.time.format.DateTimeFormatter
|
import java.time.format.DateTimeFormatter
|
||||||
|
|
@ -37,7 +34,7 @@ class MALApi : SyncAPI() {
|
||||||
override var name = "MAL"
|
override var name = "MAL"
|
||||||
override val idPrefix = "mal"
|
override val idPrefix = "mal"
|
||||||
|
|
||||||
private val key = BuildConfig.MAL_KEY
|
val key = "1714d6f2f4f7cc19644384f8c4629910"
|
||||||
private val apiUrl = "https://api.myanimelist.net"
|
private val apiUrl = "https://api.myanimelist.net"
|
||||||
override val hasOAuth2 = true
|
override val hasOAuth2 = true
|
||||||
override val redirectUrlIdentifier: String? = "mallogin"
|
override val redirectUrlIdentifier: String? = "mallogin"
|
||||||
|
|
@ -52,17 +49,16 @@ class MALApi : SyncAPI() {
|
||||||
SyncWatchType.PLANTOWATCH,
|
SyncWatchType.PLANTOWATCH,
|
||||||
SyncWatchType.DROPPED,
|
SyncWatchType.DROPPED,
|
||||||
SyncWatchType.ONHOLD,
|
SyncWatchType.ONHOLD,
|
||||||
SyncWatchType.NONE,
|
SyncWatchType.NONE
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class PayLoad(
|
||||||
data class Payload(
|
val requestId: Int,
|
||||||
@JsonProperty("requestId") @SerialName("requestId") val requestId: Int,
|
val codeVerifier: String
|
||||||
@JsonProperty("codeVerifier") @SerialName("codeVerifier") val codeVerifier: String,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
override suspend fun login(redirectUrl: String, payload: String?): AuthToken? {
|
override suspend fun login(redirectUrl: String, payload: String?): AuthToken? {
|
||||||
val payloadData = parseJson<Payload>(payload!!)
|
val payloadData = parseJson<PayLoad>(payload!!)
|
||||||
val sanitizer = splitRedirectUrl(redirectUrl)
|
val sanitizer = splitRedirectUrl(redirectUrl)
|
||||||
val state = sanitizer["state"]!!
|
val state = sanitizer["state"]!!
|
||||||
|
|
||||||
|
|
@ -78,13 +74,13 @@ class MALApi : SyncAPI() {
|
||||||
"client_id" to key,
|
"client_id" to key,
|
||||||
"code" to currentCode,
|
"code" to currentCode,
|
||||||
"code_verifier" to payloadData.codeVerifier,
|
"code_verifier" to payloadData.codeVerifier,
|
||||||
"grant_type" to "authorization_code",
|
"grant_type" to "authorization_code"
|
||||||
)
|
)
|
||||||
).parsed<ResponseToken>()
|
).parsed<ResponseToken>()
|
||||||
return AuthToken(
|
return AuthToken(
|
||||||
accessTokenLifetime = APIHolder.unixTime + token.expiresIn.toLong(),
|
accessTokenLifetime = unixTime + token.expiresIn.toLong(),
|
||||||
refreshToken = token.refreshToken,
|
refreshToken = token.refreshToken,
|
||||||
accessToken = token.accessToken,
|
accessToken = token.accessToken
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -98,13 +94,13 @@ class MALApi : SyncAPI() {
|
||||||
return AuthUser(
|
return AuthUser(
|
||||||
id = user.id,
|
id = user.id,
|
||||||
name = user.name,
|
name = user.name,
|
||||||
profilePicture = user.picture,
|
profilePicture = user.picture
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
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=$query&limit=$MAL_MAX_SEARCH_LIMIT"
|
val url = "$apiUrl/v2/anime?q=$name&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",
|
||||||
|
|
@ -117,7 +113,7 @@ class MALApi : SyncAPI() {
|
||||||
this.name,
|
this.name,
|
||||||
node.id.toString(),
|
node.id.toString(),
|
||||||
"$mainUrl/anime/${node.id}/",
|
"$mainUrl/anime/${node.id}/",
|
||||||
node.mainPicture?.large ?: node.mainPicture?.medium,
|
node.mainPicture?.large ?: node.mainPicture?.medium
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -126,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 {
|
||||||
|
|
@ -139,89 +135,82 @@ class MALApi : SyncAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalAnime(
|
data class MalAnime(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("main_picture") @SerialName("main_picture") val mainPicture: MainPicture?,
|
@JsonProperty("main_picture") val mainPicture: MainPicture?,
|
||||||
@JsonProperty("alternative_titles") @SerialName("alternative_titles") val alternativeTitles: AlternativeTitles?,
|
@JsonProperty("alternative_titles") val alternativeTitles: AlternativeTitles?,
|
||||||
@JsonProperty("start_date") @SerialName("start_date") val startDate: String?,
|
@JsonProperty("start_date") val startDate: String?,
|
||||||
@JsonProperty("end_date") @SerialName("end_date") val endDate: String?,
|
@JsonProperty("end_date") val endDate: String?,
|
||||||
@JsonProperty("synopsis") @SerialName("synopsis") val synopsis: String?,
|
@JsonProperty("synopsis") val synopsis: String?,
|
||||||
@JsonProperty("mean") @SerialName("mean") val mean: Double?,
|
@JsonProperty("mean") val mean: Double?,
|
||||||
@JsonProperty("rank") @SerialName("rank") val rank: Int?,
|
@JsonProperty("rank") val rank: Int?,
|
||||||
@JsonProperty("popularity") @SerialName("popularity") val popularity: Int?,
|
@JsonProperty("popularity") val popularity: Int?,
|
||||||
@JsonProperty("num_list_users") @SerialName("num_list_users") val numListUsers: Int?,
|
@JsonProperty("num_list_users") val numListUsers: Int?,
|
||||||
@JsonProperty("num_scoring_users") @SerialName("num_scoring_users") val numScoringUsers: Int?,
|
@JsonProperty("num_scoring_users") val numScoringUsers: Int?,
|
||||||
@JsonProperty("nsfw") @SerialName("nsfw") val nsfw: String?,
|
@JsonProperty("nsfw") val nsfw: String?,
|
||||||
@JsonProperty("created_at") @SerialName("created_at") val createdAt: String?,
|
@JsonProperty("created_at") val createdAt: String?,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String?,
|
@JsonProperty("updated_at") val updatedAt: String?,
|
||||||
@JsonProperty("media_type") @SerialName("media_type") val mediaType: String?,
|
@JsonProperty("media_type") val mediaType: String?,
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("genres") @SerialName("genres") val genres: ArrayList<Genres>?,
|
@JsonProperty("genres") val genres: ArrayList<Genres>?,
|
||||||
@JsonProperty("my_list_status") @SerialName("my_list_status") val myListStatus: MyListStatus?,
|
@JsonProperty("my_list_status") val myListStatus: MyListStatus?,
|
||||||
@JsonProperty("num_episodes") @SerialName("num_episodes") val numEpisodes: Int?,
|
@JsonProperty("num_episodes") val numEpisodes: Int?,
|
||||||
@JsonProperty("start_season") @SerialName("start_season") val startSeason: StartSeason?,
|
@JsonProperty("start_season") val startSeason: StartSeason?,
|
||||||
@JsonProperty("broadcast") @SerialName("broadcast") val broadcast: Broadcast?,
|
@JsonProperty("broadcast") val broadcast: Broadcast?,
|
||||||
@JsonProperty("source") @SerialName("source") val source: String?,
|
@JsonProperty("source") val source: String?,
|
||||||
@JsonProperty("average_episode_duration") @SerialName("average_episode_duration") val averageEpisodeDuration: Int?,
|
@JsonProperty("average_episode_duration") val averageEpisodeDuration: Int?,
|
||||||
@JsonProperty("rating") @SerialName("rating") val rating: String?,
|
@JsonProperty("rating") val rating: String?,
|
||||||
@JsonProperty("pictures") @SerialName("pictures") val pictures: ArrayList<MainPicture>?,
|
@JsonProperty("pictures") val pictures: ArrayList<MainPicture>?,
|
||||||
@JsonProperty("background") @SerialName("background") val background: String?,
|
@JsonProperty("background") val background: String?,
|
||||||
@JsonProperty("related_anime") @SerialName("related_anime") val relatedAnime: ArrayList<RelatedAnime>?,
|
@JsonProperty("related_anime") val relatedAnime: ArrayList<RelatedAnime>?,
|
||||||
@JsonProperty("related_manga") @SerialName("related_manga") val relatedManga: ArrayList<String>?,
|
@JsonProperty("related_manga") val relatedManga: ArrayList<String>?,
|
||||||
@JsonProperty("recommendations") @SerialName("recommendations") val recommendations: ArrayList<Recommendations>?,
|
@JsonProperty("recommendations") val recommendations: ArrayList<Recommendations>?,
|
||||||
@JsonProperty("studios") @SerialName("studios") val studios: ArrayList<Studios>?,
|
@JsonProperty("studios") val studios: ArrayList<Studios>?,
|
||||||
@JsonProperty("statistics") @SerialName("statistics") val statistics: Statistics?,
|
@JsonProperty("statistics") val statistics: Statistics?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Recommendations(
|
data class Recommendations(
|
||||||
@JsonProperty("node") @SerialName("node") val node: Node? = null,
|
@JsonProperty("node") val node: Node? = null,
|
||||||
@JsonProperty("num_recommendations") @SerialName("num_recommendations") val numRecommendations: Int? = null,
|
@JsonProperty("num_recommendations") val numRecommendations: Int? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Studios(
|
data class Studios(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int? = null,
|
@JsonProperty("id") val id: Int? = null,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String? = null,
|
@JsonProperty("name") val name: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MyListStatus(
|
data class MyListStatus(
|
||||||
@JsonProperty("status") @SerialName("status") val status: String? = null,
|
@JsonProperty("status") val status: String? = null,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int? = null,
|
@JsonProperty("score") val score: Int? = null,
|
||||||
@JsonProperty("num_episodes_watched") @SerialName("num_episodes_watched") val numEpisodesWatched: Int? = null,
|
@JsonProperty("num_episodes_watched") val numEpisodesWatched: Int? = null,
|
||||||
@JsonProperty("is_rewatching") @SerialName("is_rewatching") val isRewatching: Boolean? = null,
|
@JsonProperty("is_rewatching") val isRewatching: Boolean? = null,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String? = null,
|
@JsonProperty("updated_at") val updatedAt: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class RelatedAnime(
|
data class RelatedAnime(
|
||||||
@JsonProperty("node") @SerialName("node") val node: Node? = null,
|
@JsonProperty("node") val node: Node? = null,
|
||||||
@JsonProperty("relation_type") @SerialName("relation_type") val relationType: String? = null,
|
@JsonProperty("relation_type") val relationType: String? = null,
|
||||||
@JsonProperty("relation_type_formatted") @SerialName("relation_type_formatted") val relationTypeFormatted: String? = null,
|
@JsonProperty("relation_type_formatted") val relationTypeFormatted: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Status(
|
data class Status(
|
||||||
@JsonProperty("watching") @SerialName("watching") val watching: String? = null,
|
@JsonProperty("watching") val watching: String? = null,
|
||||||
@JsonProperty("completed") @SerialName("completed") val completed: String? = null,
|
@JsonProperty("completed") val completed: String? = null,
|
||||||
@JsonProperty("on_hold") @SerialName("on_hold") val onHold: String? = null,
|
@JsonProperty("on_hold") val onHold: String? = null,
|
||||||
@JsonProperty("dropped") @SerialName("dropped") val dropped: String? = null,
|
@JsonProperty("dropped") val dropped: String? = null,
|
||||||
@JsonProperty("plan_to_watch") @SerialName("plan_to_watch") val planToWatch: String? = null,
|
@JsonProperty("plan_to_watch") val planToWatch: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Statistics(
|
data class Statistics(
|
||||||
@JsonProperty("status") @SerialName("status") val status: Status? = null,
|
@JsonProperty("status") val status: Status? = null,
|
||||||
@JsonProperty("num_list_users") @SerialName("num_list_users") val numListUsers: Int? = null,
|
@JsonProperty("num_list_users") val numListUsers: Int? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
private fun parseDate(string: String?): Long? {
|
private fun parseDate(string: String?): Long? {
|
||||||
return try {
|
return try {
|
||||||
SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).parse(string ?: return null)?.time
|
SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).parse(string ?: return null)?.time
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -232,11 +221,11 @@ class MALApi : SyncAPI() {
|
||||||
apiName = this.name,
|
apiName = this.name,
|
||||||
syncId = node.id.toString(),
|
syncId = node.id.toString(),
|
||||||
url = "$mainUrl/anime/${node.id}",
|
url = "$mainUrl/anime/${node.id}",
|
||||||
posterUrl = node.mainPicture?.large,
|
posterUrl = node.mainPicture?.large
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
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 =
|
||||||
|
|
@ -258,7 +247,7 @@ class MALApi : SyncAPI() {
|
||||||
airStatus = when (malAnime.status) {
|
airStatus = when (malAnime.status) {
|
||||||
"finished_airing" -> ShowStatus.Completed
|
"finished_airing" -> ShowStatus.Completed
|
||||||
"currently_airing" -> ShowStatus.Ongoing
|
"currently_airing" -> ShowStatus.Ongoing
|
||||||
// "not_yet_aired"
|
//"not_yet_aired"
|
||||||
else -> null
|
else -> null
|
||||||
},
|
},
|
||||||
nextAiring = null,
|
nextAiring = null,
|
||||||
|
|
@ -282,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
|
||||||
|
|
@ -345,7 +334,7 @@ class MALApi : SyncAPI() {
|
||||||
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ", Locale.getDefault()).parse(
|
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ", Locale.getDefault()).parse(
|
||||||
string ?: return null
|
string ?: return null
|
||||||
)?.time?.div(1000)
|
)?.time?.div(1000)
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -355,10 +344,12 @@ class MALApi : SyncAPI() {
|
||||||
val codeVerifier = generateCodeVerifier()
|
val codeVerifier = generateCodeVerifier()
|
||||||
val requestId = ++requestIdCounter
|
val requestId = ++requestIdCounter
|
||||||
val codeChallenge = codeVerifier
|
val codeChallenge = codeVerifier
|
||||||
val request = "$mainUrl/v1/oauth2/authorize?response_type=code&client_id=$key&code_challenge=$codeChallenge&state=RequestID$requestId"
|
val request =
|
||||||
|
"$mainUrl/v1/oauth2/authorize?response_type=code&client_id=$key&code_challenge=$codeChallenge&state=RequestID$requestId"
|
||||||
|
|
||||||
return AuthLoginPage(
|
return AuthLoginPage(
|
||||||
url = request,
|
url = request,
|
||||||
payload = Payload(requestId, codeVerifier).toJson(),
|
payload = PayLoad(requestId, codeVerifier).toJson()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -368,71 +359,69 @@ class MALApi : SyncAPI() {
|
||||||
data = mapOf(
|
data = mapOf(
|
||||||
"client_id" to key,
|
"client_id" to key,
|
||||||
"grant_type" to "refresh_token",
|
"grant_type" to "refresh_token",
|
||||||
"refresh_token" to token.refreshToken!!,
|
"refresh_token" to token.refreshToken!!
|
||||||
)
|
)
|
||||||
).parsed<ResponseToken>()
|
).parsed<ResponseToken>()
|
||||||
|
|
||||||
return AuthToken(
|
return AuthToken(
|
||||||
accessToken = res.accessToken,
|
accessToken = res.accessToken,
|
||||||
refreshToken = res.refreshToken,
|
refreshToken = res.refreshToken,
|
||||||
accessTokenLifetime = APIHolder.unixTime + res.expiresIn.toLong(),
|
accessTokenLifetime = unixTime + res.expiresIn.toLong()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private var requestIdCounter = 0
|
private var requestIdCounter = 0
|
||||||
|
|
||||||
|
|
||||||
private val allTitles = hashMapOf<Int, MalTitleHolder>()
|
private val allTitles = hashMapOf<Int, MalTitleHolder>()
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalList(
|
data class MalList(
|
||||||
@JsonProperty("data") @SerialName("data") val data: List<Data>,
|
@JsonProperty("data") val data: List<Data>,
|
||||||
@JsonProperty("paging") @SerialName("paging") val paging: Paging,
|
@JsonProperty("paging") val paging: Paging
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MainPicture(
|
data class MainPicture(
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String,
|
@JsonProperty("medium") val medium: String,
|
||||||
@JsonProperty("large") @SerialName("large") val large: String,
|
@JsonProperty("large") val large: String
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Node(
|
data class Node(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String,
|
@JsonProperty("title") val title: String,
|
||||||
@JsonProperty("main_picture") @SerialName("main_picture") val mainPicture: MainPicture?,
|
@JsonProperty("main_picture") val mainPicture: MainPicture?,
|
||||||
@JsonProperty("alternative_titles") @SerialName("alternative_titles") val alternativeTitles: AlternativeTitles?,
|
@JsonProperty("alternative_titles") val alternativeTitles: AlternativeTitles?,
|
||||||
@JsonProperty("media_type") @SerialName("media_type") val mediaType: String?,
|
@JsonProperty("media_type") val mediaType: String?,
|
||||||
@JsonProperty("num_episodes") @SerialName("num_episodes") val numEpisodes: Int?,
|
@JsonProperty("num_episodes") val numEpisodes: Int?,
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("start_date") @SerialName("start_date") val startDate: String?,
|
@JsonProperty("start_date") val startDate: String?,
|
||||||
@JsonProperty("end_date") @SerialName("end_date") val endDate: String?,
|
@JsonProperty("end_date") val endDate: String?,
|
||||||
@JsonProperty("average_episode_duration") @SerialName("average_episode_duration") val averageEpisodeDuration: Int?,
|
@JsonProperty("average_episode_duration") val averageEpisodeDuration: Int?,
|
||||||
@JsonProperty("synopsis") @SerialName("synopsis") val synopsis: String?,
|
@JsonProperty("synopsis") val synopsis: String?,
|
||||||
@JsonProperty("mean") @SerialName("mean") val mean: Double?,
|
@JsonProperty("mean") val mean: Double?,
|
||||||
@JsonProperty("genres") @SerialName("genres") val genres: List<Genres>?,
|
@JsonProperty("genres") val genres: List<Genres>?,
|
||||||
@JsonProperty("rank") @SerialName("rank") val rank: Int?,
|
@JsonProperty("rank") val rank: Int?,
|
||||||
@JsonProperty("popularity") @SerialName("popularity") val popularity: Int?,
|
@JsonProperty("popularity") val popularity: Int?,
|
||||||
@JsonProperty("num_list_users") @SerialName("num_list_users") val numListUsers: Int?,
|
@JsonProperty("num_list_users") val numListUsers: Int?,
|
||||||
@JsonProperty("num_favorites") @SerialName("num_favorites") val numFavorites: Int?,
|
@JsonProperty("num_favorites") val numFavorites: Int?,
|
||||||
@JsonProperty("num_scoring_users") @SerialName("num_scoring_users") val numScoringUsers: Int?,
|
@JsonProperty("num_scoring_users") val numScoringUsers: Int?,
|
||||||
@JsonProperty("start_season") @SerialName("start_season") val startSeason: StartSeason?,
|
@JsonProperty("start_season") val startSeason: StartSeason?,
|
||||||
@JsonProperty("broadcast") @SerialName("broadcast") val broadcast: Broadcast?,
|
@JsonProperty("broadcast") val broadcast: Broadcast?,
|
||||||
@JsonProperty("nsfw") @SerialName("nsfw") val nsfw: String?,
|
@JsonProperty("nsfw") val nsfw: String?,
|
||||||
@JsonProperty("created_at") @SerialName("created_at") val createdAt: String?,
|
@JsonProperty("created_at") val createdAt: String?,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String?,
|
@JsonProperty("updated_at") val updatedAt: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ListStatus(
|
data class ListStatus(
|
||||||
@JsonProperty("status") @SerialName("status") val status: String?,
|
@JsonProperty("status") val status: String?,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int,
|
@JsonProperty("score") val score: Int,
|
||||||
@JsonProperty("num_episodes_watched") @SerialName("num_episodes_watched") val numEpisodesWatched: Int,
|
@JsonProperty("num_episodes_watched") val numEpisodesWatched: Int,
|
||||||
@JsonProperty("is_rewatching") @SerialName("is_rewatching") val isRewatching: Boolean,
|
@JsonProperty("is_rewatching") val isRewatching: Boolean,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String,
|
@JsonProperty("updated_at") val updatedAt: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Data(
|
data class Data(
|
||||||
@JsonProperty("node") @SerialName("node") val node: Node,
|
@JsonProperty("node") val node: Node,
|
||||||
@JsonProperty("list_status") @SerialName("list_status") val listStatus: ListStatus?,
|
@JsonProperty("list_status") val listStatus: ListStatus?,
|
||||||
) {
|
) {
|
||||||
fun toLibraryItem(): SyncAPI.LibraryItem {
|
fun toLibraryItem(): SyncAPI.LibraryItem {
|
||||||
return SyncAPI.LibraryItem(
|
return SyncAPI.LibraryItem(
|
||||||
|
|
@ -463,37 +452,32 @@ class MALApi : SyncAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Paging(
|
data class Paging(
|
||||||
@JsonProperty("next") @SerialName("next") val next: String?,
|
@JsonProperty("next") val next: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AlternativeTitles(
|
data class AlternativeTitles(
|
||||||
@JsonProperty("synonyms") @SerialName("synonyms") val synonyms: List<String>,
|
@JsonProperty("synonyms") val synonyms: List<String>,
|
||||||
@JsonProperty("en") @SerialName("en") val en: String,
|
@JsonProperty("en") val en: String,
|
||||||
@JsonProperty("ja") @SerialName("ja") val ja: String,
|
@JsonProperty("ja") val ja: String
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Genres(
|
data class Genres(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class StartSeason(
|
data class StartSeason(
|
||||||
@JsonProperty("year") @SerialName("year") val year: Int,
|
@JsonProperty("year") val year: Int,
|
||||||
@JsonProperty("season") @SerialName("season") val season: String,
|
@JsonProperty("season") val season: String
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Broadcast(
|
data class Broadcast(
|
||||||
@JsonProperty("day_of_the_week") @SerialName("day_of_the_week") val dayOfTheWeek: String?,
|
@JsonProperty("day_of_the_week") val dayOfTheWeek: String?,
|
||||||
@JsonProperty("start_time") @SerialName("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 ->
|
||||||
|
|
@ -521,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)
|
||||||
|
|
@ -536,7 +520,7 @@ class MALApi : SyncAPI() {
|
||||||
val fullList = mutableListOf<Data>()
|
val fullList = mutableListOf<Data>()
|
||||||
val offsetRegex = Regex("""offset=(\d+)""")
|
val offsetRegex = Regex("""offset=(\d+)""")
|
||||||
while (true) {
|
while (true) {
|
||||||
val data: MalList = getMalAnimeListSlice(token, offset)
|
val data: MalList = getMalAnimeListSlice(token, offset) ?: break
|
||||||
fullList.addAll(data.data)
|
fullList.addAll(data.data)
|
||||||
offset =
|
offset =
|
||||||
data.paging.next?.let { offsetRegex.find(it)?.groupValues?.get(1)?.toInt() }
|
data.paging.next?.let { offsetRegex.find(it)?.groupValues?.get(1)?.toInt() }
|
||||||
|
|
@ -545,17 +529,18 @@ class MALApi : SyncAPI() {
|
||||||
return fullList.toTypedArray()
|
return fullList.toTypedArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getMalAnimeListSlice(token: AuthToken, offset: Int = 0): MalList {
|
private suspend fun getMalAnimeListSlice(token: AuthToken, offset: Int = 0): MalList? {
|
||||||
val user = "@me"
|
val user = "@me"
|
||||||
// Very lackluster docs
|
// Very lackluster docs
|
||||||
// https://myanimelist.net/apiconfig/references/api/v2#operation/users_user_id_animelist_get
|
// https://myanimelist.net/apiconfig/references/api/v2#operation/users_user_id_animelist_get
|
||||||
val url = "$apiUrl/v2/users/$user/animelist?fields=list_status,num_episodes,media_type,status,start_date,end_date,synopsis,alternative_titles,mean,genres,rank,num_list_users,nsfw,average_episode_duration,num_favorites,popularity,num_scoring_users,start_season,favorites_info,broadcast,created_at,updated_at&nsfw=1&limit=100&offset=$offset"
|
val url =
|
||||||
|
"$apiUrl/v2/users/$user/animelist?fields=list_status,num_episodes,media_type,status,start_date,end_date,synopsis,alternative_titles,mean,genres,rank,num_list_users,nsfw,average_episode_duration,num_favorites,popularity,num_scoring_users,start_season,favorites_info,broadcast,created_at,updated_at&nsfw=1&limit=100&offset=$offset"
|
||||||
val res = app.get(
|
val res = app.get(
|
||||||
url, headers = mapOf(
|
url, headers = mapOf(
|
||||||
"Authorization" to "Bearer ${token.accessToken}",
|
"Authorization" to "Bearer ${token.accessToken}",
|
||||||
), cacheTime = 0
|
), cacheTime = 0
|
||||||
).text
|
).text
|
||||||
return parseJson<MalList>(res)
|
return res.toKotlinObject()
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun setScoreRequest(
|
private suspend fun setScoreRequest(
|
||||||
|
|
@ -598,7 +583,7 @@ class MALApi : SyncAPI() {
|
||||||
val data = mapOf(
|
val data = mapOf(
|
||||||
"status" to status,
|
"status" to status,
|
||||||
"score" to score?.toString(),
|
"score" to score?.toString(),
|
||||||
"num_watched_episodes" to numWatchedEpisodes?.toString(),
|
"num_watched_episodes" to numWatchedEpisodes?.toString()
|
||||||
).filterValues { it != null } as Map<String, String>
|
).filterValues { it != null } as Map<String, String>
|
||||||
|
|
||||||
return app.put(
|
return app.put(
|
||||||
|
|
@ -610,74 +595,71 @@ class MALApi : SyncAPI() {
|
||||||
).text
|
).text
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResponseToken(
|
data class ResponseToken(
|
||||||
@JsonProperty("token_type") @SerialName("token_type") val tokenType: String,
|
@JsonProperty("token_type") val tokenType: String,
|
||||||
@JsonProperty("expires_in") @SerialName("expires_in") val expiresIn: Int,
|
@JsonProperty("expires_in") val expiresIn: Int,
|
||||||
@JsonProperty("access_token") @SerialName("access_token") val accessToken: String,
|
@JsonProperty("access_token") val accessToken: String,
|
||||||
@JsonProperty("refresh_token") @SerialName("refresh_token") val refreshToken: String,
|
@JsonProperty("refresh_token") val refreshToken: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalRoot(
|
data class MalRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: List<MalDatum>,
|
@JsonProperty("data") val data: List<MalDatum>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalDatum(
|
data class MalDatum(
|
||||||
@JsonProperty("node") @SerialName("node") val node: MalNode,
|
@JsonProperty("node") val node: MalNode,
|
||||||
@JsonProperty("list_status") @SerialName("list_status") val listStatus: MalStatus,
|
@JsonProperty("list_status") val listStatus: MalStatus,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalNode(
|
data class MalNode(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String,
|
@JsonProperty("title") val title: String,
|
||||||
|
/*
|
||||||
|
also, but not used
|
||||||
|
main_picture ->
|
||||||
|
public string medium;
|
||||||
|
public string large;
|
||||||
|
*/
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalStatus(
|
data class MalStatus(
|
||||||
@JsonProperty("status") @SerialName("status") val status: String,
|
@JsonProperty("status") val status: String,
|
||||||
@JsonProperty("score") @SerialName("score") val score: Int,
|
@JsonProperty("score") val score: Int,
|
||||||
@JsonProperty("num_episodes_watched") @SerialName("num_episodes_watched") val numEpisodesWatched: Int,
|
@JsonProperty("num_episodes_watched") val numEpisodesWatched: Int,
|
||||||
@JsonProperty("is_rewatching") @SerialName("is_rewatching") val isRewatching: Boolean,
|
@JsonProperty("is_rewatching") val isRewatching: Boolean,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String,
|
@JsonProperty("updated_at") val updatedAt: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalUser(
|
data class MalUser(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("location") @SerialName("location") val location: String,
|
@JsonProperty("location") val location: String,
|
||||||
@JsonProperty("joined_at") @SerialName("joined_at") val joinedAt: String,
|
@JsonProperty("joined_at") val joinedAt: String,
|
||||||
@JsonProperty("picture") @SerialName("picture") val picture: String?,
|
@JsonProperty("picture") val picture: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalMainPicture(
|
data class MalMainPicture(
|
||||||
@JsonProperty("large") @SerialName("large") val large: String?,
|
@JsonProperty("large") val large: String?,
|
||||||
@JsonProperty("medium") @SerialName("medium") val medium: String?,
|
@JsonProperty("medium") val medium: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
// Used for getDataAboutId()
|
// Used for getDataAboutId()
|
||||||
@Serializable
|
|
||||||
data class SmallMalAnime(
|
data class SmallMalAnime(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("num_episodes") @SerialName("num_episodes") val numEpisodes: Int,
|
@JsonProperty("num_episodes") val numEpisodes: Int,
|
||||||
@JsonProperty("my_list_status") @SerialName("my_list_status") val myListStatus: MalStatus?,
|
@JsonProperty("my_list_status") val myListStatus: MalStatus?,
|
||||||
@JsonProperty("main_picture") @SerialName("main_picture") val mainPicture: MalMainPicture?,
|
@JsonProperty("main_picture") val mainPicture: MalMainPicture?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalSearchNode(
|
data class MalSearchNode(
|
||||||
@JsonProperty("node") @SerialName("node") val node: Node,
|
@JsonProperty("node") val node: Node,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalSearch(
|
data class MalSearch(
|
||||||
@JsonProperty("data") @SerialName("data") val data: List<MalSearchNode>,
|
@JsonProperty("data") val data: List<MalSearchNode>,
|
||||||
// paging
|
//paging
|
||||||
)
|
)
|
||||||
|
|
||||||
data class MalTitleHolder(
|
data class MalTitleHolder(
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,9 @@ package com.lagradost.cloudstream3.syncproviders.providers
|
||||||
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
|
|
||||||
import com.lagradost.cloudstream3.ErrorLoadingException
|
import com.lagradost.cloudstream3.ErrorLoadingException
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
import com.lagradost.cloudstream3.app
|
|
||||||
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities
|
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities
|
||||||
import com.lagradost.cloudstream3.syncproviders.AuthData
|
import com.lagradost.cloudstream3.syncproviders.AuthData
|
||||||
import com.lagradost.cloudstream3.syncproviders.AuthLoginRequirement
|
import com.lagradost.cloudstream3.syncproviders.AuthLoginRequirement
|
||||||
|
|
@ -20,8 +18,6 @@ import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToLangTagIETF
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToLangTagIETF
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToOpenSubtitlesTag
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromCodeToOpenSubtitlesTag
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
class OpenSubtitlesApi : SubtitleAPI() {
|
class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
override val name = "OpenSubtitles"
|
override val name = "OpenSubtitles"
|
||||||
|
|
@ -47,17 +43,17 @@ class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun canDoRequest(): Boolean {
|
private fun canDoRequest(): Boolean {
|
||||||
return unixTimeMS > currentCoolDown
|
return unixTimeMs > currentCoolDown
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun throwIfCantDoRequest() {
|
private fun throwIfCantDoRequest() {
|
||||||
if (!canDoRequest()) {
|
if (!canDoRequest()) {
|
||||||
throw ErrorLoadingException("Too many requests wait for ${(currentCoolDown - unixTimeMS) / 1000L}s")
|
throw ErrorLoadingException("Too many requests wait for ${(currentCoolDown - unixTimeMs) / 1000L}s")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun throwGotTooManyRequests() {
|
private fun throwGotTooManyRequests() {
|
||||||
currentCoolDown = unixTimeMS + COOLDOWN_DURATION
|
currentCoolDown = unixTimeMs + COOLDOWN_DURATION
|
||||||
throw ErrorLoadingException("Too many requests")
|
throw ErrorLoadingException("Too many requests")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -93,7 +89,7 @@ class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
accessToken = response.token
|
accessToken = response.token
|
||||||
?: throw ErrorLoadingException("Invalid password or username"),
|
?: throw ErrorLoadingException("Invalid password or username"),
|
||||||
/// JWT token is valid 24 hours after successfully authentication of user
|
/// JWT token is valid 24 hours after successfully authentication of user
|
||||||
accessTokenLifetime = APIHolder.unixTime + 60 * 60 * 24,
|
accessTokenLifetime = unixTime + 60 * 60 * 24,
|
||||||
payload = form.toJson()
|
payload = form.toJson()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -101,7 +97,7 @@ class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
/**
|
/**
|
||||||
* Fetch subtitles using token authenticated on previous method (see authorize).
|
* Fetch subtitles using token authenticated on previous method (see authorize).
|
||||||
* Returns list of Subtitles which user can select to download (see load).
|
* Returns list of Subtitles which user can select to download (see load).
|
||||||
*/
|
* */
|
||||||
override suspend fun search(
|
override suspend fun search(
|
||||||
auth : AuthData?,
|
auth : AuthData?,
|
||||||
query: AbstractSubtitleEntities.SubtitleSearch
|
query: AbstractSubtitleEntities.SubtitleSearch
|
||||||
|
|
@ -181,15 +177,16 @@ class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
return results
|
return results
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Process data returned from search.
|
Process data returned from search.
|
||||||
* Returns string url for the subtitle file.
|
Returns string url for the subtitle file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
override suspend fun load(
|
override suspend fun load(
|
||||||
auth : AuthData?,
|
auth : AuthData?,
|
||||||
subtitle: AbstractSubtitleEntities.SubtitleEntity
|
subtitle: AbstractSubtitleEntities.SubtitleEntity
|
||||||
): String? {
|
): String? {
|
||||||
if (auth == null) return null
|
if(auth == null) return null
|
||||||
throwIfCantDoRequest()
|
throwIfCantDoRequest()
|
||||||
|
|
||||||
val req = app.post(
|
val req = app.post(
|
||||||
|
|
@ -221,64 +218,57 @@ class OpenSubtitlesApi : SubtitleAPI() {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class OAuthToken(
|
data class OAuthToken(
|
||||||
@JsonProperty("token") @SerialName("token") var token: String? = null,
|
@JsonProperty("token") var token: String? = null,
|
||||||
@JsonProperty("status") @SerialName("status") var status: Int? = null,
|
@JsonProperty("status") var status: Int? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Results(
|
data class Results(
|
||||||
@JsonProperty("data") @SerialName("data") var data: List<ResultData>? = listOf(),
|
@JsonProperty("data") var data: List<ResultData>? = listOf()
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultData(
|
data class ResultData(
|
||||||
@JsonProperty("id") @SerialName("id") var id: String? = null,
|
@JsonProperty("id") var id: String? = null,
|
||||||
@JsonProperty("type") @SerialName("type") var type: String? = null,
|
@JsonProperty("type") var type: String? = null,
|
||||||
@JsonProperty("attributes") @SerialName("attributes") var attributes: ResultAttributes? = ResultAttributes(),
|
@JsonProperty("attributes") var attributes: ResultAttributes? = ResultAttributes()
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultAttributes(
|
data class ResultAttributes(
|
||||||
@JsonProperty("subtitle_id") @SerialName("subtitle_id") var subtitleId: String? = null,
|
@JsonProperty("subtitle_id") var subtitleId: String? = null,
|
||||||
@JsonProperty("language") @SerialName("language") var language: String? = null,
|
@JsonProperty("language") var language: String? = null,
|
||||||
@JsonProperty("release") @SerialName("release") var release: String? = null,
|
@JsonProperty("release") var release: String? = null,
|
||||||
@JsonProperty("url") @SerialName("url") var url: String? = null,
|
@JsonProperty("url") var url: String? = null,
|
||||||
@JsonProperty("files") @SerialName("files") var files: List<ResultFiles>? = listOf(),
|
@JsonProperty("files") var files: List<ResultFiles>? = listOf(),
|
||||||
@JsonProperty("feature_details") @SerialName("feature_details") var featDetails: ResultFeatureDetails? = ResultFeatureDetails(),
|
@JsonProperty("feature_details") var featDetails: ResultFeatureDetails? = ResultFeatureDetails(),
|
||||||
@JsonProperty("hearing_impaired") @SerialName("hearing_impaired") var hearingImpaired: Boolean? = null,
|
@JsonProperty("hearing_impaired") var hearingImpaired: Boolean? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultFiles(
|
data class ResultFiles(
|
||||||
@JsonProperty("file_id") @SerialName("file_id") var fileId: Int? = null,
|
@JsonProperty("file_id") var fileId: Int? = null,
|
||||||
@JsonProperty("file_name") @SerialName("file_name") var fileName: String? = null,
|
@JsonProperty("file_name") var fileName: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultDownloadLink(
|
data class ResultDownloadLink(
|
||||||
@JsonProperty("link") @SerialName("link") var link: String? = null,
|
@JsonProperty("link") var link: String? = null,
|
||||||
@JsonProperty("file_name") @SerialName("file_name") var fileName: String? = null,
|
@JsonProperty("file_name") var fileName: String? = null,
|
||||||
@JsonProperty("requests") @SerialName("requests") var requests: Int? = null,
|
@JsonProperty("requests") var requests: Int? = null,
|
||||||
@JsonProperty("remaining") @SerialName("remaining") var remaining: Int? = null,
|
@JsonProperty("remaining") var remaining: Int? = null,
|
||||||
@JsonProperty("message") @SerialName("message") var message: String? = null,
|
@JsonProperty("message") var message: String? = null,
|
||||||
@JsonProperty("reset_time") @SerialName("reset_time") var resetTime: String? = null,
|
@JsonProperty("reset_time") var resetTime: String? = null,
|
||||||
@JsonProperty("reset_time_utc") @SerialName("reset_time_utc") var resetTimeUtc: String? = null,
|
@JsonProperty("reset_time_utc") var resetTimeUtc: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultFeatureDetails(
|
data class ResultFeatureDetails(
|
||||||
@JsonProperty("year") @SerialName("year") var year: Int? = null,
|
@JsonProperty("year") var year: Int? = null,
|
||||||
@JsonProperty("title") @SerialName("title") var title: String? = null,
|
@JsonProperty("title") var title: String? = null,
|
||||||
@JsonProperty("movie_name") @SerialName("movie_name") var movieName: String? = null,
|
@JsonProperty("movie_name") var movieName: String? = null,
|
||||||
@JsonProperty("imdb_id") @SerialName("imdb_id") var imdbId: Int? = null,
|
@JsonProperty("imdb_id") var imdbId: Int? = null,
|
||||||
@JsonProperty("tmdb_id") @SerialName("tmdb_id") var tmdbId: Int? = null,
|
@JsonProperty("tmdb_id") var tmdbId: Int? = null,
|
||||||
@JsonProperty("season_number") @SerialName("season_number") var seasonNumber: Int? = null,
|
@JsonProperty("season_number") var seasonNumber: Int? = null,
|
||||||
@JsonProperty("episode_number") @SerialName("episode_number") var episodeNumber: Int? = null,
|
@JsonProperty("episode_number") var episodeNumber: Int? = null,
|
||||||
@JsonProperty("parent_imdb_id") @SerialName("parent_imdb_id") var parentImdbId: Int? = null,
|
@JsonProperty("parent_imdb_id") var parentImdbId: Int? = null,
|
||||||
@JsonProperty("parent_title") @SerialName("parent_title") var parentTitle: String? = null,
|
@JsonProperty("parent_title") var parentTitle: String? = null,
|
||||||
@JsonProperty("parent_tmdb_id") @SerialName("parent_tmdb_id") var parentTmdbId: Int? = null,
|
@JsonProperty("parent_tmdb_id") var parentTmdbId: Int? = null,
|
||||||
@JsonProperty("parent_feature_id") @SerialName("parent_feature_id") var parentFeatureId: Int? = null,
|
@JsonProperty("parent_feature_id") var parentFeatureId: Int? = null
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -7,10 +7,9 @@ import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities
|
||||||
import com.lagradost.cloudstream3.subtitles.SubtitleResource
|
import com.lagradost.cloudstream3.subtitles.SubtitleResource
|
||||||
import com.lagradost.cloudstream3.syncproviders.AuthData
|
import com.lagradost.cloudstream3.syncproviders.AuthData
|
||||||
import com.lagradost.cloudstream3.syncproviders.SubtitleAPI
|
import com.lagradost.cloudstream3.syncproviders.SubtitleAPI
|
||||||
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper
|
import com.lagradost.cloudstream3.utils.SubtitleHelper
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.util.concurrent.TimeUnit
|
|
||||||
|
|
||||||
class SubSourceApi : SubtitleAPI() {
|
class SubSourceApi : SubtitleAPI() {
|
||||||
override val name = "SubSource"
|
override val name = "SubSource"
|
||||||
|
|
@ -19,70 +18,77 @@ class SubSourceApi : SubtitleAPI() {
|
||||||
override val requiresLogin = false
|
override val requiresLogin = false
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val APIURL = "https://api.subsource.net/v1"
|
const val APIURL = "https://api.subsource.net/api"
|
||||||
|
const val DOWNLOADENDPOINT = "https://api.subsource.net/api/downloadSub"
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun search(
|
override suspend fun search(
|
||||||
auth: AuthData?,
|
auth: AuthData?,
|
||||||
query: AbstractSubtitleEntities.SubtitleSearch
|
query: AbstractSubtitleEntities.SubtitleSearch
|
||||||
): List<AbstractSubtitleEntities.SubtitleEntity>? {
|
): List<AbstractSubtitleEntities.SubtitleEntity>? {
|
||||||
|
|
||||||
//Only supports Imdb Id search for now
|
//Only supports Imdb Id search for now
|
||||||
if (query.imdbId == null) return null
|
if (query.imdbId == null) return null
|
||||||
val queryLang = SubtitleHelper.fromTagToEnglishLanguageName(query.lang)
|
val queryLang = SubtitleHelper.fromTagToEnglishLanguageName(query.lang)
|
||||||
val type = if ((query.seasonNumber ?: 0) > 0) TvType.TvSeries else TvType.Movie
|
val type = if ((query.seasonNumber ?: 0) > 0) TvType.TvSeries else TvType.Movie
|
||||||
|
|
||||||
val searchResponse = app.post(
|
val searchRes = app.post(
|
||||||
url = "$APIURL/movie/search",
|
url = "$APIURL/searchMovie",
|
||||||
json = mapOf(
|
data = mapOf(
|
||||||
"includeSeasons" to false,
|
"query" to query.imdbId!!
|
||||||
"limit" to 15,
|
)
|
||||||
"query" to query.imdbId!!,
|
).parsedSafe<ApiSearch>() ?: return null
|
||||||
"signal" to "{}"
|
|
||||||
),
|
|
||||||
cacheTime = 120,
|
|
||||||
cacheUnit = TimeUnit.MINUTES,
|
|
||||||
).parsedSafe<SearchRoot>() ?: return null
|
|
||||||
|
|
||||||
val firstResult = searchResponse.results.firstOrNull() ?: return null
|
val postData = if (type == TvType.TvSeries) {
|
||||||
|
mapOf(
|
||||||
val apiResponse = app.get(
|
"langs" to "[]",
|
||||||
url = "$APIURL${firstResult.link.replace("series", "subtitles")}",
|
"movieName" to searchRes.found.first().linkName,
|
||||||
cacheTime = 120,
|
"season" to "season-${query.seasonNumber}"
|
||||||
cacheUnit = TimeUnit.MINUTES,
|
)
|
||||||
).parsedSafe<ItemRoot>() ?: return null
|
} else {
|
||||||
|
mapOf(
|
||||||
val filteredSubtitles = apiResponse.subtitles.filter { sub ->
|
"langs" to "[]",
|
||||||
sub.releaseType != "trailer" &&
|
"movieName" to searchRes.found.first().linkName,
|
||||||
sub.language.equals(queryLang, true)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val getMovieRes = app.post(
|
||||||
|
url = "$APIURL/getMovie",
|
||||||
|
data = postData
|
||||||
|
).parsedSafe<ApiResponse>().let {
|
||||||
// api doesn't has episode number or lang filtering
|
// api doesn't has episode number or lang filtering
|
||||||
val subtitles = if (type == TvType.Movie) {
|
if (type == TvType.Movie) {
|
||||||
filteredSubtitles
|
it?.subs?.filter { sub ->
|
||||||
|
sub.lang == queryLang
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
val shouldContain = String.format(
|
it?.subs?.filter { sub ->
|
||||||
|
sub.releaseName!!.contains(
|
||||||
|
String.format(
|
||||||
null,
|
null,
|
||||||
"E%02d",
|
"E%02d",
|
||||||
query.epNumber
|
query.epNumber
|
||||||
)
|
)
|
||||||
filteredSubtitles.filter { sub ->
|
) && sub.lang == queryLang
|
||||||
sub.releaseInfo.contains(
|
|
||||||
shouldContain
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} ?: return null
|
||||||
|
|
||||||
return subtitles.map { subtitle ->
|
return getMovieRes.map { subtitle ->
|
||||||
AbstractSubtitleEntities.SubtitleEntity(
|
AbstractSubtitleEntities.SubtitleEntity(
|
||||||
idPrefix = this.idPrefix,
|
idPrefix = this.idPrefix,
|
||||||
name = subtitle.releaseInfo,
|
name = subtitle.releaseName!!,
|
||||||
lang = subtitle.language,
|
lang = subtitle.lang!!,
|
||||||
data = subtitle.link,
|
data = SubData(
|
||||||
|
movie = subtitle.linkName!!,
|
||||||
|
lang = subtitle.lang,
|
||||||
|
id = subtitle.subId.toString(),
|
||||||
|
).toJson(),
|
||||||
type = type,
|
type = type,
|
||||||
source = this.name,
|
source = this.name,
|
||||||
epNumber = query.epNumber,
|
epNumber = query.epNumber,
|
||||||
seasonNumber = query.seasonNumber,
|
seasonNumber = query.seasonNumber,
|
||||||
isHearingImpaired = subtitle.hearingImpaired == 1,
|
isHearingImpaired = subtitle.hi == 1,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -91,114 +97,71 @@ class SubSourceApi : SubtitleAPI() {
|
||||||
auth: AuthData?,
|
auth: AuthData?,
|
||||||
subtitle: AbstractSubtitleEntities.SubtitleEntity
|
subtitle: AbstractSubtitleEntities.SubtitleEntity
|
||||||
) {
|
) {
|
||||||
val data = app.get("$APIURL/subtitle/${subtitle.data}")
|
val parsedSub = parseJson<SubData>(subtitle.data)
|
||||||
.parsedSafe<DownloadRoot>()
|
|
||||||
?: return
|
val subRes = app.post(
|
||||||
|
url = "$APIURL/getSub",
|
||||||
|
data = mapOf(
|
||||||
|
"movie" to parsedSub.movie,
|
||||||
|
"lang" to subtitle.lang,
|
||||||
|
"id" to parsedSub.id
|
||||||
|
)
|
||||||
|
).parsedSafe<SubTitleLink>() ?: return
|
||||||
|
|
||||||
this.addZipUrl(
|
this.addZipUrl(
|
||||||
"$APIURL/subtitle/download/${data.subtitle.downloadToken}"
|
"$DOWNLOADENDPOINT/${subRes.sub.downloadToken}"
|
||||||
) { name, _ ->
|
) { name, _ ->
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data class ApiSearch(
|
||||||
@Serializable
|
@JsonProperty("success") val success: Boolean,
|
||||||
data class SearchRoot(
|
@JsonProperty("found") val found: List<Found>,
|
||||||
@JsonProperty("success") @SerialName("success") var success: Boolean? = null,
|
|
||||||
@JsonProperty("results") @SerialName("results") var results: ArrayList<Results> = arrayListOf(),
|
|
||||||
@JsonProperty("users") @SerialName("users") var users: ArrayList<Users> = arrayListOf()
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class Found(
|
||||||
data class Users(
|
@JsonProperty("id") val id: Long,
|
||||||
|
@JsonProperty("title") val title: String,
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("seasons") val seasons: Long,
|
||||||
@JsonProperty("displayname") @SerialName("displayname") var displayname: String? = null,
|
@JsonProperty("type") val type: String,
|
||||||
@JsonProperty("avatar") @SerialName("avatar") var avatar: String? = null,
|
@JsonProperty("releaseYear") val releaseYear: Long,
|
||||||
@JsonProperty("badges") @SerialName("badges") var badges: ArrayList<String> = arrayListOf()
|
@JsonProperty("linkName") val linkName: String,
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class ApiResponse(
|
||||||
data class Results(
|
@JsonProperty("success") val success: Boolean,
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("movie") val movie: Movie,
|
||||||
@JsonProperty("title") @SerialName("title") var title: String? = null,
|
@JsonProperty("subs") val subs: List<Sub>,
|
||||||
@JsonProperty("type") @SerialName("type") var type: String? = null,
|
|
||||||
@JsonProperty("link") @SerialName("link") var link: String,
|
|
||||||
@JsonProperty("releaseYear") @SerialName("releaseYear") var releaseYear: Int? = null,
|
|
||||||
@JsonProperty("poster") @SerialName("poster") var poster: String? = null,
|
|
||||||
@JsonProperty("subtitleCount") @SerialName("subtitleCount") var subtitleCount: String? = null,
|
|
||||||
@JsonProperty("rating") @SerialName("rating") var rating: Double? = null,
|
|
||||||
@JsonProperty("cast") @SerialName("cast") var cast: ArrayList<String> = arrayListOf(),
|
|
||||||
@JsonProperty("genres") @SerialName("genres") var genres: ArrayList<String> = arrayListOf(),
|
|
||||||
@JsonProperty("score") @SerialName("score") var score: Double? = null
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class Movie(
|
||||||
|
@JsonProperty("id") val id: Long? = null,
|
||||||
data class ItemRoot(
|
@JsonProperty("type") val type: String? = null,
|
||||||
|
@JsonProperty("year") val year: Long? = null,
|
||||||
// @SerialName("media_type" ) var mediaType : String? = null,
|
@JsonProperty("fullName") val fullName: String? = null,
|
||||||
@JsonProperty("subtitles") @SerialName("subtitles") var subtitles: ArrayList<Subtitles>,
|
|
||||||
//@SerialName("movie" ) var movie : Movie? = Movie()
|
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class Sub(
|
||||||
data class Subtitles(
|
@JsonProperty("hi") val hi: Int? = null,
|
||||||
|
@JsonProperty("fullLink") val fullLink: String? = null,
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("linkName") val linkName: String? = null,
|
||||||
@JsonProperty("language") @SerialName("language") var language: String,
|
@JsonProperty("lang") val lang: String? = null,
|
||||||
@JsonProperty("release_type") @SerialName("release_type") var releaseType: String? = null,
|
@JsonProperty("releaseName") val releaseName: String? = null,
|
||||||
@JsonProperty("release_info") @SerialName("release_info") var releaseInfo: String,
|
@JsonProperty("subId") val subId: Long? = null,
|
||||||
@JsonProperty("upload_date") @SerialName("upload_date") var uploadDate: String? = null,
|
|
||||||
@JsonProperty("hearing_impaired") @SerialName("hearing_impaired") var hearingImpaired: Int? = null,
|
|
||||||
@JsonProperty("caption") @SerialName("caption") var caption: String? = null,
|
|
||||||
@JsonProperty("rating") @SerialName("rating") var rating: String? = null,
|
|
||||||
@JsonProperty("uploader_id") @SerialName("uploader_id") var uploaderId: Int? = null,
|
|
||||||
@JsonProperty("uploader_displayname") @SerialName("uploader_displayname") var uploaderDisplayname: String? = null,
|
|
||||||
@JsonProperty("uploader_badges") @SerialName("uploader_badges") var uploaderBadges: ArrayList<String> = arrayListOf(),
|
|
||||||
@JsonProperty("link") @SerialName("link") var link: String,
|
|
||||||
@JsonProperty("production_type") @SerialName("production_type") var productionType: String? = null,
|
|
||||||
@JsonProperty("last_subtitle") @SerialName("last_subtitle") var lastSubtitle: Boolean? = null
|
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class SubData(
|
||||||
data class DownloadRoot(
|
@JsonProperty("movie") val movie: String,
|
||||||
@JsonProperty("subtitle") @SerialName("subtitle") var subtitle: Subtitle,
|
@JsonProperty("lang") val lang: String,
|
||||||
//@SerializedName("movie" ) var movie : Movie? = Movie(),
|
@JsonProperty("id") val id: String,
|
||||||
//@SerializedName("donationLinks" ) var donationLinks : DonationLinks? = DonationLinks(),
|
|
||||||
//@SerializedName("isDownloaded" ) var isDownloaded : Boolean? = null,
|
|
||||||
//@SerializedName("user_rated" ) var userRated : String? = null
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
data class SubTitleLink(
|
||||||
data class Subtitle(
|
@JsonProperty("sub") val sub: SubToken,
|
||||||
|
)
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
|
||||||
@JsonProperty("uploaded_at") @SerialName("uploaded_at") var uploadedAt: String? = null,
|
|
||||||
@JsonProperty("language") @SerialName("language") var language: String? = null,
|
|
||||||
@JsonProperty("rating") @SerialName("rating") var rating: String? = null,
|
|
||||||
//SerialName("rates" ) var rates : Rates? = Rates(),
|
|
||||||
@JsonProperty("uploaded_by") @SerialName("uploaded_by") var uploadedBy: Int? = null,
|
|
||||||
//@SerialName("contribs" ) var contribs : ArrayList<Contribs> = arrayListOf(),
|
|
||||||
@JsonProperty("release_info") @SerialName("release_info") var releaseInfo: ArrayList<String> = arrayListOf(),
|
|
||||||
@JsonProperty("commentary") @SerialName("commentary") var commentary: String? = null,
|
|
||||||
@JsonProperty("files") @SerialName("files") var files: String? = null,
|
|
||||||
@JsonProperty("size") @SerialName("size") var size: String? = null,
|
|
||||||
@JsonProperty("downloads") @SerialName("downloads") var downloads: Int? = null,
|
|
||||||
@JsonProperty("comments") @SerialName("comments") var comments: Int? = null,
|
|
||||||
@JsonProperty("production_type") @SerialName("production_type") var productionType: String? = null,
|
|
||||||
@JsonProperty("release_type") @SerialName("release_type") var releaseType: String? = null,
|
|
||||||
@JsonProperty("episode") @SerialName("episode") var episode: String? = null,
|
|
||||||
@JsonProperty("hearing_impaired") @SerialName("hearing_impaired") var hearingImpaired: Int? = null,
|
|
||||||
@JsonProperty("foreign_parts") @SerialName("foreign_parts") var foreignParts: String? = null,
|
|
||||||
@JsonProperty("framerate") @SerialName("framerate") var framerate: String? = null,
|
|
||||||
@JsonProperty("preview") @SerialName("preview") var preview: String? = null,
|
|
||||||
@JsonProperty("user_uploaded") @SerialName("user_uploaded") var userUploaded: Boolean? = null,
|
|
||||||
@JsonProperty("download_token") @SerialName("download_token") var downloadToken: String
|
|
||||||
|
|
||||||
|
data class SubToken(
|
||||||
|
@JsonProperty("downloadToken") val downloadToken: String,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -12,8 +12,6 @@ import com.lagradost.cloudstream3.syncproviders.AuthToken
|
||||||
import com.lagradost.cloudstream3.syncproviders.AuthUser
|
import com.lagradost.cloudstream3.syncproviders.AuthUser
|
||||||
import com.lagradost.cloudstream3.syncproviders.SubtitleAPI
|
import com.lagradost.cloudstream3.syncproviders.SubtitleAPI
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
class SubDlApi : SubtitleAPI() {
|
class SubDlApi : SubtitleAPI() {
|
||||||
override val name = "SubDL"
|
override val name = "SubDL"
|
||||||
|
|
@ -26,7 +24,7 @@ class SubDlApi : SubtitleAPI() {
|
||||||
override val createAccountUrl = "https://subdl.com/panel/register"
|
override val createAccountUrl = "https://subdl.com/panel/register"
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val APIURL = "https://api.subdl.com"
|
const val APIURL = "https://apiold.subdl.com"
|
||||||
const val APIENDPOINT = "$APIURL/api/v1/subtitles"
|
const val APIENDPOINT = "$APIURL/api/v1/subtitles"
|
||||||
const val DOWNLOADENDPOINT = "https://dl.subdl.com"
|
const val DOWNLOADENDPOINT = "https://dl.subdl.com"
|
||||||
}
|
}
|
||||||
|
|
@ -124,80 +122,72 @@ class SubDlApi : SubtitleAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SubtitleOAuthEntity(
|
data class SubtitleOAuthEntity(
|
||||||
@JsonProperty("userEmail") @SerialName("userEmail") var userEmail: String,
|
@JsonProperty("userEmail") var userEmail: String,
|
||||||
@JsonProperty("pass") @SerialName("pass") var pass: String,
|
@JsonProperty("pass") var pass: String,
|
||||||
@JsonProperty("name") @SerialName("name") var name: String? = null,
|
@JsonProperty("name") var name: String? = null,
|
||||||
@JsonProperty("accessToken") @SerialName("accessToken") var accessToken: String? = null,
|
@JsonProperty("accessToken") var accessToken: String? = null,
|
||||||
@JsonProperty("apiKey") @SerialName("apiKey") var apiKey: String? = null,
|
@JsonProperty("apiKey") var apiKey: String? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class OAuthTokenResponse(
|
data class OAuthTokenResponse(
|
||||||
@JsonProperty("token") @SerialName("token") val token: String,
|
@JsonProperty("token") val token: String,
|
||||||
@JsonProperty("userData") @SerialName("userData") val userData: UserData? = null,
|
@JsonProperty("userData") val userData: UserData? = null,
|
||||||
@JsonProperty("status") @SerialName("status") val status: Boolean? = null,
|
@JsonProperty("status") val status: Boolean? = null,
|
||||||
@JsonProperty("message") @SerialName("message") val message: String? = null,
|
@JsonProperty("message") val message: String? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class UserData(
|
data class UserData(
|
||||||
@JsonProperty("email") @SerialName("email") val email: String,
|
@JsonProperty("email") val email: String,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("country") @SerialName("country") val country: String,
|
@JsonProperty("country") val country: String,
|
||||||
@JsonProperty("scStepCode") @SerialName("scStepCode") val scStepCode: String,
|
@JsonProperty("scStepCode") val scStepCode: String,
|
||||||
@JsonProperty("scVerified") @SerialName("scVerified") val scVerified: Boolean,
|
@JsonProperty("scVerified") val scVerified: Boolean,
|
||||||
@JsonProperty("username") @SerialName("username") val username: String? = null,
|
@JsonProperty("username") val username: String? = null,
|
||||||
@JsonProperty("scUsername") @SerialName("scUsername") val scUsername: String,
|
@JsonProperty("scUsername") val scUsername: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ApiKeyResponse(
|
data class ApiKeyResponse(
|
||||||
@JsonProperty("ok") @SerialName("ok") val ok: Boolean? = false,
|
@JsonProperty("ok") val ok: Boolean? = false,
|
||||||
@JsonProperty("api_key") @SerialName("api_key") val apiKey: String,
|
@JsonProperty("api_key") val apiKey: String,
|
||||||
@JsonProperty("usage") @SerialName("usage") val usage: Usage? = null,
|
@JsonProperty("usage") val usage: Usage? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Usage(
|
data class Usage(
|
||||||
@JsonProperty("total") @SerialName("total") val total: Long? = 0,
|
@JsonProperty("total") val total: Long? = 0,
|
||||||
@JsonProperty("today") @SerialName("today") val today: Long? = 0,
|
@JsonProperty("today") val today: Long? = 0,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ApiResponse(
|
data class ApiResponse(
|
||||||
@JsonProperty("status") @SerialName("status") val status: Boolean? = null,
|
@JsonProperty("status") val status: Boolean? = null,
|
||||||
@JsonProperty("results") @SerialName("results") val results: List<Result>? = null,
|
@JsonProperty("results") val results: List<Result>? = null,
|
||||||
@JsonProperty("subtitles") @SerialName("subtitles") val subtitles: List<Subtitle>? = null,
|
@JsonProperty("subtitles") val subtitles: List<Subtitle>? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Result(
|
data class Result(
|
||||||
@JsonProperty("sd_id") @SerialName("sd_id") val sdId: Int? = null,
|
@JsonProperty("sd_id") val sdId: Int? = null,
|
||||||
@JsonProperty("type") @SerialName("type") val type: String? = null,
|
@JsonProperty("type") val type: String? = null,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String? = null,
|
@JsonProperty("name") val name: String? = null,
|
||||||
@JsonProperty("imdb_id") @SerialName("imdb_id") val imdbId: String? = null,
|
@JsonProperty("imdb_id") val imdbId: String? = null,
|
||||||
@JsonProperty("tmdb_id") @SerialName("tmdb_id") val tmdbId: Long? = null,
|
@JsonProperty("tmdb_id") val tmdbId: Long? = null,
|
||||||
@JsonProperty("first_air_date") @SerialName("first_air_date") val firstAirDate: String? = null,
|
@JsonProperty("first_air_date") val firstAirDate: String? = null,
|
||||||
@JsonProperty("year") @SerialName("year") val year: Int? = null,
|
@JsonProperty("year") val year: Int? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Subtitle(
|
data class Subtitle(
|
||||||
@JsonProperty("release_name") @SerialName("release_name") val releaseName: String,
|
@JsonProperty("release_name") val releaseName: String,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("lang") @SerialName("lang") val lang: String, // subdl language code
|
@JsonProperty("lang") val lang: String, // subdl language code
|
||||||
@JsonProperty("author") @SerialName("author") val author: String? = null,
|
@JsonProperty("author") val author: String? = null,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String? = null,
|
@JsonProperty("url") val url: String? = null,
|
||||||
@JsonProperty("subtitlePage") @SerialName("subtitlePage") val subtitlePage: String? = null,
|
@JsonProperty("subtitlePage") val subtitlePage: String? = null,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int? = null,
|
@JsonProperty("season") val season: Int? = null,
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int? = null,
|
@JsonProperty("episode") val episode: Int? = null,
|
||||||
@JsonProperty("language") @SerialName("language") val language: String? = null, // full language name
|
@JsonProperty("language") val language: String? = null, // full language name
|
||||||
@JsonProperty("hi") @SerialName("hi") val hearingImpaired: Boolean? = null,
|
@JsonProperty("hi") val hearingImpaired: Boolean? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
// https://subdl.com/api-files/language_list.json
|
// https://subdl.com/api-files/language_list.json
|
||||||
// most of it is IETF BPC 47 conformant tag
|
// most of it is IETF BPC 47 conformant tag
|
||||||
// but there are some exceptions
|
// but there are some exceptions
|
||||||
private val langTagIETF2subdl = mapOf(
|
private val langTagIETF2subdl = mapOf(
|
||||||
|
|
@ -207,63 +197,63 @@ class SubDlApi : SubtitleAPI() {
|
||||||
"en-nl" to "NL_EN", // "Dutch_English"
|
"en-nl" to "NL_EN", // "Dutch_English"
|
||||||
"pt-br" to "BR_PT", // "Brazillian Portuguese"
|
"pt-br" to "BR_PT", // "Brazillian Portuguese"
|
||||||
"zh-hant" to "ZH_BG", // "Big 5 code" -> traditional Chinese (?_?)
|
"zh-hant" to "ZH_BG", // "Big 5 code" -> traditional Chinese (?_?)
|
||||||
// "ar" to "AR", // "Arabic"
|
// "ar" to "AR", // "Arabic"
|
||||||
// "az" to "AZ", // "Azerbaijani"
|
// "az" to "AZ", // "Azerbaijani"
|
||||||
// "be" to "BE", // "Belarusian"
|
// "be" to "BE", // "Belarusian"
|
||||||
// "bg" to "BG", // "Bulgarian"
|
// "bg" to "BG", // "Bulgarian"
|
||||||
// "bn" to "BN", // "Bengali"
|
// "bn" to "BN", // "Bengali"
|
||||||
// "bs" to "BS", // "Bosnian"
|
// "bs" to "BS", // "Bosnian"
|
||||||
// "ca" to "CA", // "Catalan"
|
// "ca" to "CA", // "Catalan"
|
||||||
// "cs" to "CS", // "Czech"
|
// "cs" to "CS", // "Czech"
|
||||||
// "da" to "DA", // "Danish"
|
// "da" to "DA", // "Danish"
|
||||||
// "de" to "DE", // "German"
|
// "de" to "DE", // "German"
|
||||||
// "el" to "EL", // "Greek"
|
// "el" to "EL", // "Greek"
|
||||||
// "en" to "EN", // "English"
|
// "en" to "EN", // "English"
|
||||||
// "eo" to "EO", // "Esperanto"
|
// "eo" to "EO", // "Esperanto"
|
||||||
// "es" to "ES", // "Spanish"
|
// "es" to "ES", // "Spanish"
|
||||||
// "et" to "ET", // "Estonian"
|
// "et" to "ET", // "Estonian"
|
||||||
// "fa" to "FA", // "Farsi_Persian"
|
// "fa" to "FA", // "Farsi_Persian"
|
||||||
// "fi" to "FI", // "Finnish"
|
// "fi" to "FI", // "Finnish"
|
||||||
// "fr" to "FR", // "French"
|
// "fr" to "FR", // "French"
|
||||||
// "he" to "HE", // "Hebrew"
|
// "he" to "HE", // "Hebrew"
|
||||||
// "hi" to "HI", // "Hindi"
|
// "hi" to "HI", // "Hindi"
|
||||||
// "hr" to "HR", // "Croatian"
|
// "hr" to "HR", // "Croatian"
|
||||||
// "hu" to "HU", // "Hungarian"
|
// "hu" to "HU", // "Hungarian"
|
||||||
// "id" to "ID", // "Indonesian"
|
// "id" to "ID", // "Indonesian"
|
||||||
// "is" to "IS", // "Icelandic"
|
// "is" to "IS", // "Icelandic"
|
||||||
// "it" to "IT", // "Italian"
|
// "it" to "IT", // "Italian"
|
||||||
// "ja" to "JA", // "Japanese"
|
// "ja" to "JA", // "Japanese"
|
||||||
// "ka" to "KA", // "Georgian"
|
// "ka" to "KA", // "Georgian"
|
||||||
// "kl" to "KL", // "Greenlandic"
|
// "kl" to "KL", // "Greenlandic"
|
||||||
// "ko" to "KO", // "Korean"
|
// "ko" to "KO", // "Korean"
|
||||||
// "ku" to "KU", // "Kurdish"
|
// "ku" to "KU", // "Kurdish"
|
||||||
// "lt" to "LT", // "Lithuanian"
|
// "lt" to "LT", // "Lithuanian"
|
||||||
// "lv" to "LV", // "Latvian"
|
// "lv" to "LV", // "Latvian"
|
||||||
// "mk" to "MK", // "Macedonian"
|
// "mk" to "MK", // "Macedonian"
|
||||||
// "ml" to "ML", // "Malayalam"
|
// "ml" to "ML", // "Malayalam"
|
||||||
// "mni" to "MNI", // "Manipuri"
|
// "mni" to "MNI", // "Manipuri"
|
||||||
// "ms" to "MS", // "Malay"
|
// "ms" to "MS", // "Malay"
|
||||||
// "my" to "MY", // "Burmese"
|
// "my" to "MY", // "Burmese"
|
||||||
// "nl" to "NL", // "Dutch"
|
// "nl" to "NL", // "Dutch"
|
||||||
// "no" to "NO", // "Norwegian"
|
// "no" to "NO", // "Norwegian"
|
||||||
// "pl" to "PL", // "Polish"
|
// "pl" to "PL", // "Polish"
|
||||||
// "pt" to "PT", // "Portuguese"
|
// "pt" to "PT", // "Portuguese"
|
||||||
// "ro" to "RO", // "Romanian"
|
// "ro" to "RO", // "Romanian"
|
||||||
// "ru" to "RU", // "Russian"
|
// "ru" to "RU", // "Russian"
|
||||||
// "si" to "SI", // "Sinhala"
|
// "si" to "SI", // "Sinhala"
|
||||||
// "sk" to "SK", // "Slovak"
|
// "sk" to "SK", // "Slovak"
|
||||||
// "sl" to "SL", // "Slovenian"
|
// "sl" to "SL", // "Slovenian"
|
||||||
// "sq" to "SQ", // "Albanian"
|
// "sq" to "SQ", // "Albanian"
|
||||||
// "sr" to "SR", // "Serbian"
|
// "sr" to "SR", // "Serbian"
|
||||||
// "sv" to "SV", // "Swedish"
|
// "sv" to "SV", // "Swedish"
|
||||||
// "ta" to "TA", // "Tamil"
|
// "ta" to "TA", // "Tamil"
|
||||||
// "te" to "TE", // "Telugu"
|
// "te" to "TE", // "Telugu"
|
||||||
// "th" to "TH", // "Thai"
|
// "th" to "TH", // "Thai"
|
||||||
// "tl" to "TL", // "Tagalog"
|
// "tl" to "TL", // "Tagalog"
|
||||||
// "tr" to "TR", // "Turkish"
|
// "tr" to "TR", // "Turkish"
|
||||||
// "uk" to "UK", // "Ukranian"
|
// "uk" to "UK", // "Ukranian"
|
||||||
// "ur" to "UR", // "Urdu"
|
// "ur" to "UR", // "Urdu"
|
||||||
// "vi" to "VI", // "Vietnamese"
|
// "vi" to "VI", // "Vietnamese"
|
||||||
// "zh" to "ZH", // "Chinese BG code"
|
// "zh" to "ZH", // "Chinese BG code"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import com.lagradost.cloudstream3.mvvm.Resource
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
||||||
import com.lagradost.cloudstream3.newSearchResponseList
|
import com.lagradost.cloudstream3.newSearchResponseList
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.atomicListOf
|
import com.lagradost.cloudstream3.utils.Coroutines.threadSafeListOf
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.async
|
import kotlinx.coroutines.async
|
||||||
|
|
@ -55,7 +55,7 @@ class APIRepository(val api: MainAPI) {
|
||||||
val hash: Pair<String, String>
|
val hash: Pair<String, String>
|
||||||
)
|
)
|
||||||
|
|
||||||
private val cache = atomicListOf<SavedLoadResponse>()
|
private val cache = threadSafeListOf<SavedLoadResponse>()
|
||||||
private var cacheIndex: Int = 0
|
private var cacheIndex: Int = 0
|
||||||
const val CACHE_SIZE = 20
|
const val CACHE_SIZE = 20
|
||||||
|
|
||||||
|
|
@ -66,9 +66,11 @@ class APIRepository(val api: MainAPI) {
|
||||||
|
|
||||||
private fun afterPluginsLoaded(forceReload: Boolean) {
|
private fun afterPluginsLoaded(forceReload: Boolean) {
|
||||||
if (forceReload) {
|
if (forceReload) {
|
||||||
|
synchronized(cache) {
|
||||||
cache.clear()
|
cache.clear()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
init {
|
init {
|
||||||
afterPluginsLoadedEvent += ::afterPluginsLoaded
|
afterPluginsLoadedEvent += ::afterPluginsLoaded
|
||||||
|
|
@ -89,25 +91,21 @@ class APIRepository(val api: MainAPI) {
|
||||||
val fixedUrl = api.fixUrl(url)
|
val fixedUrl = api.fixUrl(url)
|
||||||
val lookingForHash = Pair(api.name, fixedUrl)
|
val lookingForHash = Pair(api.name, fixedUrl)
|
||||||
|
|
||||||
val cached = cache.withLock {
|
synchronized(cache) {
|
||||||
var found: LoadResponse? = null
|
|
||||||
for (item in cache) {
|
for (item in cache) {
|
||||||
// 10 min save
|
// 10 min save
|
||||||
if (item.hash == lookingForHash && (unixTime - item.unixTime) < 60 * 10) {
|
if (item.hash == lookingForHash && (unixTime - item.unixTime) < 60 * 10) {
|
||||||
found = item.response
|
return@withTimeout item.response
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
found
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cached != null) return@withTimeout cached
|
|
||||||
api.load(fixedUrl)?.also { response ->
|
api.load(fixedUrl)?.also { response ->
|
||||||
// Remove all blank tags as early as possible
|
// Remove all blank tags as early as possible
|
||||||
response.tags = response.tags?.filter { it.isNotBlank() }
|
response.tags = response.tags?.filter { it.isNotBlank() }
|
||||||
val add = SavedLoadResponse(unixTime, response, lookingForHash)
|
val add = SavedLoadResponse(unixTime, response, lookingForHash)
|
||||||
|
|
||||||
cache.withLock {
|
synchronized(cache) {
|
||||||
if (cache.size > CACHE_SIZE) {
|
if (cache.size > CACHE_SIZE) {
|
||||||
cache[cacheIndex] = add // rolling cache
|
cache[cacheIndex] = add // rolling cache
|
||||||
cacheIndex = (cacheIndex + 1) % CACHE_SIZE
|
cacheIndex = (cacheIndex + 1) % CACHE_SIZE
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,9 @@ import android.widget.ImageView
|
||||||
import android.widget.LinearLayout
|
import android.widget.LinearLayout
|
||||||
import android.widget.ListView
|
import android.widget.ListView
|
||||||
import androidx.appcompat.app.AlertDialog
|
import androidx.appcompat.app.AlertDialog
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.databind.DeserializationFeature
|
||||||
|
import com.fasterxml.jackson.databind.json.JsonMapper
|
||||||
|
import com.fasterxml.jackson.module.kotlin.kotlinModule
|
||||||
import com.google.android.gms.cast.MediaLoadOptions
|
import com.google.android.gms.cast.MediaLoadOptions
|
||||||
import com.google.android.gms.cast.MediaQueueItem
|
import com.google.android.gms.cast.MediaQueueItem
|
||||||
import com.google.android.gms.cast.MediaSeekOptions
|
import com.google.android.gms.cast.MediaSeekOptions
|
||||||
|
|
@ -35,24 +37,35 @@ import com.lagradost.cloudstream3.ui.player.SubtitleData
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.ui.subtitles.ChromecastSubtitlesFragment
|
import com.lagradost.cloudstream3.ui.subtitles.ChromecastSubtitlesFragment
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.sortSubs
|
import com.lagradost.cloudstream3.utils.AppContextUtils.sortSubs
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import com.lagradost.cloudstream3.utils.CastHelper.awaitLinks
|
import com.lagradost.cloudstream3.utils.CastHelper.awaitLinks
|
||||||
import com.lagradost.cloudstream3.utils.CastHelper.getMediaInfo
|
import com.lagradost.cloudstream3.utils.CastHelper.getMediaInfo
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
|
import com.lagradost.cloudstream3.utils.DataStore.toKotlinObject
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper
|
import com.lagradost.cloudstream3.utils.DataStoreHelper
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.Qualities
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import org.json.JSONObject
|
import org.json.JSONObject
|
||||||
|
|
||||||
|
/*class SkipOpController(val view: ImageView) : UIController() {
|
||||||
|
init {
|
||||||
|
view.setImageResource(R.drawable.exo_controls_fastforward)
|
||||||
|
view.setOnClickListener {
|
||||||
|
remoteMediaClient?.let {
|
||||||
|
val options = MediaSeekOptions.Builder()
|
||||||
|
.setPosition(it.approximateStreamPosition + 85000)
|
||||||
|
it.seek(options.build())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
private fun RemoteMediaClient.getItemIndex(): Int? {
|
private fun RemoteMediaClient.getItemIndex(): Int? {
|
||||||
return try {
|
return try {
|
||||||
val index = this.mediaQueue.itemIds.indexOf(this.currentItem?.itemId ?: 0)
|
val index = this.mediaQueue.itemIds.indexOf(this.currentItem?.itemId ?: 0)
|
||||||
if (index < 0) null else index
|
if (index < 0) null else index
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -79,41 +92,51 @@ class SkipNextEpisodeController(val view: ImageView) : UIController() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MetadataHolder(
|
data class MetadataHolder(
|
||||||
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
|
val apiName: String,
|
||||||
@JsonProperty("isMovie") @SerialName("isMovie") val isMovie: Boolean,
|
val isMovie: Boolean,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
val title: String?,
|
||||||
@JsonProperty("poster") @SerialName("poster") val poster: String?,
|
val poster: String?,
|
||||||
@JsonProperty("currentEpisodeIndex") @SerialName("currentEpisodeIndex") val currentEpisodeIndex: Int,
|
val currentEpisodeIndex: Int,
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: List<ResultEpisode>,
|
val episodes: List<ResultEpisode>,
|
||||||
@JsonProperty("currentLinks") @SerialName("currentLinks") val currentLinks: List<ExtractorLink>,
|
val currentLinks: List<ExtractorLink>,
|
||||||
@JsonProperty("currentSubtitles") @SerialName("currentSubtitles") val currentSubtitles: List<SubtitleData>,
|
val currentSubtitles: List<SubtitleData>
|
||||||
)
|
)
|
||||||
|
|
||||||
class SelectSourceController(val view: ImageView, val activity: ControllerActivity) : UIController() {
|
class SelectSourceController(val view: ImageView, val activity: ControllerActivity) :
|
||||||
|
UIController() {
|
||||||
|
private val mapper: JsonMapper = JsonMapper.builder().addModule(kotlinModule())
|
||||||
|
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false).build()
|
||||||
|
|
||||||
init {
|
init {
|
||||||
view.setImageResource(R.drawable.ic_baseline_playlist_play_24)
|
view.setImageResource(R.drawable.ic_baseline_playlist_play_24)
|
||||||
view.setOnClickListener {
|
view.setOnClickListener {
|
||||||
|
// lateinit var dialog: AlertDialog
|
||||||
val holder = getCurrentMetaData()
|
val holder = getCurrentMetaData()
|
||||||
|
|
||||||
if (holder != null) {
|
if (holder != null) {
|
||||||
val items = holder.currentLinks
|
val items = holder.currentLinks
|
||||||
if (items.isNotEmpty() && remoteMediaClient?.currentItem != null) {
|
if (items.isNotEmpty() && remoteMediaClient?.currentItem != null) {
|
||||||
val subTracks = remoteMediaClient?.mediaInfo?.mediaTracks?.filter { it.type == MediaTrack.TYPE_TEXT }
|
val subTracks =
|
||||||
|
remoteMediaClient?.mediaInfo?.mediaTracks?.filter { it.type == MediaTrack.TYPE_TEXT }
|
||||||
?: ArrayList()
|
?: ArrayList()
|
||||||
|
|
||||||
val bottomSheetDialogBuilder = AlertDialog.Builder(view.context, R.style.AlertDialogCustomBlack)
|
val bottomSheetDialogBuilder =
|
||||||
|
AlertDialog.Builder(view.context, R.style.AlertDialogCustomBlack)
|
||||||
bottomSheetDialogBuilder.setView(R.layout.sort_bottom_sheet)
|
bottomSheetDialogBuilder.setView(R.layout.sort_bottom_sheet)
|
||||||
|
|
||||||
val bottomSheetDialog = bottomSheetDialogBuilder.create()
|
val bottomSheetDialog = bottomSheetDialogBuilder.create()
|
||||||
bottomSheetDialog.show()
|
bottomSheetDialog.show()
|
||||||
|
// bottomSheetDialog.setContentView(R.layout.sort_bottom_sheet)
|
||||||
val providerList = bottomSheetDialog.findViewById<ListView>(R.id.sort_providers)!!
|
val providerList =
|
||||||
val subtitleList = bottomSheetDialog.findViewById<ListView>(R.id.sort_subtitles)!!
|
bottomSheetDialog.findViewById<ListView>(R.id.sort_providers)!!
|
||||||
|
val subtitleList =
|
||||||
|
bottomSheetDialog.findViewById<ListView>(R.id.sort_subtitles)!!
|
||||||
if (subTracks.isEmpty()) {
|
if (subTracks.isEmpty()) {
|
||||||
bottomSheetDialog.findViewById<LinearLayout>(R.id.sort_subtitles_holder)?.visibility = GONE
|
bottomSheetDialog.findViewById<LinearLayout>(R.id.sort_subtitles_holder)?.visibility =
|
||||||
|
GONE
|
||||||
} else {
|
} else {
|
||||||
val arrayAdapter = ArrayAdapter<String>(view.context, R.layout.sort_bottom_single_choice)
|
val arrayAdapter =
|
||||||
|
ArrayAdapter<String>(view.context, R.layout.sort_bottom_single_choice)
|
||||||
arrayAdapter.add(view.context.getString(R.string.no_subtitles))
|
arrayAdapter.add(view.context.getString(R.string.no_subtitles))
|
||||||
arrayAdapter.addAll(subTracks.mapNotNull { it.name })
|
arrayAdapter.addAll(subTracks.mapNotNull { it.name })
|
||||||
|
|
||||||
|
|
@ -121,7 +144,9 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
subtitleList.adapter = arrayAdapter
|
subtitleList.adapter = arrayAdapter
|
||||||
|
|
||||||
val currentTracks = remoteMediaClient?.mediaStatus?.activeTrackIds
|
val currentTracks = remoteMediaClient?.mediaStatus?.activeTrackIds
|
||||||
val subtitleIndex = if (currentTracks == null) 0 else subTracks.map { it.id }
|
|
||||||
|
val subtitleIndex =
|
||||||
|
if (currentTracks == null) 0 else subTracks.map { it.id }
|
||||||
.indexOfFirst { currentTracks.contains(it) } + 1
|
.indexOfFirst { currentTracks.contains(it) } + 1
|
||||||
|
|
||||||
subtitleList.setSelection(subtitleIndex)
|
subtitleList.setSelection(subtitleIndex)
|
||||||
|
|
@ -134,7 +159,9 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
ChromecastSubtitlesFragment.getCurrentSavedStyle().apply {
|
ChromecastSubtitlesFragment.getCurrentSavedStyle().apply {
|
||||||
val font = TextTrackStyle()
|
val font = TextTrackStyle()
|
||||||
font.setFontFamily(fontFamily ?: "Google Sans")
|
font.setFontFamily(fontFamily ?: "Google Sans")
|
||||||
fontGenericFamily?.let { font.fontGenericFamily = it }
|
fontGenericFamily?.let {
|
||||||
|
font.fontGenericFamily = it
|
||||||
|
}
|
||||||
font.windowColor = windowColor
|
font.windowColor = windowColor
|
||||||
font.backgroundColor = backgroundColor
|
font.backgroundColor = backgroundColor
|
||||||
|
|
||||||
|
|
@ -160,15 +187,17 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://developers.google.com/cast/docs/reference/web_receiver/cast.framework.messages.MediaInformation
|
//https://developers.google.com/cast/docs/reference/web_receiver/cast.framework.messages.MediaInformation
|
||||||
val contentUrl = (remoteMediaClient?.currentItem?.media?.contentUrl
|
val contentUrl = (remoteMediaClient?.currentItem?.media?.contentUrl
|
||||||
?: remoteMediaClient?.currentItem?.media?.contentId)
|
?: remoteMediaClient?.currentItem?.media?.contentId)
|
||||||
|
|
||||||
val sortingMethods = items.map { "${it.name} ${Qualities.getStringByInt(it.quality)}" }
|
val sortingMethods =
|
||||||
|
items.map { "${it.name} ${Qualities.getStringByInt(it.quality)}" }
|
||||||
.toTypedArray()
|
.toTypedArray()
|
||||||
val sotringIndex = items.indexOfFirst { it.url == contentUrl }
|
val sotringIndex = items.indexOfFirst { it.url == contentUrl }
|
||||||
|
|
||||||
val arrayAdapter = ArrayAdapter<String>(view.context, R.layout.sort_bottom_single_choice)
|
val arrayAdapter =
|
||||||
|
ArrayAdapter<String>(view.context, R.layout.sort_bottom_single_choice)
|
||||||
arrayAdapter.addAll(sortingMethods.toMutableList())
|
arrayAdapter.addAll(sortingMethods.toMutableList())
|
||||||
|
|
||||||
providerList.choiceMode = AbsListView.CHOICE_MODE_SINGLE
|
providerList.choiceMode = AbsListView.CHOICE_MODE_SINGLE
|
||||||
|
|
@ -178,8 +207,10 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
|
|
||||||
providerList.setOnItemClickListener { _, _, which, _ ->
|
providerList.setOnItemClickListener { _, _, which, _ ->
|
||||||
val epData = holder.episodes[holder.currentEpisodeIndex]
|
val epData = holder.episodes[holder.currentEpisodeIndex]
|
||||||
|
|
||||||
fun loadMirror(index: Int) {
|
fun loadMirror(index: Int) {
|
||||||
if (holder.currentLinks.size <= index) return
|
if (holder.currentLinks.size <= index) return
|
||||||
|
|
||||||
val mediaItem = getMediaInfo(
|
val mediaItem = getMediaInfo(
|
||||||
epData,
|
epData,
|
||||||
holder,
|
holder,
|
||||||
|
|
@ -189,21 +220,25 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
)
|
)
|
||||||
|
|
||||||
val startAt = remoteMediaClient?.approximateStreamPosition ?: 0
|
val startAt = remoteMediaClient?.approximateStreamPosition ?: 0
|
||||||
|
|
||||||
|
//remoteMediaClient.load(mediaItem, true, startAt)
|
||||||
try { // THIS IS VERY IMPORTANT BECAUSE WE NEVER WANT TO AUTOLOAD THE NEXT EPISODE
|
try { // THIS IS VERY IMPORTANT BECAUSE WE NEVER WANT TO AUTOLOAD THE NEXT EPISODE
|
||||||
val currentIdIndex = remoteMediaClient?.getItemIndex()
|
val currentIdIndex = remoteMediaClient?.getItemIndex()
|
||||||
|
|
||||||
val nextId = remoteMediaClient?.mediaQueue?.itemIds?.get(
|
val nextId = remoteMediaClient?.mediaQueue?.itemIds?.get(
|
||||||
currentIdIndex?.plus(1) ?: 0
|
currentIdIndex?.plus(1) ?: 0
|
||||||
)
|
)
|
||||||
|
|
||||||
if (currentIdIndex == null && nextId != null) {
|
if (currentIdIndex == null && nextId != null) {
|
||||||
awaitLinks(
|
awaitLinks(
|
||||||
remoteMediaClient?.queueInsertAndPlayItem(
|
remoteMediaClient?.queueInsertAndPlayItem(
|
||||||
MediaQueueItem.Builder(mediaItem).build(),
|
MediaQueueItem.Builder(mediaItem).build(),
|
||||||
nextId,
|
nextId,
|
||||||
startAt,
|
startAt,
|
||||||
JSONObject(),
|
JSONObject()
|
||||||
)
|
)
|
||||||
) { loadMirror(index + 1) }
|
) {
|
||||||
|
loadMirror(index + 1)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
val mediaLoadOptions =
|
val mediaLoadOptions =
|
||||||
MediaLoadOptions.Builder()
|
MediaLoadOptions.Builder()
|
||||||
|
|
@ -215,9 +250,11 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
mediaItem,
|
mediaItem,
|
||||||
mediaLoadOptions
|
mediaLoadOptions
|
||||||
)
|
)
|
||||||
) { loadMirror(index + 1) }
|
) {
|
||||||
|
loadMirror(index + 1)
|
||||||
}
|
}
|
||||||
} catch (_: Exception) {
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
val mediaLoadOptions =
|
val mediaLoadOptions =
|
||||||
MediaLoadOptions.Builder()
|
MediaLoadOptions.Builder()
|
||||||
.setPlayPosition(startAt)
|
.setPlayPosition(startAt)
|
||||||
|
|
@ -228,8 +265,8 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loadMirror(which)
|
loadMirror(which)
|
||||||
|
|
||||||
bottomSheetDialog.dismissSafe(activity)
|
bottomSheetDialog.dismissSafe(activity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -239,19 +276,23 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
|
|
||||||
private fun getCurrentMetaData(): MetadataHolder? {
|
private fun getCurrentMetaData(): MetadataHolder? {
|
||||||
return try {
|
return try {
|
||||||
val data = remoteMediaClient?.mediaInfo?.customData?.toString() ?: return null
|
val data = remoteMediaClient?.mediaInfo?.customData?.toString()
|
||||||
parseJson<MetadataHolder>(data)
|
data?.toKotlinObject()
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var isLoadingMore = false
|
var isLoadingMore = false
|
||||||
|
|
||||||
|
|
||||||
override fun onMediaStatusUpdated() {
|
override fun onMediaStatusUpdated() {
|
||||||
super.onMediaStatusUpdated()
|
super.onMediaStatusUpdated()
|
||||||
val meta = getCurrentMetaData()
|
val meta = getCurrentMetaData()
|
||||||
view.visibility = if ((meta?.currentLinks?.size ?: 0) > 1) VISIBLE else INVISIBLE
|
|
||||||
|
|
||||||
|
view.visibility = if ((meta?.currentLinks?.size
|
||||||
|
?: 0) > 1
|
||||||
|
) VISIBLE else INVISIBLE
|
||||||
try {
|
try {
|
||||||
if (meta != null && meta.episodes.size > meta.currentEpisodeIndex + 1) {
|
if (meta != null && meta.episodes.size > meta.currentEpisodeIndex + 1) {
|
||||||
val currentIdIndex = remoteMediaClient?.getItemIndex() ?: return
|
val currentIdIndex = remoteMediaClient?.getItemIndex() ?: return
|
||||||
|
|
@ -268,7 +309,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
currentPosition,
|
currentPosition,
|
||||||
currentDuration,
|
currentDuration,
|
||||||
epData,
|
epData,
|
||||||
meta.episodes.getOrNull(index + 1),
|
meta.episodes.getOrNull(index + 1)
|
||||||
)
|
)
|
||||||
} catch (t: Throwable) {
|
} catch (t: Throwable) {
|
||||||
logError(t)
|
logError(t)
|
||||||
|
|
@ -279,7 +320,9 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
ioSafe {
|
ioSafe {
|
||||||
val currentLinks = mutableSetOf<ExtractorLink>()
|
val currentLinks = mutableSetOf<ExtractorLink>()
|
||||||
val currentSubs = mutableSetOf<SubtitleData>()
|
val currentSubs = mutableSetOf<SubtitleData>()
|
||||||
|
|
||||||
val generator = RepoLinkGenerator(listOf(epData))
|
val generator = RepoLinkGenerator(listOf(epData))
|
||||||
|
|
||||||
val isSuccessful = safeApiCall {
|
val isSuccessful = safeApiCall {
|
||||||
generator.generateLinks(
|
generator.generateLinks(
|
||||||
clearCache = false,
|
clearCache = false,
|
||||||
|
|
@ -292,7 +335,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
currentSubs.add(it)
|
currentSubs.add(it)
|
||||||
},
|
},
|
||||||
offset = 0,
|
offset = 0,
|
||||||
isCasting = true,
|
isCasting = true
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -303,18 +346,32 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
val jsonCopy = meta.copy(
|
val jsonCopy = meta.copy(
|
||||||
currentLinks = sortedLinks,
|
currentLinks = sortedLinks,
|
||||||
currentSubtitles = sortedSubs,
|
currentSubtitles = sortedSubs,
|
||||||
currentEpisodeIndex = index,
|
currentEpisodeIndex = index
|
||||||
)
|
)
|
||||||
|
|
||||||
val done = JSONObject(jsonCopy.toJson())
|
val done =
|
||||||
|
JSONObject(jsonCopy.toJson())
|
||||||
|
|
||||||
val mediaInfo = getMediaInfo(
|
val mediaInfo = getMediaInfo(
|
||||||
epData,
|
epData,
|
||||||
jsonCopy,
|
jsonCopy,
|
||||||
0,
|
0,
|
||||||
done,
|
done,
|
||||||
sortedSubs,
|
sortedSubs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
/*fun loadIndex(index: Int) {
|
||||||
|
println("LOAD INDEX::::: $index")
|
||||||
|
if (meta.currentLinks.size <= index) return
|
||||||
|
val info = getMediaInfo(
|
||||||
|
epData,
|
||||||
|
meta,
|
||||||
|
index,
|
||||||
|
done)
|
||||||
|
awaitLinks(remoteMediaClient?.load(info, true, 0)) {
|
||||||
|
loadIndex(index + 1)
|
||||||
|
}
|
||||||
|
}*/
|
||||||
activity.runOnUiThread {
|
activity.runOnUiThread {
|
||||||
awaitLinks(
|
awaitLinks(
|
||||||
remoteMediaClient?.queueAppendItem(
|
remoteMediaClient?.queueAppendItem(
|
||||||
|
|
@ -323,6 +380,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
println("FAILED TO LOAD NEXT ITEM")
|
println("FAILED TO LOAD NEXT ITEM")
|
||||||
|
// loadIndex(1)
|
||||||
}
|
}
|
||||||
isLoadingMore = false
|
isLoadingMore = false
|
||||||
}
|
}
|
||||||
|
|
@ -345,7 +403,10 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
|
|
||||||
class SkipTimeController(val view: ImageView, forwards: Boolean) : UIController() {
|
class SkipTimeController(val view: ImageView, forwards: Boolean) : UIController() {
|
||||||
init {
|
init {
|
||||||
|
//val settingsManager = PreferenceManager.getDefaultSharedPreferences()
|
||||||
|
//val time = settingsManager?.getInt("chromecast_tap_time", 30) ?: 30
|
||||||
val time = 30
|
val time = 30
|
||||||
|
//view.setImageResource(if (forwards) R.drawable.netflix_skip_forward else R.drawable.netflix_skip_back)
|
||||||
view.setImageResource(if (forwards) R.drawable.go_forward_30 else R.drawable.go_back_30)
|
view.setImageResource(if (forwards) R.drawable.go_forward_30 else R.drawable.go_back_30)
|
||||||
view.setOnClickListener {
|
view.setOnClickListener {
|
||||||
remoteMediaClient?.let {
|
remoteMediaClient?.let {
|
||||||
|
|
|
||||||
|
|
@ -37,10 +37,8 @@ import com.lagradost.cloudstream3.utils.DataStoreHelper
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper.getDefaultAccount
|
import com.lagradost.cloudstream3.utils.DataStoreHelper.getDefaultAccount
|
||||||
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
|
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showInputMethod
|
import com.lagradost.cloudstream3.utils.UIHelper.showInputMethod
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
|
|
||||||
|
|
||||||
object AccountHelper {
|
object AccountHelper {
|
||||||
fun showAccountEditDialog(
|
fun showAccountEditDialog(
|
||||||
|
|
@ -166,7 +164,7 @@ object AccountHelper {
|
||||||
|
|
||||||
canSetPin = true
|
canSetPin = true
|
||||||
|
|
||||||
binding.editProfilePhotoButton.setOnClickListener {
|
binding.editProfilePhotoButton.setOnClickListener({
|
||||||
val bottomSheetDialog = BottomSheetDialog(context)
|
val bottomSheetDialog = BottomSheetDialog(context)
|
||||||
val sheetBinding = BottomInputDialogBinding.inflate(LayoutInflater.from(context))
|
val sheetBinding = BottomInputDialogBinding.inflate(LayoutInflater.from(context))
|
||||||
bottomSheetDialog.setContentView(sheetBinding.root)
|
bottomSheetDialog.setContentView(sheetBinding.root)
|
||||||
|
|
@ -176,13 +174,9 @@ object AccountHelper {
|
||||||
text1.text = context.getString(R.string.edit_profile_image_title)
|
text1.text = context.getString(R.string.edit_profile_image_title)
|
||||||
nginxTextInput.hint = context.getString(R.string.edit_profile_image_hint)
|
nginxTextInput.hint = context.getString(R.string.edit_profile_image_hint)
|
||||||
|
|
||||||
applyBtt.setOnClickListener {
|
applyBtt.setOnClickListener({
|
||||||
val url = sheetBinding.nginxTextInput.text.toString()
|
val url = sheetBinding.nginxTextInput.text.toString()
|
||||||
if (url.isEmpty()) {
|
if (url.isNotEmpty()) {
|
||||||
showToast(R.string.edit_profile_image_error_empty, Toast.LENGTH_SHORT)
|
|
||||||
return@setOnClickListener
|
|
||||||
}
|
|
||||||
applyBtt.showProgress()
|
|
||||||
val imageLoader = ImageLoader(context)
|
val imageLoader = ImageLoader(context)
|
||||||
val request = ImageRequest.Builder(context)
|
val request = ImageRequest.Builder(context)
|
||||||
.data(url)
|
.data(url)
|
||||||
|
|
@ -195,27 +189,27 @@ object AccountHelper {
|
||||||
R.string.edit_profile_image_success,
|
R.string.edit_profile_image_success,
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
)
|
)
|
||||||
bottomSheetDialog.dismissSafe()
|
bottomSheetDialog.dismiss()
|
||||||
},
|
},
|
||||||
onError = { _, _ ->
|
onError = { _, _ ->
|
||||||
showToast(
|
showToast(
|
||||||
R.string.edit_profile_image_error_invalid,
|
R.string.edit_profile_image_error_invalid,
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
)
|
)
|
||||||
applyBtt.hideProgress()
|
|
||||||
},
|
|
||||||
onCancel = {
|
|
||||||
applyBtt.hideProgress()
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.build()
|
.build()
|
||||||
imageLoader.enqueue(request)
|
imageLoader.enqueue(request)
|
||||||
|
} else {
|
||||||
|
showToast(R.string.edit_profile_image_error_empty, Toast.LENGTH_SHORT)
|
||||||
}
|
}
|
||||||
sheetBinding.cancelBtt.setOnClickListener {
|
|
||||||
bottomSheetDialog.dismissSafe()
|
bottomSheetDialog.dismissSafe()
|
||||||
|
})
|
||||||
|
sheetBinding.cancelBtt.setOnClickListener({
|
||||||
|
bottomSheetDialog.dismissSafe()
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun showPinInputDialog(
|
fun showPinInputDialog(
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ import androidx.lifecycle.LiveData
|
||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import androidx.lifecycle.viewModelScope
|
import androidx.lifecycle.viewModelScope
|
||||||
import com.lagradost.api.Log
|
import com.lagradost.api.Log
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp
|
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
import com.lagradost.cloudstream3.isEpisodeBased
|
import com.lagradost.cloudstream3.isEpisodeBased
|
||||||
import com.lagradost.cloudstream3.mvvm.Resource
|
import com.lagradost.cloudstream3.mvvm.Resource
|
||||||
|
|
@ -37,7 +36,6 @@ import com.lagradost.cloudstream3.utils.ResourceLiveData
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
|
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
||||||
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.deleteFilesAndUpdateSettings
|
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.deleteFilesAndUpdateSettings
|
||||||
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.downloadDeleteEvent
|
|
||||||
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.getDownloadFileInfo
|
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.getDownloadFileInfo
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
|
@ -69,17 +67,6 @@ class DownloadViewModel : ViewModel() {
|
||||||
private val _selectedItemIds = ConsistentLiveData<Set<Int>?>(null)
|
private val _selectedItemIds = ConsistentLiveData<Set<Int>?>(null)
|
||||||
val selectedItemIds: LiveData<Set<Int>?> = _selectedItemIds
|
val selectedItemIds: LiveData<Set<Int>?> = _selectedItemIds
|
||||||
|
|
||||||
init {
|
|
||||||
// Keep the Downloads list in sync when a download is deleted/cancelled from
|
|
||||||
// anywhere in the app (result page button, queue, notification, etc.). See
|
|
||||||
// onDownloadDeleted for the rationale (issue #1227).
|
|
||||||
downloadDeleteEvent += ::onDownloadDeleted
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCleared() {
|
|
||||||
downloadDeleteEvent -= ::onDownloadDeleted
|
|
||||||
super.onCleared()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun cancelSelection() {
|
fun cancelSelection() {
|
||||||
updateSelectedItems { null }
|
updateSelectedItems { null }
|
||||||
|
|
@ -402,18 +389,6 @@ class DownloadViewModel : ViewModel() {
|
||||||
postChildren(_childCards.success?.filter { it.data.id !in idsToRemove })
|
postChildren(_childCards.success?.filter { it.data.id !in idsToRemove })
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Refreshes the Downloads screen in real time when a download is deleted/cancelled.
|
|
||||||
*/
|
|
||||||
private fun onDownloadDeleted(id: Int) {
|
|
||||||
// Keep multi-select state consistent: forget the removed id if it was selected.
|
|
||||||
updateSelectedItems { it?.minus(id) }
|
|
||||||
|
|
||||||
val context = CloudStreamApp.context ?: return
|
|
||||||
updateHeaderList(context)
|
|
||||||
postChildren(_childCards.success?.filterNot { it.data.id == id })
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateStorageStats(visual: List<VisualDownloadCached.Header>) {
|
private fun updateStorageStats(visual: List<VisualDownloadCached.Header>) {
|
||||||
try {
|
try {
|
||||||
val stat = StatFs(Environment.getExternalStorageDirectory().path)
|
val stat = StatFs(Environment.getExternalStorageDirectory().path)
|
||||||
|
|
|
||||||
|
|
@ -164,11 +164,9 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun downloadDeleteEvent(data: Int) {
|
/*fun downloadDeleteEvent(data: Int) {
|
||||||
if (data == persistentId) {
|
|
||||||
resetView()
|
}*/
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*fun downloadEvent(data: Pair<Int, VideoDownloadManager.DownloadActionType>) {
|
/*fun downloadEvent(data: Pair<Int, VideoDownloadManager.DownloadActionType>) {
|
||||||
val (id, action) = data
|
val (id, action) = data
|
||||||
|
|
@ -187,7 +185,7 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
|
||||||
|
|
||||||
override fun onAttachedToWindow() {
|
override fun onAttachedToWindow() {
|
||||||
VideoDownloadManager.downloadStatusEvent += ::downloadStatusEvent
|
VideoDownloadManager.downloadStatusEvent += ::downloadStatusEvent
|
||||||
VideoDownloadManager.downloadDeleteEvent += ::downloadDeleteEvent
|
// VideoDownloadManager.downloadDeleteEvent += ::downloadDeleteEvent
|
||||||
// VideoDownloadManager.downloadEvent += ::downloadEvent
|
// VideoDownloadManager.downloadEvent += ::downloadEvent
|
||||||
VideoDownloadManager.downloadProgressEvent += ::downloadProgressEvent
|
VideoDownloadManager.downloadProgressEvent += ::downloadProgressEvent
|
||||||
|
|
||||||
|
|
@ -202,7 +200,7 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
|
||||||
|
|
||||||
override fun onDetachedFromWindow() {
|
override fun onDetachedFromWindow() {
|
||||||
VideoDownloadManager.downloadStatusEvent -= ::downloadStatusEvent
|
VideoDownloadManager.downloadStatusEvent -= ::downloadStatusEvent
|
||||||
VideoDownloadManager.downloadDeleteEvent -= ::downloadDeleteEvent
|
// VideoDownloadManager.downloadDeleteEvent -= ::downloadDeleteEvent
|
||||||
// VideoDownloadManager.downloadEvent -= ::downloadEvent
|
// VideoDownloadManager.downloadEvent -= ::downloadEvent
|
||||||
VideoDownloadManager.downloadProgressEvent -= ::downloadProgressEvent
|
VideoDownloadManager.downloadProgressEvent -= ::downloadProgressEvent
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,6 @@ import androidx.core.view.isVisible
|
||||||
import androidx.fragment.app.activityViewModels
|
import androidx.fragment.app.activityViewModels
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.lagradost.cloudstream3.plugins.PluginManager
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getActivity
|
|
||||||
import com.google.android.material.bottomsheet.BottomSheetBehavior
|
import com.google.android.material.bottomsheet.BottomSheetBehavior
|
||||||
import com.google.android.material.bottomsheet.BottomSheetDialog
|
import com.google.android.material.bottomsheet.BottomSheetDialog
|
||||||
import com.google.android.material.chip.Chip
|
import com.google.android.material.chip.Chip
|
||||||
|
|
@ -45,7 +43,6 @@ import com.lagradost.cloudstream3.mvvm.Resource
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.mvvm.observe
|
import com.lagradost.cloudstream3.mvvm.observe
|
||||||
import com.lagradost.cloudstream3.mvvm.observeNullable
|
import com.lagradost.cloudstream3.mvvm.observeNullable
|
||||||
import com.lagradost.cloudstream3.plugins.Plugin
|
|
||||||
import com.lagradost.cloudstream3.ui.APIRepository.Companion.noneApi
|
import com.lagradost.cloudstream3.ui.APIRepository.Companion.noneApi
|
||||||
import com.lagradost.cloudstream3.ui.APIRepository.Companion.randomApi
|
import com.lagradost.cloudstream3.ui.APIRepository.Companion.randomApi
|
||||||
import com.lagradost.cloudstream3.ui.BaseFragment
|
import com.lagradost.cloudstream3.ui.BaseFragment
|
||||||
|
|
@ -427,30 +424,11 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
|
||||||
.inflate(R.layout.sort_bottom_single_provider_choice, parent, false)
|
.inflate(R.layout.sort_bottom_single_provider_choice, parent, false)
|
||||||
val titleText = view.findViewById<TextView>(R.id.text1)
|
val titleText = view.findViewById<TextView>(R.id.text1)
|
||||||
val pinIcon = view.findViewById<ImageView>(R.id.pinicon)
|
val pinIcon = view.findViewById<ImageView>(R.id.pinicon)
|
||||||
val settingsIcon = view.findViewById<ImageView>(R.id.action_settings)
|
|
||||||
|
|
||||||
val name = getItem(position)
|
val name = getItem(position)
|
||||||
titleText?.text = name
|
titleText?.text = name
|
||||||
val providerApi = currentValidApis[position]
|
|
||||||
val isPinned =
|
val isPinned =
|
||||||
pinnedphashset.contains(providerApi.name)
|
pinnedphashset.contains(currentValidApis[position].name)
|
||||||
pinIcon.visibility = if (isPinned) View.VISIBLE else View.GONE
|
pinIcon.visibility = if (isPinned) View.VISIBLE else View.GONE
|
||||||
|
|
||||||
val pluginInstance = providerApi.sourcePlugin?.let { PluginManager.plugins[it] } as? Plugin
|
|
||||||
val isDownloadedPluginWithSettings = pluginInstance?.openSettings != null && !isLayout(TV)
|
|
||||||
|
|
||||||
settingsIcon.visibility = if (isDownloadedPluginWithSettings) View.VISIBLE else View.GONE
|
|
||||||
if (isDownloadedPluginWithSettings) {
|
|
||||||
settingsIcon.setOnClickListener {
|
|
||||||
try {
|
|
||||||
val activityContext = it.context.getActivity() ?: it.context
|
|
||||||
pluginInstance.openSettings?.invoke(activityContext)
|
|
||||||
} catch (e: Throwable) {
|
|
||||||
logError(e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return view
|
return view
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -473,14 +451,7 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
|
||||||
arrayAdapter.clear()
|
arrayAdapter.clear()
|
||||||
val sortedApis = validAPIs
|
val sortedApis = validAPIs
|
||||||
.filter {
|
.filter {
|
||||||
val isPinned = pinnedphashset.contains(it.name)
|
it.hasMainPage && (pinnedphashset.contains(it.name) || it.supportedTypes.any(
|
||||||
|
|
||||||
// Hide pinned NSFW when NSFW not selected. NSFW is distracting when not chosen.
|
|
||||||
if (isPinned && !preSelectedTypes.contains(TvType.NSFW)) {
|
|
||||||
if (it.supportedTypes.all { type -> type == TvType.NSFW }) return@filter false
|
|
||||||
}
|
|
||||||
|
|
||||||
it.hasMainPage && (isPinned || it.supportedTypes.any(
|
|
||||||
preSelectedTypes::contains
|
preSelectedTypes::contains
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
@ -694,6 +665,7 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
|
||||||
fromUI = true
|
fromUI = true
|
||||||
)
|
)
|
||||||
showToast(R.string.action_reload, Toast.LENGTH_SHORT)
|
showToast(R.string.action_reload, Toast.LENGTH_SHORT)
|
||||||
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
homePreviewSearchButton.setOnClickListener { _ ->
|
homePreviewSearchButton.setOnClickListener { _ ->
|
||||||
|
|
@ -701,23 +673,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
|
||||||
homeViewModel.queryTextSubmit("")
|
homeViewModel.queryTextSubmit("")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load value for toggling Tv layout real time clock. Hide by default at startup
|
|
||||||
// set visibility first, to apply a scroll effect later
|
|
||||||
context?.let {
|
|
||||||
if (isLayout(TV)) {
|
|
||||||
val settingsManager = PreferenceManager.getDefaultSharedPreferences(it)
|
|
||||||
val toggleClock =
|
|
||||||
settingsManager.getBoolean(
|
|
||||||
getString(R.string.tv_layout_clock_key),
|
|
||||||
false
|
|
||||||
)
|
|
||||||
binding.homeClock.isVisible = toggleClock
|
|
||||||
} else {
|
|
||||||
binding.homeClock.isVisible = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
homeMasterRecycler.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
homeMasterRecycler.addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||||
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
|
||||||
if (isLayout(PHONE)) {
|
if (isLayout(PHONE)) {
|
||||||
|
|
@ -757,17 +712,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
|
||||||
view.getLocationInWindow(rect)
|
view.getLocationInWindow(rect)
|
||||||
scrollParent.isVisible = true
|
scrollParent.isVisible = true
|
||||||
scrollParent.translationY = rect[1].toFloat() - 60.toPx
|
scrollParent.translationY = rect[1].toFloat() - 60.toPx
|
||||||
|
|
||||||
// Move the TV layout real time clock out of the way too
|
|
||||||
// We check if we have the correct layout and if the clock is enabled
|
|
||||||
if(isLayout(TV) && binding.homeClock.isVisible) {
|
|
||||||
val scrollParent = binding.homeClock
|
|
||||||
|
|
||||||
val rect = IntArray(2)
|
|
||||||
view.getLocationInWindow(rect)
|
|
||||||
scrollParent.isVisible = true
|
|
||||||
scrollParent.translationY = rect[1].toFloat() - 60.toPx
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
super.onScrolled(recyclerView, dx, dy)
|
super.onScrolled(recyclerView, dx, dy)
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ class HomeScrollAdapter(
|
||||||
|
|
||||||
when (binding) {
|
when (binding) {
|
||||||
is HomeScrollViewBinding -> {
|
is HomeScrollViewBinding -> {
|
||||||
binding.homeScrollPreview.loadImage(posterUrl, item.posterHeaders)
|
binding.homeScrollPreview.loadImage(posterUrl)
|
||||||
binding.homeScrollPreviewTags.apply {
|
binding.homeScrollPreviewTags.apply {
|
||||||
text = item.tags?.joinToString(" • ") ?: ""
|
text = item.tags?.joinToString(" • ") ?: ""
|
||||||
isGone = item.tags.isNullOrEmpty()
|
isGone = item.tags.isNullOrEmpty()
|
||||||
|
|
@ -79,7 +79,7 @@ class HomeScrollAdapter(
|
||||||
binding.homeScrollPreview.setOnClickListener { view ->
|
binding.homeScrollPreview.setOnClickListener { view ->
|
||||||
callback.invoke(view ?: return@setOnClickListener, position, item)
|
callback.invoke(view ?: return@setOnClickListener, position, item)
|
||||||
}
|
}
|
||||||
binding.homeScrollPreview.loadImage(posterUrl, item.posterHeaders)
|
binding.homeScrollPreview.loadImage(posterUrl)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ class HomeViewModel : ViewModel() {
|
||||||
private var currentShuffledList: List<SearchResponse> = listOf()
|
private var currentShuffledList: List<SearchResponse> = listOf()
|
||||||
|
|
||||||
private fun autoloadRepo(): APIRepository {
|
private fun autoloadRepo(): APIRepository {
|
||||||
return APIRepository(apis.withLock { apis.first { it.hasMainPage } })
|
return APIRepository(synchronized(apis) { apis.first { it.hasMainPage } })
|
||||||
}
|
}
|
||||||
|
|
||||||
private val _availableWatchStatusTypes =
|
private val _availableWatchStatusTypes =
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ import androidx.core.view.isVisible
|
||||||
import androidx.fragment.app.activityViewModels
|
import androidx.fragment.app.activityViewModels
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
|
||||||
import com.google.android.material.tabs.TabLayout
|
import com.google.android.material.tabs.TabLayout
|
||||||
import com.google.android.material.tabs.TabLayoutMediator
|
import com.google.android.material.tabs.TabLayoutMediator
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
import com.lagradost.cloudstream3.APIHolder
|
||||||
|
|
@ -53,13 +52,12 @@ import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
|
||||||
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialog
|
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialog
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.getSpanCount
|
import com.lagradost.cloudstream3.utils.UIHelper.getSpanCount
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.util.concurrent.CopyOnWriteArrayList
|
import java.util.concurrent.CopyOnWriteArrayList
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
|
|
||||||
const val LIBRARY_FOLDER = "library_folder"
|
const val LIBRARY_FOLDER = "library_folder"
|
||||||
|
|
||||||
|
|
||||||
enum class LibraryOpenerType(@StringRes val stringRes: Int) {
|
enum class LibraryOpenerType(@StringRes val stringRes: Int) {
|
||||||
Default(R.string.action_default),
|
Default(R.string.action_default),
|
||||||
Provider(R.string.none),
|
Provider(R.string.none),
|
||||||
|
|
@ -69,15 +67,13 @@ enum class LibraryOpenerType(@StringRes val stringRes: Int) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Used to store how the user wants to open said poster */
|
/** Used to store how the user wants to open said poster */
|
||||||
@Serializable
|
|
||||||
data class LibraryOpener(
|
data class LibraryOpener(
|
||||||
@JsonProperty("openType") @SerialName("openType") val openType: LibraryOpenerType,
|
val openType: LibraryOpenerType,
|
||||||
@JsonProperty("providerData") @SerialName("providerData") val providerData: ProviderLibraryData?,
|
val providerData: ProviderLibraryData?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ProviderLibraryData(
|
data class ProviderLibraryData(
|
||||||
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
|
val apiName: String
|
||||||
)
|
)
|
||||||
|
|
||||||
class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
|
class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
|
||||||
|
|
@ -214,13 +210,14 @@ class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
|
||||||
syncId: SyncIdName,
|
syncId: SyncIdName,
|
||||||
apiName: String? = null,
|
apiName: String? = null,
|
||||||
) {
|
) {
|
||||||
val availableProviders = allProviders.filter {
|
val availableProviders = synchronized(allProviders) {
|
||||||
|
allProviders.filter {
|
||||||
it.supportedSyncNames.contains(syncId)
|
it.supportedSyncNames.contains(syncId)
|
||||||
}.map { it.name } +
|
}.map { it.name } +
|
||||||
// Add the api if it exists
|
// Add the api if it exists
|
||||||
(APIHolder.getApiFromNameNull(apiName)?.let { listOf(it.name) }
|
(APIHolder.getApiFromNameNull(apiName)?.let { listOf(it.name) }
|
||||||
?: emptyList())
|
?: emptyList())
|
||||||
|
}
|
||||||
val baseOptions = listOf(
|
val baseOptions = listOf(
|
||||||
LibraryOpenerType.Default,
|
LibraryOpenerType.Default,
|
||||||
LibraryOpenerType.None,
|
LibraryOpenerType.None,
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ import com.lagradost.cloudstream3.ui.subtitles.SaveCaptionStyle
|
||||||
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment.Companion.applyStyle
|
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment.Companion.applyStyle
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.isUsingMobileData
|
import com.lagradost.cloudstream3.utils.AppContextUtils.isUsingMobileData
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
|
import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
|
||||||
import com.lagradost.cloudstream3.utils.CLEARKEY_DRM_UUID
|
import com.lagradost.cloudstream3.utils.CLEARKEY_UUID
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.runOnMainThread
|
import com.lagradost.cloudstream3.utils.Coroutines.runOnMainThread
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
|
import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
|
||||||
|
|
@ -104,9 +104,9 @@ import com.lagradost.cloudstream3.utils.DrmExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLinkPlayList
|
import com.lagradost.cloudstream3.utils.ExtractorLinkPlayList
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
||||||
import com.lagradost.cloudstream3.utils.PLAYREADY_DRM_UUID
|
import com.lagradost.cloudstream3.utils.PLAYREADY_UUID
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromTagToLanguageName
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromTagToLanguageName
|
||||||
import com.lagradost.cloudstream3.utils.WIDEVINE_DRM_UUID
|
import com.lagradost.cloudstream3.utils.WIDEVINE_UUID
|
||||||
import com.lagradost.cloudstream3.utils.videoskip.VideoSkipStamp
|
import com.lagradost.cloudstream3.utils.videoskip.VideoSkipStamp
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import okhttp3.Interceptor
|
import okhttp3.Interceptor
|
||||||
|
|
@ -118,7 +118,6 @@ import java.util.concurrent.Executors
|
||||||
import javax.net.ssl.HttpsURLConnection
|
import javax.net.ssl.HttpsURLConnection
|
||||||
import javax.net.ssl.SSLContext
|
import javax.net.ssl.SSLContext
|
||||||
import javax.net.ssl.SSLSession
|
import javax.net.ssl.SSLSession
|
||||||
import kotlin.uuid.toJavaUuid
|
|
||||||
|
|
||||||
const val TAG = "CS3ExoPlayer"
|
const val TAG = "CS3ExoPlayer"
|
||||||
const val PREFERRED_AUDIO_LANGUAGE_KEY = "preferred_audio_language"
|
const val PREFERRED_AUDIO_LANGUAGE_KEY = "preferred_audio_language"
|
||||||
|
|
@ -719,7 +718,7 @@ class CS3IPlayer : IPlayer {
|
||||||
**/
|
**/
|
||||||
var preferredAudioTrackLanguage: String? = null
|
var preferredAudioTrackLanguage: String? = null
|
||||||
get() {
|
get() {
|
||||||
return field ?: getKey<String>(
|
return field ?: getKey(
|
||||||
"$currentAccount/$PREFERRED_AUDIO_LANGUAGE_KEY",
|
"$currentAccount/$PREFERRED_AUDIO_LANGUAGE_KEY",
|
||||||
field
|
field
|
||||||
)?.also {
|
)?.also {
|
||||||
|
|
@ -1279,7 +1278,7 @@ class CS3IPlayer : IPlayer {
|
||||||
|
|
||||||
item.drm?.let { drm ->
|
item.drm?.let { drm ->
|
||||||
when (drm.uuid) {
|
when (drm.uuid) {
|
||||||
CLEARKEY_DRM_UUID.toJavaUuid() -> {
|
CLEARKEY_UUID -> {
|
||||||
// Use headers from DrmMetadata for media requests
|
// Use headers from DrmMetadata for media requests
|
||||||
val client = dataSourceFactory
|
val client = dataSourceFactory
|
||||||
?: throw IllegalArgumentException("Must supply onlineSource")
|
?: throw IllegalArgumentException("Must supply onlineSource")
|
||||||
|
|
@ -1300,8 +1299,8 @@ class CS3IPlayer : IPlayer {
|
||||||
.createMediaSource(item.mediaItem)
|
.createMediaSource(item.mediaItem)
|
||||||
}
|
}
|
||||||
|
|
||||||
WIDEVINE_DRM_UUID.toJavaUuid(),
|
WIDEVINE_UUID,
|
||||||
PLAYREADY_DRM_UUID.toJavaUuid() -> {
|
PLAYREADY_UUID -> {
|
||||||
// Use headers from DrmMetadata for media requests
|
// Use headers from DrmMetadata for media requests
|
||||||
val client = dataSourceFactory
|
val client = dataSourceFactory
|
||||||
?: throw IllegalArgumentException("Must supply onlineSource")
|
?: throw IllegalArgumentException("Must supply onlineSource")
|
||||||
|
|
@ -1915,7 +1914,7 @@ class CS3IPlayer : IPlayer {
|
||||||
drm = DrmMetadata(
|
drm = DrmMetadata(
|
||||||
kid = link.kid,
|
kid = link.kid,
|
||||||
key = link.key,
|
key = link.key,
|
||||||
uuid = link.uuid.toJavaUuid(),
|
uuid = link.uuid,
|
||||||
kty = link.kty,
|
kty = link.kty,
|
||||||
licenseUrl = link.licenseUrl,
|
licenseUrl = link.licenseUrl,
|
||||||
keyRequestParameters = link.keyRequestParameters,
|
keyRequestParameters = link.keyRequestParameters,
|
||||||
|
|
|
||||||
|
|
@ -58,23 +58,9 @@ class DownloadedPlayerActivity : AppCompatActivity() {
|
||||||
enableEdgeToEdgeCompat()
|
enableEdgeToEdgeCompat()
|
||||||
setContentView(R.layout.empty_layout)
|
setContentView(R.layout.empty_layout)
|
||||||
Log.i(TAG, "onCreate")
|
Log.i(TAG, "onCreate")
|
||||||
handleIntent(intent)
|
|
||||||
|
|
||||||
/**
|
handleIntent(intent)
|
||||||
* Use moveTaskToBack instead of finish() so there is always exactly one task
|
attachBackPressedCallback("DownloadedPlayerActivity") { finish() }
|
||||||
* entry in recents, always reflecting the current file.
|
|
||||||
*
|
|
||||||
* finish() destroys the Activity but may leave the task in recents. Each new file
|
|
||||||
* open can create a new task entry, so recents accumulates stale entries for old
|
|
||||||
* files. The user then taps a stale entry and gets the wrong file.
|
|
||||||
*
|
|
||||||
* moveTaskToBack keeps the Activity alive in the background. There is only ever
|
|
||||||
* one task entry in recents. New files opened from the file manager arrive via
|
|
||||||
* onNewIntent on the live instance, updating the player immediately. The single
|
|
||||||
* recents entry always reflects the current state, ensuring we load the
|
|
||||||
* correct file.
|
|
||||||
*/
|
|
||||||
attachBackPressedCallback("DownloadedPlayerActivity") { moveTaskToBack(true) }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleIntent(intent: Intent) {
|
private fun handleIntent(intent: Intent) {
|
||||||
|
|
@ -97,11 +83,11 @@ class DownloadedPlayerActivity : AppCompatActivity() {
|
||||||
url != null -> playLink(this, url)
|
url != null -> playLink(this, url)
|
||||||
data != null -> playUri(this, data)
|
data != null -> playUri(this, data)
|
||||||
extraText != null -> playLink(this, extraText)
|
extraText != null -> playLink(this, extraText)
|
||||||
else -> finishAndRemoveTask()
|
else -> { finish(); return }
|
||||||
}
|
}
|
||||||
} else if (data?.scheme == "content") {
|
} else if (data?.scheme == "content") {
|
||||||
playUri(this, data)
|
playUri(this, data)
|
||||||
} else finishAndRemoveTask()
|
} else finish()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
|
|
|
||||||
|
|
@ -267,60 +267,66 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
// The lib uses Invisible instead of Gone for no reason
|
// The lib uses Invisible instead of Gone for no reason
|
||||||
binding.previewFrameLayout.height - binding.bottomPlayerBar.height
|
binding.previewFrameLayout.height - binding.bottomPlayerBar.height
|
||||||
) else -sStyle.elevation.toPx
|
) else -sStyle.elevation.toPx
|
||||||
|
ObjectAnimator.ofFloat(sView, "translationY", move.toFloat()).apply {
|
||||||
sView.animateY(move.toFloat())
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun View.animateY(value: Float) {
|
|
||||||
ObjectAnimator.ofFloat(this, "translationY", value).apply {
|
|
||||||
duration = 200
|
|
||||||
start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun View.animateX(value: Float) {
|
|
||||||
ObjectAnimator.ofFloat(this, "translationX", value).apply {
|
|
||||||
duration = 200
|
duration = 200
|
||||||
start()
|
start()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected fun animateLayoutChanges() {
|
protected fun animateLayoutChanges() {
|
||||||
|
|
||||||
playerBinding?.apply {
|
|
||||||
|
|
||||||
if (isLayout(PHONE)) { // isEnabled also disables the onKeyDown
|
if (isLayout(PHONE)) { // isEnabled also disables the onKeyDown
|
||||||
exoProgress.isEnabled = isShowing // Prevent accidental clicks/drags
|
playerBinding?.exoProgress?.isEnabled = isShowing // Prevent accidental clicks/drags
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isShowing) {
|
if (isShowing) {
|
||||||
updateUIVisibility()
|
updateUIVisibility()
|
||||||
} else {
|
} else {
|
||||||
toggleEpisodesOverlay(false)
|
toggleEpisodesOverlay(false)
|
||||||
playerHolder.postDelayed({ updateUIVisibility() }, 200)
|
playerBinding?.playerHolder?.postDelayed({ updateUIVisibility() }, 200)
|
||||||
}
|
}
|
||||||
|
|
||||||
val titleMove = if (isShowing) 0f else -50.toPx.toFloat()
|
val titleMove = if (isShowing) 0f else -50.toPx.toFloat()
|
||||||
|
playerBinding?.playerVideoTitleHolder?.let {
|
||||||
listOfNotNull(
|
ObjectAnimator.ofFloat(it, "translationY", titleMove).apply {
|
||||||
playerVideoTitleHolder,
|
duration = 200
|
||||||
playerVideoTitleRez,
|
start()
|
||||||
playerVideoInfo,
|
}
|
||||||
playerGoBackHolder,
|
}
|
||||||
playerVideoClock,
|
playerBinding?.playerVideoTitleRez?.let {
|
||||||
).forEach {
|
ObjectAnimator.ofFloat(it, "translationY", titleMove).apply {
|
||||||
it.animateY(titleMove)
|
duration = 200
|
||||||
|
start()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
playerBinding?.playerVideoInfo?.let {
|
||||||
|
ObjectAnimator.ofFloat(it, "translationY", titleMove).apply {
|
||||||
|
duration = 200
|
||||||
|
start()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
playerBinding?.playerMetadataScrim?.let {
|
||||||
|
ObjectAnimator.ofFloat(it, "translationY", 1f).apply {
|
||||||
|
duration = 200
|
||||||
|
start()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
playerMetadataScrim.animateY(1f)
|
|
||||||
|
|
||||||
val playerBarMove = if (isShowing) 0f else 50.toPx.toFloat()
|
val playerBarMove = if (isShowing) 0f else 50.toPx.toFloat()
|
||||||
bottomPlayerBar.animateY(playerBarMove)
|
playerBinding?.bottomPlayerBar?.let {
|
||||||
|
ObjectAnimator.ofFloat(it, "translationY", playerBarMove).apply {
|
||||||
if (isLayout(PHONE)) {
|
duration = 200
|
||||||
playerEpisodesButton.animateX(if (isShowing) 0f else 50.toPx.toFloat())
|
start()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isLayout(PHONE)) {
|
||||||
|
playerBinding?.playerEpisodesButton?.let {
|
||||||
|
ObjectAnimator.ofFloat(it, "translationX", if (isShowing) 0f else 50.toPx.toFloat())
|
||||||
|
.apply {
|
||||||
|
duration = 200
|
||||||
|
start()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val fadeTo = if (isShowing) 1f else 0f
|
val fadeTo = if (isShowing) 1f else 0f
|
||||||
val fadeAnimation = AlphaAnimation(1f - fadeTo, fadeTo)
|
val fadeAnimation = AlphaAnimation(1f - fadeTo, fadeTo)
|
||||||
|
|
||||||
|
|
@ -331,7 +337,13 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
|
|
||||||
val playerSourceMove = if (isShowing) 0f else -50.toPx.toFloat()
|
val playerSourceMove = if (isShowing) 0f else -50.toPx.toFloat()
|
||||||
|
|
||||||
playerOpenSource.animateY(playerSourceMove)
|
playerBinding?.apply {
|
||||||
|
playerOpenSource.let {
|
||||||
|
ObjectAnimator.ofFloat(it, "translationY", playerSourceMove).apply {
|
||||||
|
duration = 200
|
||||||
|
start()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!isLocked) {
|
if (!isLocked) {
|
||||||
playerHostView?.gestureHelper?.animateCenterControls(fadeTo)
|
playerHostView?.gestureHelper?.animateCenterControls(fadeTo)
|
||||||
|
|
@ -519,22 +531,9 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
|
|
||||||
var currentOffset = subtitleDelay
|
var currentOffset = subtitleDelay
|
||||||
binding.apply {
|
binding.apply {
|
||||||
var subtitleAdapter: SubtitleOffsetItemAdapter? = null
|
|
||||||
|
|
||||||
subtitleOffsetInput.doOnTextChanged { text, _, _, _ ->
|
subtitleOffsetInput.doOnTextChanged { text, _, _, _ ->
|
||||||
text?.toString()?.toLongOrNull()?.let { time ->
|
text?.toString()?.toLongOrNull()?.let { time ->
|
||||||
currentOffset = time
|
currentOffset = time
|
||||||
|
|
||||||
// Scroll to the first active subtitle
|
|
||||||
val playerPosition = player.getPosition() ?: 0
|
|
||||||
val totalPosition = playerPosition - currentOffset
|
|
||||||
subtitleAdapter?.updateTime(totalPosition)
|
|
||||||
|
|
||||||
subtitleAdapter?.getLatestActiveItem(totalPosition)
|
|
||||||
?.let { subtitlePos ->
|
|
||||||
subtitleOffsetRecyclerview.scrollToPosition(subtitlePos)
|
|
||||||
}
|
|
||||||
|
|
||||||
val str = when {
|
val str = when {
|
||||||
time > 0L -> {
|
time > 0L -> {
|
||||||
txt(R.string.subtitle_offset_extra_hint_later_format, time)
|
txt(R.string.subtitle_offset_extra_hint_later_format, time)
|
||||||
|
|
@ -560,7 +559,7 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
noSubtitlesLoadedNotice.isVisible = subtitles.isEmpty()
|
noSubtitlesLoadedNotice.isVisible = subtitles.isEmpty()
|
||||||
|
|
||||||
val initialSubtitlePosition = (player.getPosition() ?: 0) - currentOffset
|
val initialSubtitlePosition = (player.getPosition() ?: 0) - currentOffset
|
||||||
subtitleAdapter =
|
val subtitleAdapter =
|
||||||
SubtitleOffsetItemAdapter(initialSubtitlePosition) { subtitleCue ->
|
SubtitleOffsetItemAdapter(initialSubtitlePosition) { subtitleCue ->
|
||||||
val playerPosition = player.getPosition() ?: 0
|
val playerPosition = player.getPosition() ?: 0
|
||||||
subtitleOffsetInput.text = Editable.Factory.getInstance()
|
subtitleOffsetInput.text = Editable.Factory.getInstance()
|
||||||
|
|
@ -773,7 +772,7 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
val showPlayerEpisodes = !isGone && isThereEpisodes()
|
val showPlayerEpisodes = !isGone && isThereEpisodes()
|
||||||
playerEpisodesButtonRoot.isVisible = showPlayerEpisodes
|
playerEpisodesButtonRoot.isVisible = showPlayerEpisodes
|
||||||
playerEpisodesButton.isVisible = showPlayerEpisodes
|
playerEpisodesButton.isVisible = showPlayerEpisodes
|
||||||
playerVideoTitleHolder.isGone = togglePlayerTitleGone || playerVideoTitle.text.isBlank()
|
playerVideoTitleHolder.isGone = togglePlayerTitleGone
|
||||||
playerVideoTitleRez.isGone = isGone || playerVideoTitleRez.text.isBlank()
|
playerVideoTitleRez.isGone = isGone || playerVideoTitleRez.text.isBlank()
|
||||||
playerEpisodeFiller.isGone = isGone
|
playerEpisodeFiller.isGone = isGone
|
||||||
playerCenterMenu.isGone = isGone
|
playerCenterMenu.isGone = isGone
|
||||||
|
|
@ -946,18 +945,12 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
player.handleEvent(CSPlayerEvent.SkipCurrentChapter)
|
player.handleEvent(CSPlayerEvent.SkipCurrentChapter)
|
||||||
}
|
}
|
||||||
|
|
||||||
KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE, KeyEvent.KEYCODE_P, KeyEvent.KEYCODE_SPACE, KeyEvent.KEYCODE_NUMPAD_ENTER -> { // space is not captured due to navigation
|
KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE, KeyEvent.KEYCODE_P, KeyEvent.KEYCODE_SPACE, KeyEvent.KEYCODE_NUMPAD_ENTER, KeyEvent.KEYCODE_ENTER -> { // space is not captured due to navigation
|
||||||
player.handleEvent(CSPlayerEvent.PlayPauseToggle)
|
player.handleEvent(CSPlayerEvent.PlayPauseToggle)
|
||||||
}
|
}
|
||||||
|
|
||||||
// KEYCODE_DPAD_CENTER and KEYCODE_ENTER both act as a "select/confirm" button.
|
KeyEvent.KEYCODE_DPAD_CENTER -> {
|
||||||
// Some remotes (e.g. LG Magic Remote) send KEYCODE_ENTER instead of KEYCODE_DPAD_CENTER.
|
if (isShowing) {
|
||||||
// When the player UI or a dialog is visible, we let the event pass through (return null)
|
|
||||||
// so the focused button/item can handle the click normally, rather than always toggling
|
|
||||||
// play/pause. Only when the UI is hidden do we treat it as a play/pause toggle.
|
|
||||||
KeyEvent.KEYCODE_DPAD_CENTER,
|
|
||||||
KeyEvent.KEYCODE_ENTER -> {
|
|
||||||
if (isShowing || isDialogOpen()) {
|
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
// If UI is not shown make click instantly skip to next chapter even if locked
|
// If UI is not shown make click instantly skip to next chapter even if locked
|
||||||
|
|
@ -1014,7 +1007,6 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
}
|
}
|
||||||
toggleEpisodesOverlay(true)
|
toggleEpisodesOverlay(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> return null // Avoid capturing all input
|
else -> return null // Avoid capturing all input
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
|
@ -1203,10 +1195,6 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
}
|
}
|
||||||
|
|
||||||
skipChapterButton.setOnClickListener {
|
skipChapterButton.setOnClickListener {
|
||||||
// Switch focus for a better UX, as otherwise it is reset to a random button like "back button"
|
|
||||||
if(skipChapterButton.hasFocus()) {
|
|
||||||
playerPausePlay.requestFocus()
|
|
||||||
}
|
|
||||||
player.handleEvent(CSPlayerEvent.SkipCurrentChapter)
|
player.handleEvent(CSPlayerEvent.SkipCurrentChapter)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.res.ColorStateList
|
import android.content.res.ColorStateList
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import android.graphics.Typeface
|
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.text.Spanned
|
import android.text.Spanned
|
||||||
|
|
@ -80,7 +79,6 @@ import com.lagradost.cloudstream3.ui.player.CS3IPlayer.Companion.preferredAudioT
|
||||||
import com.lagradost.cloudstream3.ui.player.CustomDecoder.Companion.updateForcedEncoding
|
import com.lagradost.cloudstream3.ui.player.CustomDecoder.Companion.updateForcedEncoding
|
||||||
import com.lagradost.cloudstream3.ui.player.PlayerSubtitleHelper.Companion.toSubtitleMimeType
|
import com.lagradost.cloudstream3.ui.player.PlayerSubtitleHelper.Companion.toSubtitleMimeType
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.LinkSource
|
import com.lagradost.cloudstream3.ui.player.source_priority.LinkSource
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.ProfileSettings
|
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper
|
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper.getLinkPriority
|
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper.getLinkPriority
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.QualityProfileDialog
|
import com.lagradost.cloudstream3.ui.player.source_priority.QualityProfileDialog
|
||||||
|
|
@ -119,10 +117,8 @@ import com.lagradost.cloudstream3.utils.UIHelper.clipboardHelper
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
|
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideSystemUI
|
import com.lagradost.cloudstream3.utils.UIHelper.hideSystemUI
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadUtils.getImageBitmapFromUrl
|
import com.lagradost.cloudstream3.utils.downloader.DownloadUtils.getImageBitmapFromUrl
|
||||||
import com.lagradost.cloudstream3.utils.setText
|
import com.lagradost.cloudstream3.utils.setText
|
||||||
|
|
@ -134,7 +130,6 @@ import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.isActive
|
import kotlinx.coroutines.isActive
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import java.io.Serializable
|
import java.io.Serializable
|
||||||
import java.lang.ref.WeakReference
|
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
import java.util.UUID
|
import java.util.UUID
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
|
@ -148,11 +143,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
const val STOP_ACTION = "stopcs3"
|
const val STOP_ACTION = "stopcs3"
|
||||||
|
|
||||||
private val generators = ConcurrentHashMap<String, VideoGenerator<*>>()
|
private val generators = ConcurrentHashMap<String, VideoGenerator<*>>()
|
||||||
fun newInstance(
|
fun newInstance(generator: VideoGenerator<*>, index : Int, syncData: HashMap<String, String>? = null): Bundle {
|
||||||
generator: VideoGenerator<*>,
|
|
||||||
index: Int,
|
|
||||||
syncData: HashMap<String, String>? = null
|
|
||||||
): Bundle {
|
|
||||||
Log.i(TAG, "newInstance = $syncData")
|
Log.i(TAG, "newInstance = $syncData")
|
||||||
val uuid = UUID.randomUUID().toString()
|
val uuid = UUID.randomUUID().toString()
|
||||||
generators[uuid] = generator
|
generators[uuid] = generator
|
||||||
|
|
@ -187,9 +178,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
private var isNextEpisode: Boolean = false // this is used to reset the watch time
|
private var isNextEpisode: Boolean = false // this is used to reset the watch time
|
||||||
|
|
||||||
private var preferredAutoSelectSubtitles: String? = null // null means do nothing, "" means none
|
private var preferredAutoSelectSubtitles: String? = null // null means do nothing, "" means none
|
||||||
private val allMeta: List<ResultEpisode>?
|
private val allMeta: List<ResultEpisode>? get() = viewModel.state.generatorState?.allMeta?.filterIsInstance<ResultEpisode>()?.map { episode ->
|
||||||
get() = viewModel.state.generatorState?.allMeta?.filterIsInstance<ResultEpisode>()
|
|
||||||
?.map { episode ->
|
|
||||||
// Refresh all the episodes watch duration
|
// Refresh all the episodes watch duration
|
||||||
getViewPos(episode.id)?.let { data ->
|
getViewPos(episode.id)?.let { data ->
|
||||||
episode.copy(position = data.position, duration = data.duration)
|
episode.copy(position = data.position, duration = data.duration)
|
||||||
|
|
@ -512,8 +501,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
|
|
||||||
showDownloadProgress(DownloadEvent(0, 0, 0, null))
|
showDownloadProgress(DownloadEvent(0, 0, 0, null))
|
||||||
|
|
||||||
// uiReset() // Removed due to UX
|
uiReset()
|
||||||
|
|
||||||
currentSelectedLink = link
|
currentSelectedLink = link
|
||||||
// setEpisodes(viewModel.getAllMeta() ?: emptyList())
|
// setEpisodes(viewModel.getAllMeta() ?: emptyList())
|
||||||
setPlayerDimen(null)
|
setPlayerDimen(null)
|
||||||
|
|
@ -796,24 +784,11 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.applyBtt.setOnClickListener {
|
binding.applyBtt.setOnClickListener {
|
||||||
val currentSubtitle = currentSubtitle
|
currentSubtitle?.let { currentSubtitle ->
|
||||||
if (currentSubtitle == null) {
|
providers.firstOrNull { it.idPrefix == currentSubtitle.idPrefix }?.let { api ->
|
||||||
dialog.dismissSafe()
|
|
||||||
return@setOnClickListener
|
|
||||||
}
|
|
||||||
|
|
||||||
val api = providers.firstOrNull { it.idPrefix == currentSubtitle.idPrefix }
|
|
||||||
if (api == null) {
|
|
||||||
dialog.dismissSafe()
|
|
||||||
return@setOnClickListener
|
|
||||||
}
|
|
||||||
|
|
||||||
binding.applyBtt.showProgress()
|
|
||||||
ioSafe {
|
ioSafe {
|
||||||
val apiResource =
|
when (val apiResource =
|
||||||
Resource.fromResult(api.resource(currentSubtitle))
|
Resource.fromResult(api.resource(currentSubtitle))) {
|
||||||
binding.applyBtt.hideProgress()
|
|
||||||
when (apiResource) {
|
|
||||||
is Resource.Success -> {
|
is Resource.Success -> {
|
||||||
val subtitles = apiResource.value.getSubtitles().map { resource ->
|
val subtitles = apiResource.value.getSubtitles().map { resource ->
|
||||||
SubtitleData(
|
SubtitleData(
|
||||||
|
|
@ -833,7 +808,6 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
showToast(R.string.no_subtitles)
|
showToast(R.string.no_subtitles)
|
||||||
return@ioSafe
|
return@ioSafe
|
||||||
}
|
}
|
||||||
dialog.dismissSafe()
|
|
||||||
runOnMainThread {
|
runOnMainThread {
|
||||||
addAndSelectSubtitles(*subtitles.toTypedArray())
|
addAndSelectSubtitles(*subtitles.toTypedArray())
|
||||||
}
|
}
|
||||||
|
|
@ -849,6 +823,9 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
dialog.dismissSafe()
|
||||||
|
}
|
||||||
|
|
||||||
dialog.setOnDismissListener {
|
dialog.setOnDismissListener {
|
||||||
dismissCallback.invoke()
|
dismissCallback.invoke()
|
||||||
|
|
@ -1115,29 +1092,21 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
|
|
||||||
var sourceIndex = 0
|
var sourceIndex = 0
|
||||||
var startSource = 0
|
var startSource = 0
|
||||||
// Filtered and sorted links
|
var sortedUrls = emptyList<Pair<ExtractorLink?, ExtractorUri?>>()
|
||||||
var currentHiddenFooter: View? = null
|
|
||||||
var filteredLinks: List<DisplayLink> = emptyList()
|
|
||||||
|
|
||||||
fun refreshLinks(qualityProfile: Int) {
|
fun refreshLinks(qualityProfile: Int) {
|
||||||
val currentLinkUsed = currentSelectedLink
|
sortedUrls = viewModel.state.sortLinks(qualityProfile)
|
||||||
// Always display current linkFooter
|
if (sortedUrls.isEmpty()) {
|
||||||
val sortedLinks = viewModel.state.sortLinks(qualityProfile)
|
|
||||||
|
|
||||||
filteredLinks = sortedLinks.filter { it.shouldUseLink || it.link == currentLinkUsed }
|
|
||||||
|
|
||||||
if (sortedLinks.isEmpty()) {
|
|
||||||
sourceDialog.findViewById<LinearLayout>(R.id.sort_sources_holder)?.isGone =
|
sourceDialog.findViewById<LinearLayout>(R.id.sort_sources_holder)?.isGone =
|
||||||
true
|
true
|
||||||
} else {
|
} else {
|
||||||
startSource = filteredLinks.indexOfFirst { it.link == currentLinkUsed }
|
startSource = sortedUrls.indexOf(currentSelectedLink)
|
||||||
sourceIndex = startSource
|
sourceIndex = startSource
|
||||||
|
|
||||||
val sourcesArrayAdapter =
|
val sourcesArrayAdapter =
|
||||||
ArrayAdapter<String>(ctx, R.layout.sort_bottom_single_choice)
|
ArrayAdapter<String>(ctx, R.layout.sort_bottom_single_choice)
|
||||||
|
|
||||||
sourcesArrayAdapter.addAll(filteredLinks.map { displayLink ->
|
sourcesArrayAdapter.addAll(sortedUrls.map { (link, uri) ->
|
||||||
val (link, uri) = displayLink.link
|
|
||||||
val name = link?.name ?: uri?.name ?: "NULL"
|
val name = link?.name ?: uri?.name ?: "NULL"
|
||||||
"$name ${Qualities.getStringByInt(link?.quality)}"
|
"$name ${Qualities.getStringByInt(link?.quality)}"
|
||||||
})
|
})
|
||||||
|
|
@ -1153,7 +1122,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
|
|
||||||
providerList.setOnItemLongClickListener { _, _, position, _ ->
|
providerList.setOnItemLongClickListener { _, _, position, _ ->
|
||||||
sortedLinks.getOrNull(position)?.link?.first?.url?.let {
|
sortedUrls.getOrNull(position)?.first?.url?.let {
|
||||||
clipboardHelper(
|
clipboardHelper(
|
||||||
txt(R.string.video_source),
|
txt(R.string.video_source),
|
||||||
it
|
it
|
||||||
|
|
@ -1161,25 +1130,6 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
val hiddenLinks = sortedLinks.size - filteredLinks.size
|
|
||||||
providerList.removeFooterView(currentHiddenFooter)
|
|
||||||
|
|
||||||
if (hiddenLinks > 0) {
|
|
||||||
val hiddenLinksFooter: TextView = layoutInflater.inflate(
|
|
||||||
R.layout.sort_bottom_footer_add_choice, null
|
|
||||||
) as TextView
|
|
||||||
|
|
||||||
providerList.addFooterView(hiddenLinksFooter, null, false)
|
|
||||||
currentHiddenFooter = hiddenLinksFooter
|
|
||||||
|
|
||||||
val hiddenLinksText =
|
|
||||||
ctx.resources.getQuantityString(R.plurals.links_hidden, hiddenLinks)
|
|
||||||
.format(hiddenLinks)
|
|
||||||
hiddenLinksFooter.text = hiddenLinksText
|
|
||||||
hiddenLinksFooter.setCompoundDrawables(null, null, null, null)
|
|
||||||
hiddenLinksFooter.setTypeface(null, Typeface.ITALIC)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1393,8 +1343,8 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (init) {
|
if (init) {
|
||||||
filteredLinks.getOrNull(sourceIndex)?.let {
|
sortedUrls.getOrNull(sourceIndex)?.let {
|
||||||
loadLink(it.link, true)
|
loadLink(it, true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sourceDialog.dismissSafe(activity)
|
sourceDialog.dismissSafe(activity)
|
||||||
|
|
@ -1562,10 +1512,6 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun playerError(exception: Throwable) {
|
override fun playerError(exception: Throwable) {
|
||||||
currentSelectedLink?.let { link ->
|
|
||||||
viewModel.modifyState { this.addError(link) }
|
|
||||||
}
|
|
||||||
|
|
||||||
val currentUrl =
|
val currentUrl =
|
||||||
currentSelectedLink?.let { it.first?.url ?: it.second?.uri?.toString() } ?: "unknown"
|
currentSelectedLink?.let { it.first?.url ?: it.second?.uri?.toString() } ?: "unknown"
|
||||||
val headers = currentSelectedLink?.first?.headers?.toString() ?: "none"
|
val headers = currentSelectedLink?.first?.headers?.toString() ?: "none"
|
||||||
|
|
@ -1573,7 +1519,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
Log.e(
|
Log.e(
|
||||||
TAG,
|
TAG,
|
||||||
"playerError: $currentSelectedLink, " +
|
"playerError: $currentSelectedLink, " +
|
||||||
"type=${exception::class.qualifiedName}, " +
|
"type=${exception::class.java.canonicalName}, " +
|
||||||
"message=${exception.message}, url=$currentUrl, headers=$headers, " +
|
"message=${exception.message}, url=$currentUrl, headers=$headers, " +
|
||||||
"referer=$referer, position=${player.getPosition() ?: "unknown"}, " +
|
"referer=$referer, position=${player.getPosition() ?: "unknown"}, " +
|
||||||
"duration=${player.getDuration() ?: "unknown"}, " +
|
"duration=${player.getDuration() ?: "unknown"}, " +
|
||||||
|
|
@ -1588,35 +1534,19 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
|
|
||||||
private fun noLinksFound() {
|
private fun noLinksFound() {
|
||||||
viewModel.forceClearCache = true
|
viewModel.forceClearCache = true
|
||||||
val hiddenLinks = viewModel.state.sortLinks(currentQualityProfile).count { !it.shouldUseLink }
|
|
||||||
|
|
||||||
context?.let { ctx ->
|
|
||||||
// Display that there are hidden links to the user.
|
|
||||||
if (hiddenLinks > 0) {
|
|
||||||
val noLinksString = ctx.getString(R.string.no_links_found_toast)
|
|
||||||
val hiddenString =
|
|
||||||
ctx.resources.getQuantityString(R.plurals.links_hidden, hiddenLinks)
|
|
||||||
.format(hiddenLinks)
|
|
||||||
val toastText = "$noLinksString\n($hiddenString)"
|
|
||||||
showToast(toastText, Toast.LENGTH_SHORT)
|
|
||||||
} else {
|
|
||||||
showToast(R.string.no_links_found_toast, Toast.LENGTH_SHORT)
|
showToast(R.string.no_links_found_toast, Toast.LENGTH_SHORT)
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
activity?.popCurrentPage()
|
activity?.popCurrentPage()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startPlayer() {
|
private fun startPlayer() {
|
||||||
// We don't want double load when you skip loading
|
// We don't want double load when you skip loading
|
||||||
if (isPlayerActive.get()) {
|
if(isPlayerActive.get()) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
val links = viewModel.state.sortLinks(currentQualityProfile)
|
val links = viewModel.state.sortLinks(currentQualityProfile)
|
||||||
|
if (links.isEmpty()) {
|
||||||
val firstAvailableLink = links.firstOrNull { it.shouldUseLink }?.link
|
|
||||||
if (firstAvailableLink == null) {
|
|
||||||
noLinksFound()
|
noLinksFound()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -1624,7 +1554,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
if (!isPlayerActive.compareAndSet(false, true)) {
|
if (!isPlayerActive.compareAndSet(false, true)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
loadLink(firstAvailableLink, false)
|
loadLink(links.first(), false)
|
||||||
showPlayerMetadata()
|
showPlayerMetadata()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1648,7 +1578,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
)
|
)
|
||||||
|
|
||||||
val meta = arrayOf(
|
val meta = arrayOf(
|
||||||
load.tags?.takeIf { it.isNotEmpty() }?.take(6)?.joinToString(", "),
|
load.tags?.takeIf { it.isNotEmpty() }?.joinToString(", "),
|
||||||
load.year?.toString(),
|
load.year?.toString(),
|
||||||
if (!load.type.isMovieType())
|
if (!load.type.isMovieType())
|
||||||
context?.getShortSeasonText(
|
context?.getShortSeasonText(
|
||||||
|
|
@ -1668,7 +1598,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
|
|
||||||
if (!description.isNullOrBlank()) {
|
if (!description.isNullOrBlank()) {
|
||||||
descView.isVisible = true
|
descView.isVisible = true
|
||||||
descView.text = description.html()
|
descView.text = description
|
||||||
} else {
|
} else {
|
||||||
descView.isVisible = false
|
descView.isVisible = false
|
||||||
|
|
||||||
|
|
@ -1691,26 +1621,25 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getNextLink(): DisplayLink? {
|
|
||||||
val links = viewModel.state.sortLinks(currentQualityProfile)
|
|
||||||
val currentIndex = links.indexOfFirst { it.link == currentSelectedLink }
|
|
||||||
val nextPotentialLink =
|
|
||||||
links.withIndex().firstOrNull { it.index > currentIndex && it.value.shouldUseLink }
|
|
||||||
return nextPotentialLink?.value
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun hasNextMirror(): Boolean {
|
override fun hasNextMirror(): Boolean {
|
||||||
return getNextLink() != null
|
val links = viewModel.state.sortLinks(currentQualityProfile)
|
||||||
|
return links.isNotEmpty() && links.indexOf(currentSelectedLink) + 1 < links.size
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun nextMirror() {
|
override fun nextMirror() {
|
||||||
val nextLink = getNextLink()
|
val links = viewModel.state.sortLinks(currentQualityProfile)
|
||||||
if (nextLink == null) {
|
if (links.isEmpty()) {
|
||||||
noLinksFound()
|
noLinksFound()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
loadLink(nextLink.link, true)
|
val newIndex = links.indexOf(currentSelectedLink) + 1
|
||||||
|
if (newIndex >= links.size) {
|
||||||
|
noLinksFound()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
loadLink(links[newIndex], true)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
|
|
@ -1763,12 +1692,10 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
if (settingsManager.getBoolean(
|
if (settingsManager.getBoolean(
|
||||||
ctx.getString(R.string.episode_sync_enabled_key), true
|
ctx.getString(R.string.episode_sync_enabled_key), true
|
||||||
)
|
)
|
||||||
) {
|
) maxEpisodeSet = meta.episode
|
||||||
maxEpisodeSet = meta.episode
|
|
||||||
sync.modifyMaxEpisode(meta.totalEpisodeIndex ?: meta.episode)
|
sync.modifyMaxEpisode(meta.totalEpisodeIndex ?: meta.episode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (meta.tvType.isAnimeOp()) isOpVisible = percentage < SKIP_OP_VIDEO_PERCENTAGE
|
if (meta.tvType.isAnimeOp()) isOpVisible = percentage < SKIP_OP_VIDEO_PERCENTAGE
|
||||||
}
|
}
|
||||||
|
|
@ -1799,11 +1726,11 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
): SubtitleData? {
|
): SubtitleData? {
|
||||||
val langCode = preferredAutoSelectSubtitles ?: return null
|
val langCode = preferredAutoSelectSubtitles ?: return null
|
||||||
if (downloads) {
|
if (downloads) {
|
||||||
sortSubs(subtitles).firstOrNull {
|
return sortSubs(subtitles).firstOrNull {
|
||||||
it.origin == SubtitleOrigin.DOWNLOADED_FILE && it.matchesLanguageCode(
|
it.origin == SubtitleOrigin.DOWNLOADED_FILE && it.matchesLanguageCode(
|
||||||
langCode
|
langCode
|
||||||
)
|
)
|
||||||
}?.let { return it }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!settings) return null
|
if (!settings) return null
|
||||||
|
|
@ -2213,11 +2140,9 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
fun releasePlayer() {
|
fun releasePlayer() {
|
||||||
player.release()
|
player.release()
|
||||||
currentSelectedSubtitles = null
|
currentSelectedSubtitles = null
|
||||||
currentSelectedLink = null
|
|
||||||
isPlayerActive.set(false)
|
isPlayerActive.set(false)
|
||||||
binding?.overlayLoadingSkipButton?.isVisible = false
|
binding?.overlayLoadingSkipButton?.isVisible = false
|
||||||
binding?.playerLoadingOverlay?.isVisible = true
|
binding?.playerLoadingOverlay?.isVisible = true
|
||||||
viewModel.modifyState { setError(emptyList()) }
|
|
||||||
uiReset()
|
uiReset()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2227,31 +2152,19 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
activity?.popCurrentPage()
|
activity?.popCurrentPage()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onSaveInstanceState(outState: Bundle) {
|
|
||||||
outState.putInt("index", viewModel.episodeIndex)
|
|
||||||
super.onSaveInstanceState(outState)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onBindingCreated(binding: FragmentPlayerBinding, savedInstanceState: Bundle?) {
|
override fun onBindingCreated(binding: FragmentPlayerBinding, savedInstanceState: Bundle?) {
|
||||||
viewModel = ViewModelProvider(this)[PlayerGeneratorViewModel::class.java]
|
viewModel = ViewModelProvider(this)[PlayerGeneratorViewModel::class.java]
|
||||||
sync = ViewModelProvider(this)[SyncViewModel::class.java]
|
sync = ViewModelProvider(this)[SyncViewModel::class.java]
|
||||||
|
|
||||||
val uuid = savedInstanceState?.getString("uuid") ?: arguments?.getString("uuid")
|
val uuid = savedInstanceState?.getString("uuid") ?: arguments?.getString("uuid")
|
||||||
val index = savedInstanceState?.getInt("index") ?: arguments?.getInt("index")
|
val index = savedInstanceState?.getInt("index") ?: arguments?.getInt("index")
|
||||||
val generator = generators[uuid]
|
|
||||||
|
viewModel.attachGenerator(generators[uuid], index)
|
||||||
|
|
||||||
unwrapBundle(savedInstanceState)
|
unwrapBundle(savedInstanceState)
|
||||||
unwrapBundle(arguments)
|
unwrapBundle(arguments)
|
||||||
|
|
||||||
super.onBindingCreated(binding, savedInstanceState)
|
super.onBindingCreated(binding, savedInstanceState)
|
||||||
|
|
||||||
// Avoid showing no links found
|
|
||||||
if (generator == null || index == null) {
|
|
||||||
exitPlayer()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
viewModel.attachGenerator(generator, index)
|
|
||||||
|
|
||||||
context?.let { ctx ->
|
context?.let { ctx ->
|
||||||
val settingsManager = PreferenceManager.getDefaultSharedPreferences(ctx)
|
val settingsManager = PreferenceManager.getDefaultSharedPreferences(ctx)
|
||||||
showName = settingsManager.getBoolean(ctx.getString(R.string.show_name_key), true)
|
showName = settingsManager.getBoolean(ctx.getString(R.string.show_name_key), true)
|
||||||
|
|
@ -2271,14 +2184,6 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
fromTagToEnglishLanguageName(it)?.lowercase() ?: return@mapNotNull null
|
fromTagToEnglishLanguageName(it)?.lowercase() ?: return@mapNotNull null
|
||||||
} ?: listOf()
|
} ?: listOf()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set up TV clock visibility
|
|
||||||
if (isLayout(TV)) {
|
|
||||||
val showTvClock = settingsManager.getBoolean(ctx.getString(R.string.tv_layout_clock_key), false)
|
|
||||||
playerBinding?.playerVideoClock?.isVisible = showTvClock
|
|
||||||
} else {
|
|
||||||
playerBinding?.playerVideoClock?.isVisible = false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unwrapBundle(savedInstanceState)
|
unwrapBundle(savedInstanceState)
|
||||||
|
|
@ -2288,18 +2193,14 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
|
|
||||||
preferredAutoSelectSubtitles = getAutoSelectLanguageTagIETF()
|
preferredAutoSelectSubtitles = getAutoSelectLanguageTagIETF()
|
||||||
|
|
||||||
val selectedLink = currentSelectedLink
|
if (currentSelectedLink == null) {
|
||||||
if (selectedLink == null) {
|
|
||||||
viewModel.loadLinks()
|
viewModel.loadLinks()
|
||||||
} else {
|
|
||||||
// Recreated view, so we need to recreate the
|
|
||||||
loadLink(selectedLink, true)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.overlayLoadingSkipButton.setOnClickListener {
|
binding.overlayLoadingSkipButton.setOnClickListener {
|
||||||
// Mark as "success" early
|
// Mark as "success" early
|
||||||
viewModel.modifyState {
|
viewModel.modifyState {
|
||||||
copy(loading = Resource.Success(Unit))
|
copy(loading = Resource.Success(true))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2317,13 +2218,11 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
observe(viewModel.currentStamps) { (stamps, instance) ->
|
observe(viewModel.currentStamps) { stamps ->
|
||||||
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
|
||||||
player.addTimeStamps(stamps)
|
player.addTimeStamps(stamps)
|
||||||
}
|
}
|
||||||
|
|
||||||
observe(viewModel.currentSubtitles) { (subtitles, instance) ->
|
observe(viewModel.currentSubtitles) { subtitles ->
|
||||||
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
|
||||||
player.setActiveSubtitles(subtitles)
|
player.setActiveSubtitles(subtitles)
|
||||||
|
|
||||||
// If the file is downloaded then do not select auto select the subtitles
|
// If the file is downloaded then do not select auto select the subtitles
|
||||||
|
|
@ -2334,9 +2233,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
autoSelectSubtitles()
|
autoSelectSubtitles()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
observe(viewModel.loadingLinks) { (loading, instance) ->
|
observe(viewModel.loadingLinks) { loading ->
|
||||||
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
|
||||||
|
|
||||||
when (loading) {
|
when (loading) {
|
||||||
is Resource.Loading -> {
|
is Resource.Loading -> {
|
||||||
releasePlayer()
|
releasePlayer()
|
||||||
|
|
@ -2357,28 +2254,22 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
observe(viewModel.currentLinks) { (_, instance) ->
|
observe(viewModel.currentLinks) { links ->
|
||||||
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
val turnVisible = links.isNotEmpty() && viewModel.generator?.canSkipLoading == true
|
||||||
|
|
||||||
val sortedLinks = viewModel.state.sortLinks(currentQualityProfile)
|
|
||||||
val usableLinks = sortedLinks.count { link -> link.shouldUseLink }
|
|
||||||
|
|
||||||
val turnVisible = usableLinks > 0 && viewModel.generator?.canSkipLoading == true
|
|
||||||
val wasGone = binding.overlayLoadingSkipButton.isGone
|
val wasGone = binding.overlayLoadingSkipButton.isGone
|
||||||
|
|
||||||
binding.overlayLoadingSkipButton.apply {
|
binding.overlayLoadingSkipButton.apply {
|
||||||
isVisible = turnVisible
|
isVisible = turnVisible
|
||||||
|
if (links.isEmpty()) {
|
||||||
if (usableLinks == 0) {
|
|
||||||
setText(R.string.skip_loading)
|
setText(R.string.skip_loading)
|
||||||
} else {
|
} else {
|
||||||
@SuppressLint("SetTextI18n")
|
@SuppressLint("SetTextI18n")
|
||||||
text = "${context.getString(R.string.skip_loading)} (${usableLinks})"
|
text = "${context.getString(R.string.skip_loading)} (${links.size})"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
safe {
|
safe {
|
||||||
if (!isPlayerActive.get() && viewModel.state.links.any { link ->
|
if (viewModel.state.links.any { link ->
|
||||||
getLinkPriority(currentQualityProfile, link.first) >=
|
getLinkPriority(currentQualityProfile, link.first) >=
|
||||||
QualityDataHelper.AUTO_SKIP_PRIORITY
|
QualityDataHelper.AUTO_SKIP_PRIORITY
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ import android.app.Activity
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import androidx.core.content.ContextCompat.getString
|
import androidx.core.content.ContextCompat.getString
|
||||||
import androidx.navigation.NavOptions
|
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
import com.lagradost.cloudstream3.actions.temp.CloudStreamPackage
|
import com.lagradost.cloudstream3.actions.temp.CloudStreamPackage
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
||||||
|
|
@ -13,15 +12,6 @@ import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
||||||
import com.lagradost.safefile.SafeFile
|
import com.lagradost.safefile.SafeFile
|
||||||
|
|
||||||
object OfflinePlaybackHelper {
|
object OfflinePlaybackHelper {
|
||||||
/**
|
|
||||||
* Pop any existing player off the nav back stack before pushing the new one,
|
|
||||||
* keeping the stack flat (at most one player at a time). This prevents an
|
|
||||||
* OOM when many files are opened in sequence via DownloadedPlayerActivity.
|
|
||||||
*/
|
|
||||||
private val replacePlayerNavOptions = NavOptions.Builder()
|
|
||||||
.setPopUpTo(R.id.navigation_player, inclusive = true, saveState = false)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
fun playLink(activity: Activity, url: String) {
|
fun playLink(activity: Activity, url: String) {
|
||||||
activity.navigate(
|
activity.navigate(
|
||||||
R.id.global_to_navigation_player, GeneratorPlayer.newInstance(
|
R.id.global_to_navigation_player, GeneratorPlayer.newInstance(
|
||||||
|
|
@ -30,8 +20,7 @@ object OfflinePlaybackHelper {
|
||||||
BasicLink(url)
|
BasicLink(url)
|
||||||
), id = url.hashCode()
|
), id = url.hashCode()
|
||||||
), 0
|
), 0
|
||||||
),
|
)
|
||||||
replacePlayerNavOptions
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -63,8 +52,7 @@ object OfflinePlaybackHelper {
|
||||||
subs,
|
subs,
|
||||||
if (id != -1) id else null,
|
if (id != -1) id else null,
|
||||||
), 0
|
), 0
|
||||||
),
|
)
|
||||||
replacePlayerNavOptions
|
|
||||||
)
|
)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
@ -88,8 +76,7 @@ object OfflinePlaybackHelper {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
), 0
|
), 0
|
||||||
),
|
)
|
||||||
replacePlayerNavOptions
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -10,8 +10,6 @@ import com.lagradost.cloudstream3.mvvm.Resource
|
||||||
import com.lagradost.cloudstream3.mvvm.launchSafe
|
import com.lagradost.cloudstream3.mvvm.launchSafe
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
import com.lagradost.cloudstream3.mvvm.safeApiCall
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.ProfileSettings
|
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper
|
|
||||||
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper.getLinkPriority
|
import com.lagradost.cloudstream3.ui.player.source_priority.QualityDataHelper.getLinkPriority
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
|
|
@ -42,76 +40,34 @@ data class GeneratorState(
|
||||||
val id: Int?,
|
val id: Int?,
|
||||||
)
|
)
|
||||||
|
|
||||||
data class DisplayLink(
|
|
||||||
val link: VideoLink,
|
|
||||||
// If the link should be displayed and used by the player
|
|
||||||
val shouldUseLink: Boolean,
|
|
||||||
val priority: Int
|
|
||||||
)
|
|
||||||
|
|
||||||
/** Immutable state of all current links relevant to displaying the video */
|
/** Immutable state of all current links relevant to displaying the video */
|
||||||
// @MustUseReturnValues
|
// @MustUseReturnValues
|
||||||
// @Immutable
|
// @Immutable
|
||||||
data class VideoState(
|
data class VideoState(
|
||||||
val subtitles: PersistentSet<SubtitleData> = persistentSetOf(),
|
val subtitles: PersistentSet<SubtitleData> = persistentSetOf(),
|
||||||
val links: PersistentSet<VideoLink> = persistentSetOf(),
|
val links: PersistentSet<VideoLink> = persistentSetOf(),
|
||||||
val erroredLinks: PersistentSet<VideoLink> = persistentSetOf(),
|
|
||||||
val stamps: PersistentList<VideoSkipStamp> = persistentListOf(),
|
val stamps: PersistentList<VideoSkipStamp> = persistentListOf(),
|
||||||
val loading: Resource<Unit> = Resource.Loading(),
|
val loading: Resource<Boolean?> = Resource.Loading(),
|
||||||
val generatorState: GeneratorState? = null,
|
val generatorState: GeneratorState? = null,
|
||||||
val instance: Int,
|
|
||||||
) {
|
) {
|
||||||
/**
|
/**
|
||||||
* This acts as a local cache for sorted links that are not copied over by the copy constructor.
|
* This acts as a local cache for sorted links that are not copied over by the copy constructor.
|
||||||
*
|
*
|
||||||
* sortedBy is not exactly expensive, but each hasNextMirror does it again, so this alleviates unnecessary recomputation
|
* sortedBy is not exactly expensive, but each hasNextMirror does it again, so this alleviates unnecessary recomputation
|
||||||
* */
|
* */
|
||||||
private val sortedLinks: ConcurrentHashMap<Int, List<DisplayLink>> = ConcurrentHashMap()
|
private val sortedLinks: ConcurrentHashMap<Int, List<VideoLink>> = ConcurrentHashMap()
|
||||||
|
|
||||||
/**
|
|
||||||
* The cache is guaranteed to be up to date link-wise due to the immutable links.
|
|
||||||
* However, hideNegativeSources and hideErrorSources could be updated, which requires clearing the cache.
|
|
||||||
*/
|
|
||||||
fun clearSortedLinksCache() = sortedLinks.clear()
|
fun clearSortedLinksCache() = sortedLinks.clear()
|
||||||
|
|
||||||
private fun hasLinkErrored(link: VideoLink): Boolean {
|
|
||||||
return erroredLinks.any { it == link }
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun VideoLink.toDisplayLink(
|
|
||||||
qualityProfile: Int,
|
|
||||||
hideNegativeSources: Boolean,
|
|
||||||
hideErrorSources: Boolean
|
|
||||||
): DisplayLink {
|
|
||||||
val priority = getLinkPriority(qualityProfile, this.first)
|
|
||||||
val shouldHideLink =
|
|
||||||
(hideNegativeSources && priority < 0) || (hideErrorSources && hasLinkErrored(this))
|
|
||||||
val displayLink = DisplayLink(this, !shouldHideLink, priority)
|
|
||||||
|
|
||||||
return displayLink
|
|
||||||
}
|
|
||||||
|
|
||||||
// Modifying sortedLinks is not considered a "visible" side effect, and rerunning it does not change the result
|
// Modifying sortedLinks is not considered a "visible" side effect, and rerunning it does not change the result
|
||||||
// It is by all standards, idempotent and by extension also pure as it has no "visible" side effect
|
// It is by all standards, idempotent and by extension also pure as it has no "visible" side effect
|
||||||
/** Returns .links in the sorted order according to the qualityProfile.
|
/** Returns .links in the sorted order according to the qualityProfile.
|
||||||
* Use .links if order is not needed */
|
* Use .links if order is not needed */
|
||||||
@Contract(pure = true)
|
@Contract(pure = true)
|
||||||
fun sortLinks(qualityProfile: Int): List<DisplayLink> {
|
fun sortLinks(qualityProfile: Int): List<VideoLink> {
|
||||||
sortedLinks[qualityProfile]?.let {
|
return sortedLinks[qualityProfile] ?: links.sortedBy { link ->
|
||||||
return it
|
|
||||||
}
|
|
||||||
|
|
||||||
val hideNegativeSources =
|
|
||||||
QualityDataHelper.getProfileSetting(qualityProfile, ProfileSettings.HideNegativeSources)
|
|
||||||
val hideErrorSources =
|
|
||||||
QualityDataHelper.getProfileSetting(qualityProfile, ProfileSettings.HideErrorSources)
|
|
||||||
|
|
||||||
return links.map { link ->
|
|
||||||
// negative because we want to sort highest quality first
|
// negative because we want to sort highest quality first
|
||||||
link.toDisplayLink(qualityProfile, hideNegativeSources, hideErrorSources)
|
-getLinkPriority(qualityProfile, link.first)
|
||||||
}.sortedBy {
|
|
||||||
// negative because we want to sort highest quality first
|
|
||||||
-it.priority
|
|
||||||
}.also { value -> sortedLinks[qualityProfile] = value }
|
}.also { value -> sortedLinks[qualityProfile] = value }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -156,19 +112,8 @@ data class VideoState(
|
||||||
@JvmName("setVideoSkipStamp")
|
@JvmName("setVideoSkipStamp")
|
||||||
@Contract(pure = true)
|
@Contract(pure = true)
|
||||||
fun set(items: Collection<VideoSkipStamp>): VideoState = copy(stamps = items.toPersistentList())
|
fun set(items: Collection<VideoSkipStamp>): VideoState = copy(stamps = items.toPersistentList())
|
||||||
|
|
||||||
@Contract(pure = true)
|
|
||||||
fun addError(item: VideoLink): VideoState = copy(erroredLinks = erroredLinks.add(item))
|
|
||||||
|
|
||||||
@Contract(pure = true)
|
|
||||||
fun setError(items: Collection<VideoLink>): VideoState = copy(erroredLinks = items.toPersistentSet())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
data class VideoLive<T>(
|
|
||||||
val value: T,
|
|
||||||
val instance: Int,
|
|
||||||
)
|
|
||||||
|
|
||||||
class PlayerGeneratorViewModel : ViewModel() {
|
class PlayerGeneratorViewModel : ViewModel() {
|
||||||
companion object {
|
companion object {
|
||||||
const val TAG = "PlayViewGen"
|
const val TAG = "PlayViewGen"
|
||||||
|
|
@ -178,7 +123,7 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
var generator: VideoGenerator<*>? = null
|
var generator: VideoGenerator<*>? = null
|
||||||
|
|
||||||
@Volatile
|
@Volatile
|
||||||
var episodeIndex: Int = 0
|
private var episodeIndex: Int = 0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The state of the video player, only modify it by modifyState to make sure observe is called,
|
* The state of the video player, only modify it by modifyState to make sure observe is called,
|
||||||
|
|
@ -187,20 +132,20 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
* This value can be used without Synchronized or locking when reading, as all fields are immutable.
|
* This value can be used without Synchronized or locking when reading, as all fields are immutable.
|
||||||
* */
|
* */
|
||||||
@Volatile
|
@Volatile
|
||||||
var state = VideoState(instance = 0)
|
var state = VideoState()
|
||||||
private set
|
private set
|
||||||
|
|
||||||
private val _currentLinks = MutableLiveData<VideoLive<Set<VideoLink>>>(null)
|
private val _currentLinks = MutableLiveData<Set<Pair<ExtractorLink?, ExtractorUri?>>>(setOf())
|
||||||
val currentLinks: LiveData<VideoLive<Set<VideoLink>>> = _currentLinks
|
val currentLinks: LiveData<Set<Pair<ExtractorLink?, ExtractorUri?>>> = _currentLinks
|
||||||
|
|
||||||
private val _currentSubtitles = MutableLiveData<VideoLive<Set<SubtitleData>>>(null)
|
private val _currentSubtitles = MutableLiveData<Set<SubtitleData>>(setOf())
|
||||||
val currentSubtitles: LiveData<VideoLive<Set<SubtitleData>>> = _currentSubtitles
|
val currentSubtitles: LiveData<Set<SubtitleData>> = _currentSubtitles
|
||||||
|
|
||||||
private val _loadingLinks = MutableLiveData<VideoLive<Resource<Unit>>>()
|
private val _loadingLinks = MutableLiveData<Resource<Boolean?>>()
|
||||||
val loadingLinks: LiveData<VideoLive<Resource<Unit>>> = _loadingLinks
|
val loadingLinks: LiveData<Resource<Boolean?>> = _loadingLinks
|
||||||
|
|
||||||
private val _currentStamps = MutableLiveData<VideoLive<List<VideoSkipStamp>>>(null)
|
private val _currentStamps = MutableLiveData<List<VideoSkipStamp>>(emptyList())
|
||||||
val currentStamps: LiveData<VideoLive<List<VideoSkipStamp>>> = _currentStamps
|
val currentStamps: LiveData<List<VideoSkipStamp>> = _currentStamps
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Modifies the `state` variable safely, and with the correct observe behavior.
|
* Modifies the `state` variable safely, and with the correct observe behavior.
|
||||||
|
|
@ -213,15 +158,6 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
val oldState = state
|
val oldState = state
|
||||||
state = op.invoke(oldState)
|
state = op.invoke(oldState)
|
||||||
|
|
||||||
/** New instance, always push state */
|
|
||||||
if (state.instance != oldState.instance) {
|
|
||||||
_currentSubtitles.postValue(VideoLive(state.subtitles, state.instance))
|
|
||||||
_currentStamps.postValue(VideoLive(state.stamps, state.instance))
|
|
||||||
_currentLinks.postValue(VideoLive(state.links, state.instance))
|
|
||||||
_loadingLinks.postValue(VideoLive(state.loading, state.instance))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Only post the changed values, this makes sure we do not invoke the "observe"
|
* Only post the changed values, this makes sure we do not invoke the "observe"
|
||||||
*
|
*
|
||||||
|
|
@ -229,15 +165,15 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
* to avoid comparing the entire set or list as "Persistent" classes will hold the same reference if they are unchanged.
|
* to avoid comparing the entire set or list as "Persistent" classes will hold the same reference if they are unchanged.
|
||||||
* */
|
* */
|
||||||
if (state.links !== oldState.links)
|
if (state.links !== oldState.links)
|
||||||
_currentLinks.postValue(VideoLive(state.links, state.instance))
|
_currentLinks.postValue(state.links)
|
||||||
if (state.stamps !== oldState.stamps)
|
if (state.stamps !== oldState.stamps)
|
||||||
_currentStamps.postValue(VideoLive(state.stamps, state.instance))
|
_currentStamps.postValue(state.stamps)
|
||||||
if (state.subtitles !== oldState.subtitles)
|
if (state.subtitles !== oldState.subtitles)
|
||||||
_currentSubtitles.postValue(VideoLive(state.subtitles, state.instance))
|
_currentSubtitles.postValue(state.subtitles)
|
||||||
|
|
||||||
/** Normal equality here as it is not a collection */
|
/** Normal equality here as it is not a collection */
|
||||||
if (state.loading != oldState.loading)
|
if (state.loading != oldState.loading)
|
||||||
_loadingLinks.postValue(VideoLive(state.loading, state.instance))
|
_loadingLinks.postValue(state.loading)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val _currentSubtitleYear = MutableLiveData<Int?>(null)
|
private val _currentSubtitleYear = MutableLiveData<Int?>(null)
|
||||||
|
|
@ -316,11 +252,14 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
loadLinks()
|
loadLinks()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun attachGenerator(newGenerator: VideoGenerator<*>, index: Int) {
|
fun attachGenerator(newGenerator: VideoGenerator<*>?, index: Int?) {
|
||||||
Log.i(TAG, "attachGenerator with generator=$newGenerator and index=$index")
|
if (generator == null) {
|
||||||
generator = newGenerator
|
generator = newGenerator
|
||||||
|
if (index != null) {
|
||||||
episodeIndex = index
|
episodeIndex = index
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If duplicate nothing will happen
|
* If duplicate nothing will happen
|
||||||
|
|
@ -382,14 +321,14 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun loadLinks(sourceTypes: Set<ExtractorLinkType> = LOADTYPE_INAPP) {
|
fun loadLinks(sourceTypes: Set<ExtractorLinkType> = LOADTYPE_INAPP) {
|
||||||
Log.i(TAG, "loadLinks with generator=$generator and index=$episodeIndex")
|
Log.i(TAG, "loadLinks")
|
||||||
currentJob?.cancel()
|
currentJob?.cancel()
|
||||||
val index = episodeIndex
|
val index = episodeIndex
|
||||||
|
|
||||||
|
currentJob = viewModelScope.launchSafe {
|
||||||
// Clear old data and reset the state
|
// Clear old data and reset the state
|
||||||
modifyState {
|
modifyState {
|
||||||
VideoState(
|
VideoState(
|
||||||
loading = Resource.Loading(),
|
|
||||||
generatorState = generator?.let { gen ->
|
generatorState = generator?.let { gen ->
|
||||||
GeneratorState(
|
GeneratorState(
|
||||||
meta = gen.videos.getOrNull(index),
|
meta = gen.videos.getOrNull(index),
|
||||||
|
|
@ -399,19 +338,16 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
index = index,
|
index = index,
|
||||||
allMeta = gen.videos
|
allMeta = gen.videos
|
||||||
)
|
)
|
||||||
},
|
}
|
||||||
instance = instance + 1
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
currentJob = viewModelScope.launchSafe {
|
|
||||||
// Load more data
|
// Load more data
|
||||||
val loadingState = safeApiCall {
|
val loadingState = safeApiCall {
|
||||||
generator?.generateLinks(
|
generator?.generateLinks(
|
||||||
sourceTypes = sourceTypes,
|
sourceTypes = sourceTypes,
|
||||||
clearCache = forceClearCache,
|
clearCache = forceClearCache,
|
||||||
callback = { link ->
|
callback = { link ->
|
||||||
if (isActive)
|
|
||||||
modifyState {
|
modifyState {
|
||||||
add(link)
|
add(link)
|
||||||
}
|
}
|
||||||
|
|
@ -419,12 +355,11 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
isCasting = false,
|
isCasting = false,
|
||||||
offset = index,
|
offset = index,
|
||||||
subtitleCallback = { link ->
|
subtitleCallback = { link ->
|
||||||
if (isActive && isValidSubtitle(link))
|
if (isValidSubtitle(link))
|
||||||
modifyState {
|
modifyState {
|
||||||
add(link)
|
add(link)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
Unit
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isActive) {
|
if (!isActive) {
|
||||||
|
|
@ -433,9 +368,6 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
|
|
||||||
/** Only mark as success if we have not skipped loading */
|
/** Only mark as success if we have not skipped loading */
|
||||||
modifyState {
|
modifyState {
|
||||||
if (!isActive) {
|
|
||||||
this
|
|
||||||
} else {
|
|
||||||
when (loading) {
|
when (loading) {
|
||||||
is Resource.Loading -> copy(loading = loadingState)
|
is Resource.Loading -> copy(loading = loadingState)
|
||||||
else -> this
|
else -> this
|
||||||
|
|
@ -443,5 +375,4 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -8,14 +8,11 @@ import androidx.annotation.OptIn
|
||||||
import androidx.media3.common.MimeTypes
|
import androidx.media3.common.MimeTypes
|
||||||
import androidx.media3.common.util.UnstableApi
|
import androidx.media3.common.util.UnstableApi
|
||||||
import androidx.media3.ui.SubtitleView
|
import androidx.media3.ui.SubtitleView
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore
|
|
||||||
import com.lagradost.cloudstream3.SubtitleFile
|
import com.lagradost.cloudstream3.SubtitleFile
|
||||||
import com.lagradost.cloudstream3.ui.subtitles.SaveCaptionStyle
|
import com.lagradost.cloudstream3.ui.subtitles.SaveCaptionStyle
|
||||||
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment.Companion.setSubtitleViewStyle
|
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment.Companion.setSubtitleViewStyle
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromLanguageToTagIETF
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromLanguageToTagIETF
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
enum class SubtitleStatus {
|
enum class SubtitleStatus {
|
||||||
IS_ACTIVE,
|
IS_ACTIVE,
|
||||||
|
|
@ -35,19 +32,17 @@ enum class SubtitleOrigin {
|
||||||
* @param url Url for the subtitle, when EMBEDDED_IN_VIDEO this variable is used as the real backend id
|
* @param url Url for the subtitle, when EMBEDDED_IN_VIDEO this variable is used as the real backend id
|
||||||
* @param headers if empty it will use the base onlineDataSource headers else only the specified headers
|
* @param headers if empty it will use the base onlineDataSource headers else only the specified headers
|
||||||
* @param languageCode usually, tags such as "en", "es-mx", or "zh-hant-TW". But it could be something like "English 4"
|
* @param languageCode usually, tags such as "en", "es-mx", or "zh-hant-TW". But it could be something like "English 4"
|
||||||
*/
|
* */
|
||||||
@Serializable
|
|
||||||
data class SubtitleData(
|
data class SubtitleData(
|
||||||
@SerialName("originalName") val originalName: String,
|
val originalName: String,
|
||||||
@SerialName("nameSuffix") val nameSuffix: String,
|
val nameSuffix: String,
|
||||||
@SerialName("url") val url: String,
|
val url: String,
|
||||||
@SerialName("origin") val origin: SubtitleOrigin,
|
val origin: SubtitleOrigin,
|
||||||
@SerialName("mimeType") val mimeType: String,
|
val mimeType: String,
|
||||||
@SerialName("headers") val headers: Map<String, String>,
|
val headers: Map<String, String>,
|
||||||
@SerialName("languageCode") val languageCode: String?,
|
val languageCode: String?,
|
||||||
) {
|
) {
|
||||||
/** Internal ID for media3, unique for each link. */
|
/** Internal ID for exoplayer, unique for each link*/
|
||||||
@JsonIgnore
|
|
||||||
fun getId(): String {
|
fun getId(): String {
|
||||||
return if (origin == SubtitleOrigin.EMBEDDED_IN_VIDEO) url
|
return if (origin == SubtitleOrigin.EMBEDDED_IN_VIDEO) url
|
||||||
else "$url|$name"
|
else "$url|$name"
|
||||||
|
|
@ -59,22 +54,22 @@ data class SubtitleData(
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Tries hard to figure out a valid IETF tag based on language code and name. Will return null if not found. */
|
/** Tries hard to figure out a valid IETF tag based on language code and name. Will return null if not found. */
|
||||||
@JsonIgnore
|
|
||||||
fun getIETF_tag(): String? {
|
fun getIETF_tag(): String? {
|
||||||
return fromLanguageToTagIETF(this.languageCode) ?: fromLanguageToTagIETF(this.originalName, halfMatch = true)
|
return fromLanguageToTagIETF(this.languageCode) ?: fromLanguageToTagIETF(this.originalName, halfMatch = true)
|
||||||
}
|
}
|
||||||
|
|
||||||
@SerialName("name") val name = "$originalName $nameSuffix"
|
val name = "$originalName $nameSuffix"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the URL, but tries to fix it if it is malformed.
|
* Gets the URL, but tries to fix it if it is malformed.
|
||||||
*/
|
*/
|
||||||
@JsonIgnore
|
|
||||||
fun getFixedUrl(): String {
|
fun getFixedUrl(): String {
|
||||||
// Some extensions fail to include the protocol, this helps with that.
|
// Some extensions fail to include the protocol, this helps with that.
|
||||||
val fixedSubUrl = if (this.url.startsWith("//")) {
|
val fixedSubUrl = if (this.url.startsWith("//")) {
|
||||||
"https:${this.url}"
|
"https:${this.url}"
|
||||||
} else this.url
|
} else {
|
||||||
|
this.url
|
||||||
|
}
|
||||||
return fixedSubUrl
|
return fixedSubUrl
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,6 @@ import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
import com.lagradost.cloudstream3.utils.ExtractorLinkType
|
||||||
import com.lagradost.cloudstream3.utils.newExtractorLink
|
import com.lagradost.cloudstream3.utils.newExtractorLink
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import torrServer.TorrServer
|
import torrServer.TorrServer
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.net.ConnectException
|
import java.net.ConnectException
|
||||||
|
|
@ -34,14 +32,14 @@ object Torrent {
|
||||||
|
|
||||||
/** Returns true if the server is up */
|
/** Returns true if the server is up */
|
||||||
private suspend fun echo(): Boolean {
|
private suspend fun echo(): Boolean {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return try {
|
return try {
|
||||||
app.get(
|
app.get(
|
||||||
"$TORRENT_SERVER_URL/echo",
|
"$TORRENT_SERVER_URL/echo",
|
||||||
).text.isNotEmpty()
|
).text.isNotEmpty()
|
||||||
} catch (_: ConnectException) {
|
} catch (e: ConnectException) {
|
||||||
// `Failed to connect to /127.0.0.1:8090` if the server is down
|
// `Failed to connect to /127.0.0.1:8090` if the server is down
|
||||||
false
|
false
|
||||||
} catch (t: Throwable) {
|
} catch (t: Throwable) {
|
||||||
|
|
@ -54,7 +52,7 @@ object Torrent {
|
||||||
/** Gracefully shutdown the server.
|
/** Gracefully shutdown the server.
|
||||||
* should not be used because I am unable to start it again, and the stopTorrentServer() crashes the app */
|
* should not be used because I am unable to start it again, and the stopTorrentServer() crashes the app */
|
||||||
suspend fun shutdown(): Boolean {
|
suspend fun shutdown(): Boolean {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return try {
|
return try {
|
||||||
|
|
@ -70,7 +68,7 @@ object Torrent {
|
||||||
/** Lists all torrents by the server */
|
/** Lists all torrents by the server */
|
||||||
@Throws
|
@Throws
|
||||||
private suspend fun list(): Array<TorrentStatus> {
|
private suspend fun list(): Array<TorrentStatus> {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
throw ErrorLoadingException("Not initialized")
|
throw ErrorLoadingException("Not initialized")
|
||||||
}
|
}
|
||||||
return app.post(
|
return app.post(
|
||||||
|
|
@ -85,7 +83,7 @@ object Torrent {
|
||||||
|
|
||||||
/** Drops a single torrent, (I think) this means closing the stream. Returns returns if it is successful */
|
/** Drops a single torrent, (I think) this means closing the stream. Returns returns if it is successful */
|
||||||
private suspend fun drop(hash: String): Boolean {
|
private suspend fun drop(hash: String): Boolean {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return try {
|
return try {
|
||||||
|
|
@ -106,7 +104,7 @@ object Torrent {
|
||||||
|
|
||||||
/** Removes a single torrent from the server registry */
|
/** Removes a single torrent from the server registry */
|
||||||
private suspend fun rem(hash: String): Boolean {
|
private suspend fun rem(hash: String): Boolean {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return try {
|
return try {
|
||||||
|
|
@ -128,7 +126,7 @@ object Torrent {
|
||||||
|
|
||||||
/** Removes all torrents from the server, and returns if it is successful */
|
/** Removes all torrents from the server, and returns if it is successful */
|
||||||
suspend fun clearAll(): Boolean {
|
suspend fun clearAll(): Boolean {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return try {
|
return try {
|
||||||
|
|
@ -166,8 +164,10 @@ object Torrent {
|
||||||
/** Gets all the metadata of a torrent, will throw if that hash does not exists
|
/** Gets all the metadata of a torrent, will throw if that hash does not exists
|
||||||
* https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/web/api/torrents.go#L126 */
|
* https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/web/api/torrents.go#L126 */
|
||||||
@Throws
|
@Throws
|
||||||
suspend fun get(hash: String): TorrentStatus {
|
suspend fun get(
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
hash: String,
|
||||||
|
): TorrentStatus {
|
||||||
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
throw ErrorLoadingException("Not initialized")
|
throw ErrorLoadingException("Not initialized")
|
||||||
}
|
}
|
||||||
return app.post(
|
return app.post(
|
||||||
|
|
@ -184,7 +184,7 @@ object Torrent {
|
||||||
/** Adds a torrent to the server, this is needed for us to get the hash for further modification, as well as start streaming it*/
|
/** Adds a torrent to the server, this is needed for us to get the hash for further modification, as well as start streaming it*/
|
||||||
@Throws
|
@Throws
|
||||||
private suspend fun add(url: String): TorrentStatus {
|
private suspend fun add(url: String): TorrentStatus {
|
||||||
if (TORRENT_SERVER_URL.isEmpty()) {
|
if(TORRENT_SERVER_URL.isEmpty()) {
|
||||||
throw ErrorLoadingException("Not initialized")
|
throw ErrorLoadingException("Not initialized")
|
||||||
}
|
}
|
||||||
return app.post(
|
return app.post(
|
||||||
|
|
@ -204,7 +204,7 @@ object Torrent {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
val port = TorrServer.startTorrentServer(dir, 0)
|
val port = TorrServer.startTorrentServer(dir, 0)
|
||||||
if (port < 0) {
|
if(port < 0) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
TORRENT_SERVER_URL = "http://127.0.0.1:$port"
|
TORRENT_SERVER_URL = "http://127.0.0.1:$port"
|
||||||
|
|
@ -278,55 +278,94 @@ object Torrent {
|
||||||
|
|
||||||
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/web/api/torrents.go#L18
|
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/web/api/torrents.go#L18
|
||||||
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/main/web/api/route.go#L7
|
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/main/web/api/route.go#L7
|
||||||
@Serializable
|
|
||||||
data class TorrentRequest(
|
data class TorrentRequest(
|
||||||
@JsonProperty("action") @SerialName("action") val action: String,
|
@JsonProperty("action")
|
||||||
@JsonProperty("hash") @SerialName("hash") val hash: String = "",
|
val action: String,
|
||||||
@JsonProperty("link") @SerialName("link") val link: String = "",
|
@JsonProperty("hash")
|
||||||
@JsonProperty("title") @SerialName("title") val title: String = "",
|
val hash: String = "",
|
||||||
@JsonProperty("poster") @SerialName("poster") val poster: String = "",
|
@JsonProperty("link")
|
||||||
@JsonProperty("data") @SerialName("data") val data: String = "",
|
val link: String = "",
|
||||||
@JsonProperty("save_to_db") @SerialName("save_to_db") val saveToDB: Boolean = false,
|
@JsonProperty("title")
|
||||||
|
val title: String = "",
|
||||||
|
@JsonProperty("poster")
|
||||||
|
val poster: String = "",
|
||||||
|
@JsonProperty("data")
|
||||||
|
val data: String = "",
|
||||||
|
@JsonProperty("save_to_db")
|
||||||
|
val saveToDB: Boolean = false,
|
||||||
)
|
)
|
||||||
|
|
||||||
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/torr/state/state.go#L33
|
// https://github.com/Diegopyl1209/torrentserver-aniyomi/blob/c18f58e51b6738f053261bc863177078aa9c1c98/torr/state/state.go#L33
|
||||||
// omitempty = nullable
|
// omitempty = nullable
|
||||||
@Serializable
|
|
||||||
data class TorrentStatus(
|
data class TorrentStatus(
|
||||||
@JsonProperty("title") @SerialName("title") var title: String,
|
@JsonProperty("title")
|
||||||
@JsonProperty("poster") @SerialName("poster") var poster: String,
|
var title: String,
|
||||||
@JsonProperty("data") @SerialName("data") var data: String?,
|
@JsonProperty("poster")
|
||||||
@JsonProperty("timestamp") @SerialName("timestamp") var timestamp: Long,
|
var poster: String,
|
||||||
@JsonProperty("name") @SerialName("name") var name: String?,
|
@JsonProperty("data")
|
||||||
@JsonProperty("hash") @SerialName("hash") var hash: String?,
|
var data: String?,
|
||||||
@JsonProperty("stat") @SerialName("stat") var stat: Int,
|
@JsonProperty("timestamp")
|
||||||
@JsonProperty("stat_string") @SerialName("stat_string") var statString: String,
|
var timestamp: Long,
|
||||||
@JsonProperty("loaded_size") @SerialName("loaded_size") var loadedSize: Long?,
|
@JsonProperty("name")
|
||||||
@JsonProperty("torrent_size") @SerialName("torrent_size") var torrentSize: Long?,
|
var name: String?,
|
||||||
@JsonProperty("preloaded_bytes") @SerialName("preloaded_bytes") var preloadedBytes: Long?,
|
@JsonProperty("hash")
|
||||||
@JsonProperty("preload_size") @SerialName("preload_size") var preloadSize: Long?,
|
var hash: String?,
|
||||||
@JsonProperty("download_speed") @SerialName("download_speed") var downloadSpeed: Double?,
|
@JsonProperty("stat")
|
||||||
@JsonProperty("upload_speed") @SerialName("upload_speed") var uploadSpeed: Double?,
|
var stat: Int,
|
||||||
@JsonProperty("total_peers") @SerialName("total_peers") var totalPeers: Int?,
|
@JsonProperty("stat_string")
|
||||||
@JsonProperty("pending_peers") @SerialName("pending_peers") var pendingPeers: Int?,
|
var statString: String,
|
||||||
@JsonProperty("active_peers") @SerialName("active_peers") var activePeers: Int?,
|
@JsonProperty("loaded_size")
|
||||||
@JsonProperty("connected_seeders") @SerialName("connected_seeders") var connectedSeeders: Int?,
|
var loadedSize: Long?,
|
||||||
@JsonProperty("half_open_peers") @SerialName("half_open_peers") var halfOpenPeers: Int?,
|
@JsonProperty("torrent_size")
|
||||||
@JsonProperty("bytes_written") @SerialName("bytes_written") var bytesWritten: Long?,
|
var torrentSize: Long?,
|
||||||
@JsonProperty("bytes_written_data") @SerialName("bytes_written_data") var bytesWrittenData: Long?,
|
@JsonProperty("preloaded_bytes")
|
||||||
@JsonProperty("bytes_read") @SerialName("bytes_read") var bytesRead: Long?,
|
var preloadedBytes: Long?,
|
||||||
@JsonProperty("bytes_read_data") @SerialName("bytes_read_data") var bytesReadData: Long?,
|
@JsonProperty("preload_size")
|
||||||
@JsonProperty("bytes_read_useful_data") @SerialName("bytes_read_useful_data") var bytesReadUsefulData: Long?,
|
var preloadSize: Long?,
|
||||||
@JsonProperty("chunks_written") @SerialName("chunks_written") var chunksWritten: Long?,
|
@JsonProperty("download_speed")
|
||||||
@JsonProperty("chunks_read") @SerialName("chunks_read") var chunksRead: Long?,
|
var downloadSpeed: Double?,
|
||||||
@JsonProperty("chunks_read_useful") @SerialName("chunks_read_useful") var chunksReadUseful: Long?,
|
@JsonProperty("upload_speed")
|
||||||
@JsonProperty("chunks_read_wasted") @SerialName("chunks_read_wasted") var chunksReadWasted: Long?,
|
var uploadSpeed: Double?,
|
||||||
@JsonProperty("pieces_dirtied_good") @SerialName("pieces_dirtied_good") var piecesDirtiedGood: Long?,
|
@JsonProperty("total_peers")
|
||||||
@JsonProperty("pieces_dirtied_bad") @SerialName("pieces_dirtied_bad") var piecesDirtiedBad: Long?,
|
var totalPeers: Int?,
|
||||||
@JsonProperty("duration_seconds") @SerialName("duration_seconds") var durationSeconds: Double?,
|
@JsonProperty("pending_peers")
|
||||||
@JsonProperty("bit_rate") @SerialName("bit_rate") var bitRate: String?,
|
var pendingPeers: Int?,
|
||||||
@JsonProperty("file_stats") @SerialName("file_stats") var fileStats: List<TorrentFileStat>?,
|
@JsonProperty("active_peers")
|
||||||
@JsonProperty("trackers") @SerialName("trackers") var trackers: List<String>?,
|
var activePeers: Int?,
|
||||||
|
@JsonProperty("connected_seeders")
|
||||||
|
var connectedSeeders: Int?,
|
||||||
|
@JsonProperty("half_open_peers")
|
||||||
|
var halfOpenPeers: Int?,
|
||||||
|
@JsonProperty("bytes_written")
|
||||||
|
var bytesWritten: Long?,
|
||||||
|
@JsonProperty("bytes_written_data")
|
||||||
|
var bytesWrittenData: Long?,
|
||||||
|
@JsonProperty("bytes_read")
|
||||||
|
var bytesRead: Long?,
|
||||||
|
@JsonProperty("bytes_read_data")
|
||||||
|
var bytesReadData: Long?,
|
||||||
|
@JsonProperty("bytes_read_useful_data")
|
||||||
|
var bytesReadUsefulData: Long?,
|
||||||
|
@JsonProperty("chunks_written")
|
||||||
|
var chunksWritten: Long?,
|
||||||
|
@JsonProperty("chunks_read")
|
||||||
|
var chunksRead: Long?,
|
||||||
|
@JsonProperty("chunks_read_useful")
|
||||||
|
var chunksReadUseful: Long?,
|
||||||
|
@JsonProperty("chunks_read_wasted")
|
||||||
|
var chunksReadWasted: Long?,
|
||||||
|
@JsonProperty("pieces_dirtied_good")
|
||||||
|
var piecesDirtiedGood: Long?,
|
||||||
|
@JsonProperty("pieces_dirtied_bad")
|
||||||
|
var piecesDirtiedBad: Long?,
|
||||||
|
@JsonProperty("duration_seconds")
|
||||||
|
var durationSeconds: Double?,
|
||||||
|
@JsonProperty("bit_rate")
|
||||||
|
var bitRate: String?,
|
||||||
|
@JsonProperty("file_stats")
|
||||||
|
var fileStats: List<TorrentFileStat>?,
|
||||||
|
@JsonProperty("trackers")
|
||||||
|
var trackers: List<String>?,
|
||||||
) {
|
) {
|
||||||
fun streamUrl(url: String): String {
|
fun streamUrl(url: String): String {
|
||||||
val fileName =
|
val fileName =
|
||||||
|
|
@ -342,10 +381,12 @@ object Torrent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class TorrentFileStat(
|
data class TorrentFileStat(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
@JsonProperty("id")
|
||||||
@JsonProperty("path") @SerialName("path") val path: String?,
|
val id: Int?,
|
||||||
@JsonProperty("length") @SerialName("length") val length: Long?,
|
@JsonProperty("path")
|
||||||
|
val path: String?,
|
||||||
|
@JsonProperty("length")
|
||||||
|
val length: Long?,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -12,16 +12,12 @@ import com.lagradost.cloudstream3.utils.txt
|
||||||
import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
|
import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.Qualities
|
import com.lagradost.cloudstream3.utils.Qualities
|
||||||
import java.util.EnumMap
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
|
||||||
import kotlin.also
|
|
||||||
import kotlin.math.abs
|
import kotlin.math.abs
|
||||||
|
|
||||||
object QualityDataHelper {
|
object QualityDataHelper {
|
||||||
private const val VIDEO_SOURCE_PRIORITY = "video_source_priority"
|
private const val VIDEO_SOURCE_PRIORITY = "video_source_priority"
|
||||||
private const val VIDEO_PROFILE_NAME = "video_profile_name"
|
private const val VIDEO_PROFILE_NAME = "video_profile_name"
|
||||||
private const val VIDEO_QUALITY_PRIORITY = "video_quality_priority"
|
private const val VIDEO_QUALITY_PRIORITY = "video_quality_priority"
|
||||||
const val VIDEO_PROFILE_SETTINGS = "video_profile_settings"
|
|
||||||
|
|
||||||
// Old key only supporting one type per profile
|
// Old key only supporting one type per profile
|
||||||
@Deprecated("Changed to support multiple types per profile")
|
@Deprecated("Changed to support multiple types per profile")
|
||||||
|
|
@ -57,21 +53,13 @@ object QualityDataHelper {
|
||||||
val types: Set<QualityProfileType>
|
val types: Set<QualityProfileType>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
// Map profile and name to priority
|
|
||||||
val sourcePriorityCache: ConcurrentHashMap<Int, HashMap<String, Int>> = ConcurrentHashMap()
|
|
||||||
|
|
||||||
fun getSourcePriority(profile: Int, name: String?): Int {
|
fun getSourcePriority(profile: Int, name: String?): Int {
|
||||||
if (name == null) return DEFAULT_SOURCE_PRIORITY
|
if (name == null) return DEFAULT_SOURCE_PRIORITY
|
||||||
|
return getKey(
|
||||||
return sourcePriorityCache[profile]?.get(name) ?: (getKey<Int>(
|
|
||||||
"$currentAccount/$VIDEO_SOURCE_PRIORITY/$profile",
|
"$currentAccount/$VIDEO_SOURCE_PRIORITY/$profile",
|
||||||
name,
|
name,
|
||||||
DEFAULT_SOURCE_PRIORITY
|
DEFAULT_SOURCE_PRIORITY
|
||||||
) ?: DEFAULT_SOURCE_PRIORITY).also {
|
) ?: DEFAULT_SOURCE_PRIORITY
|
||||||
sourcePriorityCache.getOrPut(profile) { hashMapOf() }
|
|
||||||
sourcePriorityCache[profile]?.set(name, it)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getAllSourcePriorityNames(profile: Int): List<String> {
|
fun getAllSourcePriorityNames(profile: Int): List<String> {
|
||||||
|
|
@ -89,8 +77,6 @@ object QualityDataHelper {
|
||||||
} else {
|
} else {
|
||||||
setKey(folder, name, priority)
|
setKey(folder, name, priority)
|
||||||
}
|
}
|
||||||
|
|
||||||
sourcePriorityCache[profile]?.set(name, priority)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setProfileName(profile: Int, name: String?) {
|
fun setProfileName(profile: Int, name: String?) {
|
||||||
|
|
@ -107,17 +93,12 @@ object QualityDataHelper {
|
||||||
?: txt(R.string.profile_number, profile)
|
?: txt(R.string.profile_number, profile)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Map profile and quality to priority
|
|
||||||
val qualityPriorityCache: ConcurrentHashMap<Int, EnumMap<Qualities, Int>> = ConcurrentHashMap()
|
|
||||||
fun getQualityPriority(profile: Int, quality: Qualities): Int {
|
fun getQualityPriority(profile: Int, quality: Qualities): Int {
|
||||||
return qualityPriorityCache[profile]?.get(quality) ?: (getKey<Int>(
|
return getKey(
|
||||||
"$currentAccount/$VIDEO_QUALITY_PRIORITY/$profile",
|
"$currentAccount/$VIDEO_QUALITY_PRIORITY/$profile",
|
||||||
quality.value.toString(),
|
quality.value.toString(),
|
||||||
quality.defaultPriority
|
quality.defaultPriority
|
||||||
)?.also {
|
) ?: quality.defaultPriority
|
||||||
qualityPriorityCache.getOrPut(profile) { EnumMap(Qualities::class.java) }
|
|
||||||
qualityPriorityCache[profile]?.set(quality, it)
|
|
||||||
}) ?: quality.defaultPriority
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setQualityPriority(profile: Int, quality: Qualities, priority: Int) {
|
fun setQualityPriority(profile: Int, quality: Qualities, priority: Int) {
|
||||||
|
|
@ -126,24 +107,8 @@ object QualityDataHelper {
|
||||||
quality.value.toString(),
|
quality.value.toString(),
|
||||||
priority
|
priority
|
||||||
)
|
)
|
||||||
qualityPriorityCache[profile]?.set(quality, priority)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T> setProfileSetting(profile: Int, setting: ProfileSettings<T>, value: T) {
|
|
||||||
val folder = "$currentAccount/$VIDEO_PROFILE_SETTINGS/$profile"
|
|
||||||
// Prevent unnecessary keys
|
|
||||||
if (value == setting.defaultValue) {
|
|
||||||
removeKey(folder, setting.key)
|
|
||||||
} else {
|
|
||||||
setKey(folder, setting.key, value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inline fun <reified T : Any> getProfileSetting(profile: Int, setting: ProfileSettings<T>): T {
|
|
||||||
val folder = "$currentAccount/$VIDEO_PROFILE_SETTINGS/$profile"
|
|
||||||
val value = getKey<T>(folder, setting.key)
|
|
||||||
return value ?: setting.defaultValue
|
|
||||||
}
|
|
||||||
|
|
||||||
@Suppress("DEPRECATION")
|
@Suppress("DEPRECATION")
|
||||||
fun getQualityProfileTypes(profile: Int): Set<QualityProfileType> {
|
fun getQualityProfileTypes(profile: Int): Set<QualityProfileType> {
|
||||||
|
|
@ -259,8 +224,3 @@ object QualityDataHelper {
|
||||||
return Qualities.entries.minBy { abs(it.value - target) }
|
return Qualities.entries.minBy { abs(it.value - target) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sealed class ProfileSettings<T>(val key: String, val defaultValue: T) {
|
|
||||||
object HideErrorSources : ProfileSettings<Boolean>("hide_error_sources", false)
|
|
||||||
object HideNegativeSources : ProfileSettings<Boolean>("hide_negative_sources", false)
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
||||||
|
|
||||||
class SourcePriorityDialog(
|
class SourcePriorityDialog(
|
||||||
val ctx: Context,
|
val ctx: Context,
|
||||||
@StyleRes val themeRes: Int,
|
@StyleRes themeRes: Int,
|
||||||
val links: List<LinkSource>,
|
val links: List<LinkSource>,
|
||||||
private val profile: QualityDataHelper.QualityProfile,
|
private val profile: QualityDataHelper.QualityProfile,
|
||||||
/**
|
/**
|
||||||
|
|
@ -28,27 +28,28 @@ class SourcePriorityDialog(
|
||||||
PlayerSelectSourcePriorityBinding.inflate(LayoutInflater.from(ctx), null, false)
|
PlayerSelectSourcePriorityBinding.inflate(LayoutInflater.from(ctx), null, false)
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
fixSystemBarsPadding(binding.root)
|
fixSystemBarsPadding(binding.root)
|
||||||
|
val sourcesRecyclerView = binding.sortSources
|
||||||
|
val qualitiesRecyclerView = binding.sortQualities
|
||||||
|
val profileText = binding.profileTextEditable
|
||||||
|
val saveBtt = binding.saveBtt
|
||||||
|
val exitBtt = binding.closeBtt
|
||||||
|
val helpBtt = binding.helpBtt
|
||||||
|
|
||||||
binding.apply {
|
profileText.setText(QualityDataHelper.getProfileName(profile.id).asString(context))
|
||||||
profileTextEditable.setText(
|
profileText.hint = txt(R.string.profile_number, profile.id).asString(context)
|
||||||
QualityDataHelper.getProfileName(profile.id).asString(context)
|
|
||||||
)
|
|
||||||
profileTextEditable.hint = txt(R.string.profile_number, profile.id).asString(context)
|
|
||||||
|
|
||||||
sortSources.adapter = PriorityAdapter<Nothing?>(
|
sourcesRecyclerView.adapter = PriorityAdapter<Nothing?>(
|
||||||
).apply {
|
).apply {
|
||||||
val sortedLinks = links.map { link ->
|
submitList(links.map { link ->
|
||||||
SourcePriority(
|
SourcePriority(
|
||||||
null,
|
null,
|
||||||
link.source,
|
link.source,
|
||||||
QualityDataHelper.getSourcePriority(profile.id, link.source)
|
QualityDataHelper.getSourcePriority(profile.id, link.source)
|
||||||
)
|
)
|
||||||
}.distinctBy { it.name }.sortedBy { -it.priority }
|
}.distinctBy { it.name }.sortedBy { -it.priority })
|
||||||
|
|
||||||
submitList(sortedLinks)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sortQualities.adapter = PriorityAdapter<Qualities>(
|
qualitiesRecyclerView.adapter = PriorityAdapter<Qualities>(
|
||||||
).apply {
|
).apply {
|
||||||
submitList(Qualities.entries.mapNotNull {
|
submitList(Qualities.entries.mapNotNull {
|
||||||
SourcePriority(
|
SourcePriority(
|
||||||
|
|
@ -61,8 +62,8 @@ class SourcePriorityDialog(
|
||||||
|
|
||||||
@Suppress("UNCHECKED_CAST") // We know the types
|
@Suppress("UNCHECKED_CAST") // We know the types
|
||||||
saveBtt.setOnClickListener {
|
saveBtt.setOnClickListener {
|
||||||
val qualityAdapter = sortQualities.adapter as? PriorityAdapter<Qualities>
|
val qualityAdapter = qualitiesRecyclerView.adapter as? PriorityAdapter<Qualities>
|
||||||
val sourcesAdapter = sortSources.adapter as? PriorityAdapter<Nothing?>
|
val sourcesAdapter = sourcesRecyclerView.adapter as? PriorityAdapter<Nothing?>
|
||||||
|
|
||||||
val qualities = qualityAdapter?.immutableCurrentList ?: emptyList()
|
val qualities = qualityAdapter?.immutableCurrentList ?: emptyList()
|
||||||
val sources = sourcesAdapter?.immutableCurrentList ?: emptyList()
|
val sources = sourcesAdapter?.immutableCurrentList ?: emptyList()
|
||||||
|
|
@ -78,7 +79,7 @@ class SourcePriorityDialog(
|
||||||
qualityAdapter?.submitList(qualities.sortedBy { -it.priority })
|
qualityAdapter?.submitList(qualities.sortedBy { -it.priority })
|
||||||
sourcesAdapter?.submitList(sources.sortedBy { -it.priority })
|
sourcesAdapter?.submitList(sources.sortedBy { -it.priority })
|
||||||
|
|
||||||
val savedProfileName = profileTextEditable.text.toString()
|
val savedProfileName = profileText.text.toString()
|
||||||
if (savedProfileName.isBlank()) {
|
if (savedProfileName.isBlank()) {
|
||||||
QualityDataHelper.setProfileName(profile.id, null)
|
QualityDataHelper.setProfileName(profile.id, null)
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -87,8 +88,8 @@ class SourcePriorityDialog(
|
||||||
updatedCallback.invoke()
|
updatedCallback.invoke()
|
||||||
}
|
}
|
||||||
|
|
||||||
closeBtt.setOnClickListener {
|
exitBtt.setOnClickListener {
|
||||||
dismissSafe()
|
this.dismissSafe()
|
||||||
}
|
}
|
||||||
|
|
||||||
helpBtt.setOnClickListener {
|
helpBtt.setOnClickListener {
|
||||||
|
|
@ -97,10 +98,6 @@ class SourcePriorityDialog(
|
||||||
}.show()
|
}.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
settingsBtt.setOnClickListener {
|
|
||||||
SourceProfileSettingsDialog(ctx, themeRes, profile.id).show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
package com.lagradost.cloudstream3.ui.player.source_priority
|
|
||||||
|
|
||||||
import android.app.Dialog
|
|
||||||
import android.content.Context
|
|
||||||
import android.view.LayoutInflater
|
|
||||||
import androidx.annotation.StyleRes
|
|
||||||
import com.lagradost.cloudstream3.databinding.SourceProfileSettingsDialogBinding
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
|
||||||
|
|
||||||
class SourceProfileSettingsDialog(
|
|
||||||
val ctx: Context,
|
|
||||||
@StyleRes themeRes: Int,
|
|
||||||
val profile: Int
|
|
||||||
) : Dialog(ctx, themeRes) {
|
|
||||||
override fun show() {
|
|
||||||
val binding =
|
|
||||||
SourceProfileSettingsDialogBinding.inflate(LayoutInflater.from(ctx), null, false)
|
|
||||||
setContentView(binding.root)
|
|
||||||
fixSystemBarsPadding(binding.root)
|
|
||||||
|
|
||||||
binding.apply {
|
|
||||||
var hideErrorSources = QualityDataHelper.getProfileSetting(profile, ProfileSettings.HideErrorSources)
|
|
||||||
var hideNegativeSources = QualityDataHelper.getProfileSetting(profile, ProfileSettings.HideNegativeSources)
|
|
||||||
|
|
||||||
profileHideErrorSources.isChecked = hideErrorSources
|
|
||||||
profileHideErrorSources.setOnCheckedChangeListener { _, bool ->
|
|
||||||
hideErrorSources = bool
|
|
||||||
}
|
|
||||||
|
|
||||||
profileHideNegativeSources.isChecked = hideNegativeSources
|
|
||||||
profileHideNegativeSources.setOnCheckedChangeListener { _, bool ->
|
|
||||||
hideNegativeSources = bool
|
|
||||||
}
|
|
||||||
|
|
||||||
applyBtt.setOnClickListener {
|
|
||||||
QualityDataHelper.setProfileSetting(profile, ProfileSettings.HideErrorSources, hideErrorSources)
|
|
||||||
QualityDataHelper.setProfileSetting(profile, ProfileSettings.HideNegativeSources, hideNegativeSources)
|
|
||||||
dismissSafe()
|
|
||||||
}
|
|
||||||
|
|
||||||
cancelBtt.setOnClickListener {
|
|
||||||
dismissSafe()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
super.show()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -5,9 +5,6 @@ import android.content.Intent
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.view.animation.Animation
|
|
||||||
import android.view.animation.OvershootInterpolator
|
|
||||||
import android.view.animation.ScaleAnimation
|
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import com.lagradost.cloudstream3.ActorData
|
import com.lagradost.cloudstream3.ActorData
|
||||||
import com.lagradost.cloudstream3.ActorRole
|
import com.lagradost.cloudstream3.ActorRole
|
||||||
|
|
@ -49,24 +46,6 @@ class ActorAdaptor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onUpdateContent(holder: ViewHolderState<Any>, item: ActorData, position: Int) {
|
|
||||||
when (val binding = holder.view) {
|
|
||||||
is CastItemBinding -> {
|
|
||||||
val anim: Animation = ScaleAnimation(
|
|
||||||
0.8f, 1f,
|
|
||||||
0.8f, 1f,
|
|
||||||
Animation.RELATIVE_TO_SELF, 0.5f,
|
|
||||||
Animation.RELATIVE_TO_SELF, 0.5f
|
|
||||||
)
|
|
||||||
anim.fillAfter = true
|
|
||||||
anim.duration = 200
|
|
||||||
anim.interpolator = OvershootInterpolator()
|
|
||||||
binding.voiceActorImageHolder2.startAnimation(anim)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
super.onUpdateContent(holder, item, position)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onBindContent(holder: ViewHolderState<Any>, item: ActorData, position: Int) {
|
override fun onBindContent(holder: ViewHolderState<Any>, item: ActorData, position: Int) {
|
||||||
when (val binding = holder.view) {
|
when (val binding = holder.view) {
|
||||||
is CastItemBinding -> {
|
is CastItemBinding -> {
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,6 @@ import com.lagradost.cloudstream3.utils.DataStoreHelper.getViewPos
|
||||||
import com.lagradost.cloudstream3.utils.Event
|
import com.lagradost.cloudstream3.utils.Event
|
||||||
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
|
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
|
||||||
import com.lagradost.cloudstream3.utils.UiImage
|
import com.lagradost.cloudstream3.utils.UiImage
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
const val START_ACTION_RESUME_LATEST = 1
|
const val START_ACTION_RESUME_LATEST = 1
|
||||||
const val START_ACTION_LOAD_EP = 2
|
const val START_ACTION_LOAD_EP = 2
|
||||||
|
|
@ -36,32 +34,33 @@ enum class VideoWatchState {
|
||||||
Watched
|
Watched
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResultEpisode(
|
data class ResultEpisode(
|
||||||
@SerialName("headerName") val headerName: String,
|
val headerName: String,
|
||||||
@SerialName("name") val name: String?,
|
val name: String?,
|
||||||
@SerialName("poster") val poster: String?,
|
val poster: String?,
|
||||||
@SerialName("episode") val episode: Int,
|
val episode: Int,
|
||||||
@SerialName("seasonIndex") val seasonIndex: Int?, // this is the "season" index used season names
|
val seasonIndex: Int?, // this is the "season" index used season names
|
||||||
@SerialName("season") val season: Int?, // this is the display
|
val season: Int?, // this is the display
|
||||||
@SerialName("data") val data: String,
|
val data: String,
|
||||||
@SerialName("apiName") val apiName: String,
|
val apiName: String,
|
||||||
@SerialName("id") val id: Int,
|
val id: Int,
|
||||||
@SerialName("index") val index: Int,
|
val index: Int,
|
||||||
@SerialName("position") val position: Long, // time in MS
|
val position: Long, // time in MS
|
||||||
@SerialName("duration") val duration: Long, // duration in MS
|
val duration: Long, // duration in MS
|
||||||
@SerialName("score") val score: Score?,
|
val score: Score?,
|
||||||
@SerialName("description") val description: String?,
|
val description: String?,
|
||||||
@SerialName("isFiller") val isFiller: Boolean?,
|
val isFiller: Boolean?,
|
||||||
@SerialName("tvType") val tvType: TvType,
|
val tvType: TvType,
|
||||||
@SerialName("parentId") val parentId: Int,
|
val parentId: Int,
|
||||||
/** Conveys if the episode itself is marked as watched. */
|
/**
|
||||||
@SerialName("videoWatchState") val videoWatchState: VideoWatchState,
|
* Conveys if the episode itself is marked as watched
|
||||||
/** Sum of all previous season episode counts + episode. */
|
**/
|
||||||
@SerialName("totalEpisodeIndex") val totalEpisodeIndex: Int? = null,
|
val videoWatchState: VideoWatchState,
|
||||||
@SerialName("airDate") val airDate: Long? = null,
|
/** Sum of all previous season episode counts + episode */
|
||||||
@SerialName("runTime") val runTime: Int? = null,
|
val totalEpisodeIndex: Int? = null,
|
||||||
@SerialName("seasonData") val seasonData: SeasonData? = null,
|
val airDate: Long? = null,
|
||||||
|
val runTime: Int? = null,
|
||||||
|
val seasonData: SeasonData? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
fun ResultEpisode.getRealPosition(): Long {
|
fun ResultEpisode.getRealPosition(): Long {
|
||||||
|
|
|
||||||
|
|
@ -877,7 +877,7 @@ class ResultFragmentTv : BaseFragment<FragmentResultTvBinding>(
|
||||||
resultCastText.setText(d.actorsText)
|
resultCastText.setText(d.actorsText)
|
||||||
resultNextAiring.setText(d.nextAiringEpisode)
|
resultNextAiring.setText(d.nextAiringEpisode)
|
||||||
resultNextAiringTime.setText(d.nextAiringDate)
|
resultNextAiringTime.setText(d.nextAiringDate)
|
||||||
resultPoster.loadImage(d.posterImage, headers = d.posterHeaders)
|
resultPoster.loadImage(d.posterImage)
|
||||||
|
|
||||||
var isExpanded = false
|
var isExpanded = false
|
||||||
resultDescription.apply {
|
resultDescription.apply {
|
||||||
|
|
@ -910,7 +910,7 @@ class ResultFragmentTv : BaseFragment<FragmentResultTvBinding>(
|
||||||
R.drawable.profile_bg_teal
|
R.drawable.profile_bg_teal
|
||||||
).random()
|
).random()
|
||||||
|
|
||||||
backgroundPoster.loadImage(d.posterBackgroundImage, headers = d.posterHeaders) {
|
backgroundPoster.loadImage(d.posterBackgroundImage) {
|
||||||
error { getImageFromDrawable(context ?: return@error null, error) }
|
error { getImageFromDrawable(context ?: return@error null, error) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,6 @@ import com.lagradost.cloudstream3.utils.AppContextUtils.getNameFull
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.isConnectedToChromecast
|
import com.lagradost.cloudstream3.utils.AppContextUtils.isConnectedToChromecast
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
|
import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.sortSubs
|
import com.lagradost.cloudstream3.utils.AppContextUtils.sortSubs
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
||||||
import com.lagradost.cloudstream3.utils.CastHelper.startCast
|
import com.lagradost.cloudstream3.utils.CastHelper.startCast
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioWork
|
import com.lagradost.cloudstream3.utils.Coroutines.ioWork
|
||||||
|
|
@ -1325,7 +1324,7 @@ class ResultViewModel2 : ViewModel() {
|
||||||
episodeIds: Array<String>,
|
episodeIds: Array<String>,
|
||||||
watchState: VideoWatchState
|
watchState: VideoWatchState
|
||||||
) {
|
) {
|
||||||
val watchStateString = watchState.toJson()
|
val watchStateString = DataStore.mapper.writeValueAsString(watchState)
|
||||||
episodeIds.forEach {
|
episodeIds.forEach {
|
||||||
if (getVideoWatchState(it.toInt()) != watchState) {
|
if (getVideoWatchState(it.toInt()) != watchState) {
|
||||||
editor.setKeyRaw(
|
editor.setKeyRaw(
|
||||||
|
|
@ -1686,13 +1685,14 @@ class ResultViewModel2 : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
val realRecommendations = ArrayList<SearchResponse>()
|
val realRecommendations = ArrayList<SearchResponse>()
|
||||||
val apiNames = apis.filter {
|
val apiNames = synchronized(apis) {
|
||||||
|
apis.filter {
|
||||||
it.name.contains("gogoanime", true) ||
|
it.name.contains("gogoanime", true) ||
|
||||||
it.name.contains("9anime", true)
|
it.name.contains("9anime", true)
|
||||||
}.map {
|
}.map {
|
||||||
it.name
|
it.name
|
||||||
}
|
}
|
||||||
|
}
|
||||||
meta.recommendations?.forEach { rec ->
|
meta.recommendations?.forEach { rec ->
|
||||||
apiNames.forEach { name ->
|
apiNames.forEach { name ->
|
||||||
realRecommendations.add(rec.copy(apiName = name))
|
realRecommendations.add(rec.copy(apiName = name))
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,6 @@ class SyncViewModel : ViewModel() {
|
||||||
fun publishUserData() = ioSafe {
|
fun publishUserData() = ioSafe {
|
||||||
Log.i(TAG, "publishUserData")
|
Log.i(TAG, "publishUserData")
|
||||||
val user = userData.value
|
val user = userData.value
|
||||||
_userDataResponse.postValue(Resource.Loading())
|
|
||||||
if (user is Resource.Success) {
|
if (user is Resource.Success) {
|
||||||
syncs.forEach { (prefix, id) ->
|
syncs.forEach { (prefix, id) ->
|
||||||
repos.firstOrNull { it.idPrefix == prefix }?.updateStatus(id, user.value)
|
repos.firstOrNull { it.idPrefix == prefix }?.updateStatus(id, user.value)
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,12 @@ import com.lagradost.cloudstream3.ui.ViewHolderState
|
||||||
import com.lagradost.cloudstream3.ui.settings.Globals.EMULATOR
|
import com.lagradost.cloudstream3.ui.settings.Globals.EMULATOR
|
||||||
import com.lagradost.cloudstream3.ui.settings.Globals.TV
|
import com.lagradost.cloudstream3.ui.settings.Globals.TV
|
||||||
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
|
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SearchHistoryItem(
|
data class SearchHistoryItem(
|
||||||
@JsonProperty("searchedAt") @SerialName("searchedAt") val searchedAt: Long,
|
@JsonProperty("searchedAt") val searchedAt: Long,
|
||||||
@JsonProperty("searchText") @SerialName("searchText") val searchText: String,
|
@JsonProperty("searchText") val searchText: String,
|
||||||
@JsonProperty("type") @SerialName("type") val type: List<TvType>,
|
@JsonProperty("type") val type: List<TvType>,
|
||||||
@JsonProperty("key") @SerialName("key") val key: String,
|
@JsonProperty("key") val key: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
data class SearchHistoryCallback(
|
data class SearchHistoryCallback(
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,6 @@ import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.nicehttp.NiceResponse
|
import com.lagradost.nicehttp.NiceResponse
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* API for fetching search suggestions from external sources.
|
* API for fetching search suggestions from external sources.
|
||||||
|
|
@ -15,18 +13,16 @@ object SearchSuggestionApi {
|
||||||
private const val TMDB_API_URL = "https://api.themoviedb.org/3/search/multi"
|
private const val TMDB_API_URL = "https://api.themoviedb.org/3/search/multi"
|
||||||
private const val TMDB_API_KEY = "e6333b32409e02a4a6eba6fb7ff866bb"
|
private const val TMDB_API_KEY = "e6333b32409e02a4a6eba6fb7ff866bb"
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class TmdbSearchResult(
|
data class TmdbSearchResult(
|
||||||
@JsonProperty("results") @SerialName("results") val results: List<TmdbSearchItem>?,
|
@JsonProperty("results") val results: List<TmdbSearchItem>?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class TmdbSearchItem(
|
data class TmdbSearchItem(
|
||||||
@JsonProperty("media_type") @SerialName("media_type") val mediaType: String?,
|
@JsonProperty("media_type") val mediaType: String?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("name") val name: String?,
|
||||||
@JsonProperty("original_title") @SerialName("original_title") val originalTitle: String?,
|
@JsonProperty("original_title") val originalTitle: String?,
|
||||||
@JsonProperty("original_name") @SerialName("original_name") val originalName: String?,
|
@JsonProperty("original_name") val originalName: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -61,7 +57,7 @@ object SearchSuggestionApi {
|
||||||
* Parses the TMDB search response and extracts movie/TV show titles.
|
* Parses the TMDB search response and extracts movie/TV show titles.
|
||||||
* Filters to only include movies, TV shows, and anime.
|
* Filters to only include movies, TV shows, and anime.
|
||||||
*/
|
*/
|
||||||
private suspend fun parseSuggestions(response: NiceResponse): List<String> {
|
private fun parseSuggestions(response: NiceResponse): List<String> {
|
||||||
return try {
|
return try {
|
||||||
val parsed = response.parsed<TmdbSearchResult>()
|
val parsed = response.parsed<TmdbSearchResult>()
|
||||||
parsed.results
|
parsed.results
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ class SearchViewModel : ViewModel() {
|
||||||
|
|
||||||
private var suggestionJob: Job? = null
|
private var suggestionJob: Job? = null
|
||||||
|
|
||||||
private var repos = apis.withLock { apis.map { APIRepository(it) } }
|
private var repos = synchronized(apis) { apis.map { APIRepository(it) } }
|
||||||
|
|
||||||
fun clearSearch() {
|
fun clearSearch() {
|
||||||
_searchResponse.postValue(Resource.Success(ExpandableSearchList(emptyList(), 0, false)))
|
_searchResponse.postValue(Resource.Success(ExpandableSearchList(emptyList(), 0, false)))
|
||||||
|
|
@ -68,7 +68,7 @@ class SearchViewModel : ViewModel() {
|
||||||
private var onGoingSearch: Job? = null
|
private var onGoingSearch: Job? = null
|
||||||
|
|
||||||
fun reloadRepos() {
|
fun reloadRepos() {
|
||||||
repos = apis.withLock { apis.map { APIRepository(it) } }
|
repos = synchronized(apis) { apis.map { APIRepository(it) } }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun searchAndCancel(
|
fun searchAndCancel(
|
||||||
|
|
|
||||||
|
|
@ -65,8 +65,6 @@ import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialogTe
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
|
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideKeyboard
|
import com.lagradost.cloudstream3.utils.UIHelper.hideKeyboard
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.setText
|
import com.lagradost.cloudstream3.utils.setText
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import qrcode.QRCode
|
import qrcode.QRCode
|
||||||
|
|
@ -350,7 +348,6 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
|
||||||
email = if (req.email) binding.loginEmailInput.text?.toString() else null,
|
email = if (req.email) binding.loginEmailInput.text?.toString() else null,
|
||||||
server = if (req.server) binding.loginServerInput.text?.toString() else null,
|
server = if (req.server) binding.loginServerInput.text?.toString() else null,
|
||||||
)
|
)
|
||||||
binding.applyBtt.showProgress()
|
|
||||||
ioSafe {
|
ioSafe {
|
||||||
try {
|
try {
|
||||||
if (api.login(loginData)) {
|
if (api.login(loginData)) {
|
||||||
|
|
@ -380,8 +377,6 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
|
||||||
api.name
|
api.name
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} finally {
|
|
||||||
binding.applyBtt.hideProgress()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -249,7 +249,7 @@ class SettingsFragment : BaseFragment<MainSettingsBinding>(
|
||||||
|
|
||||||
val appVersion = BuildConfig.VERSION_NAME
|
val appVersion = BuildConfig.VERSION_NAME
|
||||||
val commitHash = activity?.currentCommitHash() ?: ""
|
val commitHash = activity?.currentCommitHash() ?: ""
|
||||||
val buildTimestamp = SimpleDateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM,
|
val buildTimestamp = SimpleDateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG,
|
||||||
Locale.getDefault()
|
Locale.getDefault()
|
||||||
).apply { timeZone = TimeZone.getTimeZone("UTC")
|
).apply { timeZone = TimeZone.getTimeZone("UTC")
|
||||||
}.format(Date(BuildConfig.BUILD_DATE)).replace("UTC", "")
|
}.format(Date(BuildConfig.BUILD_DATE)).replace("UTC", "")
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ import androidx.core.content.edit
|
||||||
import androidx.core.os.ConfigurationCompat
|
import androidx.core.os.ConfigurationCompat
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import com.fasterxml.jackson.annotation.JsonAlias
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder.allProviders
|
import com.lagradost.cloudstream3.APIHolder.allProviders
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp
|
import com.lagradost.cloudstream3.CloudStreamApp
|
||||||
|
|
@ -49,10 +48,6 @@ import com.lagradost.cloudstream3.utils.USER_PROVIDER_API
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement
|
import com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement.getBasePath
|
import com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement.getBasePath
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
import com.lagradost.cloudstream3.utils.downloader.DownloadQueueManager
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import kotlinx.serialization.json.JsonNames
|
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
// Change local language settings in the app.
|
// Change local language settings in the app.
|
||||||
|
|
@ -77,7 +72,6 @@ val appLanguages = arrayListOf(
|
||||||
Pair("Azərbaycan dili", "az"),
|
Pair("Azərbaycan dili", "az"),
|
||||||
Pair("Bahasa Indonesia", "in"),
|
Pair("Bahasa Indonesia", "in"),
|
||||||
Pair("Bahasa Melayu", "ms"),
|
Pair("Bahasa Melayu", "ms"),
|
||||||
Pair("català", "ca"),
|
|
||||||
Pair("Deutsch", "de"),
|
Pair("Deutsch", "de"),
|
||||||
Pair("English", "en"),
|
Pair("English", "en"),
|
||||||
Pair("Español", "es"),
|
Pair("Español", "es"),
|
||||||
|
|
@ -98,7 +92,6 @@ val appLanguages = arrayListOf(
|
||||||
Pair("Português", "pt"),
|
Pair("Português", "pt"),
|
||||||
Pair("Português (Brasil)", "pt-BR"),
|
Pair("Português (Brasil)", "pt-BR"),
|
||||||
Pair("Română", "ro"),
|
Pair("Română", "ro"),
|
||||||
Pair("Shqip мова", "sq"),
|
|
||||||
Pair("Slovenčina", "sk"),
|
Pair("Slovenčina", "sk"),
|
||||||
Pair("Soomaaliga", "so"),
|
Pair("Soomaaliga", "so"),
|
||||||
Pair("Svenska", "sv"),
|
Pair("Svenska", "sv"),
|
||||||
|
|
@ -108,7 +101,6 @@ val appLanguages = arrayListOf(
|
||||||
Pair("Wikang Filipino", "fil"),
|
Pair("Wikang Filipino", "fil"),
|
||||||
Pair("Čeština", "cs"),
|
Pair("Čeština", "cs"),
|
||||||
Pair("Ελληνικά", "el"),
|
Pair("Ελληνικά", "el"),
|
||||||
Pair("беларуская мова", "be"),
|
|
||||||
Pair("български", "bg"),
|
Pair("български", "bg"),
|
||||||
Pair("македонски", "mk"),
|
Pair("македонски", "mk"),
|
||||||
Pair("русский", "ru"),
|
Pair("русский", "ru"),
|
||||||
|
|
@ -142,7 +134,7 @@ fun Pair<String, String>.nameNextToFlagEmoji(): String {
|
||||||
// fallback to [A][A] -> [?] question mak flag
|
// fallback to [A][A] -> [?] question mak flag
|
||||||
val flag = SubtitleHelper.getFlagFromIso(this.second) ?: "\ud83c\udde6\ud83c\udde6"
|
val flag = SubtitleHelper.getFlagFromIso(this.second) ?: "\ud83c\udde6\ud83c\udde6"
|
||||||
|
|
||||||
return "$flag\u00a0${this.first}" // \u00a0 non-breaking space
|
return "$flag\u00a0${this.first}" // \u00a0 non-breaking space
|
||||||
}
|
}
|
||||||
|
|
||||||
class SettingsGeneral : BasePreferenceFragmentCompat() {
|
class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
|
|
@ -153,15 +145,15 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
setToolBarScrollFlags()
|
setToolBarScrollFlags()
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // JsonNames is an experimental annotation for now
|
|
||||||
@Serializable
|
|
||||||
data class CustomSite(
|
data class CustomSite(
|
||||||
@JsonProperty("parentClassName") @JsonAlias("parentJavaClass")
|
@JsonProperty("parentJavaClass") // javaClass.simpleName
|
||||||
@SerialName("parentClassName") @JsonNames("parentJavaClass")
|
val parentJavaClass: String,
|
||||||
val parentClassName: String, // ::class.simpleName
|
@JsonProperty("name")
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url")
|
||||||
@JsonProperty("lang") @SerialName("lang") val lang: String,
|
val url: String,
|
||||||
|
@JsonProperty("lang")
|
||||||
|
val lang: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
@ -227,7 +219,7 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun showAdd() {
|
fun showAdd() {
|
||||||
val providers = allProviders.distinctBy { it::class }.sortedBy { it.name }
|
val providers = synchronized(allProviders) { allProviders.distinctBy { it.javaClass }.sortedBy { it.name } }
|
||||||
activity?.showDialog(
|
activity?.showDialog(
|
||||||
providers.map { "${it.name} (${it.mainUrl})" },
|
providers.map { "${it.name} (${it.mainUrl})" },
|
||||||
-1,
|
-1,
|
||||||
|
|
@ -251,14 +243,13 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
val url = binding.siteUrlInput.text?.toString()
|
val url = binding.siteUrlInput.text?.toString()
|
||||||
val lang = binding.siteLangInput.text?.toString()
|
val lang = binding.siteLangInput.text?.toString()
|
||||||
val realLang = if (lang.isNullOrBlank()) provider.lang else lang
|
val realLang = if (lang.isNullOrBlank()) provider.lang else lang
|
||||||
val simpleName = provider::class.simpleName
|
if (url.isNullOrBlank() || name.isNullOrBlank()) {
|
||||||
if (url.isNullOrBlank() || name.isNullOrBlank() || simpleName == null) {
|
|
||||||
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
|
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
|
||||||
return@setOnClickListener
|
return@setOnClickListener
|
||||||
}
|
}
|
||||||
|
|
||||||
val current = getCurrent()
|
val current = getCurrent()
|
||||||
val newSite = CustomSite(simpleName, name, url, realLang)
|
val newSite = CustomSite(provider.javaClass.simpleName, name, url, realLang)
|
||||||
current.add(newSite)
|
current.add(newSite)
|
||||||
setKey(USER_PROVIDER_API, current.toTypedArray())
|
setKey(USER_PROVIDER_API, current.toTypedArray())
|
||||||
// reload apis
|
// reload apis
|
||||||
|
|
@ -362,7 +353,7 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
} ?: emptyList()
|
} ?: emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
settingsManager.edit { putBoolean(getString(R.string.jsdelivr_proxy_key), getKey<Boolean>(getString(R.string.jsdelivr_proxy_key), false) ?: false) }
|
settingsManager.edit { putBoolean(getString(R.string.jsdelivr_proxy_key), getKey(getString(R.string.jsdelivr_proxy_key), false) ?: false) }
|
||||||
getPref(R.string.jsdelivr_proxy_key)?.setOnPreferenceChangeListener { _, newValue ->
|
getPref(R.string.jsdelivr_proxy_key)?.setOnPreferenceChangeListener { _, newValue ->
|
||||||
setKey(getString(R.string.jsdelivr_proxy_key), newValue)
|
setKey(getString(R.string.jsdelivr_proxy_key), newValue)
|
||||||
return@setOnPreferenceChangeListener true
|
return@setOnPreferenceChangeListener true
|
||||||
|
|
|
||||||
|
|
@ -205,35 +205,29 @@ class SettingsPlayer : BasePreferenceFragmentCompat() {
|
||||||
}
|
}
|
||||||
|
|
||||||
getPref(R.string.player_default_key)?.setOnPreferenceClickListener {
|
getPref(R.string.player_default_key)?.setOnPreferenceClickListener {
|
||||||
// Pair each player with its display name, dropping any with none,
|
val players = VideoClickActionHolder.getPlayers(activity)
|
||||||
// which would mean something is definitely wrong.
|
|
||||||
val players = VideoClickActionHolder.getPlayers(activity).mapNotNull { player ->
|
|
||||||
(player.name.asStringNull(activity) ?: player::class.simpleName)?.let { player to it }
|
|
||||||
}
|
|
||||||
|
|
||||||
val prefNames = buildList {
|
val prefNames = buildList {
|
||||||
add(getString(R.string.player_settings_play_in_app)) // built-in player display name
|
add(getString(R.string.player_settings_play_in_app))
|
||||||
addAll(players.map { (_, name) -> name })
|
addAll(players.map { it.name.asStringNull(activity) ?: it.javaClass.simpleName })
|
||||||
}
|
}
|
||||||
|
|
||||||
val prefValues = buildList {
|
val prefValues = buildList {
|
||||||
add("") // "" = built-in player, matches default
|
add("")
|
||||||
addAll(players.map { (player, _) -> player.uniqueId() })
|
addAll(players.map { it.uniqueId() })
|
||||||
}
|
}
|
||||||
|
val current =
|
||||||
|
settingsManager.getString(getString(R.string.player_default_key), "") ?: ""
|
||||||
|
|
||||||
val current = settingsManager.getString(getString(R.string.player_default_key), "") ?: ""
|
|
||||||
activity?.showBottomDialog(
|
activity?.showBottomDialog(
|
||||||
prefNames.toList(),
|
prefNames.toList(),
|
||||||
prefValues.indexOf(current), // finds index of currently selected player
|
prefValues.indexOf(current),
|
||||||
getString(R.string.player_pref),
|
getString(R.string.player_pref),
|
||||||
true,
|
true,
|
||||||
{},
|
{}
|
||||||
) {
|
) {
|
||||||
settingsManager.edit {
|
settingsManager.edit {
|
||||||
putString(getString(R.string.player_default_key), prefValues[it])
|
putString(getString(R.string.player_default_key), prefValues[it])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return@setOnPreferenceClickListener true
|
return@setOnPreferenceClickListener true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -111,10 +111,10 @@ class SettingsProviders : BasePreferenceFragmentCompat() {
|
||||||
|
|
||||||
getPref(R.string.provider_lang_key)?.setOnPreferenceClickListener {
|
getPref(R.string.provider_lang_key)?.setOnPreferenceClickListener {
|
||||||
activity?.getApiProviderLangSettings()?.let { currentLangTags ->
|
activity?.getApiProviderLangSettings()?.let { currentLangTags ->
|
||||||
val languagesTagName = APIHolder.apis.withLock {
|
val languagesTagName = synchronized(APIHolder.apis) {
|
||||||
listOf(Pair(AllLanguagesName, getString(R.string.all_languages_preference))) +
|
listOf( Pair(AllLanguagesName, getString(R.string.all_languages_preference)) ) +
|
||||||
APIHolder.apis.map { Pair(it.lang, getNameNextToFlagEmoji(it.lang) ?: it.lang) }
|
APIHolder.apis.map { Pair(it.lang, getNameNextToFlagEmoji(it.lang) ?: it.lang) }
|
||||||
.toSet().sortedBy { it.second.substringAfter("\u00a0").lowercase() }
|
.toSet().sortedBy { it.second.substringAfter("\u00a0").lowercase() } // name ignoring flag emoji
|
||||||
}
|
}
|
||||||
|
|
||||||
val currentIndexList = currentLangTags.map { langTag ->
|
val currentIndexList = currentLangTags.map { langTag ->
|
||||||
|
|
|
||||||
|
|
@ -228,8 +228,6 @@ class SettingsUI : BasePreferenceFragmentCompat() {
|
||||||
return@setOnPreferenceClickListener true
|
return@setOnPreferenceClickListener true
|
||||||
}
|
}
|
||||||
|
|
||||||
getPref(R.string.tv_layout_clock_key)?.hideOn(PHONE or EMULATOR)
|
|
||||||
|
|
||||||
getPref(R.string.confirm_exit_key)?.setOnPreferenceClickListener {
|
getPref(R.string.confirm_exit_key)?.setOnPreferenceClickListener {
|
||||||
val prefNames = resources.getStringArray(R.array.confirm_exit)
|
val prefNames = resources.getStringArray(R.array.confirm_exit)
|
||||||
val prefValues = resources.getIntArray(R.array.confirm_exit_values)
|
val prefValues = resources.getIntArray(R.array.confirm_exit_values)
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,10 @@ import android.content.Context
|
||||||
import android.content.DialogInterface
|
import android.content.DialogInterface
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.MenuItem
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.widget.LinearLayout
|
import android.widget.LinearLayout
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.appcompat.app.AlertDialog
|
import androidx.appcompat.app.AlertDialog
|
||||||
import androidx.appcompat.widget.SearchView
|
|
||||||
import androidx.core.view.isGone
|
import androidx.core.view.isGone
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import androidx.core.view.marginBottom
|
import androidx.core.view.marginBottom
|
||||||
|
|
@ -28,7 +26,6 @@ import com.lagradost.cloudstream3.plugins.RepositoryManager
|
||||||
import com.lagradost.cloudstream3.ui.BaseFragment
|
import com.lagradost.cloudstream3.ui.BaseFragment
|
||||||
import com.lagradost.cloudstream3.ui.result.FOCUS_SELF
|
import com.lagradost.cloudstream3.ui.result.FOCUS_SELF
|
||||||
import com.lagradost.cloudstream3.ui.result.setLinearListLayout
|
import com.lagradost.cloudstream3.ui.result.setLinearListLayout
|
||||||
import com.lagradost.cloudstream3.ui.setRecycledViewPool
|
|
||||||
import com.lagradost.cloudstream3.ui.settings.Globals.TV
|
import com.lagradost.cloudstream3.ui.settings.Globals.TV
|
||||||
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
|
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
|
||||||
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setSystemBarsPadding
|
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setSystemBarsPadding
|
||||||
|
|
@ -39,8 +36,6 @@ import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
import com.lagradost.cloudstream3.utils.Coroutines.main
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
|
|
||||||
import com.lagradost.cloudstream3.utils.setText
|
import com.lagradost.cloudstream3.utils.setText
|
||||||
|
|
||||||
class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
|
|
@ -48,7 +43,6 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
) {
|
) {
|
||||||
|
|
||||||
private val extensionViewModel: ExtensionsViewModel by activityViewModels()
|
private val extensionViewModel: ExtensionsViewModel by activityViewModels()
|
||||||
private val pluginViewModel: PluginsViewModel by activityViewModels()
|
|
||||||
|
|
||||||
private fun View.setLayoutWidth(weight: Int) {
|
private fun View.setLayoutWidth(weight: Int) {
|
||||||
val param = LinearLayout.LayoutParams(
|
val param = LinearLayout.LayoutParams(
|
||||||
|
|
@ -116,7 +110,11 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
adapter = RepoAdapter(false, {
|
adapter = RepoAdapter(false, {
|
||||||
findNavController().navigate(
|
findNavController().navigate(
|
||||||
R.id.navigation_settings_extensions_to_navigation_settings_plugins,
|
R.id.navigation_settings_extensions_to_navigation_settings_plugins,
|
||||||
PluginsFragment.newInstance(it)
|
PluginsFragment.newInstance(
|
||||||
|
it.name,
|
||||||
|
it.url,
|
||||||
|
false
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}, { repo ->
|
}, { repo ->
|
||||||
// Prompt user before deleting repo
|
// Prompt user before deleting repo
|
||||||
|
|
@ -128,10 +126,7 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
when (which) {
|
when (which) {
|
||||||
DialogInterface.BUTTON_POSITIVE -> {
|
DialogInterface.BUTTON_POSITIVE -> {
|
||||||
ioSafe {
|
ioSafe {
|
||||||
RepositoryManager.removeRepository(
|
RepositoryManager.removeRepository(uiContext.applicationContext, repo)
|
||||||
uiContext.applicationContext,
|
|
||||||
repo
|
|
||||||
)
|
|
||||||
extensionViewModel.loadStats()
|
extensionViewModel.loadStats()
|
||||||
extensionViewModel.loadRepositories()
|
extensionViewModel.loadRepositories()
|
||||||
}
|
}
|
||||||
|
|
@ -150,11 +145,10 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
observe(extensionViewModel.repositories) { repos ->
|
observe(extensionViewModel.repositories) {
|
||||||
binding.repoRecyclerView.isVisible = repos.isNotEmpty()
|
binding.repoRecyclerView.isVisible = it.isNotEmpty()
|
||||||
binding.blankRepoScreen.isVisible = repos.isEmpty()
|
binding.blankRepoScreen.isVisible = it.isEmpty()
|
||||||
(binding.repoRecyclerView.adapter as? RepoAdapter)?.submitList(repos.toList())
|
(binding.repoRecyclerView.adapter as? RepoAdapter)?.submitList(it.toList())
|
||||||
pluginViewModel.updatePluginList(binding.root.context, repos.toList())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
observeNullable(extensionViewModel.pluginStats) { value ->
|
observeNullable(extensionViewModel.pluginStats) { value ->
|
||||||
|
|
@ -183,75 +177,14 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
binding.pluginStorageAppbar.setOnClickListener {
|
binding.pluginStorageAppbar.setOnClickListener {
|
||||||
findNavController().navigate(
|
findNavController().navigate(
|
||||||
R.id.navigation_settings_extensions_to_navigation_settings_plugins,
|
R.id.navigation_settings_extensions_to_navigation_settings_plugins,
|
||||||
PluginsFragment.newLocalInstance(
|
PluginsFragment.newInstance(
|
||||||
getString(R.string.extensions),
|
getString(R.string.extensions),
|
||||||
|
"",
|
||||||
|
true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.pluginRecyclerView.apply {
|
|
||||||
setLinearListLayout(
|
|
||||||
isHorizontal = false,
|
|
||||||
nextDown = FOCUS_SELF,
|
|
||||||
nextRight = FOCUS_SELF,
|
|
||||||
)
|
|
||||||
setRecycledViewPool(PluginAdapter.sharedPool)
|
|
||||||
adapter =
|
|
||||||
PluginAdapter(true) {
|
|
||||||
val urls = extensionViewModel.repositories.value?.toList() ?: emptyList()
|
|
||||||
pluginViewModel.handlePluginAction(activity, urls, it, false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
observe(pluginViewModel.filteredPlugins) { (scrollToTop, list) ->
|
|
||||||
(binding.pluginRecyclerView.adapter as? PluginAdapter)?.submitList(list)
|
|
||||||
if (scrollToTop) {
|
|
||||||
binding.pluginRecyclerView.scrollToPosition(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
binding.settingsToolbar.apply {
|
|
||||||
val searchItem = menu?.findItem(R.id.search_button)
|
|
||||||
val searchView = searchItem?.actionView as? SearchView
|
|
||||||
|
|
||||||
searchItem?.setOnActionExpandListener(object : MenuItem.OnActionExpandListener {
|
|
||||||
override fun onMenuItemActionCollapse(p0: MenuItem): Boolean {
|
|
||||||
binding.pluginRecyclerView.isVisible = false
|
|
||||||
binding.repoRecyclerView.isVisible = true
|
|
||||||
return true
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onMenuItemActionExpand(p0: MenuItem): Boolean {
|
|
||||||
binding.pluginRecyclerView.isVisible = true
|
|
||||||
binding.repoRecyclerView.isVisible = false
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// Don't go back if active query
|
|
||||||
setNavigationOnClickListener {
|
|
||||||
if (searchView?.isIconified == false) {
|
|
||||||
searchView.isIconified = true
|
|
||||||
} else {
|
|
||||||
dispatchBackPressed()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
searchView?.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
|
||||||
override fun onQueryTextSubmit(query: String?): Boolean {
|
|
||||||
pluginViewModel.search(query)
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onQueryTextChange(newText: String?): Boolean {
|
|
||||||
pluginViewModel.search(newText)
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
val addRepositoryClick = View.OnClickListener {
|
val addRepositoryClick = View.OnClickListener {
|
||||||
val ctx = context ?: return@OnClickListener
|
val ctx = context ?: return@OnClickListener
|
||||||
val binding = AddRepoInputBinding.inflate(LayoutInflater.from(ctx), null, false)
|
val binding = AddRepoInputBinding.inflate(LayoutInflater.from(ctx), null, false)
|
||||||
|
|
@ -266,10 +199,7 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
)?.text?.toString()?.let { copiedText ->
|
)?.text?.toString()?.let { copiedText ->
|
||||||
if (copiedText.contains(RepoAdapter.SHAREABLE_REPO_SEPARATOR)) {
|
if (copiedText.contains(RepoAdapter.SHAREABLE_REPO_SEPARATOR)) {
|
||||||
// text is of format <repository name> : <repository url>
|
// text is of format <repository name> : <repository url>
|
||||||
val (name, url) = copiedText.split(
|
val (name, url) = copiedText.split(RepoAdapter.SHAREABLE_REPO_SEPARATOR, limit = 2)
|
||||||
RepoAdapter.SHAREABLE_REPO_SEPARATOR,
|
|
||||||
limit = 2
|
|
||||||
)
|
|
||||||
binding.repoUrlInput.setText(url.trim())
|
binding.repoUrlInput.setText(url.trim())
|
||||||
binding.repoNameInput.setText(name.trim())
|
binding.repoNameInput.setText(name.trim())
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -280,18 +210,13 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
binding.applyBtt.setOnClickListener secondListener@{
|
binding.applyBtt.setOnClickListener secondListener@{
|
||||||
val name = binding.repoNameInput.text?.toString()
|
val name = binding.repoNameInput.text?.toString()
|
||||||
val urlInput = binding.repoUrlInput.text?.toString()
|
val urlInput = binding.repoUrlInput.text?.toString()
|
||||||
if (urlInput.isNullOrEmpty()) {
|
|
||||||
showToast(R.string.error_invalid_url, Toast.LENGTH_SHORT)
|
|
||||||
return@secondListener
|
|
||||||
}
|
|
||||||
binding.applyBtt.showProgress()
|
|
||||||
ioSafe {
|
ioSafe {
|
||||||
try {
|
val url = urlInput?.let { it1 -> RepositoryManager.parseRepoUrl(it1) }
|
||||||
val url = RepositoryManager.parseRepoUrl(urlInput)
|
|
||||||
if (url.isNullOrBlank()) {
|
if (url.isNullOrBlank()) {
|
||||||
|
main {
|
||||||
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
|
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
|
||||||
return@ioSafe
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
val repository = RepositoryManager.parseRepository(url)
|
val repository = RepositoryManager.parseRepository(url)
|
||||||
|
|
||||||
// Exit if wrong repository
|
// Exit if wrong repository
|
||||||
|
|
@ -302,33 +227,29 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
|
|
||||||
val fixedName = if (!name.isNullOrBlank()) name
|
val fixedName = if (!name.isNullOrBlank()) name
|
||||||
else repository.name
|
else repository.name
|
||||||
val newRepo = RepositoryData(repository.iconUrl, fixedName, url)
|
val newRepo = RepositoryData(repository.iconUrl,fixedName, url)
|
||||||
RepositoryManager.addRepository(newRepo)
|
RepositoryManager.addRepository(newRepo)
|
||||||
extensionViewModel.loadStats()
|
extensionViewModel.loadStats()
|
||||||
extensionViewModel.loadRepositories()
|
extensionViewModel.loadRepositories()
|
||||||
|
|
||||||
dialog.dismissSafe(activity) // Only dismiss if the repo was added
|
val plugins = RepositoryManager.getRepoPlugins(url)
|
||||||
|
|
||||||
val plugins = RepositoryManager.getRepoPlugins(newRepo)
|
|
||||||
if (plugins.isNullOrEmpty()) {
|
if (plugins.isNullOrEmpty()) {
|
||||||
showToast(R.string.no_plugins_found_error, Toast.LENGTH_LONG)
|
showToast(R.string.no_plugins_found_error, Toast.LENGTH_LONG)
|
||||||
return@ioSafe
|
} else {
|
||||||
}
|
|
||||||
|
|
||||||
this@ExtensionsFragment.activity?.addRepositoryDialog(
|
this@ExtensionsFragment.activity?.addRepositoryDialog(
|
||||||
newRepo
|
fixedName,
|
||||||
|
url,
|
||||||
)
|
)
|
||||||
} finally {
|
|
||||||
binding.applyBtt.hideProgress()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
dialog.dismissSafe(activity)
|
||||||
|
}
|
||||||
binding.cancelBtt.setOnClickListener {
|
binding.cancelBtt.setOnClickListener {
|
||||||
dialog.dismissSafe(activity)
|
dialog.dismissSafe(activity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
val isTv = isLayout(TV)
|
val isTv = isLayout(TV)
|
||||||
binding.apply {
|
binding.apply {
|
||||||
addRepoButton.isGone = isTv
|
addRepoButton.isGone = isTv
|
||||||
|
|
|
||||||
|
|
@ -15,16 +15,13 @@ import com.lagradost.cloudstream3.plugins.RepositoryManager.PREBUILT_REPOSITORIE
|
||||||
import com.lagradost.cloudstream3.utils.UiText
|
import com.lagradost.cloudstream3.utils.UiText
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class RepositoryData(
|
data class RepositoryData(
|
||||||
@JsonProperty("iconUrl") @SerialName("iconUrl") val iconUrl: String?,
|
@JsonProperty("iconUrl") val iconUrl: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url") val url: String
|
||||||
) {
|
){
|
||||||
constructor(name: String, url: String): this(null, name, url)
|
constructor(name: String,url: String):this(null,name,url)
|
||||||
}
|
}
|
||||||
|
|
||||||
const val REPOSITORIES_KEY = "REPOSITORIES_KEY"
|
const val REPOSITORIES_KEY = "REPOSITORIES_KEY"
|
||||||
|
|
@ -55,16 +52,16 @@ class ExtensionsViewModel : ViewModel() {
|
||||||
?: emptyArray()) + PREBUILT_REPOSITORIES
|
?: emptyArray()) + PREBUILT_REPOSITORIES
|
||||||
|
|
||||||
val onlinePlugins = urls.toList().amap {
|
val onlinePlugins = urls.toList().amap {
|
||||||
RepositoryManager.getRepoPlugins(it)?.toList() ?: emptyList()
|
RepositoryManager.getRepoPlugins(it.url)?.toList() ?: emptyList()
|
||||||
}.flatten().distinctBy { it.plugin.url }
|
}.flatten().distinctBy { it.second.url }
|
||||||
|
|
||||||
// Iterates over all offline plugins, compares to remote repo and returns the plugins which are outdated
|
// Iterates over all offline plugins, compares to remote repo and returns the plugins which are outdated
|
||||||
val outdatedPlugins = getPluginsOnline().flatMap { savedData ->
|
val outdatedPlugins = getPluginsOnline().map { savedData ->
|
||||||
onlinePlugins.filter { onlineData -> savedData.internalName == onlineData.plugin.internalName }
|
onlinePlugins.filter { onlineData -> savedData.internalName == onlineData.second.internalName }
|
||||||
.map { onlineData ->
|
.map { onlineData ->
|
||||||
PluginManager.OnlinePluginData(savedData, onlineData)
|
PluginManager.OnlinePluginData(savedData, onlineData)
|
||||||
}
|
}
|
||||||
}.distinctBy { it.onlineData.plugin.url }
|
}.flatten().distinctBy { it.onlineData.second.url }
|
||||||
|
|
||||||
val total = onlinePlugins.count()
|
val total = onlinePlugins.count()
|
||||||
val disabled = outdatedPlugins.count { it.isDisabled }
|
val disabled = outdatedPlugins.count { it.isDisabled }
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ import com.lagradost.cloudstream3.R
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.databinding.RepositoryItemBinding
|
import com.lagradost.cloudstream3.databinding.RepositoryItemBinding
|
||||||
import com.lagradost.cloudstream3.plugins.PluginManager
|
import com.lagradost.cloudstream3.plugins.PluginManager
|
||||||
import com.lagradost.cloudstream3.plugins.PluginWrapper
|
|
||||||
import com.lagradost.cloudstream3.ui.BaseDiffCallback
|
import com.lagradost.cloudstream3.ui.BaseDiffCallback
|
||||||
import com.lagradost.cloudstream3.ui.NoStateAdapter
|
import com.lagradost.cloudstream3.ui.NoStateAdapter
|
||||||
import com.lagradost.cloudstream3.ui.ViewHolderState
|
import com.lagradost.cloudstream3.ui.ViewHolderState
|
||||||
|
|
@ -35,7 +34,7 @@ import kotlin.math.log10
|
||||||
import kotlin.math.pow
|
import kotlin.math.pow
|
||||||
|
|
||||||
data class PluginViewData(
|
data class PluginViewData(
|
||||||
val pluginWrapper: PluginWrapper,
|
val plugin: Plugin,
|
||||||
val isDownloaded: Boolean,
|
val isDownloaded: Boolean,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -45,9 +44,9 @@ class RepositoryViewHolderState(view: ViewBinding) : ViewHolderState<Any>(view)
|
||||||
}
|
}
|
||||||
|
|
||||||
class PluginAdapter(
|
class PluginAdapter(
|
||||||
val showRepositoryNames: Boolean = false, val iconClickCallback: (PluginWrapper) -> Unit,
|
val iconClickCallback: (Plugin) -> Unit
|
||||||
) : NoStateAdapter<PluginViewData>(diffCallback = BaseDiffCallback(itemSame = { a, b ->
|
) : NoStateAdapter<PluginViewData>(diffCallback = BaseDiffCallback(itemSame = { a, b ->
|
||||||
a.pluginWrapper.plugin.internalName == b.pluginWrapper.plugin.internalName && a.pluginWrapper.repositoryData.url == b.pluginWrapper.repositoryData.url
|
a.plugin.second.internalName == b.plugin.second.internalName && a.plugin.first == b.plugin.first
|
||||||
})) {
|
})) {
|
||||||
override fun onCreateContent(parent: ViewGroup): ViewHolderState<Any> {
|
override fun onCreateContent(parent: ViewGroup): ViewHolderState<Any> {
|
||||||
val layout = if (isLayout(TV)) R.layout.repository_item_tv else R.layout.repository_item
|
val layout = if (isLayout(TV)) R.layout.repository_item_tv else R.layout.repository_item
|
||||||
|
|
@ -74,22 +73,14 @@ class PluginAdapter(
|
||||||
val binding = holder.view as? RepositoryItemBinding ?: return
|
val binding = holder.view as? RepositoryItemBinding ?: return
|
||||||
val itemView = holder.itemView
|
val itemView = holder.itemView
|
||||||
|
|
||||||
val metadata = item.pluginWrapper.plugin
|
val metadata = item.plugin.second
|
||||||
val disabled = metadata.status == PROVIDER_STATUS_DOWN
|
val disabled = metadata.status == PROVIDER_STATUS_DOWN
|
||||||
val name = metadata.name.removeSuffix("Provider")
|
val name = metadata.name.removeSuffix("Provider")
|
||||||
val alpha = if (disabled) 0.6f else 1f
|
val alpha = if (disabled) 0.6f else 1f
|
||||||
val isLocal = !item.pluginWrapper.plugin.url.startsWith("http")
|
val isLocal = !item.plugin.second.url.startsWith("http")
|
||||||
binding.mainText.alpha = alpha
|
binding.mainText.alpha = alpha
|
||||||
binding.subText.alpha = alpha
|
binding.subText.alpha = alpha
|
||||||
|
|
||||||
binding.repositoryNameText.isVisible = showRepositoryNames
|
|
||||||
if (showRepositoryNames) {
|
|
||||||
val name = item.pluginWrapper.repositoryData.name
|
|
||||||
binding.repositoryNameText.text = name
|
|
||||||
} else {
|
|
||||||
binding.repositoryNameText.text = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
val drawableInt = if (item.isDownloaded)
|
val drawableInt = if (item.isDownloaded)
|
||||||
R.drawable.ic_baseline_delete_outline_24
|
R.drawable.ic_baseline_delete_outline_24
|
||||||
else R.drawable.netflix_download
|
else R.drawable.netflix_download
|
||||||
|
|
@ -98,7 +89,7 @@ class PluginAdapter(
|
||||||
binding.actionButton.setImageResource(drawableInt)
|
binding.actionButton.setImageResource(drawableInt)
|
||||||
|
|
||||||
binding.actionButton.setOnClickListener {
|
binding.actionButton.setOnClickListener {
|
||||||
iconClickCallback.invoke(item.pluginWrapper)
|
iconClickCallback.invoke(item.plugin)
|
||||||
}
|
}
|
||||||
itemView.setOnClickListener {
|
itemView.setOnClickListener {
|
||||||
if (isLocal) return@setOnClickListener
|
if (isLocal) return@setOnClickListener
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ class PluginDetailsFragment(val data: PluginViewData) : BaseBottomSheetDialogFra
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onBindingCreated(binding: FragmentPluginDetailsBinding) {
|
override fun onBindingCreated(binding: FragmentPluginDetailsBinding) {
|
||||||
val metadata = data.pluginWrapper.plugin
|
val metadata = data.plugin.second
|
||||||
binding.apply {
|
binding.apply {
|
||||||
pluginIcon.loadImage(metadata.iconUrl?.replace("%size%", "$iconSize")
|
pluginIcon.loadImage(metadata.iconUrl?.replace("%size%", "$iconSize")
|
||||||
?.replace("%exact_size%", "$iconSizeExact")) {
|
?.replace("%exact_size%", "$iconSizeExact")) {
|
||||||
|
|
@ -135,7 +135,7 @@ class PluginDetailsFragment(val data: PluginViewData) : BaseBottomSheetDialogFra
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateVoting(value: Int) {
|
private fun updateVoting(value: Int) {
|
||||||
val metadata = data.pluginWrapper.plugin
|
val metadata = data.plugin.second
|
||||||
binding?.apply {
|
binding?.apply {
|
||||||
pluginVotes.text = value.toString()
|
pluginVotes.text = value.toString()
|
||||||
if (metadata.hasVoted()) {
|
if (metadata.hasVoted()) {
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,13 @@ import android.os.Bundle
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.appcompat.widget.SearchView
|
import androidx.appcompat.widget.SearchView
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import androidx.lifecycle.ViewModelProvider
|
import androidx.fragment.app.activityViewModels
|
||||||
import com.lagradost.cloudstream3.AllLanguagesName
|
import com.lagradost.cloudstream3.AllLanguagesName
|
||||||
import com.lagradost.cloudstream3.BuildConfig
|
import com.lagradost.cloudstream3.BuildConfig
|
||||||
import com.lagradost.cloudstream3.R
|
|
||||||
import com.lagradost.cloudstream3.TvType
|
|
||||||
import com.lagradost.cloudstream3.databinding.FragmentPluginsBinding
|
import com.lagradost.cloudstream3.databinding.FragmentPluginsBinding
|
||||||
import com.lagradost.cloudstream3.mvvm.observe
|
import com.lagradost.cloudstream3.mvvm.observe
|
||||||
|
import com.lagradost.cloudstream3.R
|
||||||
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.ui.BaseFragment
|
import com.lagradost.cloudstream3.ui.BaseFragment
|
||||||
import com.lagradost.cloudstream3.ui.home.HomeFragment.Companion.bindChips
|
import com.lagradost.cloudstream3.ui.home.HomeFragment.Companion.bindChips
|
||||||
import com.lagradost.cloudstream3.ui.result.FOCUS_SELF
|
import com.lagradost.cloudstream3.ui.result.FOCUS_SELF
|
||||||
|
|
@ -23,19 +23,19 @@ import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setSyst
|
||||||
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setToolBarScrollFlags
|
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setToolBarScrollFlags
|
||||||
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setUpToolbar
|
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.setUpToolbar
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.getApiProviderLangSettings
|
import com.lagradost.cloudstream3.utils.AppContextUtils.getApiProviderLangSettings
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showMultiDialog
|
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showMultiDialog
|
||||||
import com.lagradost.cloudstream3.utils.SubtitleHelper.getNameNextToFlagEmoji
|
import com.lagradost.cloudstream3.utils.SubtitleHelper.getNameNextToFlagEmoji
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
||||||
|
|
||||||
const val PLUGINS_BUNDLE_DATA = "data"
|
const val PLUGINS_BUNDLE_NAME = "name"
|
||||||
|
const val PLUGINS_BUNDLE_URL = "url"
|
||||||
const val PLUGINS_BUNDLE_LOCAL = "isLocal"
|
const val PLUGINS_BUNDLE_LOCAL = "isLocal"
|
||||||
|
|
||||||
class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
BaseFragment.BindingCreator.Inflate(FragmentPluginsBinding::inflate)
|
BaseFragment.BindingCreator.Inflate(FragmentPluginsBinding::inflate)
|
||||||
) {
|
) {
|
||||||
private lateinit var pluginViewModel: PluginsViewModel
|
|
||||||
|
private val pluginViewModel: PluginsViewModel by activityViewModels()
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
pluginViewModel.clear() // clear for the next observe
|
pluginViewModel.clear() // clear for the next observe
|
||||||
|
|
@ -47,8 +47,6 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onBindingCreated(binding: FragmentPluginsBinding) {
|
override fun onBindingCreated(binding: FragmentPluginsBinding) {
|
||||||
pluginViewModel = ViewModelProvider(this)[PluginsViewModel::class.java]
|
|
||||||
|
|
||||||
// Since the ViewModel is getting reused the tvTypes must be cleared between uses
|
// Since the ViewModel is getting reused the tvTypes must be cleared between uses
|
||||||
pluginViewModel.tvTypes.clear()
|
pluginViewModel.tvTypes.clear()
|
||||||
pluginViewModel.selectedLanguages = listOf()
|
pluginViewModel.selectedLanguages = listOf()
|
||||||
|
|
@ -62,25 +60,24 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val repositoryData = arguments?.getString(PLUGINS_BUNDLE_DATA)?.let { data ->
|
val name = arguments?.getString(PLUGINS_BUNDLE_NAME)
|
||||||
tryParseJson<RepositoryData>(data)
|
val url = arguments?.getString(PLUGINS_BUNDLE_URL)
|
||||||
}
|
|
||||||
val isLocal = arguments?.getBoolean(PLUGINS_BUNDLE_LOCAL) == true
|
val isLocal = arguments?.getBoolean(PLUGINS_BUNDLE_LOCAL) == true
|
||||||
// download all extensions button
|
// download all extensions button
|
||||||
val downloadAllButton = binding.settingsToolbar.menu?.findItem(R.id.download_all)
|
val downloadAllButton = binding.settingsToolbar.menu?.findItem(R.id.download_all)
|
||||||
|
|
||||||
if (repositoryData == null) {
|
if (url == null || name == null) {
|
||||||
dispatchBackPressed()
|
dispatchBackPressed()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
setToolBarScrollFlags()
|
setToolBarScrollFlags()
|
||||||
setUpToolbar(repositoryData.name)
|
setUpToolbar(name)
|
||||||
binding.settingsToolbar.apply {
|
binding.settingsToolbar.apply {
|
||||||
setOnMenuItemClickListener { menuItem ->
|
setOnMenuItemClickListener { menuItem ->
|
||||||
when (menuItem?.itemId) {
|
when (menuItem?.itemId) {
|
||||||
R.id.download_all -> {
|
R.id.download_all -> {
|
||||||
PluginsViewModel.downloadAll(activity, repositoryData, pluginViewModel)
|
PluginsViewModel.downloadAll(activity, url, pluginViewModel)
|
||||||
}
|
}
|
||||||
|
|
||||||
R.id.lang_filter -> {
|
R.id.lang_filter -> {
|
||||||
|
|
@ -133,6 +130,9 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
dispatchBackPressed()
|
dispatchBackPressed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
searchView?.setOnQueryTextFocusChangeListener { _, hasFocus ->
|
||||||
|
if (!hasFocus) pluginViewModel.search(null)
|
||||||
|
}
|
||||||
|
|
||||||
searchView?.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
searchView?.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
||||||
override fun onQueryTextSubmit(query: String?): Boolean {
|
override fun onQueryTextSubmit(query: String?): Boolean {
|
||||||
|
|
@ -161,7 +161,7 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
setRecycledViewPool(PluginAdapter.sharedPool)
|
setRecycledViewPool(PluginAdapter.sharedPool)
|
||||||
adapter =
|
adapter =
|
||||||
PluginAdapter {
|
PluginAdapter {
|
||||||
pluginViewModel.handlePluginAction(activity, listOf(repositoryData), it, isLocal)
|
pluginViewModel.handlePluginAction(activity, url, it, isLocal)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -185,7 +185,7 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
|
|
||||||
binding.tvtypesChipsScroll.root.isVisible = false
|
binding.tvtypesChipsScroll.root.isVisible = false
|
||||||
} else {
|
} else {
|
||||||
pluginViewModel.updatePluginList(context, listOf(repositoryData))
|
pluginViewModel.updatePluginList(context, url)
|
||||||
binding.tvtypesChipsScroll.root.isVisible = true
|
binding.tvtypesChipsScroll.root.isVisible = true
|
||||||
// not needed for users but may be useful for devs
|
// not needed for users but may be useful for devs
|
||||||
downloadAllButton?.isVisible = BuildConfig.DEBUG
|
downloadAllButton?.isVisible = BuildConfig.DEBUG
|
||||||
|
|
@ -206,17 +206,21 @@ class PluginsFragment : BaseFragment<FragmentPluginsBinding>(
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun newInstance(repositoryData: RepositoryData): Bundle {
|
fun newInstance(name: String, url: String, isLocal: Boolean): Bundle {
|
||||||
return Bundle().apply {
|
return Bundle().apply {
|
||||||
putString(PLUGINS_BUNDLE_DATA, repositoryData.toJson())
|
putString(PLUGINS_BUNDLE_NAME, name)
|
||||||
putBoolean(PLUGINS_BUNDLE_LOCAL, false)
|
putString(PLUGINS_BUNDLE_URL, url)
|
||||||
}
|
putBoolean(PLUGINS_BUNDLE_LOCAL, isLocal)
|
||||||
}
|
|
||||||
fun newLocalInstance(name: String): Bundle {
|
|
||||||
return Bundle().apply {
|
|
||||||
putString(PLUGINS_BUNDLE_DATA, RepositoryData("", name, "").toJson())
|
|
||||||
putBoolean(PLUGINS_BUNDLE_LOCAL, true)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// class RepoSearchView(context: Context) : android.widget.SearchView(context) {
|
||||||
|
// var onActionViewCollapsed = {}
|
||||||
|
//
|
||||||
|
// override fun onActionViewCollapsed() {
|
||||||
|
// onActionViewCollapsed()
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -17,15 +17,17 @@ import com.lagradost.cloudstream3.amap
|
||||||
import com.lagradost.cloudstream3.mvvm.launchSafe
|
import com.lagradost.cloudstream3.mvvm.launchSafe
|
||||||
import com.lagradost.cloudstream3.plugins.PluginManager
|
import com.lagradost.cloudstream3.plugins.PluginManager
|
||||||
import com.lagradost.cloudstream3.plugins.PluginManager.getPluginPath
|
import com.lagradost.cloudstream3.plugins.PluginManager.getPluginPath
|
||||||
import com.lagradost.cloudstream3.plugins.PluginWrapper
|
|
||||||
import com.lagradost.cloudstream3.plugins.RepositoryManager
|
import com.lagradost.cloudstream3.plugins.RepositoryManager
|
||||||
|
import com.lagradost.cloudstream3.plugins.SitePlugin
|
||||||
import com.lagradost.cloudstream3.utils.txt
|
import com.lagradost.cloudstream3.utils.txt
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
import com.lagradost.cloudstream3.utils.Coroutines.main
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.runOnMainThread
|
import com.lagradost.cloudstream3.utils.Coroutines.runOnMainThread
|
||||||
import com.lagradost.cloudstream3.utils.Levenshtein
|
import me.xdrop.fuzzywuzzy.FuzzySearch
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
|
// String => repository url
|
||||||
|
typealias Plugin = Pair<String, SitePlugin>
|
||||||
/**
|
/**
|
||||||
* The boolean signifies if the plugin list should be scrolled to the top, used for searching.
|
* The boolean signifies if the plugin list should be scrolled to the top, used for searching.
|
||||||
* */
|
* */
|
||||||
|
|
@ -38,7 +40,7 @@ class PluginsViewModel : ViewModel() {
|
||||||
set(value) {
|
set(value) {
|
||||||
// Also set all the plugin languages for easier filtering
|
// Also set all the plugin languages for easier filtering
|
||||||
value.map { pluginViewData ->
|
value.map { pluginViewData ->
|
||||||
val language = pluginViewData.pluginWrapper.plugin.language?.lowercase()
|
val language = pluginViewData.plugin.second.language?.lowercase()
|
||||||
pluginLanguages.add(
|
pluginLanguages.add(
|
||||||
when {
|
when {
|
||||||
language.isNullOrBlank() -> "none"
|
language.isNullOrBlank() -> "none"
|
||||||
|
|
@ -60,7 +62,7 @@ class PluginsViewModel : ViewModel() {
|
||||||
private var currentQuery: String? = null
|
private var currentQuery: String? = null
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val repositoryCache: MutableMap<String, List<PluginWrapper>> = mutableMapOf()
|
private val repositoryCache: MutableMap<String, List<Plugin>> = mutableMapOf()
|
||||||
const val TAG = "PLG"
|
const val TAG = "PLG"
|
||||||
|
|
||||||
private fun isDownloaded(
|
private fun isDownloaded(
|
||||||
|
|
@ -72,33 +74,32 @@ class PluginsViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun getPlugins(
|
private suspend fun getPlugins(
|
||||||
repository: RepositoryData,
|
repositoryUrl: String,
|
||||||
canUseCache: Boolean = true
|
canUseCache: Boolean = true
|
||||||
): List<PluginWrapper> {
|
): List<Plugin> {
|
||||||
Log.i(TAG, "getPlugins = $repository")
|
Log.i(TAG, "getPlugins = $repositoryUrl")
|
||||||
if (canUseCache && repositoryCache.containsKey(repository.url)) {
|
if (canUseCache && repositoryCache.containsKey(repositoryUrl)) {
|
||||||
repositoryCache[repository.url]?.let {
|
repositoryCache[repositoryUrl]?.let {
|
||||||
return it
|
return it
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return RepositoryManager.getRepoPlugins(repositoryUrl)
|
||||||
return RepositoryManager.getRepoPlugins(repository)
|
?.also { repositoryCache[repositoryUrl] = it } ?: emptyList()
|
||||||
?.also { repositoryCache[repository.url] = it } ?: emptyList()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param viewModel optional, updates the plugins livedata for that viewModel if included
|
* @param viewModel optional, updates the plugins livedata for that viewModel if included
|
||||||
* */
|
* */
|
||||||
fun downloadAll(activity: Activity?, repository: RepositoryData, viewModel: PluginsViewModel?) =
|
fun downloadAll(activity: Activity?, repositoryUrl: String, viewModel: PluginsViewModel?) =
|
||||||
ioSafe {
|
ioSafe {
|
||||||
if (activity == null) return@ioSafe
|
if (activity == null) return@ioSafe
|
||||||
val plugins = getPlugins(repository)
|
val plugins = getPlugins(repositoryUrl)
|
||||||
|
|
||||||
plugins.filter { pluginWrapper ->
|
plugins.filter { plugin ->
|
||||||
!isDownloaded(
|
!isDownloaded(
|
||||||
activity,
|
activity,
|
||||||
pluginWrapper.plugin.internalName,
|
plugin.second.internalName,
|
||||||
repository.url
|
repositoryUrl
|
||||||
)
|
)
|
||||||
}.also { list ->
|
}.also { list ->
|
||||||
main {
|
main {
|
||||||
|
|
@ -123,13 +124,13 @@ class PluginsViewModel : ViewModel() {
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}.amap { (_, repo, metadata) ->
|
}.amap { (repo, metadata) ->
|
||||||
PluginManager.downloadPlugin(
|
PluginManager.downloadPlugin(
|
||||||
activity,
|
activity,
|
||||||
metadata.url,
|
metadata.url,
|
||||||
metadata.fileHash,
|
metadata.fileHash,
|
||||||
metadata.internalName,
|
metadata.internalName,
|
||||||
repo.url,
|
repo,
|
||||||
metadata.status != PROVIDER_STATUS_DOWN
|
metadata.status != PROVIDER_STATUS_DOWN
|
||||||
)
|
)
|
||||||
}.main { list ->
|
}.main { list ->
|
||||||
|
|
@ -142,7 +143,7 @@ class PluginsViewModel : ViewModel() {
|
||||||
),
|
),
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
)
|
)
|
||||||
viewModel?.updatePluginListPrivate(activity, listOf(repository))
|
viewModel?.updatePluginListPrivate(activity, repositoryUrl)
|
||||||
} else if (list.isNotEmpty()) {
|
} else if (list.isNotEmpty()) {
|
||||||
showToast(R.string.download_failed, Toast.LENGTH_SHORT)
|
showToast(R.string.download_failed, Toast.LENGTH_SHORT)
|
||||||
}
|
}
|
||||||
|
|
@ -156,32 +157,32 @@ class PluginsViewModel : ViewModel() {
|
||||||
* */
|
* */
|
||||||
fun handlePluginAction(
|
fun handlePluginAction(
|
||||||
activity: Activity?,
|
activity: Activity?,
|
||||||
repositoryUrls: List<RepositoryData>,
|
repositoryUrl: String,
|
||||||
pluginWrapper: PluginWrapper,
|
plugin: Plugin,
|
||||||
isLocal: Boolean
|
isLocal: Boolean
|
||||||
) = ioSafe {
|
) = ioSafe {
|
||||||
Log.i(TAG, "handlePluginAction = ${repositoryUrls}, $pluginWrapper, $isLocal")
|
Log.i(TAG, "handlePluginAction = $repositoryUrl, $plugin, $isLocal")
|
||||||
|
|
||||||
if (activity == null) return@ioSafe
|
if (activity == null) return@ioSafe
|
||||||
val (_, repositoryData, metadata) = pluginWrapper
|
val (repo, metadata) = plugin
|
||||||
|
|
||||||
val file = if (isLocal) File(pluginWrapper.plugin.url) else getPluginPath(
|
val file = if (isLocal) File(plugin.second.url) else getPluginPath(
|
||||||
activity,
|
activity,
|
||||||
pluginWrapper.plugin.internalName,
|
plugin.second.internalName,
|
||||||
pluginWrapper.repositoryData.url
|
plugin.first
|
||||||
)
|
)
|
||||||
|
|
||||||
val (success, message) = if (file.exists()) {
|
val (success, message) = if (file.exists()) {
|
||||||
PluginManager.deletePlugin(file) to R.string.plugin_deleted
|
PluginManager.deletePlugin(file) to R.string.plugin_deleted
|
||||||
} else {
|
} else {
|
||||||
val isEnabled = pluginWrapper.plugin.status != PROVIDER_STATUS_DOWN
|
val isEnabled = plugin.second.status != PROVIDER_STATUS_DOWN
|
||||||
val message = if (isEnabled) R.string.plugin_loaded else R.string.plugin_downloaded
|
val message = if (isEnabled) R.string.plugin_loaded else R.string.plugin_downloaded
|
||||||
PluginManager.downloadPlugin(
|
PluginManager.downloadPlugin(
|
||||||
activity,
|
activity,
|
||||||
metadata.url,
|
metadata.url,
|
||||||
metadata.fileHash,
|
metadata.fileHash,
|
||||||
metadata.internalName,
|
metadata.internalName,
|
||||||
repositoryData.url,
|
repo,
|
||||||
isEnabled
|
isEnabled
|
||||||
) to message
|
) to message
|
||||||
}
|
}
|
||||||
|
|
@ -197,23 +198,20 @@ class PluginsViewModel : ViewModel() {
|
||||||
if (isLocal)
|
if (isLocal)
|
||||||
updatePluginListLocal()
|
updatePluginListLocal()
|
||||||
else
|
else
|
||||||
updatePluginListPrivate(activity, repositoryUrls)
|
updatePluginListPrivate(activity, repositoryUrl)
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun updatePluginListPrivate(context: Context, repositories: List<RepositoryData>) {
|
private suspend fun updatePluginListPrivate(context: Context, repositoryUrl: String) {
|
||||||
val isAdult = PreferenceManager.getDefaultSharedPreferences(context)
|
val isAdult = PreferenceManager.getDefaultSharedPreferences(context)
|
||||||
.getStringSet(context.getString(R.string.prefer_media_type_key), emptySet())
|
.getStringSet(context.getString(R.string.prefer_media_type_key), emptySet())
|
||||||
?.contains(TvType.NSFW.ordinal.toString()) == true
|
?.contains(TvType.NSFW.ordinal.toString()) == true
|
||||||
|
|
||||||
val plugins = repositories.flatMap { repositoryUrl ->
|
val plugins = getPlugins(repositoryUrl)
|
||||||
getPlugins(repositoryUrl)
|
|
||||||
}
|
|
||||||
|
|
||||||
val list = plugins.filter {
|
val list = plugins.filter {
|
||||||
// Show all non-nsfw plugins or all if nsfw is enabled
|
// Show all non-nsfw plugins or all if nsfw is enabled
|
||||||
it.plugin.tvTypes?.contains(TvType.NSFW.name) != true || isAdult
|
it.second.tvTypes?.contains(TvType.NSFW.name) != true || isAdult
|
||||||
}.map { plugin ->
|
}.map { plugin ->
|
||||||
PluginViewData(plugin, isDownloaded(context, plugin.plugin.internalName, plugin.repositoryData.url))
|
PluginViewData(plugin, isDownloaded(context, plugin.second.internalName, plugin.first))
|
||||||
}
|
}
|
||||||
|
|
||||||
this.plugins = list
|
this.plugins = list
|
||||||
|
|
@ -226,8 +224,8 @@ class PluginsViewModel : ViewModel() {
|
||||||
private fun List<PluginViewData>.filterTvTypes(): List<PluginViewData> {
|
private fun List<PluginViewData>.filterTvTypes(): List<PluginViewData> {
|
||||||
if (tvTypes.isEmpty()) return this
|
if (tvTypes.isEmpty()) return this
|
||||||
return this.filter {
|
return this.filter {
|
||||||
(it.pluginWrapper.plugin.tvTypes?.any { type -> tvTypes.contains(type) } == true) ||
|
(it.plugin.second.tvTypes?.any { type -> tvTypes.contains(type) } == true) ||
|
||||||
(tvTypes.contains(TvType.Others.name) && (it.pluginWrapper.plugin.tvTypes
|
(tvTypes.contains(TvType.Others.name) && (it.plugin.second.tvTypes
|
||||||
?: emptyList()).isEmpty())
|
?: emptyList()).isEmpty())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -235,36 +233,24 @@ class PluginsViewModel : ViewModel() {
|
||||||
private fun List<PluginViewData>.filterLang(): List<PluginViewData> {
|
private fun List<PluginViewData>.filterLang(): List<PluginViewData> {
|
||||||
if (selectedLanguages.isEmpty()) return this // do not filter
|
if (selectedLanguages.isEmpty()) return this // do not filter
|
||||||
return this.filter {
|
return this.filter {
|
||||||
if (it.pluginWrapper.plugin.language == null) {
|
if (it.plugin.second.language == null) {
|
||||||
return@filter selectedLanguages.contains("none")
|
return@filter selectedLanguages.contains("none")
|
||||||
}
|
}
|
||||||
selectedLanguages.contains(it.pluginWrapper.plugin.language.lowercase())
|
selectedLanguages.contains(it.plugin.second.language?.lowercase())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun List<PluginViewData>.sortByQuery(query: String?): List<PluginViewData> {
|
private fun List<PluginViewData>.sortByQuery(query: String?): List<PluginViewData> {
|
||||||
return if (query.isNullOrBlank()) {
|
return if (query == null) {
|
||||||
// Return list to base state if no query
|
// Return list to base state if no query
|
||||||
this.sortedBy { it.pluginWrapper.plugin.name }
|
this.sortedBy { it.plugin.second.name }
|
||||||
} else {
|
} else {
|
||||||
this.mapNotNull {
|
this.sortedBy {
|
||||||
// Try matching name
|
-FuzzySearch.partialRatio(
|
||||||
val score = Levenshtein.partialRatio(
|
it.plugin.second.name.lowercase(),
|
||||||
it.pluginWrapper.plugin.name.lowercase(),
|
|
||||||
query.lowercase()
|
|
||||||
).takeIf { score -> score > 80 } ?:
|
|
||||||
// Fallback to description, but limit characters to reduce lag
|
|
||||||
it.pluginWrapper.plugin.description?.lowercase()?.take(64)
|
|
||||||
?.let { description ->
|
|
||||||
Levenshtein.partialRatio(
|
|
||||||
description,
|
|
||||||
query.lowercase()
|
query.lowercase()
|
||||||
)
|
)
|
||||||
}?.takeIf { score -> score > 80 } ?: return@mapNotNull null
|
}
|
||||||
it to score
|
|
||||||
}.sortedBy {
|
|
||||||
-it.second
|
|
||||||
}.map { it.first }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -281,17 +267,16 @@ class PluginsViewModel : ViewModel() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updatePluginList(context: Context?, repositories: List<RepositoryData>) =
|
fun updatePluginList(context: Context?, repositoryUrl: String) = viewModelScope.launchSafe {
|
||||||
viewModelScope.launchSafe {
|
|
||||||
if (context == null) return@launchSafe
|
if (context == null) return@launchSafe
|
||||||
Log.i(TAG, "updatePluginList = $repositories")
|
Log.i(TAG, "updatePluginList = $repositoryUrl")
|
||||||
updatePluginListPrivate(context, repositories)
|
updatePluginListPrivate(context, repositoryUrl)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun search(query: String?) {
|
fun search(query: String?) {
|
||||||
currentQuery = query
|
currentQuery = query
|
||||||
_filteredPlugins.postValue(
|
_filteredPlugins.postValue(
|
||||||
true to plugins.filterTvTypes().filterLang().sortByQuery(query)
|
true to (filteredPlugins.value?.second?.sortByQuery(query) ?: emptyList())
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -304,7 +289,7 @@ class PluginsViewModel : ViewModel() {
|
||||||
val downloadedPlugins = (PluginManager.getPluginsOnline() + PluginManager.getPluginsLocal())
|
val downloadedPlugins = (PluginManager.getPluginsOnline() + PluginManager.getPluginsLocal())
|
||||||
.distinctBy { it.filePath }
|
.distinctBy { it.filePath }
|
||||||
.map {
|
.map {
|
||||||
PluginViewData(PluginWrapper.getLocalPluginWrapper(it.toSitePlugin()), true)
|
PluginViewData("" to it.toSitePlugin(), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins = downloadedPlugins
|
plugins = downloadedPlugins
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import androidx.lifecycle.MutableLiveData
|
||||||
import androidx.lifecycle.ViewModel
|
import androidx.lifecycle.ViewModel
|
||||||
import com.lagradost.cloudstream3.APIHolder
|
import com.lagradost.cloudstream3.APIHolder
|
||||||
import com.lagradost.cloudstream3.MainAPI
|
import com.lagradost.cloudstream3.MainAPI
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.atomicListOf
|
import com.lagradost.cloudstream3.utils.Coroutines.threadSafeListOf
|
||||||
import com.lagradost.cloudstream3.utils.TestingUtils
|
import com.lagradost.cloudstream3.utils.TestingUtils
|
||||||
import kotlinx.coroutines.CoroutineScope
|
import kotlinx.coroutines.CoroutineScope
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
|
|
@ -40,7 +40,7 @@ class TestViewModel : ViewModel() {
|
||||||
get() = scope != null
|
get() = scope != null
|
||||||
|
|
||||||
private var filter = ProviderFilter.All
|
private var filter = ProviderFilter.All
|
||||||
private val providers = atomicListOf<Pair<MainAPI, TestingUtils.TestResultProvider>>()
|
private val providers = threadSafeListOf<Pair<MainAPI, TestingUtils.TestResultProvider>>()
|
||||||
private var passed = 0
|
private var passed = 0
|
||||||
private var failed = 0
|
private var failed = 0
|
||||||
private var total = 0
|
private var total = 0
|
||||||
|
|
@ -51,9 +51,9 @@ class TestViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun postProviders() {
|
private fun postProviders() {
|
||||||
providers.withLock {
|
synchronized(providers) {
|
||||||
val filtered = when (filter) {
|
val filtered = when (filter) {
|
||||||
ProviderFilter.All -> providers.toList()
|
ProviderFilter.All -> providers
|
||||||
ProviderFilter.Passed -> providers.filter { it.second.success }
|
ProviderFilter.Passed -> providers.filter { it.second.success }
|
||||||
ProviderFilter.Failed -> providers.filter { !it.second.success }
|
ProviderFilter.Failed -> providers.filter { !it.second.success }
|
||||||
}
|
}
|
||||||
|
|
@ -68,7 +68,7 @@ class TestViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun addProvider(api: MainAPI, results: TestingUtils.TestResultProvider) {
|
private fun addProvider(api: MainAPI, results: TestingUtils.TestResultProvider) {
|
||||||
providers.withLock {
|
synchronized(providers) {
|
||||||
val index = providers.indexOfFirst { it.first == api }
|
val index = providers.indexOfFirst { it.first == api }
|
||||||
if (index == -1) {
|
if (index == -1) {
|
||||||
providers.add(api to results)
|
providers.add(api to results)
|
||||||
|
|
@ -81,14 +81,14 @@ class TestViewModel : ViewModel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun init() {
|
fun init() {
|
||||||
total = APIHolder.allProviders.withLock { APIHolder.allProviders.size }
|
total = synchronized(APIHolder.allProviders) { APIHolder.allProviders.size }
|
||||||
updateProgress()
|
updateProgress()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun startTest() {
|
fun startTest() {
|
||||||
scope = CoroutineScope(Dispatchers.Default)
|
scope = CoroutineScope(Dispatchers.Default)
|
||||||
|
|
||||||
val apis = APIHolder.allProviders.withLock { APIHolder.allProviders.toTypedArray() }
|
val apis = synchronized(APIHolder.allProviders) { APIHolder.allProviders.toTypedArray() }
|
||||||
total = apis.size
|
total = apis.size
|
||||||
failed = 0
|
failed = 0
|
||||||
passed = 0
|
passed = 0
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ class SetupFragmentExtensions : BaseFragment<FragmentSetupExtensionsBinding>(
|
||||||
|
|
||||||
if (hasRepos) {
|
if (hasRepos) {
|
||||||
binding?.repoRecyclerView?.adapter = RepoAdapter(true, {}, {
|
binding?.repoRecyclerView?.adapter = RepoAdapter(true, {}, {
|
||||||
PluginsViewModel.downloadAll(activity, it, null)
|
PluginsViewModel.downloadAll(activity, it.url, null)
|
||||||
}).apply { submitList(repositories.toList()) }
|
}).apply { submitList(repositories.toList()) }
|
||||||
}
|
}
|
||||||
// else {
|
// else {
|
||||||
|
|
@ -84,7 +84,7 @@ class SetupFragmentExtensions : BaseFragment<FragmentSetupExtensionsBinding>(
|
||||||
if (isSetup)
|
if (isSetup)
|
||||||
if (
|
if (
|
||||||
// If any available languages
|
// If any available languages
|
||||||
apis.distinctBy { it.lang }.size > 1
|
synchronized(apis) { apis.distinctBy { it.lang }.size > 1 }
|
||||||
) {
|
) {
|
||||||
findNavController().navigate(R.id.action_navigation_setup_extensions_to_navigation_setup_provider_languages)
|
findNavController().navigate(R.id.action_navigation_setup_extensions_to_navigation_setup_provider_languages)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -36,10 +36,10 @@ class SetupFragmentProviderLanguage : BaseFragment<FragmentSetupProviderLanguage
|
||||||
|
|
||||||
val currentLangTags = ctx.getApiProviderLangSettings()
|
val currentLangTags = ctx.getApiProviderLangSettings()
|
||||||
|
|
||||||
val languagesTagName = APIHolder.apis.withLock {
|
val languagesTagName = synchronized(APIHolder.apis) {
|
||||||
listOf(Pair(AllLanguagesName, getString(R.string.all_languages_preference))) +
|
listOf( Pair(AllLanguagesName, getString(R.string.all_languages_preference)) ) +
|
||||||
APIHolder.apis.map { Pair(it.lang, getNameNextToFlagEmoji(it.lang) ?: it.lang) }
|
APIHolder.apis.map { Pair(it.lang, getNameNextToFlagEmoji(it.lang) ?: it.lang) }
|
||||||
.toSet().sortedBy { it.second.substringAfter("\u00a0").lowercase() } // name ignoring flag emoji
|
.toSet().sortedBy { it.second.substringAfter("\u00a0").lowercase() } // name ignoring flag emoji
|
||||||
}
|
}
|
||||||
|
|
||||||
val currentIndexList = currentLangTags.map { langTag ->
|
val currentIndexList = currentLangTags.map { langTag ->
|
||||||
|
|
|
||||||
|
|
@ -38,21 +38,18 @@ import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.hideSystemUI
|
import com.lagradost.cloudstream3.utils.UIHelper.hideSystemUI
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
const val CHROME_SUBTITLE_KEY = "chome_subtitle_settings"
|
const val CHROME_SUBTITLE_KEY = "chome_subtitle_settings"
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SaveChromeCaptionStyle(
|
data class SaveChromeCaptionStyle(
|
||||||
@JsonProperty("fontFamily") @SerialName("fontFamily") var fontFamily: String? = null,
|
@JsonProperty("fontFamily") var fontFamily: String? = null,
|
||||||
@JsonProperty("fontGenericFamily") @SerialName("fontGenericFamily") var fontGenericFamily: Int? = null,
|
@JsonProperty("fontGenericFamily") var fontGenericFamily: Int? = null,
|
||||||
@JsonProperty("backgroundColor") @SerialName("backgroundColor") var backgroundColor: Int = 0x00FFFFFF, // transparent
|
@JsonProperty("backgroundColor") var backgroundColor: Int = 0x00FFFFFF, // transparent
|
||||||
@JsonProperty("edgeColor") @SerialName("edgeColor") var edgeColor: Int = Color.BLACK, // BLACK
|
@JsonProperty("edgeColor") var edgeColor: Int = Color.BLACK, // BLACK
|
||||||
@JsonProperty("edgeType") @SerialName("edgeType") var edgeType: Int = EDGE_TYPE_OUTLINE,
|
@JsonProperty("edgeType") var edgeType: Int = EDGE_TYPE_OUTLINE,
|
||||||
@JsonProperty("foregroundColor") @SerialName("foregroundColor") var foregroundColor: Int = Color.WHITE,
|
@JsonProperty("foregroundColor") var foregroundColor: Int = Color.WHITE,
|
||||||
@JsonProperty("fontScale") @SerialName("fontScale") var fontScale: Float = 1.05f,
|
@JsonProperty("fontScale") var fontScale: Float = 1.05f,
|
||||||
@JsonProperty("windowColor") @SerialName("windowColor") var windowColor: Int = Color.TRANSPARENT,
|
@JsonProperty("windowColor") var windowColor: Int = Color.TRANSPARENT,
|
||||||
)
|
)
|
||||||
|
|
||||||
class ChromecastSubtitlesFragment : BaseFragment<ChromecastSubtitleSettingsBinding>(
|
class ChromecastSubtitlesFragment : BaseFragment<ChromecastSubtitleSettingsBinding>(
|
||||||
|
|
@ -101,7 +98,7 @@ class ChromecastSubtitlesFragment : BaseFragment<ChromecastSubtitleSettingsBindi
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getCurrentSavedStyle(): SaveChromeCaptionStyle {
|
fun getCurrentSavedStyle(): SaveChromeCaptionStyle {
|
||||||
return getKey<SaveChromeCaptionStyle>(CHROME_SUBTITLE_KEY) ?: defaultState
|
return getKey(CHROME_SUBTITLE_KEY) ?: defaultState
|
||||||
}
|
}
|
||||||
|
|
||||||
private val defaultState = SaveChromeCaptionStyle()
|
private val defaultState = SaveChromeCaptionStyle()
|
||||||
|
|
|
||||||
|
|
@ -54,39 +54,40 @@ import com.lagradost.cloudstream3.utils.UIHelper.hideSystemUI
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
import com.lagradost.cloudstream3.utils.UIHelper.navigate
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
import com.lagradost.cloudstream3.utils.UIHelper.popCurrentPage
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
import com.lagradost.cloudstream3.utils.UIHelper.toPx
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
const val SUBTITLE_KEY = "subtitle_settings"
|
const val SUBTITLE_KEY = "subtitle_settings"
|
||||||
const val SUBTITLE_AUTO_SELECT_KEY = "subs_auto_select"
|
const val SUBTITLE_AUTO_SELECT_KEY = "subs_auto_select"
|
||||||
const val SUBTITLE_DOWNLOAD_KEY = "subs_auto_download"
|
const val SUBTITLE_DOWNLOAD_KEY = "subs_auto_download"
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SaveCaptionStyle(
|
data class SaveCaptionStyle(
|
||||||
@JsonProperty("foregroundColor") @SerialName("foregroundColor") var foregroundColor: Int,
|
@JsonProperty("foregroundColor") var foregroundColor: Int,
|
||||||
@JsonProperty("backgroundColor") @SerialName("backgroundColor") var backgroundColor: Int,
|
@JsonProperty("backgroundColor") var backgroundColor: Int,
|
||||||
@JsonProperty("windowColor") @SerialName("windowColor") var windowColor: Int,
|
@JsonProperty("windowColor") var windowColor: Int,
|
||||||
@OptIn(UnstableApi::class)
|
@OptIn(UnstableApi::class)
|
||||||
@JsonProperty("edgeType") @SerialName("edgeType") var edgeType: @CaptionStyleCompat.EdgeType Int,
|
@JsonProperty("edgeType") var edgeType: @CaptionStyleCompat.EdgeType Int,
|
||||||
@JsonProperty("edgeColor") @SerialName("edgeColor") var edgeColor: Int,
|
@JsonProperty("edgeColor") var edgeColor: Int,
|
||||||
@FontRes @JsonProperty("typeface") @SerialName("typeface") var typeface: Int?,
|
@FontRes
|
||||||
@JsonProperty("typefaceFilePath") @SerialName("typefaceFilePath") var typefaceFilePath: String?,
|
@JsonProperty("typeface") var typeface: Int?,
|
||||||
@JsonProperty("elevation") @SerialName("elevation") var elevation: Int, // in dp
|
@JsonProperty("typefaceFilePath") var typefaceFilePath: String?,
|
||||||
@JsonProperty("fixedTextSize") @SerialName("fixedTextSize") var fixedTextSize: Float?, // in sp
|
/**in dp**/
|
||||||
@Px @JsonProperty("edgeSize") @SerialName("edgeSize") var edgeSize: Float? = null,
|
@JsonProperty("elevation") var elevation: Int,
|
||||||
@JsonProperty("removeCaptions") @SerialName("removeCaptions") var removeCaptions: Boolean = false,
|
/**in sp**/
|
||||||
@JsonProperty("removeBloat") @SerialName("removeBloat") var removeBloat: Boolean = true,
|
@JsonProperty("fixedTextSize") var fixedTextSize: Float?,
|
||||||
/** Apply caps lock to the text */
|
@Px
|
||||||
@JsonProperty("upperCase") @SerialName("upperCase") var upperCase: Boolean = false,
|
@JsonProperty("edgeSize") var edgeSize: Float? = null,
|
||||||
/** Apply bold to the text */
|
@JsonProperty("removeCaptions") var removeCaptions: Boolean = false,
|
||||||
@JsonProperty("bold") @SerialName("bold") var bold: Boolean = false,
|
@JsonProperty("removeBloat") var removeBloat: Boolean = true,
|
||||||
/** Apply italic to the text */
|
/** Apply caps lock to the text **/
|
||||||
@JsonProperty("italic") @SerialName("italic") var italic: Boolean = false,
|
@JsonProperty("upperCase") var upperCase: Boolean = false,
|
||||||
/** in px, background radius, aka how round the background (backgroundColor) on each row is */
|
/** Apply bold to the text **/
|
||||||
@JsonProperty("backgroundRadius") @SerialName("backgroundRadius") var backgroundRadius: Float? = null,
|
@JsonProperty("bold") var bold: Boolean = false,
|
||||||
|
/** Apply italic to the text **/
|
||||||
|
@JsonProperty("italic") var italic: Boolean = false,
|
||||||
|
/** in px, background radius, aka how round the background (backgroundColor) on each row is **/
|
||||||
|
@JsonProperty("backgroundRadius") var backgroundRadius: Float? = null,
|
||||||
/** The SSA_ALIGNMENT */
|
/** The SSA_ALIGNMENT */
|
||||||
@JsonProperty("alignment") @SerialName("alignment") var alignment: Int? = null,
|
@JsonProperty("alignment") var alignment: Int? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
const val DEF_SUBS_ELEVATION = 20
|
const val DEF_SUBS_ELEVATION = 20
|
||||||
|
|
@ -115,9 +116,6 @@ class SubtitlesFragment : BaseDialogFragment<SubtitleSettingsBinding>(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
view.clipToPadding = false
|
|
||||||
view.clipChildren = false
|
|
||||||
|
|
||||||
// we default to 25sp, this is needed as RoundedBackgroundColorSpan breaks on override sizes
|
// we default to 25sp, this is needed as RoundedBackgroundColorSpan breaks on override sizes
|
||||||
val size = data.fixedTextSize ?: 25.0f
|
val size = data.fixedTextSize ?: 25.0f
|
||||||
view.setFixedTextSize(TypedValue.COMPLEX_UNIT_SP, size)
|
view.setFixedTextSize(TypedValue.COMPLEX_UNIT_SP, size)
|
||||||
|
|
@ -264,7 +262,7 @@ class SubtitlesFragment : BaseDialogFragment<SubtitleSettingsBinding>(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getCurrentSavedStyle(): SaveCaptionStyle {
|
fun getCurrentSavedStyle(): SaveCaptionStyle {
|
||||||
return cachedSubtitleStyle ?: (getKey<SaveCaptionStyle>(SUBTITLE_KEY) ?: SaveCaptionStyle(
|
return cachedSubtitleStyle ?: (getKey(SUBTITLE_KEY) ?: SaveCaptionStyle(
|
||||||
foregroundColor = getDefColor(0),
|
foregroundColor = getDefColor(0),
|
||||||
backgroundColor = getDefColor(2),
|
backgroundColor = getDefColor(2),
|
||||||
windowColor = getDefColor(3),
|
windowColor = getDefColor(3),
|
||||||
|
|
@ -296,11 +294,11 @@ class SubtitlesFragment : BaseDialogFragment<SubtitleSettingsBinding>(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDownloadSubsLanguageTagIETF(): List<String> {
|
fun getDownloadSubsLanguageTagIETF(): List<String> {
|
||||||
return getKey<List<String>>(SUBTITLE_DOWNLOAD_KEY) ?: listOf("en")
|
return getKey(SUBTITLE_DOWNLOAD_KEY) ?: listOf("en")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getAutoSelectLanguageTagIETF(): String {
|
fun getAutoSelectLanguageTagIETF(): String {
|
||||||
return getKey<String>(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
|
return getKey(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,9 +90,12 @@ import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import okhttp3.Cache
|
import okhttp3.Cache
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
import java.net.URL
|
||||||
|
import java.net.URLDecoder
|
||||||
import java.util.concurrent.Executor
|
import java.util.concurrent.Executor
|
||||||
import java.util.concurrent.Executors
|
import java.util.concurrent.Executors
|
||||||
|
|
||||||
|
|
||||||
object AppContextUtils {
|
object AppContextUtils {
|
||||||
fun RecyclerView.isRecyclerScrollable(): Boolean {
|
fun RecyclerView.isRecyclerScrollable(): Boolean {
|
||||||
val layoutManager =
|
val layoutManager =
|
||||||
|
|
@ -144,7 +147,6 @@ object AppContextUtils {
|
||||||
text.toSpanned()
|
text.toSpanned()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get channel ID by name */
|
/** Get channel ID by name */
|
||||||
@SuppressLint("RestrictedApi")
|
@SuppressLint("RestrictedApi")
|
||||||
private fun buildWatchNextProgramUri(
|
private fun buildWatchNextProgramUri(
|
||||||
|
|
@ -362,22 +364,33 @@ object AppContextUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Sort subtitles by names */
|
|
||||||
fun sortSubs(subs: Set<SubtitleData>): List<SubtitleData> {
|
fun sortSubs(subs: Set<SubtitleData>): List<SubtitleData> {
|
||||||
// Be aware, sorting by "$originalName $nameSuffix" causes "a (b) 1" < "a 1",
|
return subs.sortedBy { it.name }
|
||||||
// where "originalName then nameSuffix" preserves "a 1" < "a (b) 1", because we do not compare '(' and '1'.
|
|
||||||
return subs
|
|
||||||
.sortedWith(
|
|
||||||
compareBy { subtitle: SubtitleData -> subtitle.originalName }
|
|
||||||
.thenBy { subtitle: SubtitleData -> subtitle.nameSuffix })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.getApiSettings(): HashSet<String> {
|
fun Context.getApiSettings(): HashSet<String> {
|
||||||
|
//val settingsManager = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
val hashSet = HashSet<String>()
|
val hashSet = HashSet<String>()
|
||||||
val activeLangs = getApiProviderLangSettings()
|
val activeLangs = getApiProviderLangSettings()
|
||||||
val hasUniversal = activeLangs.contains(AllLanguagesName)
|
val hasUniversal = activeLangs.contains(AllLanguagesName)
|
||||||
hashSet.addAll(apis.filter { hasUniversal || activeLangs.contains(it.lang) }
|
hashSet.addAll(synchronized(apis) { apis.filter { hasUniversal || activeLangs.contains(it.lang) } }
|
||||||
.map { it.name })
|
.map { it.name })
|
||||||
|
|
||||||
|
/*val set = settingsManager.getStringSet(
|
||||||
|
this.getString(R.string.search_providers_list_key),
|
||||||
|
hashSet
|
||||||
|
)?.toHashSet() ?: hashSet
|
||||||
|
|
||||||
|
val list = HashSet<String>()
|
||||||
|
for (name in set) {
|
||||||
|
val api = getApiFromNameNull(name) ?: continue
|
||||||
|
if (activeLangs.contains(api.lang)) {
|
||||||
|
list.add(name)
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
//if (list.isEmpty()) return hashSet
|
||||||
|
//return list
|
||||||
return hashSet
|
return hashSet
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -468,8 +481,9 @@ object AppContextUtils {
|
||||||
} ?: default
|
} ?: default
|
||||||
val langs = this.getApiProviderLangSettings()
|
val langs = this.getApiProviderLangSettings()
|
||||||
val hasUniversal = langs.contains(AllLanguagesName)
|
val hasUniversal = langs.contains(AllLanguagesName)
|
||||||
val allApis =
|
val allApis = synchronized(apis) {
|
||||||
apis.filter { api -> (hasUniversal || langs.contains(api.lang)) && (api.hasMainPage || !hasHomePageIsRequired) }
|
apis.filter { api -> (hasUniversal || langs.contains(api.lang)) && (api.hasMainPage || !hasHomePageIsRequired) }
|
||||||
|
}
|
||||||
return if (currentPrefMedia.isEmpty()) {
|
return if (currentPrefMedia.isEmpty()) {
|
||||||
allApis
|
allApis
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -523,12 +537,13 @@ object AppContextUtils {
|
||||||
fun Activity.loadRepository(url: String) {
|
fun Activity.loadRepository(url: String) {
|
||||||
ioSafe {
|
ioSafe {
|
||||||
val repo = RepositoryManager.parseRepository(url) ?: return@ioSafe
|
val repo = RepositoryManager.parseRepository(url) ?: return@ioSafe
|
||||||
val data = RepositoryData(
|
RepositoryManager.addRepository(
|
||||||
|
RepositoryData(
|
||||||
repo.iconUrl ?: "",
|
repo.iconUrl ?: "",
|
||||||
repo.name,
|
repo.name,
|
||||||
url
|
url
|
||||||
)
|
)
|
||||||
RepositoryManager.addRepository(data)
|
)
|
||||||
main {
|
main {
|
||||||
showToast(
|
showToast(
|
||||||
getString(R.string.player_loaded_subtitles, repo.name),
|
getString(R.string.player_loaded_subtitles, repo.name),
|
||||||
|
|
@ -536,12 +551,13 @@ object AppContextUtils {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
afterRepositoryLoadedEvent.invoke(true)
|
afterRepositoryLoadedEvent.invoke(true)
|
||||||
addRepositoryDialog(data)
|
addRepositoryDialog(repo.name, url)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity.addRepositoryDialog(
|
fun Activity.addRepositoryDialog(
|
||||||
repositoryData: RepositoryData
|
repositoryName: String,
|
||||||
|
repositoryURL: String,
|
||||||
) {
|
) {
|
||||||
val repos = RepositoryManager.getRepositories()
|
val repos = RepositoryManager.getRepositories()
|
||||||
|
|
||||||
|
|
@ -551,7 +567,9 @@ object AppContextUtils {
|
||||||
navigate(
|
navigate(
|
||||||
R.id.global_to_navigation_settings_plugins,
|
R.id.global_to_navigation_settings_plugins,
|
||||||
PluginsFragment.newInstance(
|
PluginsFragment.newInstance(
|
||||||
repositoryData,
|
repositoryName,
|
||||||
|
repositoryURL,
|
||||||
|
false,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -559,7 +577,7 @@ object AppContextUtils {
|
||||||
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
AlertDialog.Builder(this).apply {
|
AlertDialog.Builder(this).apply {
|
||||||
setTitle(repositoryData.name)
|
setTitle(repositoryName)
|
||||||
setMessage(R.string.download_all_plugins_from_repo)
|
setMessage(R.string.download_all_plugins_from_repo)
|
||||||
setPositiveButton(R.string.open_downloaded_repo) { _, _ ->
|
setPositiveButton(R.string.open_downloaded_repo) { _, _ ->
|
||||||
openAddedRepo()
|
openAddedRepo()
|
||||||
|
|
@ -632,17 +650,16 @@ object AppContextUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecate after next stable
|
fun splitQuery(url: URL): Map<String, String> {
|
||||||
/* @Deprecated(
|
val queryPairs: MutableMap<String, String> = LinkedHashMap()
|
||||||
message = "Use splitUrlParameters instead.",
|
val query: String = url.query
|
||||||
replaceWith = ReplaceWith(
|
val pairs = query.split("&").toTypedArray()
|
||||||
expression = "splitUrlParameters(url.toString())",
|
for (pair in pairs) {
|
||||||
imports = ["com.lagradost.cloudstream3.splitUrlParameters"],
|
val idx = pair.indexOf("=")
|
||||||
),
|
queryPairs[URLDecoder.decode(pair.substring(0, idx), "UTF-8")] =
|
||||||
level = DeprecationLevel.WARNING,
|
URLDecoder.decode(pair.substring(idx + 1), "UTF-8")
|
||||||
) */
|
}
|
||||||
fun splitQuery(url: java.net.URL): Map<String, String> {
|
return queryPairs
|
||||||
return com.lagradost.cloudstream3.splitUrlParameters(url.toString())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**| S1:E2 Hello World
|
/**| S1:E2 Hello World
|
||||||
|
|
@ -687,7 +704,7 @@ object AppContextUtils {
|
||||||
"$seasonNameShort${rSeason}:$episodeNameShort${rEpisode}"
|
"$seasonNameShort${rSeason}:$episodeNameShort${rEpisode}"
|
||||||
} else if (rEpisode != null) {
|
} else if (rEpisode != null) {
|
||||||
"$episodeNameShort$rEpisode"
|
"$episodeNameShort$rEpisode"
|
||||||
} else null
|
}else null
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity?.loadCache() {
|
fun Activity?.loadCache() {
|
||||||
|
|
@ -710,7 +727,7 @@ object AppContextUtils {
|
||||||
fun loadResult(
|
fun loadResult(
|
||||||
url: String,
|
url: String,
|
||||||
apiName: String,
|
apiName: String,
|
||||||
name: String,
|
name : String,
|
||||||
startAction: Int = 0,
|
startAction: Int = 0,
|
||||||
startValue: Int = 0
|
startValue: Int = 0
|
||||||
) {
|
) {
|
||||||
|
|
@ -720,7 +737,7 @@ object AppContextUtils {
|
||||||
fun FragmentActivity.loadResult(
|
fun FragmentActivity.loadResult(
|
||||||
url: String,
|
url: String,
|
||||||
apiName: String,
|
apiName: String,
|
||||||
name: String,
|
name : String,
|
||||||
startAction: Int = 0,
|
startAction: Int = 0,
|
||||||
startValue: Int = 0
|
startValue: Int = 0
|
||||||
) {
|
) {
|
||||||
|
|
@ -846,8 +863,7 @@ object AppContextUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.isUsingMobileData(): Boolean {
|
fun Context.isUsingMobileData(): Boolean {
|
||||||
val connectionManager =
|
val connectionManager = getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
|
||||||
getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
|
|
||||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||||
val activeNetwork: Network? = connectionManager.activeNetwork
|
val activeNetwork: Network? = connectionManager.activeNetwork
|
||||||
val networkCapabilities = connectionManager.getNetworkCapabilities(activeNetwork)
|
val networkCapabilities = connectionManager.getNetworkCapabilities(activeNetwork)
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ import androidx.core.net.toUri
|
||||||
import androidx.fragment.app.FragmentActivity
|
import androidx.fragment.app.FragmentActivity
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
|
import com.fasterxml.jackson.module.kotlin.readValue
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getActivity
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getActivity
|
||||||
import com.lagradost.cloudstream3.CommonActivity.showToast
|
import com.lagradost.cloudstream3.CommonActivity.showToast
|
||||||
import com.lagradost.cloudstream3.R
|
import com.lagradost.cloudstream3.R
|
||||||
|
|
@ -20,12 +21,11 @@ import com.lagradost.cloudstream3.syncproviders.AccountManager
|
||||||
import com.lagradost.cloudstream3.syncproviders.providers.AniListApi.Companion.ANILIST_CACHED_LIST
|
import com.lagradost.cloudstream3.syncproviders.providers.AniListApi.Companion.ANILIST_CACHED_LIST
|
||||||
import com.lagradost.cloudstream3.syncproviders.providers.MALApi.Companion.MAL_CACHED_LIST
|
import com.lagradost.cloudstream3.syncproviders.providers.MALApi.Companion.MAL_CACHED_LIST
|
||||||
import com.lagradost.cloudstream3.syncproviders.providers.KitsuApi.Companion.KITSU_CACHED_LIST
|
import com.lagradost.cloudstream3.syncproviders.providers.KitsuApi.Companion.KITSU_CACHED_LIST
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
import com.lagradost.cloudstream3.utils.Coroutines.main
|
||||||
import com.lagradost.cloudstream3.utils.DataStore.getDefaultSharedPrefs
|
import com.lagradost.cloudstream3.utils.DataStore.getDefaultSharedPrefs
|
||||||
import com.lagradost.cloudstream3.utils.DataStore.getSharedPrefs
|
import com.lagradost.cloudstream3.utils.DataStore.getSharedPrefs
|
||||||
|
import com.lagradost.cloudstream3.utils.DataStore.mapper
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.checkWrite
|
import com.lagradost.cloudstream3.utils.UIHelper.checkWrite
|
||||||
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
|
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
|
||||||
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.setupStream
|
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.setupStream
|
||||||
|
|
@ -36,8 +36,6 @@ import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.KEY_RESU
|
||||||
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.KEY_RESUME_PACKAGES
|
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.KEY_RESUME_PACKAGES
|
||||||
import com.lagradost.safefile.MediaFileContentType
|
import com.lagradost.safefile.MediaFileContentType
|
||||||
import com.lagradost.safefile.SafeFile
|
import com.lagradost.safefile.SafeFile
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import okhttp3.internal.closeQuietly
|
import okhttp3.internal.closeQuietly
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.io.OutputStream
|
import java.io.OutputStream
|
||||||
|
|
@ -51,7 +49,7 @@ object BackupUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* No sensitive or breaking data in the backup
|
* No sensitive or breaking data in the backup
|
||||||
*/
|
* */
|
||||||
private val nonTransferableKeys = listOf(
|
private val nonTransferableKeys = listOf(
|
||||||
ANILIST_CACHED_LIST,
|
ANILIST_CACHED_LIST,
|
||||||
MAL_CACHED_LIST,
|
MAL_CACHED_LIST,
|
||||||
|
|
@ -96,8 +94,8 @@ object BackupUtils {
|
||||||
|
|
||||||
// Download headers are unintuitively used in the resume watching system.
|
// Download headers are unintuitively used in the resume watching system.
|
||||||
// We can therefore not prune download headers in backups.
|
// We can therefore not prune download headers in backups.
|
||||||
// DOWNLOAD_HEADER_CACHE_BACKUP,
|
//DOWNLOAD_HEADER_CACHE_BACKUP,
|
||||||
// DOWNLOAD_HEADER_CACHE,
|
//DOWNLOAD_HEADER_CACHE,
|
||||||
|
|
||||||
|
|
||||||
// This may overwrite valid local data with invalid data
|
// This may overwrite valid local data with invalid data
|
||||||
|
|
@ -120,24 +118,24 @@ object BackupUtils {
|
||||||
private var restoreFileSelector: ActivityResultLauncher<Array<String>>? = null
|
private var restoreFileSelector: ActivityResultLauncher<Array<String>>? = null
|
||||||
|
|
||||||
// Kinda hack, but I couldn't think of a better way
|
// Kinda hack, but I couldn't think of a better way
|
||||||
@Serializable
|
|
||||||
data class BackupVars(
|
data class BackupVars(
|
||||||
@JsonProperty("_Bool") @SerialName("_Bool") val bool: Map<String, Boolean>?,
|
@JsonProperty("_Bool") val bool: Map<String, Boolean>?,
|
||||||
@JsonProperty("_Int") @SerialName("_Int") val int: Map<String, Int>?,
|
@JsonProperty("_Int") val int: Map<String, Int>?,
|
||||||
@JsonProperty("_String") @SerialName("_String") val string: Map<String, String>?,
|
@JsonProperty("_String") val string: Map<String, String>?,
|
||||||
@JsonProperty("_Float") @SerialName("_Float") val float: Map<String, Float>?,
|
@JsonProperty("_Float") val float: Map<String, Float>?,
|
||||||
@JsonProperty("_Long") @SerialName("_Long") val long: Map<String, Long>?,
|
@JsonProperty("_Long") val long: Map<String, Long>?,
|
||||||
@JsonProperty("_StringSet") @SerialName("_StringSet") val stringSet: Map<String, Set<String>?>?,
|
@JsonProperty("_StringSet") val stringSet: Map<String, Set<String>?>?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class BackupFile(
|
data class BackupFile(
|
||||||
@JsonProperty("datastore") @SerialName("datastore") val datastore: BackupVars,
|
@JsonProperty("datastore") val datastore: BackupVars,
|
||||||
@JsonProperty("settings") @SerialName("settings") val settings: BackupVars,
|
@JsonProperty("settings") val settings: BackupVars
|
||||||
)
|
)
|
||||||
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
@Suppress("UNCHECKED_CAST")
|
||||||
private fun getBackup(context: Context): BackupFile {
|
private fun getBackup(context: Context?): BackupFile? {
|
||||||
|
if (context == null) return null
|
||||||
|
|
||||||
val allData = context.getSharedPrefs().all.filter { it.key.isTransferable() }
|
val allData = context.getSharedPrefs().all.filter { it.key.isTransferable() }
|
||||||
val allSettings = context.getDefaultSharedPrefs().all.filter { it.key.isTransferable() }
|
val allSettings = context.getDefaultSharedPrefs().all.filter { it.key.isTransferable() }
|
||||||
|
|
||||||
|
|
@ -147,7 +145,7 @@ object BackupUtils {
|
||||||
allData.filter { it.value is String } as? Map<String, String>,
|
allData.filter { it.value is String } as? Map<String, String>,
|
||||||
allData.filter { it.value is Float } as? Map<String, Float>,
|
allData.filter { it.value is Float } as? Map<String, Float>,
|
||||||
allData.filter { it.value is Long } as? Map<String, Long>,
|
allData.filter { it.value is Long } as? Map<String, Long>,
|
||||||
allData.filter { it.value as? Set<String> != null } as? Map<String, Set<String>>,
|
allData.filter { it.value as? Set<String> != null } as? Map<String, Set<String>>
|
||||||
)
|
)
|
||||||
|
|
||||||
val allSettingsSorted = BackupVars(
|
val allSettingsSorted = BackupVars(
|
||||||
|
|
@ -156,12 +154,12 @@ object BackupUtils {
|
||||||
allSettings.filter { it.value is String } as? Map<String, String>,
|
allSettings.filter { it.value is String } as? Map<String, String>,
|
||||||
allSettings.filter { it.value is Float } as? Map<String, Float>,
|
allSettings.filter { it.value is Float } as? Map<String, Float>,
|
||||||
allSettings.filter { it.value is Long } as? Map<String, Long>,
|
allSettings.filter { it.value is Long } as? Map<String, Long>,
|
||||||
allSettings.filter { it.value as? Set<String> != null } as? Map<String, Set<String>>,
|
allSettings.filter { it.value as? Set<String> != null } as? Map<String, Set<String>>
|
||||||
)
|
)
|
||||||
|
|
||||||
return BackupFile(
|
return BackupFile(
|
||||||
allDataSorted,
|
allDataSorted,
|
||||||
allSettingsSorted,
|
allSettingsSorted
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -170,7 +168,7 @@ object BackupUtils {
|
||||||
context: Context?,
|
context: Context?,
|
||||||
backupFile: BackupFile,
|
backupFile: BackupFile,
|
||||||
restoreSettings: Boolean,
|
restoreSettings: Boolean,
|
||||||
restoreDataStore: Boolean,
|
restoreDataStore: Boolean
|
||||||
) {
|
) {
|
||||||
if (context == null) return
|
if (context == null) return
|
||||||
if (restoreSettings) {
|
if (restoreSettings) {
|
||||||
|
|
@ -199,9 +197,9 @@ object BackupUtils {
|
||||||
|
|
||||||
fun backup(context: Context?) = ioSafe {
|
fun backup(context: Context?) = ioSafe {
|
||||||
if (context == null) return@ioSafe
|
if (context == null) return@ioSafe
|
||||||
|
|
||||||
var fileStream: OutputStream? = null
|
var fileStream: OutputStream? = null
|
||||||
var printStream: PrintWriter? = null
|
var printStream: PrintWriter? = null
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!context.checkWrite()) {
|
if (!context.checkWrite()) {
|
||||||
showToast(R.string.backup_failed, Toast.LENGTH_LONG)
|
showToast(R.string.backup_failed, Toast.LENGTH_LONG)
|
||||||
|
|
@ -216,14 +214,18 @@ object BackupUtils {
|
||||||
|
|
||||||
fileStream = stream.openNew()
|
fileStream = stream.openNew()
|
||||||
printStream = PrintWriter(fileStream)
|
printStream = PrintWriter(fileStream)
|
||||||
printStream.print(backupFile.toJson())
|
printStream.print(mapper.writeValueAsString(backupFile))
|
||||||
showToast(R.string.backup_success, Toast.LENGTH_LONG)
|
|
||||||
|
showToast(
|
||||||
|
R.string.backup_success,
|
||||||
|
Toast.LENGTH_LONG
|
||||||
|
)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
try {
|
try {
|
||||||
showToast(
|
showToast(
|
||||||
txt(R.string.backup_failed_error_format, e.toString()),
|
txt(R.string.backup_failed_error_format, e.toString()),
|
||||||
Toast.LENGTH_LONG,
|
Toast.LENGTH_LONG
|
||||||
)
|
)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
|
|
@ -242,7 +244,7 @@ object BackupUtils {
|
||||||
name,
|
name,
|
||||||
folder = null,
|
folder = null,
|
||||||
extension = ext,
|
extension = ext,
|
||||||
tryResume = false,
|
tryResume = false
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -257,14 +259,14 @@ object BackupUtils {
|
||||||
val input = activity.contentResolver.openInputStream(uri)
|
val input = activity.contentResolver.openInputStream(uri)
|
||||||
?: return@ioSafe
|
?: return@ioSafe
|
||||||
|
|
||||||
val text = input.bufferedReader().readText()
|
val restoredValue =
|
||||||
val restoredValue = parseJson<BackupFile>(text)
|
mapper.readValue<BackupFile>(input)
|
||||||
|
|
||||||
restore(
|
restore(
|
||||||
activity,
|
activity,
|
||||||
restoredValue,
|
restoredValue,
|
||||||
restoreSettings = true,
|
restoreSettings = true,
|
||||||
restoreDataStore = true,
|
restoreDataStore = true
|
||||||
)
|
)
|
||||||
activity.runOnUiThread { activity.recreate() }
|
activity.runOnUiThread { activity.recreate() }
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
|
@ -305,7 +307,7 @@ object BackupUtils {
|
||||||
|
|
||||||
private fun <T> Context.restoreMap(
|
private fun <T> Context.restoreMap(
|
||||||
map: Map<String, T>?,
|
map: Map<String, T>?,
|
||||||
isEditingAppSettings: Boolean = false,
|
isEditingAppSettings: Boolean = false
|
||||||
) {
|
) {
|
||||||
val editor = DataStore.editor(this, isEditingAppSettings)
|
val editor = DataStore.editor(this, isEditingAppSettings)
|
||||||
map?.forEach {
|
map?.forEach {
|
||||||
|
|
@ -317,27 +319,21 @@ object BackupUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Copy of [com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement.getDefaultDir],
|
* Copy of [com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.basePathToFile], [com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.getDefaultDir] and [com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager.getBasePath]
|
||||||
* modified for backup-specific paths.
|
* modded for backup specific paths
|
||||||
*/
|
* */
|
||||||
|
|
||||||
fun getDefaultBackupDir(context: Context): SafeFile? {
|
fun getDefaultBackupDir(context: Context): SafeFile? {
|
||||||
return SafeFile.fromMedia(context, MediaFileContentType.Downloads)
|
return SafeFile.fromMedia(context, MediaFileContentType.Downloads)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Copy of [com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement.getBasePath],
|
|
||||||
* modified for backup-specific paths.
|
|
||||||
*/
|
|
||||||
fun getCurrentBackupDir(context: Context): Pair<SafeFile?, String?> {
|
fun getCurrentBackupDir(context: Context): Pair<SafeFile?, String?> {
|
||||||
val settingsManager = PreferenceManager.getDefaultSharedPreferences(context)
|
val settingsManager = PreferenceManager.getDefaultSharedPreferences(context)
|
||||||
val basePathSetting = settingsManager.getString(context.getString(R.string.backup_path_key), null)
|
val basePathSetting =
|
||||||
|
settingsManager.getString(context.getString(R.string.backup_path_key), null)
|
||||||
return baseBackupPathToFile(context, basePathSetting) to basePathSetting
|
return baseBackupPathToFile(context, basePathSetting) to basePathSetting
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Copy of [com.lagradost.cloudstream3.utils.downloader.DownloadFileManagement.basePathToFile],
|
|
||||||
* modified for backup-specific paths.
|
|
||||||
*/
|
|
||||||
private fun baseBackupPathToFile(context: Context, path: String?): SafeFile? {
|
private fun baseBackupPathToFile(context: Context, path: String?): SafeFile? {
|
||||||
return when {
|
return when {
|
||||||
path.isNullOrBlank() -> getDefaultBackupDir(context)
|
path.isNullOrBlank() -> getDefaultBackupDir(context)
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,17 @@ package com.lagradost.cloudstream3.utils
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import androidx.core.content.edit
|
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
|
import com.fasterxml.jackson.databind.DeserializationFeature
|
||||||
|
import com.fasterxml.jackson.databind.json.JsonMapper
|
||||||
|
import com.fasterxml.jackson.module.kotlin.kotlinModule
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKeyClass
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKeyClass
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.removeKey
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.removeKey
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKeyClass
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKeyClass
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJsonLiteral
|
|
||||||
import kotlin.reflect.KClass
|
import kotlin.reflect.KClass
|
||||||
import kotlin.reflect.KProperty
|
import kotlin.reflect.KProperty
|
||||||
|
import androidx.core.content.edit
|
||||||
|
|
||||||
/** Used to display metadata about downloads and resume watching */
|
/** Used to display metadata about downloads and resume watching */
|
||||||
const val DOWNLOAD_HEADER_CACHE = "download_header_cache"
|
const val DOWNLOAD_HEADER_CACHE = "download_header_cache"
|
||||||
|
|
@ -87,18 +88,8 @@ data class Editor(
|
||||||
}
|
}
|
||||||
|
|
||||||
object DataStore {
|
object DataStore {
|
||||||
// Extensions shouldn't have really been using this version of it, but it seems
|
val mapper: JsonMapper = JsonMapper.builder().addModule(kotlinModule())
|
||||||
// some have. Since there has always been a very easy alternative, we won't
|
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false).build()
|
||||||
// need to deprecate it that long, and should be able to fully remove it
|
|
||||||
// once extensions at least use the other version.
|
|
||||||
@Deprecated(
|
|
||||||
"Please do not use the mapper version from DataStore. Preferably use methods from AppUtils " +
|
|
||||||
"to parse JSON. However, you can use the stable-API version of the mapper at " +
|
|
||||||
"com.lagradost.cloudstream3.mapper to access the mapper directly if necessary.",
|
|
||||||
level = DeprecationLevel.ERROR,
|
|
||||||
replaceWith = ReplaceWith("com.lagradost.cloudstream3.mapper"),
|
|
||||||
)
|
|
||||||
val mapper = com.lagradost.cloudstream3.mapper
|
|
||||||
|
|
||||||
private fun getPreferences(context: Context): SharedPreferences {
|
private fun getPreferences(context: Context): SharedPreferences {
|
||||||
return context.getSharedPreferences(PREFERENCES_NAME, Context.MODE_PRIVATE)
|
return context.getSharedPreferences(PREFERENCES_NAME, Context.MODE_PRIVATE)
|
||||||
|
|
@ -108,6 +99,7 @@ object DataStore {
|
||||||
return getPreferences(this)
|
return getPreferences(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
fun getFolderName(folder: String, path: String): String {
|
fun getFolderName(folder: String, path: String): String {
|
||||||
return "${folder}/${path}"
|
return "${folder}/${path}"
|
||||||
}
|
}
|
||||||
|
|
@ -173,19 +165,19 @@ object DataStore {
|
||||||
fun <T> Context.setKey(path: String, value: T) {
|
fun <T> Context.setKey(path: String, value: T) {
|
||||||
try {
|
try {
|
||||||
getSharedPrefs().edit {
|
getSharedPrefs().edit {
|
||||||
putString(path, value?.toJsonLiteral())
|
putString(path, mapper.writeValueAsString(value))
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T : Any> Context.getKey(path: String, valueType: Class<T>): T? {
|
fun <T> Context.getKey(path: String, valueType: Class<T>): T? {
|
||||||
return try {
|
try {
|
||||||
val json: String = getSharedPrefs().getString(path, null) ?: return null
|
val json: String = getSharedPrefs().getString(path, null) ?: return null
|
||||||
parseJson(json, valueType.kotlin)
|
return json.toKotlinObject(valueType)
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -193,37 +185,21 @@ object DataStore {
|
||||||
setKey(getFolderName(folder, path), value)
|
setKey(getFolderName(folder, path), value)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated(
|
|
||||||
message = "Use parseJson<T>(this) directly instead.",
|
|
||||||
level = DeprecationLevel.WARNING,
|
|
||||||
replaceWith = ReplaceWith(
|
|
||||||
expression = "parseJson<T>(this)",
|
|
||||||
imports = ["com.lagradost.cloudstream3.utils.AppUtils.parseJson"],
|
|
||||||
),
|
|
||||||
)
|
|
||||||
inline fun <reified T : Any> String.toKotlinObject(): T {
|
inline fun <reified T : Any> String.toKotlinObject(): T {
|
||||||
return parseJson(this)
|
return mapper.readValue(this, T::class.java)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated(
|
fun <T> String.toKotlinObject(valueType: Class<T>): T {
|
||||||
message = "Use parseJson<T>(this) directly instead.",
|
return mapper.readValue(this, valueType)
|
||||||
level = DeprecationLevel.WARNING,
|
|
||||||
replaceWith = ReplaceWith(
|
|
||||||
expression = "parseJson<T>(this)",
|
|
||||||
imports = ["com.lagradost.cloudstream3.utils.AppUtils.parseJson"],
|
|
||||||
),
|
|
||||||
)
|
|
||||||
fun <T : Any> String.toKotlinObject(valueType: Class<T>): T {
|
|
||||||
return parseJson(this, valueType.kotlin)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GET KEY GIVEN PATH AND DEFAULT VALUE, NULL IF ERROR
|
// GET KEY GIVEN PATH AND DEFAULT VALUE, NULL IF ERROR
|
||||||
inline fun <reified T : Any> Context.getKey(path: String, defVal: T?): T? {
|
inline fun <reified T : Any> Context.getKey(path: String, defVal: T?): T? {
|
||||||
return try {
|
try {
|
||||||
val json: String = getSharedPrefs().getString(path, null) ?: return defVal
|
val json: String = getSharedPrefs().getString(path, null) ?: return defVal
|
||||||
parseJson<T>(json)
|
return json.toKotlinObject()
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
package com.lagradost.cloudstream3.utils
|
package com.lagradost.cloudstream3.utils
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
|
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
||||||
|
|
@ -32,12 +31,6 @@ import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.ui.result.VideoWatchState
|
import com.lagradost.cloudstream3.ui.result.VideoWatchState
|
||||||
import com.lagradost.cloudstream3.utils.AppContextUtils.filterProviderByPreferredMedia
|
import com.lagradost.cloudstream3.utils.AppContextUtils.filterProviderByPreferredMedia
|
||||||
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
|
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
|
||||||
import com.lagradost.cloudstream3.utils.serializers.WriteOnlySerializer
|
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
|
||||||
import kotlinx.serialization.KeepGeneratedSerializer
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import kotlinx.serialization.Transient
|
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
import java.util.GregorianCalendar
|
import java.util.GregorianCalendar
|
||||||
|
|
@ -50,18 +43,17 @@ const val RESULT_WATCH_STATE = "result_watch_state"
|
||||||
const val RESULT_WATCH_STATE_DATA = "result_watch_state_data"
|
const val RESULT_WATCH_STATE_DATA = "result_watch_state_data"
|
||||||
const val RESULT_SUBSCRIBED_STATE_DATA = "result_subscribed_state_data"
|
const val RESULT_SUBSCRIBED_STATE_DATA = "result_subscribed_state_data"
|
||||||
const val RESULT_FAVORITES_STATE_DATA = "result_favorites_state_data"
|
const val RESULT_FAVORITES_STATE_DATA = "result_favorites_state_data"
|
||||||
const val RESULT_RESUME_WATCHING = "result_resume_watching_2" // Changed due to id changes
|
const val RESULT_RESUME_WATCHING = "result_resume_watching_2" // changed due to id changes
|
||||||
const val RESULT_RESUME_WATCHING_OLD = "result_resume_watching"
|
const val RESULT_RESUME_WATCHING_OLD = "result_resume_watching"
|
||||||
const val RESULT_RESUME_WATCHING_HAS_MIGRATED = "result_resume_watching_migrated"
|
const val RESULT_RESUME_WATCHING_HAS_MIGRATED = "result_resume_watching_migrated"
|
||||||
const val RESULT_EPISODE = "result_episode"
|
const val RESULT_EPISODE = "result_episode"
|
||||||
const val RESULT_SEASON = "result_season"
|
const val RESULT_SEASON = "result_season"
|
||||||
const val RESULT_DUB = "result_dub"
|
const val RESULT_DUB = "result_dub"
|
||||||
const val KEY_RESULT_SORT = "result_sort"
|
const val KEY_RESULT_SORT = "result_sort"
|
||||||
const val USER_PINNED_PROVIDERS = "user_pinned_providers" // Key for pinned user set
|
const val USER_PINNED_PROVIDERS = "user_pinned_providers" //key for pinned user set
|
||||||
|
|
||||||
class UserPreferenceDelegate<T : Any>(
|
class UserPreferenceDelegate<T : Any>(
|
||||||
private val key: String,
|
private val key: String, private val default: T //, private val klass: KClass<T>
|
||||||
private val default: T,
|
|
||||||
) {
|
) {
|
||||||
private val klass: KClass<out T> = default::class
|
private val klass: KClass<out T> = default::class
|
||||||
private val realKey get() = "${DataStoreHelper.currentAccount}/$key"
|
private val realKey get() = "${DataStoreHelper.currentAccount}/$key"
|
||||||
|
|
@ -71,7 +63,7 @@ class UserPreferenceDelegate<T : Any>(
|
||||||
operator fun setValue(
|
operator fun setValue(
|
||||||
self: Any?,
|
self: Any?,
|
||||||
property: KProperty<*>,
|
property: KProperty<*>,
|
||||||
t: T?,
|
t: T?
|
||||||
) {
|
) {
|
||||||
if (t == null) {
|
if (t == null) {
|
||||||
removeKey(realKey)
|
removeKey(realKey)
|
||||||
|
|
@ -90,7 +82,7 @@ object DataStoreHelper {
|
||||||
R.drawable.profile_bg_pink,
|
R.drawable.profile_bg_pink,
|
||||||
R.drawable.profile_bg_purple,
|
R.drawable.profile_bg_purple,
|
||||||
R.drawable.profile_bg_red,
|
R.drawable.profile_bg_red,
|
||||||
R.drawable.profile_bg_teal,
|
R.drawable.profile_bg_teal
|
||||||
)
|
)
|
||||||
|
|
||||||
private var searchPreferenceProvidersStrings: List<String> by UserPreferenceDelegate(
|
private var searchPreferenceProvidersStrings: List<String> by UserPreferenceDelegate(
|
||||||
|
|
@ -120,17 +112,16 @@ object DataStoreHelper {
|
||||||
private var searchPreferenceTagsStrings: List<String> by UserPreferenceDelegate(
|
private var searchPreferenceTagsStrings: List<String> by UserPreferenceDelegate(
|
||||||
"search_pref_tags",
|
"search_pref_tags",
|
||||||
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
|
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
|
||||||
|
|
||||||
var searchPreferenceTags: List<TvType>
|
var searchPreferenceTags: List<TvType>
|
||||||
get() = deserializeTv(searchPreferenceTagsStrings)
|
get() = deserializeTv(searchPreferenceTagsStrings)
|
||||||
set(value) {
|
set(value) {
|
||||||
searchPreferenceTagsStrings = serializeTv(value)
|
searchPreferenceTagsStrings = serializeTv(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private var homePreferenceStrings: List<String> by UserPreferenceDelegate(
|
private var homePreferenceStrings: List<String> by UserPreferenceDelegate(
|
||||||
"home_pref_homepage",
|
"home_pref_homepage",
|
||||||
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
|
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
|
||||||
|
|
||||||
var homePreference: List<TvType>
|
var homePreference: List<TvType>
|
||||||
get() = deserializeTv(homePreferenceStrings)
|
get() = deserializeTv(homePreferenceStrings)
|
||||||
set(value) {
|
set(value) {
|
||||||
|
|
@ -141,38 +132,38 @@ object DataStoreHelper {
|
||||||
"home_bookmarked_last_list",
|
"home_bookmarked_last_list",
|
||||||
IntArray(0)
|
IntArray(0)
|
||||||
)
|
)
|
||||||
|
|
||||||
var playBackSpeed: Float by UserPreferenceDelegate("playback_speed", 1.0f)
|
var playBackSpeed: Float by UserPreferenceDelegate("playback_speed", 1.0f)
|
||||||
var resizeMode: Int by UserPreferenceDelegate("resize_mode", 0)
|
var resizeMode: Int by UserPreferenceDelegate("resize_mode", 0)
|
||||||
var librarySortingMode: Int by UserPreferenceDelegate(
|
var librarySortingMode: Int by UserPreferenceDelegate(
|
||||||
"library_sorting_mode",
|
"library_sorting_mode",
|
||||||
ListSorting.AlphabeticalA.ordinal
|
ListSorting.AlphabeticalA.ordinal
|
||||||
)
|
)
|
||||||
|
|
||||||
private var _resultsSortingMode: Int by UserPreferenceDelegate(
|
private var _resultsSortingMode: Int by UserPreferenceDelegate(
|
||||||
"results_sorting_mode",
|
"results_sorting_mode",
|
||||||
EpisodeSortType.NUMBER_ASC.ordinal
|
EpisodeSortType.NUMBER_ASC.ordinal
|
||||||
)
|
)
|
||||||
|
|
||||||
var resultsSortingMode: EpisodeSortType
|
var resultsSortingMode: EpisodeSortType
|
||||||
get() = EpisodeSortType.entries.getOrNull(_resultsSortingMode) ?: EpisodeSortType.NUMBER_ASC
|
get() = EpisodeSortType.entries.getOrNull(_resultsSortingMode) ?: EpisodeSortType.NUMBER_ASC
|
||||||
set(value) {
|
set(value) {
|
||||||
_resultsSortingMode = value.ordinal
|
_resultsSortingMode = value.ordinal
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Account(
|
data class Account(
|
||||||
@JsonProperty("keyIndex") @SerialName("keyIndex") val keyIndex: Int,
|
@JsonProperty("keyIndex")
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
val keyIndex: Int,
|
||||||
@JsonProperty("customImage") @SerialName("customImage") val customImage: String? = null,
|
@JsonProperty("name")
|
||||||
@JsonProperty("defaultImageIndex") @SerialName("defaultImageIndex") val defaultImageIndex: Int,
|
val name: String,
|
||||||
@JsonProperty("lockPin") @SerialName("lockPin") val lockPin: String? = null,
|
@JsonProperty("customImage")
|
||||||
|
val customImage: String? = null,
|
||||||
|
@JsonProperty("defaultImageIndex")
|
||||||
|
val defaultImageIndex: Int,
|
||||||
|
@JsonProperty("lockPin")
|
||||||
|
val lockPin: String? = null,
|
||||||
) {
|
) {
|
||||||
@get:JsonIgnore
|
val image
|
||||||
val image get() = customImage?.let { UiImage.Image(it) } ?:
|
get() = customImage?.let { UiImage.Image(it) } ?: profileImages.getOrNull(
|
||||||
profileImages.getOrNull(defaultImageIndex)?.let {
|
defaultImageIndex
|
||||||
UiImage.Drawable(it)
|
)?.let { UiImage.Drawable(it) } ?: UiImage.Drawable(profileImages.first())
|
||||||
} ?: UiImage.Drawable(profileImages.first())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const val TAG = "data_store_helper"
|
const val TAG = "data_store_helper"
|
||||||
|
|
@ -185,7 +176,7 @@ object DataStoreHelper {
|
||||||
* Setting this does not automatically reload the homepage.
|
* Setting this does not automatically reload the homepage.
|
||||||
*/
|
*/
|
||||||
var currentHomePage: String?
|
var currentHomePage: String?
|
||||||
get() = getKey<String>("$currentAccount/$USER_SELECTED_HOMEPAGE_API")
|
get() = getKey("$currentAccount/$USER_SELECTED_HOMEPAGE_API")
|
||||||
set(value) {
|
set(value) {
|
||||||
val key = "$currentAccount/$USER_SELECTED_HOMEPAGE_API"
|
val key = "$currentAccount/$USER_SELECTED_HOMEPAGE_API"
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
|
|
@ -197,6 +188,7 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun setAccount(account: Account) {
|
fun setAccount(account: Account) {
|
||||||
val homepage = currentHomePage
|
val homepage = currentHomePage
|
||||||
|
|
||||||
selectedKeyIndex = account.keyIndex
|
selectedKeyIndex = account.keyIndex
|
||||||
AccountManager.updateAccountIds()
|
AccountManager.updateAccountIds()
|
||||||
showToast(context?.getString(R.string.logged_account, account.name) ?: account.name)
|
showToast(context?.getString(R.string.logged_account, account.name) ?: account.name)
|
||||||
|
|
@ -214,7 +206,7 @@ object DataStoreHelper {
|
||||||
currentAccounts.getOrNull(currentAccounts.indexOfFirst { it.keyIndex == 0 }) ?: Account(
|
currentAccounts.getOrNull(currentAccounts.indexOfFirst { it.keyIndex == 0 }) ?: Account(
|
||||||
keyIndex = 0,
|
keyIndex = 0,
|
||||||
name = context.getString(R.string.default_account),
|
name = context.getString(R.string.default_account),
|
||||||
defaultImageIndex = 0,
|
defaultImageIndex = 0
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -240,21 +232,18 @@ object DataStoreHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class PosDur(
|
data class PosDur(
|
||||||
@JsonProperty("position") @SerialName("position") val position: Long,
|
@JsonProperty("position") val position: Long,
|
||||||
@JsonProperty("duration") @SerialName("duration") val duration: Long,
|
@JsonProperty("duration") val duration: Long
|
||||||
)
|
)
|
||||||
|
|
||||||
fun PosDur.fixVisual(): PosDur {
|
fun PosDur.fixVisual(): PosDur {
|
||||||
if (duration <= 0) return PosDur(0, duration)
|
if (duration <= 0) return PosDur(0, duration)
|
||||||
val percentage = position * 100 / duration
|
val percentage = position * 100 / duration
|
||||||
return when {
|
if (percentage <= 1) return PosDur(0, duration)
|
||||||
percentage <= 1 -> PosDur(0, duration)
|
if (percentage <= 5) return PosDur(5 * duration / 100, duration)
|
||||||
percentage <= 5 -> PosDur(5 * duration / 100, duration)
|
if (percentage >= 95) return PosDur(duration, duration)
|
||||||
percentage >= 95 -> PosDur(duration, duration)
|
return this
|
||||||
else -> this
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Int.toYear(): Date =
|
fun Int.toYear(): Date =
|
||||||
|
|
@ -262,38 +251,28 @@ object DataStoreHelper {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to display notifications on new episodes and posters in library.
|
* Used to display notifications on new episodes and posters in library.
|
||||||
*/
|
**/
|
||||||
@Serializable
|
|
||||||
abstract class LibrarySearchResponse(
|
abstract class LibrarySearchResponse(
|
||||||
/**
|
@JsonProperty("id") override var id: Int?,
|
||||||
* These fields are marked @Transient because this class is only ever serialized through
|
@JsonProperty("latestUpdatedTime") open val latestUpdatedTime: Long,
|
||||||
* through its subclasses, which redeclare each property with their own @SerialName
|
@JsonProperty("name") override val name: String,
|
||||||
* annotations. Without @Transient here, kotlinx.serialization would try to
|
@JsonProperty("url") override val url: String,
|
||||||
* generate a serializer for the abstract base class itself (or double-serialize
|
@JsonProperty("apiName") override val apiName: String,
|
||||||
* these fields), which fails/conflicts since these are meant to be overridden,
|
@JsonProperty("type") override var type: TvType?,
|
||||||
* not serialized directly from the parent.
|
@JsonProperty("posterUrl") override var posterUrl: String?,
|
||||||
*/
|
@JsonProperty("year") open val year: Int?,
|
||||||
@Transient override var id: Int? = null,
|
@JsonProperty("syncData") open val syncData: Map<String, String>?,
|
||||||
@Transient open val latestUpdatedTime: Long = 0L,
|
@JsonProperty("quality") override var quality: SearchQuality?,
|
||||||
@Transient override val name: String = "",
|
@JsonProperty("posterHeaders") override var posterHeaders: Map<String, String>?,
|
||||||
@Transient override val url: String = "",
|
@JsonProperty("plot") open val plot: String? = null,
|
||||||
@Transient override val apiName: String = "",
|
@JsonProperty("score") override var score: Score? = null,
|
||||||
@Transient override var type: TvType? = null,
|
@JsonProperty("tags") open val tags: List<String>? = null,
|
||||||
@Transient override var posterUrl: String? = null,
|
|
||||||
@Transient open val year: Int? = null,
|
|
||||||
@Transient open val syncData: Map<String, String>? = null,
|
|
||||||
@Transient override var quality: SearchQuality? = null,
|
|
||||||
@Transient override var posterHeaders: Map<String, String>? = null,
|
|
||||||
@Transient open val plot: String? = null,
|
|
||||||
@Transient override var score: Score? = null,
|
|
||||||
@Transient open val tags: List<String>? = null,
|
|
||||||
) : SearchResponse {
|
) : SearchResponse {
|
||||||
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
|
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
|
||||||
@SerialName("rating")
|
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
"`rating` is the old scoring system, use score instead",
|
"`rating` is the old scoring system, use score instead",
|
||||||
replaceWith = ReplaceWith("score"),
|
replaceWith = ReplaceWith("score"),
|
||||||
level = DeprecationLevel.ERROR,
|
level = DeprecationLevel.ERROR
|
||||||
)
|
)
|
||||||
var rating: Int? = null
|
var rating: Int? = null
|
||||||
set(value) {
|
set(value) {
|
||||||
|
|
@ -304,26 +283,23 @@ object DataStoreHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
|
|
||||||
@KeepGeneratedSerializer
|
|
||||||
@Serializable(with = SubscribedData.Serializer::class)
|
|
||||||
data class SubscribedData(
|
data class SubscribedData(
|
||||||
@JsonProperty("subscribedTime") @SerialName("subscribedTime") val subscribedTime: Long,
|
@JsonProperty("subscribedTime") val subscribedTime: Long,
|
||||||
@JsonProperty("lastSeenEpisodeCount") @SerialName("lastSeenEpisodeCount") val lastSeenEpisodeCount: Map<DubStatus, Int?>,
|
@JsonProperty("lastSeenEpisodeCount") val lastSeenEpisodeCount: Map<DubStatus, Int?>,
|
||||||
@JsonProperty("id") @SerialName("id") override var id: Int?,
|
override var id: Int?,
|
||||||
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
|
override val latestUpdatedTime: Long,
|
||||||
@JsonProperty("name") @SerialName("name") override val name: String,
|
override val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") override val url: String,
|
override val url: String,
|
||||||
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
|
override val apiName: String,
|
||||||
@JsonProperty("type") @SerialName("type") override var type: TvType?,
|
override var type: TvType?,
|
||||||
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
|
override var posterUrl: String?,
|
||||||
@JsonProperty("year") @SerialName("year") override val year: Int?,
|
override val year: Int?,
|
||||||
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
|
override val syncData: Map<String, String>? = null,
|
||||||
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
|
override var quality: SearchQuality? = null,
|
||||||
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
|
override var posterHeaders: Map<String, String>? = null,
|
||||||
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
|
override val plot: String? = null,
|
||||||
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
|
override var score: Score? = null,
|
||||||
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
|
override val tags: List<String>? = null,
|
||||||
) : LibrarySearchResponse(
|
) : LibrarySearchResponse(
|
||||||
id,
|
id,
|
||||||
latestUpdatedTime,
|
latestUpdatedTime,
|
||||||
|
|
@ -338,13 +314,8 @@ object DataStoreHelper {
|
||||||
posterHeaders,
|
posterHeaders,
|
||||||
plot,
|
plot,
|
||||||
score,
|
score,
|
||||||
tags,
|
tags
|
||||||
) {
|
) {
|
||||||
object Serializer : WriteOnlySerializer<SubscribedData>(
|
|
||||||
SubscribedData.generatedSerializer(),
|
|
||||||
setOf("rating"),
|
|
||||||
)
|
|
||||||
|
|
||||||
fun toLibraryItem(): SyncAPI.LibraryItem? {
|
fun toLibraryItem(): SyncAPI.LibraryItem? {
|
||||||
return SyncAPI.LibraryItem(
|
return SyncAPI.LibraryItem(
|
||||||
name,
|
name,
|
||||||
|
|
@ -363,30 +334,27 @@ object DataStoreHelper {
|
||||||
this.id,
|
this.id,
|
||||||
plot = this.plot,
|
plot = this.plot,
|
||||||
score = this.score,
|
score = this.score,
|
||||||
tags = this.tags,
|
tags = this.tags
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
|
|
||||||
@KeepGeneratedSerializer
|
|
||||||
@Serializable(with = BookmarkedData.Serializer::class)
|
|
||||||
data class BookmarkedData(
|
data class BookmarkedData(
|
||||||
@JsonProperty("bookmarkedTime") @SerialName("bookmarkedTime") val bookmarkedTime: Long,
|
@JsonProperty("bookmarkedTime") val bookmarkedTime: Long,
|
||||||
@JsonProperty("id") @SerialName("id") override var id: Int?,
|
override var id: Int?,
|
||||||
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
|
override val latestUpdatedTime: Long,
|
||||||
@JsonProperty("name") @SerialName("name") override val name: String,
|
override val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") override val url: String,
|
override val url: String,
|
||||||
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
|
override val apiName: String,
|
||||||
@JsonProperty("type") @SerialName("type") override var type: TvType?,
|
override var type: TvType?,
|
||||||
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
|
override var posterUrl: String?,
|
||||||
@JsonProperty("year") @SerialName("year") override val year: Int?,
|
override val year: Int?,
|
||||||
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
|
override val syncData: Map<String, String>? = null,
|
||||||
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
|
override var quality: SearchQuality? = null,
|
||||||
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
|
override var posterHeaders: Map<String, String>? = null,
|
||||||
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
|
override val plot: String? = null,
|
||||||
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
|
override var score: Score? = null,
|
||||||
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
|
override val tags: List<String>? = null,
|
||||||
) : LibrarySearchResponse(
|
) : LibrarySearchResponse(
|
||||||
id,
|
id,
|
||||||
latestUpdatedTime,
|
latestUpdatedTime,
|
||||||
|
|
@ -399,13 +367,8 @@ object DataStoreHelper {
|
||||||
syncData,
|
syncData,
|
||||||
quality,
|
quality,
|
||||||
posterHeaders,
|
posterHeaders,
|
||||||
plot,
|
plot
|
||||||
) {
|
) {
|
||||||
object Serializer : WriteOnlySerializer<BookmarkedData>(
|
|
||||||
BookmarkedData.generatedSerializer(),
|
|
||||||
setOf("rating"),
|
|
||||||
)
|
|
||||||
|
|
||||||
fun toLibraryItem(id: String): SyncAPI.LibraryItem {
|
fun toLibraryItem(id: String): SyncAPI.LibraryItem {
|
||||||
return SyncAPI.LibraryItem(
|
return SyncAPI.LibraryItem(
|
||||||
name,
|
name,
|
||||||
|
|
@ -424,30 +387,27 @@ object DataStoreHelper {
|
||||||
this.id,
|
this.id,
|
||||||
plot = this.plot,
|
plot = this.plot,
|
||||||
score = this.score,
|
score = this.score,
|
||||||
tags = this.tags,
|
tags = this.tags
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
|
|
||||||
@KeepGeneratedSerializer
|
|
||||||
@Serializable(with = FavoritesData.Serializer::class)
|
|
||||||
data class FavoritesData(
|
data class FavoritesData(
|
||||||
@JsonProperty("favoritesTime") @SerialName("favoritesTime") val favoritesTime: Long,
|
@JsonProperty("favoritesTime") val favoritesTime: Long,
|
||||||
@JsonProperty("id") @SerialName("id") override var id: Int?,
|
override var id: Int?,
|
||||||
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
|
override val latestUpdatedTime: Long,
|
||||||
@JsonProperty("name") @SerialName("name") override val name: String,
|
override val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") override val url: String,
|
override val url: String,
|
||||||
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
|
override val apiName: String,
|
||||||
@JsonProperty("type") @SerialName("type") override var type: TvType?,
|
override var type: TvType?,
|
||||||
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
|
override var posterUrl: String?,
|
||||||
@JsonProperty("year") @SerialName("year") override val year: Int?,
|
override val year: Int?,
|
||||||
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
|
override val syncData: Map<String, String>? = null,
|
||||||
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
|
override var quality: SearchQuality? = null,
|
||||||
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
|
override var posterHeaders: Map<String, String>? = null,
|
||||||
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
|
override val plot: String? = null,
|
||||||
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
|
override var score: Score? = null,
|
||||||
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
|
override val tags: List<String>? = null,
|
||||||
) : LibrarySearchResponse(
|
) : LibrarySearchResponse(
|
||||||
id,
|
id,
|
||||||
latestUpdatedTime,
|
latestUpdatedTime,
|
||||||
|
|
@ -460,13 +420,8 @@ object DataStoreHelper {
|
||||||
syncData,
|
syncData,
|
||||||
quality,
|
quality,
|
||||||
posterHeaders,
|
posterHeaders,
|
||||||
plot,
|
plot
|
||||||
) {
|
) {
|
||||||
object Serializer : WriteOnlySerializer<FavoritesData>(
|
|
||||||
FavoritesData.generatedSerializer(),
|
|
||||||
setOf("rating"),
|
|
||||||
)
|
|
||||||
|
|
||||||
fun toLibraryItem(): SyncAPI.LibraryItem? {
|
fun toLibraryItem(): SyncAPI.LibraryItem? {
|
||||||
return SyncAPI.LibraryItem(
|
return SyncAPI.LibraryItem(
|
||||||
name,
|
name,
|
||||||
|
|
@ -485,32 +440,31 @@ object DataStoreHelper {
|
||||||
this.id,
|
this.id,
|
||||||
plot = this.plot,
|
plot = this.plot,
|
||||||
score = this.score,
|
score = this.score,
|
||||||
tags = this.tags,
|
tags = this.tags
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResumeWatchingResult(
|
data class ResumeWatchingResult(
|
||||||
@JsonProperty("name") @SerialName("name") override val name: String,
|
@JsonProperty("name") override val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") override val url: String,
|
@JsonProperty("url") override val url: String,
|
||||||
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
|
@JsonProperty("apiName") override val apiName: String,
|
||||||
@JsonProperty("type") @SerialName("type") override var type: TvType? = null,
|
@JsonProperty("type") override var type: TvType? = null,
|
||||||
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
|
@JsonProperty("posterUrl") override var posterUrl: String?,
|
||||||
@JsonProperty("watchPos") @SerialName("watchPos") val watchPos: PosDur?,
|
@JsonProperty("watchPos") val watchPos: PosDur?,
|
||||||
@JsonProperty("id") @SerialName("id") override var id: Int?,
|
@JsonProperty("id") override var id: Int?,
|
||||||
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int?,
|
@JsonProperty("parentId") val parentId: Int?,
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
|
@JsonProperty("episode") val episode: Int?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
@JsonProperty("season") val season: Int?,
|
||||||
@JsonProperty("isFromDownload") @SerialName("isFromDownload") val isFromDownload: Boolean,
|
@JsonProperty("isFromDownload") val isFromDownload: Boolean,
|
||||||
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
|
@JsonProperty("quality") override var quality: SearchQuality? = null,
|
||||||
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
|
@JsonProperty("posterHeaders") override var posterHeaders: Map<String, String>? = null,
|
||||||
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
|
@JsonProperty("score") override var score: Score? = null,
|
||||||
) : SearchResponse
|
) : SearchResponse
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A datastore wide account for future implementations of a multiple account system
|
* A datastore wide account for future implementations of a multiple account system
|
||||||
*/
|
**/
|
||||||
|
|
||||||
fun getAllWatchStateIds(): List<Int>? {
|
fun getAllWatchStateIds(): List<Int>? {
|
||||||
val folder = "$currentAccount/$RESULT_WATCH_STATE"
|
val folder = "$currentAccount/$RESULT_WATCH_STATE"
|
||||||
|
|
@ -546,7 +500,7 @@ object DataStoreHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun migrateResumeWatching() {
|
fun migrateResumeWatching() {
|
||||||
// if (getKey<Boolean>(RESULT_RESUME_WATCHING_HAS_MIGRATED, false) != true) {
|
// if (getKey(RESULT_RESUME_WATCHING_HAS_MIGRATED, false) != true) {
|
||||||
setKey(RESULT_RESUME_WATCHING_HAS_MIGRATED, true)
|
setKey(RESULT_RESUME_WATCHING_HAS_MIGRATED, true)
|
||||||
getAllResumeStateIdsOld()?.forEach { id ->
|
getAllResumeStateIdsOld()?.forEach { id ->
|
||||||
getLastWatchedOld(id)?.let {
|
getLastWatchedOld(id)?.let {
|
||||||
|
|
@ -556,12 +510,12 @@ object DataStoreHelper {
|
||||||
it.episode,
|
it.episode,
|
||||||
it.season,
|
it.season,
|
||||||
it.isFromDownload,
|
it.isFromDownload,
|
||||||
it.updateTime,
|
it.updateTime
|
||||||
)
|
)
|
||||||
removeLastWatchedOld(it.parentId)
|
removeLastWatchedOld(it.parentId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// }
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setLastWatched(
|
fun setLastWatched(
|
||||||
|
|
@ -582,7 +536,7 @@ object DataStoreHelper {
|
||||||
episode,
|
episode,
|
||||||
season,
|
season,
|
||||||
updateTime ?: System.currentTimeMillis(),
|
updateTime ?: System.currentTimeMillis(),
|
||||||
isFromDownload,
|
isFromDownload
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -599,7 +553,7 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getLastWatched(id: Int?): DownloadObjects.ResumeWatching? {
|
fun getLastWatched(id: Int?): DownloadObjects.ResumeWatching? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<DownloadObjects.ResumeWatching>(
|
return getKey(
|
||||||
"$currentAccount/$RESULT_RESUME_WATCHING",
|
"$currentAccount/$RESULT_RESUME_WATCHING",
|
||||||
id.toString(),
|
id.toString(),
|
||||||
)
|
)
|
||||||
|
|
@ -607,7 +561,7 @@ object DataStoreHelper {
|
||||||
|
|
||||||
private fun getLastWatchedOld(id: Int?): DownloadObjects.ResumeWatching? {
|
private fun getLastWatchedOld(id: Int?): DownloadObjects.ResumeWatching? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<DownloadObjects.ResumeWatching>(
|
return getKey(
|
||||||
"$currentAccount/$RESULT_RESUME_WATCHING_OLD",
|
"$currentAccount/$RESULT_RESUME_WATCHING_OLD",
|
||||||
id.toString(),
|
id.toString(),
|
||||||
)
|
)
|
||||||
|
|
@ -621,18 +575,18 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getBookmarkedData(id: Int?): BookmarkedData? {
|
fun getBookmarkedData(id: Int?): BookmarkedData? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<BookmarkedData>("$currentAccount/$RESULT_WATCH_STATE_DATA", id.toString())
|
return getKey("$currentAccount/$RESULT_WATCH_STATE_DATA", id.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getAllBookmarkedData(): List<BookmarkedData> {
|
fun getAllBookmarkedData(): List<BookmarkedData> {
|
||||||
return getKeys("$currentAccount/$RESULT_WATCH_STATE_DATA")?.mapNotNull {
|
return getKeys("$currentAccount/$RESULT_WATCH_STATE_DATA")?.mapNotNull {
|
||||||
getKey<BookmarkedData>(it)
|
getKey(it)
|
||||||
} ?: emptyList()
|
} ?: emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getAllSubscriptions(): List<SubscribedData> {
|
fun getAllSubscriptions(): List<SubscribedData> {
|
||||||
return getKeys("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA")?.mapNotNull {
|
return getKeys("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA")?.mapNotNull {
|
||||||
getKey<SubscribedData>(it)
|
getKey(it)
|
||||||
} ?: emptyList()
|
} ?: emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -644,12 +598,12 @@ object DataStoreHelper {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set new seen episodes and update time
|
* Set new seen episodes and update time
|
||||||
*/
|
**/
|
||||||
fun updateSubscribedData(id: Int?, data: SubscribedData?, episodeResponse: EpisodeResponse?) {
|
fun updateSubscribedData(id: Int?, data: SubscribedData?, episodeResponse: EpisodeResponse?) {
|
||||||
if (id == null || data == null || episodeResponse == null) return
|
if (id == null || data == null || episodeResponse == null) return
|
||||||
val newData = data.copy(
|
val newData = data.copy(
|
||||||
latestUpdatedTime = unixTimeMS,
|
latestUpdatedTime = unixTimeMS,
|
||||||
lastSeenEpisodeCount = episodeResponse.getLatestEpisodes(),
|
lastSeenEpisodeCount = episodeResponse.getLatestEpisodes()
|
||||||
)
|
)
|
||||||
setKey("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA", id.toString(), newData)
|
setKey("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA", id.toString(), newData)
|
||||||
}
|
}
|
||||||
|
|
@ -662,12 +616,12 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getSubscribedData(id: Int?): SubscribedData? {
|
fun getSubscribedData(id: Int?): SubscribedData? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<SubscribedData>("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA", id.toString())
|
return getKey("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA", id.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getAllFavorites(): List<FavoritesData> {
|
fun getAllFavorites(): List<FavoritesData> {
|
||||||
return getKeys("$currentAccount/$RESULT_FAVORITES_STATE_DATA")?.mapNotNull {
|
return getKeys("$currentAccount/$RESULT_FAVORITES_STATE_DATA")?.mapNotNull {
|
||||||
getKey<FavoritesData>(it)
|
getKey(it)
|
||||||
} ?: emptyList()
|
} ?: emptyList()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -685,7 +639,7 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getFavoritesData(id: Int?): FavoritesData? {
|
fun getFavoritesData(id: Int?): FavoritesData? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<FavoritesData>("$currentAccount/$RESULT_FAVORITES_STATE_DATA", id.toString())
|
return getKey("$currentAccount/$RESULT_FAVORITES_STATE_DATA", id.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setViewPos(id: Int?, pos: Long, dur: Long) {
|
fun setViewPos(id: Int?, pos: Long, dur: Long) {
|
||||||
|
|
@ -694,10 +648,10 @@ object DataStoreHelper {
|
||||||
setKey("$currentAccount/$VIDEO_POS_DUR", id.toString(), PosDur(pos, dur))
|
setKey("$currentAccount/$VIDEO_POS_DUR", id.toString(), PosDur(pos, dur))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Sets the position, duration, and resume data of an episode/movie,
|
||||||
* Sets the position, duration, and resume data of an episode/movie,
|
*
|
||||||
* If nextEpisode is not specified it will not be able to set the next episode as resumable if progress > NEXT_WATCH_EPISODE_PERCENTAGE
|
* if nextEpisode is not specified it will not be able to set the next episode as resumable if progress > NEXT_WATCH_EPISODE_PERCENTAGE
|
||||||
*/
|
* */
|
||||||
fun setViewPosAndResume(id: Int?, position: Long, duration: Long, currentEpisode: Any?, nextEpisode: Any?) {
|
fun setViewPosAndResume(id: Int?, position: Long, duration: Long, currentEpisode: Any?, nextEpisode: Any?) {
|
||||||
setViewPos(id, position, duration)
|
setViewPos(id, position, duration)
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
|
|
@ -733,7 +687,7 @@ object DataStoreHelper {
|
||||||
resumeMeta.id,
|
resumeMeta.id,
|
||||||
resumeMeta.episode,
|
resumeMeta.episode,
|
||||||
resumeMeta.season,
|
resumeMeta.season,
|
||||||
isFromDownload = false,
|
isFromDownload = false
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -743,7 +697,7 @@ object DataStoreHelper {
|
||||||
resumeMeta.id,
|
resumeMeta.id,
|
||||||
resumeMeta.episode,
|
resumeMeta.episode,
|
||||||
resumeMeta.season,
|
resumeMeta.season,
|
||||||
isFromDownload = true,
|
isFromDownload = true
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -752,16 +706,17 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getViewPos(id: Int?): PosDur? {
|
fun getViewPos(id: Int?): PosDur? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<PosDur>("$currentAccount/$VIDEO_POS_DUR", id.toString(), null)
|
return getKey("$currentAccount/$VIDEO_POS_DUR", id.toString(), null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getVideoWatchState(id: Int?): VideoWatchState? {
|
fun getVideoWatchState(id: Int?): VideoWatchState? {
|
||||||
if (id == null) return null
|
if (id == null) return null
|
||||||
return getKey<VideoWatchState>("$currentAccount/$VIDEO_WATCH_STATE", id.toString(), null)
|
return getKey("$currentAccount/$VIDEO_WATCH_STATE", id.toString(), null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setVideoWatchState(id: Int?, watchState: VideoWatchState) {
|
fun setVideoWatchState(id: Int?, watchState: VideoWatchState) {
|
||||||
if (id == null) return
|
if (id == null) return
|
||||||
|
|
||||||
// None == No key
|
// None == No key
|
||||||
if (watchState == VideoWatchState.None) {
|
if (watchState == VideoWatchState.None) {
|
||||||
removeKey("$currentAccount/$VIDEO_WATCH_STATE", id.toString())
|
removeKey("$currentAccount/$VIDEO_WATCH_STATE", id.toString())
|
||||||
|
|
@ -772,7 +727,7 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getDub(id: Int): DubStatus? {
|
fun getDub(id: Int): DubStatus? {
|
||||||
return DubStatus.entries
|
return DubStatus.entries
|
||||||
.getOrNull(getKey<Int>("$currentAccount/$RESULT_DUB", id.toString(), -1) ?: -1)
|
.getOrNull(getKey("$currentAccount/$RESULT_DUB", id.toString(), -1) ?: -1)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setDub(id: Int, status: DubStatus) {
|
fun setDub(id: Int, status: DubStatus) {
|
||||||
|
|
@ -793,13 +748,13 @@ object DataStoreHelper {
|
||||||
getKey<Int>(
|
getKey<Int>(
|
||||||
"$currentAccount/$RESULT_WATCH_STATE",
|
"$currentAccount/$RESULT_WATCH_STATE",
|
||||||
id.toString(),
|
id.toString(),
|
||||||
null,
|
null
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getResultSeason(id: Int): Int? {
|
fun getResultSeason(id: Int): Int? {
|
||||||
return getKey<Int>("$currentAccount/$RESULT_SEASON", id.toString(), null)
|
return getKey("$currentAccount/$RESULT_SEASON", id.toString(), null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setResultSeason(id: Int, value: Int?) {
|
fun setResultSeason(id: Int, value: Int?) {
|
||||||
|
|
@ -807,7 +762,7 @@ object DataStoreHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getResultEpisode(id: Int): Int? {
|
fun getResultEpisode(id: Int): Int? {
|
||||||
return getKey<Int>("$currentAccount/$RESULT_EPISODE", id.toString(), null)
|
return getKey("$currentAccount/$RESULT_EPISODE", id.toString(), null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setResultEpisode(id: Int, value: Int?) {
|
fun setResultEpisode(id: Int, value: Int?) {
|
||||||
|
|
@ -820,11 +775,12 @@ object DataStoreHelper {
|
||||||
|
|
||||||
fun getSync(id: Int, idPrefixes: List<String>): List<String?> {
|
fun getSync(id: Int, idPrefixes: List<String>): List<String?> {
|
||||||
return idPrefixes.map { idPrefix ->
|
return idPrefixes.map { idPrefix ->
|
||||||
getKey<String>("${idPrefix}_sync", id.toString())
|
getKey("${idPrefix}_sync", id.toString())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var pinnedProviders: Array<String>
|
var pinnedProviders: Array<String>
|
||||||
get() = getKey<Array<String>>(USER_PINNED_PROVIDERS) ?: emptyArray<String>()
|
get() = getKey(USER_PINNED_PROVIDERS) ?: emptyArray<String>()
|
||||||
set(value) = setKey(USER_PINNED_PROVIDERS, value)
|
set(value) = setKey(USER_PINNED_PROVIDERS, value)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,12 @@ import com.lagradost.cloudstream3.LoadResponse.Companion.getMalId
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.getTMDbId
|
import com.lagradost.cloudstream3.LoadResponse.Companion.getTMDbId
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.ui.result.getId
|
import com.lagradost.cloudstream3.ui.result.getId
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
|
||||||
import com.lagradost.cloudstream3.utils.Coroutines.main
|
import com.lagradost.cloudstream3.utils.Coroutines.main
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.io.InputStream
|
|
||||||
import java.lang.Thread.sleep
|
import java.lang.Thread.sleep
|
||||||
import java.util.*
|
import java.util.*
|
||||||
import kotlin.concurrent.thread
|
import kotlin.concurrent.thread
|
||||||
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
|
import java.io.InputStream
|
||||||
import kotlin.let
|
import kotlin.let
|
||||||
|
|
||||||
object FillerEpisodeCheck {
|
object FillerEpisodeCheck {
|
||||||
|
|
@ -27,45 +25,66 @@ object FillerEpisodeCheck {
|
||||||
return q + "cache" + z
|
return q + "cache" + z
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Show(
|
data class Show(
|
||||||
@JsonProperty("slug") @SerialName("slug") val slug: String,
|
@JsonProperty("slug")
|
||||||
@JsonProperty("title") @SerialName("title") val title: String,
|
val slug: String,
|
||||||
@JsonProperty("filler") @SerialName("filler") val filler: ArrayList<Int>,
|
@JsonProperty("title")
|
||||||
@JsonProperty("mixedCanon") @SerialName("mixedCanon") val mixedCanon: ArrayList<Int>,
|
val title: String,
|
||||||
@JsonProperty("mangaCanon") @SerialName("mangaCanon") val mangaCanon: ArrayList<Int>,
|
@JsonProperty("filler")
|
||||||
@JsonProperty("animeCanon") @SerialName("animeCanon") val animeCanon: ArrayList<Int>,
|
val filler: ArrayList<Int>,
|
||||||
|
@JsonProperty("mixedCanon")
|
||||||
|
val mixedCanon: ArrayList<Int>,
|
||||||
|
@JsonProperty("mangaCanon")
|
||||||
|
val mangaCanon: ArrayList<Int>,
|
||||||
|
@JsonProperty("animeCanon")
|
||||||
|
val animeCanon: ArrayList<Int>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MappingRoot(
|
data class MappingRoot(
|
||||||
@JsonProperty("type") @SerialName("type") val type: String?,
|
@JsonProperty("type")
|
||||||
@JsonProperty("anidb_id") @SerialName("anidb_id") val anidbId: Long?,
|
val type: String?,
|
||||||
@JsonProperty("anilist_id") @SerialName("anilist_id") val anilistId: Long?,
|
@JsonProperty("anidb_id")
|
||||||
@JsonProperty("animecountdown_id") @SerialName("animecountdown_id") val animecountdownId: Long?,
|
val anidbId: Long?,
|
||||||
@JsonProperty("animenewsnetwork_id") @SerialName("animenewsnetwork_id") val animenewsnetworkId: Long?,
|
@JsonProperty("anilist_id")
|
||||||
@JsonProperty("anime-planet_id") @SerialName("anime-planet_id") val animePlanetId: String?,
|
val anilistId: Long?,
|
||||||
@JsonProperty("anisearch_id") @SerialName("anisearch_id") val anisearchId: Long?,
|
@JsonProperty("animecountdown_id")
|
||||||
@JsonProperty("imdb_id") @SerialName("imdb_id") val imdbId: String?,
|
val animecountdownId: Long?,
|
||||||
@JsonProperty("kitsu_id") @SerialName("kitsu_id") val kitsuId: Long?,
|
@JsonProperty("animenewsnetwork_id")
|
||||||
@JsonProperty("livechart_id") @SerialName("livechart_id") val livechartId: Long?,
|
val animenewsnetworkId: Long?,
|
||||||
@JsonProperty("mal_id") @SerialName("mal_id") val malId: Long?,
|
@JsonProperty("anime-planet_id")
|
||||||
@JsonProperty("simkl_id") @SerialName("simkl_id") val simklId: Long?,
|
val animePlanetId: String?,
|
||||||
@JsonProperty("themoviedb_id") @SerialName("themoviedb_id") val themoviedbId: Long?,
|
@JsonProperty("anisearch_id")
|
||||||
@JsonProperty("tvdb_id") @SerialName("tvdb_id") val tvdbId: Long?,
|
val anisearchId: Long?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Season?,
|
@JsonProperty("imdb_id")
|
||||||
|
val imdbId: String?,
|
||||||
|
@JsonProperty("kitsu_id")
|
||||||
|
val kitsuId: Long?,
|
||||||
|
@JsonProperty("livechart_id")
|
||||||
|
val livechartId: Long?,
|
||||||
|
@JsonProperty("mal_id")
|
||||||
|
val malId: Long?,
|
||||||
|
@JsonProperty("simkl_id")
|
||||||
|
val simklId: Long?,
|
||||||
|
@JsonProperty("themoviedb_id")
|
||||||
|
val themoviedbId: Long?,
|
||||||
|
@JsonProperty("tvdb_id")
|
||||||
|
val tvdbId: Long?,
|
||||||
|
@JsonProperty("season")
|
||||||
|
val season: Season?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Season(
|
data class Season(
|
||||||
@JsonProperty("tvdb") @SerialName("tvdb") val tvdb: Long?,
|
@JsonProperty("tvdb")
|
||||||
@JsonProperty("tmdb") @SerialName("tmdb") val tmdb: Long?,
|
val tvdb: Long?,
|
||||||
|
@JsonProperty("tmdb")
|
||||||
|
val tmdb: Long?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class CombinedMedia(
|
data class CombinedMedia(
|
||||||
@JsonProperty("mapping") @SerialName("mapping") val mapping: MappingRoot?,
|
@JsonProperty("mapping")
|
||||||
@JsonProperty("show") @SerialName("show") val show: Show,
|
val mapping: MappingRoot?,
|
||||||
|
@JsonProperty("show")
|
||||||
|
val show: Show
|
||||||
)
|
)
|
||||||
|
|
||||||
data class Database(
|
data class Database(
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ package com.lagradost.cloudstream3.utils
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import android.graphics.drawable.Drawable
|
import android.graphics.drawable.Drawable
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.os.Build
|
|
||||||
import android.os.Build.VERSION.SDK_INT
|
import android.os.Build.VERSION.SDK_INT
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
|
|
@ -12,7 +11,6 @@ import coil3.EventListener
|
||||||
import coil3.ImageLoader
|
import coil3.ImageLoader
|
||||||
import coil3.PlatformContext
|
import coil3.PlatformContext
|
||||||
import coil3.SingletonImageLoader
|
import coil3.SingletonImageLoader
|
||||||
import coil3.decode.BitmapFactoryDecoder
|
|
||||||
import coil3.disk.DiskCache
|
import coil3.disk.DiskCache
|
||||||
import coil3.dispose
|
import coil3.dispose
|
||||||
import coil3.load
|
import coil3.load
|
||||||
|
|
@ -24,86 +22,82 @@ import coil3.request.CachePolicy
|
||||||
import coil3.request.ErrorResult
|
import coil3.request.ErrorResult
|
||||||
import coil3.request.ImageRequest
|
import coil3.request.ImageRequest
|
||||||
import coil3.request.allowHardware
|
import coil3.request.allowHardware
|
||||||
import coil3.request.bitmapConfig
|
|
||||||
import coil3.request.crossfade
|
import coil3.request.crossfade
|
||||||
import coil3.util.DebugLogger
|
import coil3.util.DebugLogger
|
||||||
import com.lagradost.cloudstream3.BuildConfig
|
import com.lagradost.cloudstream3.BuildConfig
|
||||||
import com.lagradost.cloudstream3.USER_AGENT
|
import com.lagradost.cloudstream3.USER_AGENT
|
||||||
import com.lagradost.cloudstream3.network.buildDefaultClient
|
import com.lagradost.cloudstream3.network.buildDefaultClient
|
||||||
|
import okhttp3.HttpUrl
|
||||||
import okio.Path.Companion.toOkioPath
|
import okio.Path.Companion.toOkioPath
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.nio.ByteBuffer
|
import java.nio.ByteBuffer
|
||||||
|
|
||||||
object ImageLoader {
|
object ImageLoader {
|
||||||
|
|
||||||
private const val TAG = "CoilImgLoader"
|
private const val TAG = "CoilImgLoader"
|
||||||
internal fun buildImageLoader(context: PlatformContext): ImageLoader {
|
|
||||||
val isBrokenHardware = hasPotentialBrokenHardware()
|
internal fun buildImageLoader(context: PlatformContext): ImageLoader = ImageLoader.Builder(context)
|
||||||
return ImageLoader.Builder(context)
|
|
||||||
.crossfade(200)
|
.crossfade(200)
|
||||||
.allowHardware(SDK_INT >= 28 && !isBrokenHardware)
|
.allowHardware(SDK_INT >= 28) // SDK_INT >= 28, cant use hardware bitmaps for Palette Builder
|
||||||
.diskCachePolicy(CachePolicy.ENABLED)
|
.diskCachePolicy(CachePolicy.ENABLED)
|
||||||
.networkCachePolicy(CachePolicy.ENABLED)
|
.networkCachePolicy(CachePolicy.ENABLED)
|
||||||
.memoryCache {
|
.memoryCache {
|
||||||
MemoryCache.Builder().maxSizePercent(context, 0.1)//10 % of heap for mem-cache
|
MemoryCache.Builder().maxSizePercent(context, 0.1) // Use 10 % of the app's available memory for caching
|
||||||
.strongReferencesEnabled(false)
|
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
.diskCache {
|
.diskCache {
|
||||||
DiskCache.Builder()
|
DiskCache.Builder()
|
||||||
.directory(context.cacheDir.resolve("cs3_image_cache").toOkioPath())
|
.directory(context.cacheDir.resolve("cs3_image_cache").toOkioPath())
|
||||||
.maxSizeBytes(512L * 1024 * 1024) // 512 MB
|
.maxSizeBytes(512L * 1024 * 1024) // 512 MB
|
||||||
.maxSizePercent(0.04) // max 4% of storage for disk caching
|
.maxSizePercent(0.04) // Use 4 % of the device's storage space for disk caching
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
/** Pass interceptors with care, unnecessary passing tokens to servers
|
/** Pass interceptors with care, unnecessary passing tokens to servers
|
||||||
or image hosting services causes unauthorized exceptions **/
|
or image hosting services causes unauthorized exceptions **/
|
||||||
.components {
|
.components { add(OkHttpNetworkFetcherFactory(callFactory = { buildDefaultClient(context) })) }
|
||||||
add(OkHttpNetworkFetcherFactory(callFactory = { buildDefaultClient(context) }))
|
.also {
|
||||||
if (isBrokenHardware) {
|
it.setupCoilLogger()
|
||||||
add(BitmapFactoryDecoder.Factory())
|
Log.d(TAG, "buildImageLoader: Setting COIL Image Loader.")
|
||||||
} // sw decoder
|
|
||||||
}
|
|
||||||
.apply {
|
|
||||||
if (isBrokenHardware) { // coil will auto choose optimal config on modern device
|
|
||||||
bitmapConfig(Bitmap.Config.ARGB_8888)
|
|
||||||
}
|
|
||||||
setupCoilLogger()
|
|
||||||
}
|
}
|
||||||
.build()
|
.build()
|
||||||
}
|
|
||||||
|
|
||||||
/** DebugLogger on debug builds which won't slow down release builds & use EventListener for
|
/** Use DebugLogger on debug builds which won't slow down release builds & use EventListener for
|
||||||
Errors on release builds. **/
|
Errors on release builds. **/
|
||||||
internal fun ImageLoader.Builder.setupCoilLogger() {
|
internal fun ImageLoader.Builder.setupCoilLogger() {
|
||||||
if (BuildConfig.DEBUG) {
|
if (BuildConfig.DEBUG) {
|
||||||
logger(DebugLogger())
|
logger(DebugLogger())
|
||||||
|
Log.d(TAG, "setupCoilLogger: Activated DEBUG_LOGGER FOR COIL")
|
||||||
} else {
|
} else {
|
||||||
eventListener(object : EventListener() {
|
eventListener(object : EventListener() {
|
||||||
override fun onError(request: ImageRequest, result: ErrorResult) {
|
override fun onError(request: ImageRequest, result: ErrorResult) {
|
||||||
super.onError(request, result)
|
super.onError(request, result)
|
||||||
Log.e(TAG, "Image load error: ${result.throwable.message ?: result.throwable}")
|
Log.e(TAG, "Error loading image: ${result.throwable}")
|
||||||
Log.e(TAG, " URL: ${request.data}")
|
|
||||||
Log.e(TAG, " allowHardware: ${request.allowHardware}")
|
|
||||||
Log.e(TAG, " hardware: ${Build.HARDWARE}, board: ${Build.BOARD}")
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Log.d(TAG, "setupCoilLogger: Activated EVENT_LISTENER FOR COIL")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** coil's built in loader attached w/ global synchronized instance **/
|
/** we use coil's built in loader with our global synchronized instance, this way we achieve
|
||||||
|
latest and complete functionality as well as stability **/
|
||||||
private fun ImageView.loadImageInternal(
|
private fun ImageView.loadImageInternal(
|
||||||
imageData: Any?,
|
imageData: Any?,
|
||||||
headers: Map<String, String>? = null,
|
headers: Map<String, String>? = null,
|
||||||
builder: ImageRequest.Builder.() -> Unit = {} // for placeholder, error & transformations
|
builder: ImageRequest.Builder.() -> Unit = {} // for placeholder, error & transformations
|
||||||
) {
|
) {
|
||||||
// clear image to avoid loading & flickering issue at fast scrolling (~recycler view/lazy column)
|
// clear image to avoid loading & flickering issue at fast scrolling (e.g, an image recycler)
|
||||||
this.dispose()
|
this.dispose()
|
||||||
if (imageData == null) return
|
|
||||||
|
if(imageData == null) return // Just in case
|
||||||
|
|
||||||
// setImageResource is better than coil3 on resources due to attr
|
// setImageResource is better than coil3 on resources due to attr
|
||||||
if (imageData is Int) {
|
if(imageData is Int) {
|
||||||
this.setImageResource(imageData); return
|
this.setImageResource(imageData)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
// headers can be overridden by extensions.
|
|
||||||
|
// Use Coil's built-in load method but with our custom module & a decent USER-AGENT always
|
||||||
|
// which can be overridden by extensions.
|
||||||
this.load(imageData, SingletonImageLoader.get(context)) {
|
this.load(imageData, SingletonImageLoader.get(context)) {
|
||||||
this.httpHeaders(NetworkHeaders.Builder().also { headerBuilder ->
|
this.httpHeaders(NetworkHeaders.Builder().also { headerBuilder ->
|
||||||
headerBuilder["User-Agent"] = USER_AGENT
|
headerBuilder["User-Agent"] = USER_AGENT
|
||||||
|
|
@ -111,22 +105,11 @@ object ImageLoader {
|
||||||
headerBuilder[key] = value
|
headerBuilder[key] = value
|
||||||
}
|
}
|
||||||
}.build())
|
}.build())
|
||||||
|
|
||||||
builder() // if passed
|
builder() // if passed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun hasPotentialBrokenHardware(): Boolean {
|
|
||||||
val hardware = Build.HARDWARE?.lowercase() ?: ""
|
|
||||||
val board = Build.BOARD?.lowercase() ?: ""
|
|
||||||
val model = Build.MODEL?.lowercase() ?: ""
|
|
||||||
val manufacturer = Build.MANUFACTURER?.lowercase() ?: ""
|
|
||||||
val allwinnerPatterns = listOf("sun50iw9", "h713", "allwinner", "sunxi")
|
|
||||||
val problematicModels =
|
|
||||||
listOf("hy320", "hy300", "a10plus", "magcubic", "sinoy", "android tv box")
|
|
||||||
return allwinnerPatterns.any { it in hardware || it in board || it in manufacturer } ||
|
|
||||||
problematicModels.any { it in model }
|
|
||||||
}
|
|
||||||
|
|
||||||
/** TYPE_SAFE_LOADERS **/
|
/** TYPE_SAFE_LOADERS **/
|
||||||
fun ImageView.loadImage(
|
fun ImageView.loadImage(
|
||||||
imageData: UiImage?,
|
imageData: UiImage?,
|
||||||
|
|
@ -155,6 +138,12 @@ object ImageLoader {
|
||||||
builder: ImageRequest.Builder.() -> Unit = {}
|
builder: ImageRequest.Builder.() -> Unit = {}
|
||||||
) = loadImageInternal(imageData = imageData, headers = headers, builder = builder)
|
) = loadImageInternal(imageData = imageData, headers = headers, builder = builder)
|
||||||
|
|
||||||
|
fun ImageView.loadImage(
|
||||||
|
imageData: HttpUrl?,
|
||||||
|
headers: Map<String, String>? = null,
|
||||||
|
builder: ImageRequest.Builder.() -> Unit = {}
|
||||||
|
) = loadImageInternal(imageData = imageData, headers = headers, builder = builder)
|
||||||
|
|
||||||
fun ImageView.loadImage(
|
fun ImageView.loadImage(
|
||||||
imageData: File?,
|
imageData: File?,
|
||||||
builder: ImageRequest.Builder.() -> Unit = {}
|
builder: ImageRequest.Builder.() -> Unit = {}
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,6 @@ import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
|
||||||
import com.lagradost.cloudstream3.utils.GitInfo.currentCommitHash
|
import com.lagradost.cloudstream3.utils.GitInfo.currentCommitHash
|
||||||
import kotlinx.coroutines.sync.Mutex
|
import kotlinx.coroutines.sync.Mutex
|
||||||
import kotlinx.coroutines.sync.withLock
|
import kotlinx.coroutines.sync.withLock
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import okio.BufferedSink
|
import okio.BufferedSink
|
||||||
import okio.buffer
|
import okio.buffer
|
||||||
import okio.sink
|
import okio.sink
|
||||||
|
|
@ -44,43 +42,38 @@ object InAppUpdater {
|
||||||
private const val PRERELEASE_PACKAGE_NAME = "com.lagradost.cloudstream3.prerelease"
|
private const val PRERELEASE_PACKAGE_NAME = "com.lagradost.cloudstream3.prerelease"
|
||||||
private const val LOG_TAG = "InAppUpdater"
|
private const val LOG_TAG = "InAppUpdater"
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class GithubAsset(
|
private data class GithubAsset(
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("size") @SerialName("size") val size: Int, // Size in bytes
|
@JsonProperty("size") val size: Int, // Size in bytes
|
||||||
@JsonProperty("browser_download_url") @SerialName("browser_download_url") val browserDownloadUrl: String,
|
@JsonProperty("browser_download_url") val browserDownloadUrl: String,
|
||||||
@JsonProperty("content_type") @SerialName("content_type") val contentType: String, // application/vnd.android.package-archive
|
@JsonProperty("content_type") val contentType: String, // application/vnd.android.package-archive
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class GithubRelease(
|
private data class GithubRelease(
|
||||||
@JsonProperty("tag_name") @SerialName("tag_name") val tagName: String, // Version code
|
@JsonProperty("tag_name") val tagName: String, // Version code
|
||||||
@JsonProperty("body") @SerialName("body") val body: String, // Description
|
@JsonProperty("body") val body: String, // Description
|
||||||
@JsonProperty("assets") @SerialName("assets") val assets: List<GithubAsset>,
|
@JsonProperty("assets") val assets: List<GithubAsset>,
|
||||||
@JsonProperty("target_commitish") @SerialName("target_commitish") val targetCommitish: String, // Branch
|
@JsonProperty("target_commitish") val targetCommitish: String, // Branch
|
||||||
@JsonProperty("prerelease") @SerialName("prerelease") val prerelease: Boolean,
|
@JsonProperty("prerelease") val prerelease: Boolean,
|
||||||
@JsonProperty("node_id") @SerialName("node_id") val nodeId: String,
|
@JsonProperty("node_id") val nodeId: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class GithubObject(
|
private data class GithubObject(
|
||||||
@JsonProperty("sha") @SerialName("sha") val sha: String, // SHA-256 hash
|
@JsonProperty("sha") val sha: String, // SHA-256 hash
|
||||||
@JsonProperty("type") @SerialName("type") val type: String,
|
@JsonProperty("type") val type: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url") val url: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class GithubTag(
|
private data class GithubTag(
|
||||||
@JsonProperty("object") @SerialName("object") val githubObject: GithubObject,
|
@JsonProperty("object") val githubObject: GithubObject,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
private data class Update(
|
private data class Update(
|
||||||
@JsonProperty("shouldUpdate") @SerialName("shouldUpdate") val shouldUpdate: Boolean,
|
@JsonProperty("shouldUpdate") val shouldUpdate: Boolean,
|
||||||
@JsonProperty("updateURL") @SerialName("updateURL") val updateURL: String?,
|
@JsonProperty("updateURL") val updateURL: String?,
|
||||||
@JsonProperty("updateVersion") @SerialName("updateVersion") val updateVersion: String?,
|
@JsonProperty("updateVersion") val updateVersion: String?,
|
||||||
@JsonProperty("changelog") @SerialName("changelog") val changelog: String?,
|
@JsonProperty("changelog") val changelog: String?,
|
||||||
@JsonProperty("updateNodeId") @SerialName("updateNodeId") val updateNodeId: String?,
|
@JsonProperty("updateNodeId") val updateNodeId: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
private suspend fun Activity.getAppUpdate(installPrerelease: Boolean): Update {
|
private suspend fun Activity.getAppUpdate(installPrerelease: Boolean): Update {
|
||||||
|
|
@ -100,9 +93,9 @@ object InAppUpdater {
|
||||||
private suspend fun Activity.getReleaseUpdate(): Update {
|
private suspend fun Activity.getReleaseUpdate(): Update {
|
||||||
val url = "https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/releases"
|
val url = "https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/releases"
|
||||||
val headers = mapOf("Accept" to "application/vnd.github.v3+json")
|
val headers = mapOf("Accept" to "application/vnd.github.v3+json")
|
||||||
val response = parseJson<Array<GithubRelease>>(
|
val response = parseJson<List<GithubRelease>>(
|
||||||
app.get(url, headers = headers).text
|
app.get(url, headers = headers).text
|
||||||
).toList()
|
)
|
||||||
|
|
||||||
val versionRegex = Regex("""(.*?((\d+)\.(\d+)\.(\d+))\.apk)""")
|
val versionRegex = Regex("""(.*?((\d+)\.(\d+)\.(\d+))\.apk)""")
|
||||||
val versionRegexLocal = Regex("""(.*?((\d+)\.(\d+)\.(\d+)).*)""")
|
val versionRegexLocal = Regex("""(.*?((\d+)\.(\d+)\.(\d+)).*)""")
|
||||||
|
|
@ -110,7 +103,9 @@ object InAppUpdater {
|
||||||
!rel.prerelease
|
!rel.prerelease
|
||||||
}.sortedWith(compareBy { release ->
|
}.sortedWith(compareBy { release ->
|
||||||
release.assets.firstOrNull { it.contentType == "application/vnd.android.package-archive" }?.name?.let { it1 ->
|
release.assets.firstOrNull { it.contentType == "application/vnd.android.package-archive" }?.name?.let { it1 ->
|
||||||
versionRegex.find(it1)?.groupValues?.let {
|
versionRegex.find(
|
||||||
|
it1
|
||||||
|
)?.groupValues?.let {
|
||||||
it[3].toInt() * 100_000_000 + it[4].toInt() * 10_000 + it[5].toInt()
|
it[3].toInt() * 100_000_000 + it[4].toInt() * 10_000 + it[5].toInt()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -155,9 +150,9 @@ object InAppUpdater {
|
||||||
"https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/git/ref/tags/pre-release"
|
"https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/git/ref/tags/pre-release"
|
||||||
val releaseUrl = "https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/releases"
|
val releaseUrl = "https://api.github.com/repos/$GITHUB_USER_NAME/$GITHUB_REPO/releases"
|
||||||
val headers = mapOf("Accept" to "application/vnd.github.v3+json")
|
val headers = mapOf("Accept" to "application/vnd.github.v3+json")
|
||||||
val response = parseJson<Array<GithubRelease>>(
|
val response = parseJson<List<GithubRelease>>(
|
||||||
app.get(releaseUrl, headers = headers).text
|
app.get(releaseUrl, headers = headers).text
|
||||||
).toList()
|
)
|
||||||
|
|
||||||
val found = response.lastOrNull { rel ->
|
val found = response.lastOrNull { rel ->
|
||||||
rel.prerelease || rel.tagName == "pre-release"
|
rel.prerelease || rel.tagName == "pre-release"
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,10 @@ package com.lagradost.cloudstream3.utils
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.APIHolder.apis
|
import com.lagradost.cloudstream3.APIHolder.apis
|
||||||
|
//import com.lagradost.cloudstream3.animeproviders.AniflixProvider
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.tryParseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
object SyncUtil {
|
object SyncUtil {
|
||||||
|
|
@ -25,16 +24,18 @@ object SyncUtil {
|
||||||
private const val NINE_ANIME = "9anime"
|
private const val NINE_ANIME = "9anime"
|
||||||
private const val TWIST_MOE = "Twistmoe"
|
private const val TWIST_MOE = "Twistmoe"
|
||||||
|
|
||||||
private val matchList = mapOf(
|
private val matchList =
|
||||||
|
mapOf(
|
||||||
"9anime" to NINE_ANIME,
|
"9anime" to NINE_ANIME,
|
||||||
"gogoanime" to GOGOANIME,
|
"gogoanime" to GOGOANIME,
|
||||||
"gogoanimes" to GOGOANIME,
|
"gogoanimes" to GOGOANIME,
|
||||||
"twist.moe" to TWIST_MOE,
|
"twist.moe" to TWIST_MOE
|
||||||
)
|
)
|
||||||
|
|
||||||
suspend fun getIdsFromUrl(url: String?): Pair<String?, String?>? {
|
suspend fun getIdsFromUrl(url: String?): Pair<String?, String?>? {
|
||||||
if (url == null) return null
|
if (url == null) return null
|
||||||
Log.i(TAG, "getIdsFromUrl $url")
|
Log.i(TAG, "getIdsFromUrl $url")
|
||||||
|
|
||||||
for (regex in regexs) {
|
for (regex in regexs) {
|
||||||
regex.find(url)?.let { match ->
|
regex.find(url)?.let { match ->
|
||||||
if (match.groupValues.size == 3) {
|
if (match.groupValues.size == 3) {
|
||||||
|
|
@ -55,120 +56,117 @@ object SyncUtil {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** first. Mal, second. Anilist,
|
||||||
* first. Mal, second. Anilist,
|
* valid sites are: Gogoanime, Twistmoe and 9anime*/
|
||||||
* Valid sites are: Gogoanime, Twistmoe and 9anime
|
|
||||||
*/
|
|
||||||
private suspend fun getIdsFromSlug(
|
private suspend fun getIdsFromSlug(
|
||||||
slug: String,
|
slug: String,
|
||||||
site: String = "Gogoanime",
|
site: String = "Gogoanime"
|
||||||
): Pair<String?, String?>? {
|
): Pair<String?, String?>? {
|
||||||
Log.i(TAG, "getIdsFromSlug $slug $site")
|
Log.i(TAG, "getIdsFromSlug $slug $site")
|
||||||
try {
|
try {
|
||||||
// Gogoanime, Twistmoe and 9anime
|
//Gogoanime, Twistmoe and 9anime
|
||||||
val url = "https://raw.githubusercontent.com/MALSync/MAL-Sync-Backup/master/data/pages/$site/$slug.json"
|
val url =
|
||||||
|
"https://raw.githubusercontent.com/MALSync/MAL-Sync-Backup/master/data/pages/$site/$slug.json"
|
||||||
val response = app.get(url, cacheTime = 1, cacheUnit = TimeUnit.DAYS).text
|
val response = app.get(url, cacheTime = 1, cacheUnit = TimeUnit.DAYS).text
|
||||||
val mapped = tryParseJson<MalSyncPage>(response)
|
val mapped = parseJson<MalSyncPage?>(response)
|
||||||
|
|
||||||
val overrideMal = mapped?.malId ?: mapped?.mal?.id ?: mapped?.anilist?.malId
|
val overrideMal = mapped?.malId ?: mapped?.mal?.id ?: mapped?.anilist?.malId
|
||||||
val overrideAnilist = mapped?.aniId ?: mapped?.anilist?.id
|
val overrideAnilist = mapped?.aniId ?: mapped?.anilist?.id
|
||||||
|
|
||||||
if (overrideMal != null) {
|
if (overrideMal != null) {
|
||||||
return overrideMal.toString() to overrideAnilist?.toString()
|
return overrideMal.toString() to overrideAnilist?.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
logError(e)
|
logError(e)
|
||||||
}
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getUrlsFromId(id: String, type: String = "anilist"): List<String> {
|
suspend fun getUrlsFromId(id: String, type: String = "anilist"): List<String> {
|
||||||
val url = "https://raw.githubusercontent.com/MALSync/MAL-Sync-Backup/master/data/$type/anime/$id.json"
|
val url =
|
||||||
|
"https://raw.githubusercontent.com/MALSync/MAL-Sync-Backup/master/data/$type/anime/$id.json"
|
||||||
val response = app.get(url, cacheTime = 1, cacheUnit = TimeUnit.DAYS).parsed<SyncPage>()
|
val response = app.get(url, cacheTime = 1, cacheUnit = TimeUnit.DAYS).parsed<SyncPage>()
|
||||||
val pages = response.pages ?: return emptyList()
|
val pages = response.pages ?: return emptyList()
|
||||||
val current = pages.gogoanime.values.union(pages.nineanime.values).union(pages.twistmoe.values)
|
val current =
|
||||||
|
pages.gogoanime.values.union(pages.nineanime.values).union(pages.twistmoe.values)
|
||||||
.mapNotNull { it.url }.toMutableList()
|
.mapNotNull { it.url }.toMutableList()
|
||||||
|
|
||||||
if (type == "anilist") { // TODO MAKE BETTER
|
if (type == "anilist") { // TODO MAKE BETTER
|
||||||
|
synchronized(apis) {
|
||||||
apis.filter { it.name.contains("Aniflix", ignoreCase = true) }.forEach {
|
apis.filter { it.name.contains("Aniflix", ignoreCase = true) }.forEach {
|
||||||
current.add("${it.mainUrl}/anime/$id")
|
current.add("${it.mainUrl}/anime/$id")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return current
|
return current
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SyncPage(
|
data class SyncPage(
|
||||||
@JsonProperty("Pages") @SerialName("Pages") val pages: SyncPages?,
|
@JsonProperty("Pages") val pages: SyncPages?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SyncPages(
|
data class SyncPages(
|
||||||
@JsonProperty("9anime") @SerialName("9anime") val nineanime: Map<String, ProviderPage> = emptyMap(),
|
@JsonProperty("9anime") val nineanime: Map<String, ProviderPage> = emptyMap(),
|
||||||
@JsonProperty("Gogoanime") @SerialName("Gogoanime") val gogoanime: Map<String, ProviderPage> = emptyMap(),
|
@JsonProperty("Gogoanime") val gogoanime: Map<String, ProviderPage> = emptyMap(),
|
||||||
@JsonProperty("Twistmoe") @SerialName("Twistmoe") val twistmoe: Map<String, ProviderPage> = emptyMap(),
|
@JsonProperty("Twistmoe") val twistmoe: Map<String, ProviderPage> = emptyMap(),
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ProviderPage(
|
data class ProviderPage(
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("url") val url: String?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MalSyncPage(
|
data class MalSyncPage(
|
||||||
@JsonProperty("identifier") @SerialName("identifier") val identifier: String?,
|
@JsonProperty("identifier") val identifier: String?,
|
||||||
@JsonProperty("type") @SerialName("type") val type: String?,
|
@JsonProperty("type") val type: String?,
|
||||||
@JsonProperty("page") @SerialName("page") val page: String?,
|
@JsonProperty("page") val page: String?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("url") val url: String?,
|
||||||
@JsonProperty("image") @SerialName("image") val image: String?,
|
@JsonProperty("image") val image: String?,
|
||||||
@JsonProperty("hentai") @SerialName("hentai") val hentai: Boolean?,
|
@JsonProperty("hentai") val hentai: Boolean?,
|
||||||
@JsonProperty("sticky") @SerialName("sticky") val sticky: Boolean?,
|
@JsonProperty("sticky") val sticky: Boolean?,
|
||||||
@JsonProperty("active") @SerialName("active") val active: Boolean?,
|
@JsonProperty("active") val active: Boolean?,
|
||||||
@JsonProperty("actor") @SerialName("actor") val actor: String?,
|
@JsonProperty("actor") val actor: String?,
|
||||||
@JsonProperty("malId") @SerialName("malId") val malId: Int?,
|
@JsonProperty("malId") val malId: Int?,
|
||||||
@JsonProperty("aniId") @SerialName("aniId") val aniId: Int?,
|
@JsonProperty("aniId") val aniId: Int?,
|
||||||
@JsonProperty("createdAt") @SerialName("createdAt") val createdAt: String?,
|
@JsonProperty("createdAt") val createdAt: String?,
|
||||||
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: String?,
|
@JsonProperty("updatedAt") val updatedAt: String?,
|
||||||
@JsonProperty("deletedAt") @SerialName("deletedAt") val deletedAt: String?,
|
@JsonProperty("deletedAt") val deletedAt: String?,
|
||||||
@JsonProperty("Mal") @SerialName("Mal") val mal: Mal?,
|
@JsonProperty("Mal") val mal: Mal?,
|
||||||
@JsonProperty("Anilist") @SerialName("Anilist") val anilist: Anilist?,
|
@JsonProperty("Anilist") val anilist: Anilist?,
|
||||||
@JsonProperty("malUrl") @SerialName("malUrl") val malUrl: String?,
|
@JsonProperty("malUrl") val malUrl: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Anilist(
|
data class Anilist(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
// @JsonProperty("altTitle") val altTitle: List<String>?,
|
||||||
@JsonProperty("malId") @SerialName("malId") val malId: Int?,
|
// @JsonProperty("externalLinks") val externalLinks: List<String>?,
|
||||||
@JsonProperty("type") @SerialName("type") val type: String?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("malId") val malId: Int?,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("type") val type: String?,
|
||||||
@JsonProperty("image") @SerialName("image") val image: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("category") @SerialName("category") val category: String?,
|
@JsonProperty("url") val url: String?,
|
||||||
@JsonProperty("hentai") @SerialName("hentai") val hentai: Boolean?,
|
@JsonProperty("image") val image: String?,
|
||||||
@JsonProperty("createdAt") @SerialName("createdAt") val createdAt: String?,
|
@JsonProperty("category") val category: String?,
|
||||||
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: String?,
|
@JsonProperty("hentai") val hentai: Boolean?,
|
||||||
@JsonProperty("deletedAt") @SerialName("deletedAt") val deletedAt: String?,
|
@JsonProperty("createdAt") val createdAt: String?,
|
||||||
|
@JsonProperty("updatedAt") val updatedAt: String?,
|
||||||
|
@JsonProperty("deletedAt") val deletedAt: String?
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Mal(
|
data class Mal(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int?,
|
// @JsonProperty("altTitle") val altTitle: List<String>?,
|
||||||
@JsonProperty("type") @SerialName("type") val type: String?,
|
@JsonProperty("id") val id: Int?,
|
||||||
@JsonProperty("title") @SerialName("title") val title: String?,
|
@JsonProperty("type") val type: String?,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String?,
|
@JsonProperty("title") val title: String?,
|
||||||
@JsonProperty("image") @SerialName("image") val image: String?,
|
@JsonProperty("url") val url: String?,
|
||||||
@JsonProperty("category") @SerialName("category") val category: String?,
|
@JsonProperty("image") val image: String?,
|
||||||
@JsonProperty("hentai") @SerialName("hentai") val hentai: Boolean?,
|
@JsonProperty("category") val category: String?,
|
||||||
@JsonProperty("createdAt") @SerialName("createdAt") val createdAt: String?,
|
@JsonProperty("hentai") val hentai: Boolean?,
|
||||||
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: String?,
|
@JsonProperty("createdAt") val createdAt: String?,
|
||||||
@JsonProperty("deletedAt") @SerialName("deletedAt") val deletedAt: String?,
|
@JsonProperty("updatedAt") val updatedAt: String?,
|
||||||
|
@JsonProperty("deletedAt") val deletedAt: String?
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -3,10 +3,10 @@ package com.lagradost.cloudstream3.utils
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.mvvm.logError
|
import com.lagradost.cloudstream3.mvvm.logError
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
|
import org.junit.Assert
|
||||||
import kotlin.random.Random
|
import kotlin.random.Random
|
||||||
|
|
||||||
object TestingUtils {
|
object TestingUtils {
|
||||||
|
|
||||||
open class TestResult(val success: Boolean) {
|
open class TestResult(val success: Boolean) {
|
||||||
companion object {
|
companion object {
|
||||||
val Pass = TestResult(true)
|
val Pass = TestResult(true)
|
||||||
|
|
@ -49,10 +49,6 @@ object TestingUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun fail(message: String): Nothing = throw AssertionError(message)
|
|
||||||
private fun assertTrue(message: String, condition: Boolean) { if (!condition) fail(message) }
|
|
||||||
private fun assertNotNull(message: String, value: Any?) { if (value == null) fail(message) }
|
|
||||||
|
|
||||||
class TestResultList(val results: List<SearchResponse>) : TestResult(true)
|
class TestResultList(val results: List<SearchResponse>) : TestResult(true)
|
||||||
class TestResultLoad(val extractorData: String, val shouldLoadLinks: Boolean) : TestResult(true)
|
class TestResultLoad(val extractorData: String, val shouldLoadLinks: Boolean) : TestResult(true)
|
||||||
|
|
||||||
|
|
@ -91,7 +87,7 @@ object TestingUtils {
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
when (e) {
|
when (e) {
|
||||||
is NotImplementedError -> {
|
is NotImplementedError -> {
|
||||||
fail("Provider marked as hasMainPage, while in reality is has not been implemented")
|
Assert.fail("Provider marked as hasMainPage, while in reality is has not been implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
is CancellationException -> {
|
is CancellationException -> {
|
||||||
|
|
@ -119,7 +115,7 @@ object TestingUtils {
|
||||||
api.search(query, 1)?.items?.takeIf { it.isNotEmpty() }
|
api.search(query, 1)?.items?.takeIf { it.isNotEmpty() }
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
if (e is NotImplementedError) {
|
if (e is NotImplementedError) {
|
||||||
fail("Provider has not implemented search()")
|
Assert.fail("Provider has not implemented search()")
|
||||||
} else if (e is CancellationException) {
|
} else if (e is CancellationException) {
|
||||||
throw e
|
throw e
|
||||||
}
|
}
|
||||||
|
|
@ -129,7 +125,7 @@ object TestingUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
return if (searchResults.isNullOrEmpty()) {
|
return if (searchResults.isNullOrEmpty()) {
|
||||||
fail("Api ${api.name} did not return any search responses")
|
Assert.fail("Api ${api.name} did not return any search responses")
|
||||||
TestResult.Fail // Should not be reached
|
TestResult.Fail // Should not be reached
|
||||||
} else {
|
} else {
|
||||||
TestResultList(searchResults)
|
TestResultList(searchResults)
|
||||||
|
|
@ -200,7 +196,7 @@ object TestingUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
logger.error("Unknown load response: ${loadResponse::class.qualifiedName}")
|
logger.error("Unknown load response: ${loadResponse.javaClass.name}")
|
||||||
return TestResult.Fail
|
return TestResult.Fail
|
||||||
}
|
}
|
||||||
} ?: return TestResult.Fail
|
} ?: return TestResult.Fail
|
||||||
|
|
@ -220,7 +216,7 @@ object TestingUtils {
|
||||||
// return TestResult(validResults)
|
// return TestResult(validResults)
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
if (e is NotImplementedError) {
|
if (e is NotImplementedError) {
|
||||||
fail("Provider has not implemented load()")
|
Assert.fail("Provider has not implemented load()")
|
||||||
}
|
}
|
||||||
throw e
|
throw e
|
||||||
}
|
}
|
||||||
|
|
@ -232,14 +228,14 @@ object TestingUtils {
|
||||||
url: String?,
|
url: String?,
|
||||||
logger: Logger
|
logger: Logger
|
||||||
): TestResult {
|
): TestResult {
|
||||||
assertNotNull("Api ${api.name} has invalid url on episode", url)
|
Assert.assertNotNull("Api ${api.name} has invalid url on episode", url)
|
||||||
if (url == null) return TestResult.Fail // Should never trigger
|
if (url == null) return TestResult.Fail // Should never trigger
|
||||||
|
|
||||||
var linksLoaded = 0
|
var linksLoaded = 0
|
||||||
try {
|
try {
|
||||||
val success = api.loadLinks(url, false, {}) { link ->
|
val success = api.loadLinks(url, false, {}) { link ->
|
||||||
logger.log("Video loaded: ${link.name}")
|
logger.log("Video loaded: ${link.name}")
|
||||||
assertTrue(
|
Assert.assertTrue(
|
||||||
"Api ${api.name} returns link with invalid url ${link.url}",
|
"Api ${api.name} returns link with invalid url ${link.url}",
|
||||||
link.url.length > 4
|
link.url.length > 4
|
||||||
)
|
)
|
||||||
|
|
@ -249,12 +245,12 @@ object TestingUtils {
|
||||||
logger.log("Links loaded: $linksLoaded")
|
logger.log("Links loaded: $linksLoaded")
|
||||||
return TestResult(linksLoaded > 0)
|
return TestResult(linksLoaded > 0)
|
||||||
} else {
|
} else {
|
||||||
fail("Api ${api.name} returns false on loadLinks() with $linksLoaded links loaded")
|
Assert.fail("Api ${api.name} returns false on loadLinks() with $linksLoaded links loaded")
|
||||||
}
|
}
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
when (e) {
|
when (e) {
|
||||||
is NotImplementedError -> {
|
is NotImplementedError -> {
|
||||||
fail("Provider has not implemented loadLinks()")
|
Assert.fail("Provider has not implemented loadLinks()")
|
||||||
}
|
}
|
||||||
|
|
||||||
else -> {
|
else -> {
|
||||||
|
|
@ -280,7 +276,7 @@ object TestingUtils {
|
||||||
|
|
||||||
// Test Homepage
|
// Test Homepage
|
||||||
val homepage = testHomepage(api, logger)
|
val homepage = testHomepage(api, logger)
|
||||||
assertTrue("Homepage failed to load", homepage.success)
|
Assert.assertTrue("Homepage failed to load", homepage.success)
|
||||||
val homePageList = (homepage as? TestResultList)?.results ?: emptyList()
|
val homePageList = (homepage as? TestResultList)?.results ?: emptyList()
|
||||||
|
|
||||||
// Test Search Results
|
// Test Search Results
|
||||||
|
|
@ -291,7 +287,7 @@ object TestingUtils {
|
||||||
listOf("over", "iron", "guy")).take(3)
|
listOf("over", "iron", "guy")).take(3)
|
||||||
|
|
||||||
val searchResults = testSearch(api, searchQueries, logger)
|
val searchResults = testSearch(api, searchQueries, logger)
|
||||||
assertTrue("Failed to get search results", searchResults.success)
|
Assert.assertTrue("Failed to get search results", searchResults.success)
|
||||||
searchResults as TestResultList
|
searchResults as TestResultList
|
||||||
|
|
||||||
// Test Load and LoadLinks
|
// Test Load and LoadLinks
|
||||||
|
|
|
||||||
|
|
@ -23,15 +23,15 @@ const val PROGRAM_ID_LIST_KEY = "persistent_program_ids"
|
||||||
|
|
||||||
object TvChannelUtils {
|
object TvChannelUtils {
|
||||||
fun Context.saveProgramId(programId: Long) {
|
fun Context.saveProgramId(programId: Long) {
|
||||||
val existing: List<Long> = getKey<List<Long>>(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
val existing: List<Long> = getKey(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
||||||
val updated = (existing + programId).distinct()
|
val updated = (existing + programId).distinct()
|
||||||
setKey(PROGRAM_ID_LIST_KEY, updated)
|
setKey(PROGRAM_ID_LIST_KEY, updated)
|
||||||
}
|
}
|
||||||
fun Context.getStoredProgramIds(): List<Long> {
|
fun Context.getStoredProgramIds(): List<Long> {
|
||||||
return getKey<List<Long>>(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
return getKey(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
||||||
}
|
}
|
||||||
fun Context.removeProgramId(programId: Long) {
|
fun Context.removeProgramId(programId: Long) {
|
||||||
val existing: List<Long> = getKey<List<Long>>(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
val existing: List<Long> = getKey(PROGRAM_ID_LIST_KEY) ?: emptyList()
|
||||||
val updated = existing.filter { it != programId }
|
val updated = existing.filter { it != programId }
|
||||||
setKey(PROGRAM_ID_LIST_KEY, updated)
|
setKey(PROGRAM_ID_LIST_KEY, updated)
|
||||||
}
|
}
|
||||||
|
|
@ -149,12 +149,10 @@ object TvChannelUtils {
|
||||||
.setInputId(inputId)
|
.setInputId(inputId)
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
val channelUri = runCatching {
|
val channelUri = context.contentResolver.insert(
|
||||||
context.contentResolver.insert(
|
|
||||||
TvContractCompat.Channels.CONTENT_URI,
|
TvContractCompat.Channels.CONTENT_URI,
|
||||||
channel.toContentValues()
|
channel.toContentValues()
|
||||||
)
|
)
|
||||||
}.getOrNull()
|
|
||||||
|
|
||||||
channelUri?.let {
|
channelUri?.let {
|
||||||
val channelId = ContentUris.parseId(it)
|
val channelId = ContentUris.parseId(it)
|
||||||
|
|
|
||||||
|
|
@ -65,12 +65,9 @@ import androidx.navigation.fragment.NavHostFragment
|
||||||
import androidx.palette.graphics.Palette
|
import androidx.palette.graphics.Palette
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
import com.google.android.material.appbar.AppBarLayout
|
import com.google.android.material.appbar.AppBarLayout
|
||||||
import com.google.android.material.button.MaterialButton
|
|
||||||
import com.google.android.material.chip.Chip
|
import com.google.android.material.chip.Chip
|
||||||
import com.google.android.material.chip.ChipDrawable
|
import com.google.android.material.chip.ChipDrawable
|
||||||
import com.google.android.material.chip.ChipGroup
|
import com.google.android.material.chip.ChipGroup
|
||||||
import com.google.android.material.progressindicator.CircularProgressIndicatorSpec
|
|
||||||
import com.google.android.material.progressindicator.IndeterminateDrawable
|
|
||||||
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
|
||||||
import com.lagradost.cloudstream3.CommonActivity.activity
|
import com.lagradost.cloudstream3.CommonActivity.activity
|
||||||
import com.lagradost.cloudstream3.CommonActivity.showToast
|
import com.lagradost.cloudstream3.CommonActivity.showToast
|
||||||
|
|
@ -586,43 +583,6 @@ object UIHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Source: https://stackoverflow.com/questions/70954321/circular-progress-indicator-inside-buttons-android-material-design
|
|
||||||
*
|
|
||||||
* Shows indeterminate progress bar on this button in place of where icon would be.
|
|
||||||
* By default the tint of progress bar is the same as iconTint.
|
|
||||||
*
|
|
||||||
* @param tintColor (@ColorInt Int) Sets custom progress bar tint color.
|
|
||||||
*/
|
|
||||||
fun MaterialButton.showProgress(@ColorInt tintColor: Int = this.iconTint.defaultColor) =
|
|
||||||
// Use runOnMainThreadNative to allow process on io threads, to make the code a bit cleaner
|
|
||||||
runOnMainThreadNative {
|
|
||||||
// No need to set it again, as then it will reset the animation
|
|
||||||
if(this.icon is IndeterminateDrawable<*>) {
|
|
||||||
return@runOnMainThreadNative
|
|
||||||
}
|
|
||||||
val spec = CircularProgressIndicatorSpec(
|
|
||||||
context, null, 0,
|
|
||||||
com.google.android.material.R.style.Widget_Material3_CircularProgressIndicator_ExtraSmall
|
|
||||||
)
|
|
||||||
|
|
||||||
spec.indicatorColors = intArrayOf(tintColor)
|
|
||||||
|
|
||||||
val progressIndicatorDrawable =
|
|
||||||
IndeterminateDrawable.createCircularDrawable(context, spec)
|
|
||||||
|
|
||||||
this.icon = progressIndicatorDrawable
|
|
||||||
if (this.getTag(R.id.text1) == null)
|
|
||||||
this.setTag(R.id.text1, this.text)
|
|
||||||
this.text = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
fun MaterialButton.hideProgress() =
|
|
||||||
runOnMainThreadNative {
|
|
||||||
this.text = this.getTag(R.id.text1) as? String
|
|
||||||
this.icon = null
|
|
||||||
}
|
|
||||||
|
|
||||||
/**id, stringRes */
|
/**id, stringRes */
|
||||||
@SuppressLint("RestrictedApi")
|
@SuppressLint("RestrictedApi")
|
||||||
fun View.popupMenuNoIcons(
|
fun View.popupMenuNoIcons(
|
||||||
|
|
|
||||||
|
|
@ -804,7 +804,6 @@ object VideoDownloadManager {
|
||||||
private suspend fun resolve(
|
private suspend fun resolve(
|
||||||
startByte: Long,
|
startByte: Long,
|
||||||
endByte: Long?,
|
endByte: Long?,
|
||||||
buffer: ByteArray,
|
|
||||||
callback: (suspend CoroutineScope.(LazyStreamDownloadResponse) -> Unit)
|
callback: (suspend CoroutineScope.(LazyStreamDownloadResponse) -> Unit)
|
||||||
): Long = withContext(Dispatchers.IO) {
|
): Long = withContext(Dispatchers.IO) {
|
||||||
var currentByte: Long = startByte
|
var currentByte: Long = startByte
|
||||||
|
|
@ -823,6 +822,7 @@ object VideoDownloadManager {
|
||||||
)
|
)
|
||||||
val requestStream = request.body.byteStream()
|
val requestStream = request.body.byteStream()
|
||||||
|
|
||||||
|
val buffer = ByteArray(bufferSize)
|
||||||
var read: Int
|
var read: Int
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -853,7 +853,6 @@ object VideoDownloadManager {
|
||||||
suspend fun resolveSafe(
|
suspend fun resolveSafe(
|
||||||
index: Int,
|
index: Int,
|
||||||
retries: Int = 3,
|
retries: Int = 3,
|
||||||
buffer: ByteArray,
|
|
||||||
callback: (suspend CoroutineScope.(LazyStreamDownloadResponse) -> Unit)
|
callback: (suspend CoroutineScope.(LazyStreamDownloadResponse) -> Unit)
|
||||||
): Boolean {
|
): Boolean {
|
||||||
var start = chuckStartByte.getOrNull(index) ?: return false
|
var start = chuckStartByte.getOrNull(index) ?: return false
|
||||||
|
|
@ -862,7 +861,7 @@ object VideoDownloadManager {
|
||||||
for (i in 0 until retries) {
|
for (i in 0 until retries) {
|
||||||
try {
|
try {
|
||||||
// in case
|
// in case
|
||||||
start = resolve(start, end, buffer, callback)
|
start = resolve(start, end, callback)
|
||||||
// no end defined, so we don't care exactly where it ended
|
// no end defined, so we don't care exactly where it ended
|
||||||
if (end == null) return true
|
if (end == null) return true
|
||||||
// we have download more or exactly what we needed
|
// we have download more or exactly what we needed
|
||||||
|
|
@ -1159,29 +1158,13 @@ object VideoDownloadManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reuse a download buffer to decrease unnecessary alloc
|
// this will take up the first available job and resolve
|
||||||
val buffer = ByteArray(items.bufferSize)
|
|
||||||
|
|
||||||
// This will take up the first available job and resolve
|
|
||||||
while (true) {
|
while (true) {
|
||||||
if (!isActive) return@launch
|
if (!isActive) return@launch
|
||||||
|
|
||||||
var isTooFarAhead = false
|
|
||||||
fileMutex.withLock {
|
fileMutex.withLock {
|
||||||
if (metadata.type == DownloadType.IsStopped
|
if (metadata.type == DownloadType.IsStopped
|
||||||
|| metadata.type == DownloadType.IsFailed
|
|| metadata.type == DownloadType.IsFailed
|
||||||
) return@launch
|
) return@launch
|
||||||
|
|
||||||
// Limit RAM usage by throttling if too much data is downloaded but not yet written to disk
|
|
||||||
// 50MB limit
|
|
||||||
if (metadata.bytesDownloaded - metadata.bytesWritten > 50_000_000) {
|
|
||||||
isTooFarAhead = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isTooFarAhead) {
|
|
||||||
delay(500)
|
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// mutex just in case, we never want this to fail due to multithreading
|
// mutex just in case, we never want this to fail due to multithreading
|
||||||
|
|
@ -1192,7 +1175,7 @@ object VideoDownloadManager {
|
||||||
|
|
||||||
// in case something has gone wrong set to failed if the fail is not caused by
|
// in case something has gone wrong set to failed if the fail is not caused by
|
||||||
// user cancellation
|
// user cancellation
|
||||||
if (!items.resolveSafe(index, buffer = buffer, callback = callback)) {
|
if (!items.resolveSafe(index, callback = callback)) {
|
||||||
fileMutex.withLock {
|
fileMutex.withLock {
|
||||||
if (metadata.type != DownloadType.IsStopped) {
|
if (metadata.type != DownloadType.IsStopped) {
|
||||||
metadata.type = DownloadType.IsFailed
|
metadata.type = DownloadType.IsFailed
|
||||||
|
|
@ -1350,23 +1333,10 @@ object VideoDownloadManager {
|
||||||
launch(Dispatchers.IO) {
|
launch(Dispatchers.IO) {
|
||||||
while (true) {
|
while (true) {
|
||||||
if (!isActive) return@launch
|
if (!isActive) return@launch
|
||||||
|
|
||||||
var isTooFarAhead = false
|
|
||||||
fileMutex.withLock {
|
fileMutex.withLock {
|
||||||
if (metadata.type == DownloadType.IsStopped
|
if (metadata.type == DownloadType.IsStopped
|
||||||
|| metadata.type == DownloadType.IsFailed
|
|| metadata.type == DownloadType.IsFailed
|
||||||
) return@launch
|
) return@launch
|
||||||
|
|
||||||
// Limit RAM usage by throttling if too much data is downloaded but not yet written to disk
|
|
||||||
// 50MB limit
|
|
||||||
if (metadata.bytesDownloaded - metadata.bytesWritten > 50_000_000) {
|
|
||||||
isTooFarAhead = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isTooFarAhead) {
|
|
||||||
delay(500)
|
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// mutex just in case, we never want this to fail due to multithreading
|
// mutex just in case, we never want this to fail due to multithreading
|
||||||
|
|
@ -1640,11 +1610,11 @@ object VideoDownloadManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDownloadResumePackage(context: Context, id: Int): DownloadResumePackage? {
|
fun getDownloadResumePackage(context: Context, id: Int): DownloadResumePackage? {
|
||||||
return context.getKey<DownloadResumePackage>(KEY_RESUME_PACKAGES, id.toString())
|
return context.getKey(KEY_RESUME_PACKAGES, id.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDownloadQueuePackage(context: Context, id: Int): DownloadQueueWrapper? {
|
fun getDownloadQueuePackage(context: Context, id: Int): DownloadQueueWrapper? {
|
||||||
return context.getKey<DownloadQueueWrapper>(KEY_RESUME_IN_QUEUE, id.toString())
|
return context.getKey(KEY_RESUME_IN_QUEUE, id.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDownloadEpisodeMetadata(
|
fun getDownloadEpisodeMetadata(
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,23 @@
|
||||||
package com.lagradost.cloudstream3.utils.downloader
|
package com.lagradost.cloudstream3.utils.downloader
|
||||||
|
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
import com.lagradost.cloudstream3.Score
|
import com.lagradost.cloudstream3.Score
|
||||||
import com.lagradost.cloudstream3.SkipSerializationTest
|
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.services.DownloadQueueService
|
import com.lagradost.cloudstream3.services.DownloadQueueService
|
||||||
import com.lagradost.cloudstream3.ui.player.SubtitleData
|
import com.lagradost.cloudstream3.ui.player.SubtitleData
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.utils.ExtractorLink
|
import com.lagradost.cloudstream3.utils.ExtractorLink
|
||||||
import com.lagradost.cloudstream3.utils.serializers.UriSerializer
|
|
||||||
import com.lagradost.cloudstream3.utils.serializers.WriteOnlySerializer
|
|
||||||
import com.lagradost.safefile.SafeFile
|
import com.lagradost.safefile.SafeFile
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
|
||||||
import kotlinx.serialization.KeepGeneratedSerializer
|
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.io.OutputStream
|
import java.io.OutputStream
|
||||||
import java.util.Objects
|
import java.util.Objects
|
||||||
|
|
||||||
object DownloadObjects {
|
object DownloadObjects {
|
||||||
/** An item can either be something to resume or something new to start */
|
/** An item can either be something to resume or something new to start */
|
||||||
@Serializable
|
|
||||||
data class DownloadQueueWrapper(
|
data class DownloadQueueWrapper(
|
||||||
@JsonProperty("resumePackage") @SerialName("resumePackage") val resumePackage: DownloadResumePackage?,
|
@JsonProperty("resumePackage") val resumePackage: DownloadResumePackage?,
|
||||||
@JsonProperty("downloadItem") @SerialName("downloadItem") val downloadItem: DownloadQueueItem?,
|
@JsonProperty("downloadItem") val downloadItem: DownloadQueueItem?,
|
||||||
) {
|
) {
|
||||||
init {
|
init {
|
||||||
assert(resumePackage != null || downloadItem != null) {
|
assert(resumePackage != null || downloadItem != null) {
|
||||||
|
|
@ -35,66 +26,56 @@ object DownloadObjects {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Loop through the current download instances to see if it is currently downloading. Also includes link loading. */
|
/** Loop through the current download instances to see if it is currently downloading. Also includes link loading. */
|
||||||
@JsonIgnore
|
|
||||||
fun isCurrentlyDownloading(): Boolean {
|
fun isCurrentlyDownloading(): Boolean {
|
||||||
return DownloadQueueService.downloadInstances.value.any { it.downloadQueueWrapper.id == this.id }
|
return DownloadQueueService.downloadInstances.value.any { it.downloadQueueWrapper.id == this.id }
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonProperty("id") @SerialName("id")
|
@JsonProperty("id")
|
||||||
val id = resumePackage?.item?.ep?.id ?: downloadItem!!.episode.id
|
val id = resumePackage?.item?.ep?.id ?: downloadItem!!.episode.id
|
||||||
|
|
||||||
@JsonProperty("parentId") @SerialName("parentId")
|
@JsonProperty("parentId")
|
||||||
val parentId = resumePackage?.item?.ep?.parentId ?: downloadItem!!.episode.parentId
|
val parentId = resumePackage?.item?.ep?.parentId ?: downloadItem!!.episode.parentId
|
||||||
}
|
}
|
||||||
|
|
||||||
/** General data about the episode and show to start a download from. */
|
/** General data about the episode and show to start a download from. */
|
||||||
@Serializable
|
|
||||||
data class DownloadQueueItem(
|
data class DownloadQueueItem(
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: ResultEpisode,
|
@JsonProperty("episode") val episode: ResultEpisode,
|
||||||
@JsonProperty("isMovie") @SerialName("isMovie") val isMovie: Boolean,
|
@JsonProperty("isMovie") val isMovie: Boolean,
|
||||||
@JsonProperty("resultName") @SerialName("resultName") val resultName: String,
|
@JsonProperty("resultName") val resultName: String,
|
||||||
@JsonProperty("resultType") @SerialName("resultType") val resultType: TvType,
|
@JsonProperty("resultType") val resultType: TvType,
|
||||||
@JsonProperty("resultPoster") @SerialName("resultPoster") val resultPoster: String?,
|
@JsonProperty("resultPoster") val resultPoster: String?,
|
||||||
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
|
@JsonProperty("apiName") val apiName: String,
|
||||||
@JsonProperty("resultId") @SerialName("resultId") val resultId: Int,
|
@JsonProperty("resultId") val resultId: Int,
|
||||||
@JsonProperty("resultUrl") @SerialName("resultUrl") val resultUrl: String,
|
@JsonProperty("resultUrl") val resultUrl: String,
|
||||||
@JsonProperty("links") @SerialName("links") val links: List<ExtractorLink>? = null,
|
@JsonProperty("links") val links: List<ExtractorLink>? = null,
|
||||||
@JsonProperty("subs") @SerialName("subs") val subs: List<SubtitleData>? = null,
|
@JsonProperty("subs") val subs: List<SubtitleData>? = null,
|
||||||
) {
|
) {
|
||||||
fun toWrapper(): DownloadQueueWrapper {
|
fun toWrapper(): DownloadQueueWrapper {
|
||||||
return DownloadQueueWrapper(null, this)
|
return DownloadQueueWrapper(null, this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface DownloadCached {
|
|
||||||
val id: Int
|
|
||||||
}
|
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
|
abstract class DownloadCached(
|
||||||
@KeepGeneratedSerializer
|
@JsonProperty("id") open val id: Int,
|
||||||
@Serializable(with = DownloadEpisodeCached.Serializer::class)
|
|
||||||
data class DownloadEpisodeCached(
|
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
|
||||||
@JsonProperty("poster") @SerialName("poster") val poster: String?,
|
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int,
|
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
|
||||||
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
|
|
||||||
@JsonProperty("score") @SerialName("score") var score: Score? = null,
|
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
|
||||||
@JsonProperty("cacheTime") @SerialName("cacheTime") val cacheTime: Long,
|
|
||||||
@JsonProperty("id") @SerialName("id") override val id: Int,
|
|
||||||
) : DownloadCached {
|
|
||||||
object Serializer : WriteOnlySerializer<DownloadEpisodeCached>(
|
|
||||||
DownloadEpisodeCached.generatedSerializer(),
|
|
||||||
setOf("rating"),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
data class DownloadEpisodeCached(
|
||||||
|
@JsonProperty("name") val name: String?,
|
||||||
|
@JsonProperty("poster") val poster: String?,
|
||||||
|
@JsonProperty("episode") val episode: Int,
|
||||||
|
@JsonProperty("season") val season: Int?,
|
||||||
|
@JsonProperty("parentId") val parentId: Int,
|
||||||
|
@JsonProperty("score") var score: Score? = null,
|
||||||
|
@JsonProperty("description") val description: String?,
|
||||||
|
@JsonProperty("cacheTime") val cacheTime: Long,
|
||||||
|
override val id: Int,
|
||||||
|
) : DownloadCached(id) {
|
||||||
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
|
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
|
||||||
@SerialName("rating")
|
|
||||||
@Deprecated(
|
@Deprecated(
|
||||||
"`rating` is the old scoring system, use score instead",
|
"`rating` is the old scoring system, use score instead",
|
||||||
replaceWith = ReplaceWith("score"),
|
replaceWith = ReplaceWith("score"),
|
||||||
level = DeprecationLevel.ERROR,
|
level = DeprecationLevel.ERROR
|
||||||
)
|
)
|
||||||
var rating: Int? = null
|
var rating: Int? = null
|
||||||
set(value) {
|
set(value) {
|
||||||
|
|
@ -106,81 +87,74 @@ object DownloadObjects {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** What to display to the user for a downloaded show/movie. Includes info such as name, poster and url */
|
/** What to display to the user for a downloaded show/movie. Includes info such as name, poster and url */
|
||||||
@Serializable
|
|
||||||
data class DownloadHeaderCached(
|
data class DownloadHeaderCached(
|
||||||
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
|
@JsonProperty("apiName") val apiName: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url") val url: String,
|
||||||
@JsonProperty("type") @SerialName("type") val type: TvType,
|
@JsonProperty("type") val type: TvType,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") val name: String,
|
||||||
@JsonProperty("poster") @SerialName("poster") val poster: String?,
|
@JsonProperty("poster") val poster: String?,
|
||||||
@JsonProperty("cacheTime") @SerialName("cacheTime") val cacheTime: Long,
|
@JsonProperty("cacheTime") val cacheTime: Long,
|
||||||
@JsonProperty("id") @SerialName("id") override val id: Int,
|
override val id: Int,
|
||||||
) : DownloadCached
|
) : DownloadCached(id)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class DownloadResumePackage(
|
data class DownloadResumePackage(
|
||||||
@JsonProperty("item") @SerialName("item") val item: DownloadItem,
|
@JsonProperty("item") val item: DownloadItem,
|
||||||
/** Tills which link should get resumed */
|
/** Tills which link should get resumed */
|
||||||
@JsonProperty("linkIndex") @SerialName("linkIndex") val linkIndex: Int?,
|
@JsonProperty("linkIndex") val linkIndex: Int?,
|
||||||
) {
|
) {
|
||||||
fun toWrapper(): DownloadQueueWrapper {
|
fun toWrapper(): DownloadQueueWrapper {
|
||||||
return DownloadQueueWrapper(this, null)
|
return DownloadQueueWrapper(this, null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class DownloadItem(
|
data class DownloadItem(
|
||||||
@JsonProperty("source") @SerialName("source") val source: String?,
|
@JsonProperty("source") val source: String?,
|
||||||
@JsonProperty("folder") @SerialName("folder") val folder: String?,
|
@JsonProperty("folder") val folder: String?,
|
||||||
@JsonProperty("ep") @SerialName("ep") val ep: DownloadEpisodeMetadata,
|
@JsonProperty("ep") val ep: DownloadEpisodeMetadata,
|
||||||
@JsonProperty("links") @SerialName("links") val links: List<ExtractorLink>,
|
@JsonProperty("links") val links: List<ExtractorLink>,
|
||||||
)
|
)
|
||||||
|
|
||||||
/** Metadata for a specific episode and how to display it. */
|
/** Metadata for a specific episode and how to display it. */
|
||||||
@Serializable
|
|
||||||
data class DownloadEpisodeMetadata(
|
data class DownloadEpisodeMetadata(
|
||||||
@JsonProperty("id") @SerialName("id") val id: Int,
|
@JsonProperty("id") val id: Int,
|
||||||
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
|
@JsonProperty("parentId") val parentId: Int,
|
||||||
@JsonProperty("mainName") @SerialName("mainName") val mainName: String,
|
@JsonProperty("mainName") val mainName: String,
|
||||||
@JsonProperty("sourceApiName") @SerialName("sourceApiName") val sourceApiName: String?,
|
@JsonProperty("sourceApiName") val sourceApiName: String?,
|
||||||
@JsonProperty("poster") @SerialName("poster") val poster: String?,
|
@JsonProperty("poster") val poster: String?,
|
||||||
@JsonProperty("name") @SerialName("name") val name: String?,
|
@JsonProperty("name") val name: String?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
@JsonProperty("season") val season: Int?,
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
|
@JsonProperty("episode") val episode: Int?,
|
||||||
@JsonProperty("type") @SerialName("type") val type: TvType?,
|
@JsonProperty("type") val type: TvType?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class DownloadedFileInfo(
|
data class DownloadedFileInfo(
|
||||||
@JsonProperty("totalBytes") @SerialName("totalBytes") val totalBytes: Long,
|
@JsonProperty("totalBytes") val totalBytes: Long,
|
||||||
@JsonProperty("relativePath") @SerialName("relativePath") val relativePath: String,
|
@JsonProperty("relativePath") val relativePath: String,
|
||||||
@JsonProperty("displayName") @SerialName("displayName") val displayName: String,
|
@JsonProperty("displayName") val displayName: String,
|
||||||
@JsonProperty("extraInfo") @SerialName("extraInfo") val extraInfo: String? = null,
|
@JsonProperty("extraInfo") val extraInfo: String? = null,
|
||||||
@JsonProperty("basePath") @SerialName("basePath") val basePath: String? = null, // null is for legacy downloads. See getBasePath()
|
@JsonProperty("basePath") val basePath: String? = null, // null is for legacy downloads. See getBasePath()
|
||||||
// Hash of the link associated with this DownloadFile, used so not override old data in the DownloadedFileInfo
|
// Hash of the link associated with this DownloadFile, used so not override old data in the DownloadedFileInfo
|
||||||
@JsonProperty("linkHash") @SerialName("linkHash") val linkHash: Int? = null,
|
@JsonProperty("linkHash") val linkHash : Int? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
@SkipSerializationTest // Uri has issues with Jackson
|
|
||||||
data class DownloadedFileInfoResult(
|
data class DownloadedFileInfoResult(
|
||||||
@JsonProperty("fileLength") @SerialName("fileLength") val fileLength: Long,
|
@JsonProperty("fileLength") val fileLength: Long,
|
||||||
@JsonProperty("totalBytes") @SerialName("totalBytes") val totalBytes: Long,
|
@JsonProperty("totalBytes") val totalBytes: Long,
|
||||||
@JsonProperty("path") @SerialName("path")
|
@JsonProperty("path") val path: Uri,
|
||||||
@Serializable(with = UriSerializer::class)
|
|
||||||
val path: Uri,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ResumeWatching(
|
data class ResumeWatching(
|
||||||
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
|
@JsonProperty("parentId") val parentId: Int,
|
||||||
@JsonProperty("episodeId") @SerialName("episodeId") val episodeId: Int?,
|
@JsonProperty("episodeId") val episodeId: Int?,
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
|
@JsonProperty("episode") val episode: Int?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
@JsonProperty("season") val season: Int?,
|
||||||
@JsonProperty("updateTime") @SerialName("updateTime") val updateTime: Long,
|
@JsonProperty("updateTime") val updateTime: Long,
|
||||||
@JsonProperty("isFromDownload") @SerialName("isFromDownload") val isFromDownload: Boolean,
|
@JsonProperty("isFromDownload") val isFromDownload: Boolean,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
data class DownloadStatus(
|
data class DownloadStatus(
|
||||||
/** if you should retry with the same args and hope for a better result */
|
/** if you should retry with the same args and hope for a better result */
|
||||||
val retrySame: Boolean,
|
val retrySame: Boolean,
|
||||||
|
|
@ -190,19 +164,20 @@ object DownloadObjects {
|
||||||
val success: Boolean,
|
val success: Boolean,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
data class CreateNotificationMetadata(
|
data class CreateNotificationMetadata(
|
||||||
val type: VideoDownloadManager.DownloadType,
|
val type: VideoDownloadManager.DownloadType,
|
||||||
val bytesDownloaded: Long,
|
val bytesDownloaded: Long,
|
||||||
val bytesTotal: Long,
|
val bytesTotal: Long,
|
||||||
val hlsProgress: Long? = null,
|
val hlsProgress: Long? = null,
|
||||||
val hlsTotal: Long? = null,
|
val hlsTotal: Long? = null,
|
||||||
val bytesPerSecond: Long,
|
val bytesPerSecond: Long
|
||||||
)
|
)
|
||||||
|
|
||||||
data class StreamData(
|
data class StreamData(
|
||||||
private val fileLength: Long,
|
private val fileLength: Long,
|
||||||
val file: SafeFile,
|
val file: SafeFile,
|
||||||
// val fileStream: OutputStream,
|
//val fileStream: OutputStream,
|
||||||
) {
|
) {
|
||||||
@Throws(IOException::class)
|
@Throws(IOException::class)
|
||||||
fun open(): OutputStream {
|
fun open(): OutputStream {
|
||||||
|
|
@ -223,11 +198,9 @@ object DownloadObjects {
|
||||||
val exists: Boolean get() = file.exists() == true
|
val exists: Boolean get() = file.exists() == true
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Bytes have the size end-start where the byte range is [start,end)
|
/** bytes have the size end-start where the byte range is [start,end)
|
||||||
* note that ByteArray is a pointer and therefore can't be stored
|
* note that ByteArray is a pointer and therefore cant be stored without cloning it */
|
||||||
* without cloning it.
|
|
||||||
*/
|
|
||||||
data class LazyStreamDownloadResponse(
|
data class LazyStreamDownloadResponse(
|
||||||
val bytes: ByteArray,
|
val bytes: ByteArray,
|
||||||
val startByte: Long,
|
val startByte: Long,
|
||||||
|
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
package com.lagradost.cloudstream3.utils.serializers
|
|
||||||
|
|
||||||
import android.net.Uri
|
|
||||||
import com.lagradost.cloudstream3.InternalAPI
|
|
||||||
import kotlinx.serialization.KSerializer
|
|
||||||
import kotlinx.serialization.descriptors.PrimitiveKind
|
|
||||||
import kotlinx.serialization.descriptors.PrimitiveSerialDescriptor
|
|
||||||
import kotlinx.serialization.descriptors.SerialDescriptor
|
|
||||||
import kotlinx.serialization.encoding.Decoder
|
|
||||||
import kotlinx.serialization.encoding.Encoder
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Custom KSerializer for Android's [Uri] type.
|
|
||||||
*
|
|
||||||
* Uri is an Android platform type and cannot be annotated with @Serializable directly.
|
|
||||||
* Registering it in a SerializersModule globally would require a custom module passed to
|
|
||||||
* every Json instance, which adds hidden coupling. This serializer is also used sparingly
|
|
||||||
* across the codebase, so the overhead of a global registration isn't justified.
|
|
||||||
* Instead, we keep it explicit so that each usage site opts in intentionally and the
|
|
||||||
* serialization behavior remains visible.
|
|
||||||
*
|
|
||||||
* Usage:
|
|
||||||
*
|
|
||||||
* @Serializable
|
|
||||||
* data class MyData(
|
|
||||||
* @Serializable(with = UriSerializer::class)
|
|
||||||
* val uri: Uri,
|
|
||||||
* )
|
|
||||||
*/
|
|
||||||
@InternalAPI
|
|
||||||
object UriSerializer : KSerializer<Uri> {
|
|
||||||
override val descriptor: SerialDescriptor =
|
|
||||||
PrimitiveSerialDescriptor("Uri", PrimitiveKind.STRING)
|
|
||||||
|
|
||||||
override fun serialize(encoder: Encoder, value: Uri) {
|
|
||||||
encoder.encodeString(value.toString())
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun deserialize(decoder: Decoder): Uri {
|
|
||||||
return Uri.parse(decoder.decodeString())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,14 +1,12 @@
|
||||||
package com.lagradost.cloudstream3.utils.videoskip
|
package com.lagradost.cloudstream3.utils.videoskip
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize
|
||||||
import com.lagradost.cloudstream3.AnimeLoadResponse
|
import com.lagradost.cloudstream3.AnimeLoadResponse
|
||||||
import com.lagradost.cloudstream3.LoadResponse
|
import com.lagradost.cloudstream3.LoadResponse
|
||||||
import com.lagradost.cloudstream3.LoadResponse.Companion.getMalId
|
import com.lagradost.cloudstream3.LoadResponse.Companion.getMalId
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
// taken from https://github.com/saikou-app/saikou/blob/3803f8a7a59b826ca193664d46af3a22bbc989f7/app/src/main/java/ani/saikou/others/AniSkip.kt
|
// taken from https://github.com/saikou-app/saikou/blob/3803f8a7a59b826ca193664d46af3a22bbc989f7/app/src/main/java/ani/saikou/others/AniSkip.kt
|
||||||
// the following is GPLv3 code https://github.com/saikou-app/saikou/blob/main/LICENSE.md
|
// the following is GPLv3 code https://github.com/saikou-app/saikou/blob/main/LICENSE.md
|
||||||
|
|
@ -49,25 +47,22 @@ class AniSkip : SkipAPI() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniSkipResponse(
|
data class AniSkipResponse(
|
||||||
@JsonProperty("found") @SerialName("found") val found: Boolean,
|
@JsonSerialize val found: Boolean,
|
||||||
@JsonProperty("results") @SerialName("results") val results: List<Stamp>?,
|
@JsonSerialize val results: List<Stamp>?,
|
||||||
@JsonProperty("message") @SerialName("message") val message: String?,
|
@JsonSerialize val message: String?,
|
||||||
@JsonProperty("statusCode") @SerialName("statusCode") val statusCode: Int,
|
@JsonSerialize val statusCode: Int
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Stamp(
|
data class Stamp(
|
||||||
@JsonProperty("interval") @SerialName("interval") val interval: AniSkipInterval,
|
@JsonSerialize val interval: AniSkipInterval,
|
||||||
@JsonProperty("skipType") @SerialName("skipType") val skipType: String,
|
@JsonSerialize val skipType: String,
|
||||||
@JsonProperty("skipId") @SerialName("skipId") val skipId: String,
|
@JsonSerialize val skipId: String,
|
||||||
@JsonProperty("episodeLength") @SerialName("episodeLength") val episodeLength: Double,
|
@JsonSerialize val episodeLength: Double
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class AniSkipInterval(
|
data class AniSkipInterval(
|
||||||
@JsonProperty("startTime") @SerialName("startTime") val startTime: Double,
|
@JsonSerialize val startTime: Double,
|
||||||
@JsonProperty("endTime") @SerialName("endTime") val endTime: Double,
|
@JsonSerialize val endTime: Double
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -17,8 +17,6 @@ import com.lagradost.cloudstream3.syncproviders.PlainAuthRepo
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
|
||||||
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
import com.lagradost.cloudstream3.utils.AppUtils.toJson
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
import java.math.BigInteger
|
import java.math.BigInteger
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
import java.security.MessageDigest
|
import java.security.MessageDigest
|
||||||
|
|
@ -36,51 +34,58 @@ class AnimeSkipAuth : AuthAPI() {
|
||||||
return BigInteger(1, md.digest(input.toByteArray())).toString(16).padStart(32, '0')
|
return BigInteger(1, md.digest(input.toByteArray())).toString(16).padStart(32, '0')
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LoginRoot(
|
data class LoginRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: LoginData,
|
@JsonProperty("data")
|
||||||
|
val data: LoginData,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class LoginData(
|
data class LoginData(
|
||||||
@JsonProperty("login") @SerialName("login") val login: Login,
|
@JsonProperty("login")
|
||||||
|
val login: Login,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Login(
|
data class Login(
|
||||||
@JsonProperty("authToken") @SerialName("authToken") val authToken: String,
|
@JsonProperty("authToken")
|
||||||
@JsonProperty("refreshToken") @SerialName("refreshToken") val refreshToken: String,
|
val authToken: String,
|
||||||
@JsonProperty("account") @SerialName("account") val account: Account,
|
@JsonProperty("refreshToken")
|
||||||
|
val refreshToken: String,
|
||||||
|
@JsonProperty("account")
|
||||||
|
val account: Account,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ApiRoot(
|
data class ApiRoot(
|
||||||
@JsonProperty("data") @SerialName("data") val data: ApiData,
|
@JsonProperty("data")
|
||||||
|
val data: ApiData,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class ApiData(
|
data class ApiData(
|
||||||
@JsonProperty("myApiClients") @SerialName("myApiClients") val myApiClients: List<MyApiClient>,
|
@JsonProperty("myApiClients")
|
||||||
|
val myApiClients: List<MyApiClient>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class MyApiClient(
|
data class MyApiClient(
|
||||||
@JsonProperty("id") @SerialName("id") val id: String,
|
@JsonProperty("id")
|
||||||
|
val id: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Account(
|
data class Account(
|
||||||
@JsonProperty("profileUrl") @SerialName("profileUrl") val profileUrl: String,
|
@JsonProperty("profileUrl")
|
||||||
@JsonProperty("username") @SerialName("username") val username: String,
|
val profileUrl: String,
|
||||||
@JsonProperty("email") @SerialName("email") val email: String,
|
@JsonProperty("username")
|
||||||
|
val username: String,
|
||||||
|
@JsonProperty("email")
|
||||||
|
val email: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Payload(
|
data class Payload(
|
||||||
@JsonProperty("profileUrl") @SerialName("profileUrl") val profileUrl: String,
|
@JsonProperty("profileUrl")
|
||||||
@JsonProperty("username") @SerialName("username") val username: String,
|
val profileUrl: String,
|
||||||
@JsonProperty("email") @SerialName("email") val email: String,
|
@JsonProperty("username")
|
||||||
@JsonProperty("clientId") @SerialName("clientId") val clientId: String,
|
val username: String,
|
||||||
|
@JsonProperty("email")
|
||||||
|
val email: String,
|
||||||
|
@JsonProperty("clientId")
|
||||||
|
val clientId: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
override suspend fun user(token: AuthToken?): AuthUser? {
|
override suspend fun user(token: AuthToken?): AuthUser? {
|
||||||
|
|
@ -182,43 +187,52 @@ class AnimeSkip : SkipAPI() {
|
||||||
name?.replace(asciiRegex, "")?.lowercase()
|
name?.replace(asciiRegex, "")?.lowercase()
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Root(
|
data class Root(
|
||||||
@JsonProperty("data") @SerialName("data") val data: Data,
|
@JsonProperty("data")
|
||||||
|
val data: Data,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Data(
|
data class Data(
|
||||||
@JsonProperty("searchShows") @SerialName("searchShows") val searchShows: List<SearchShow>,
|
@JsonProperty("searchShows")
|
||||||
|
val searchShows: List<SearchShow>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class SearchShow(
|
data class SearchShow(
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name")
|
||||||
@JsonProperty("originalName") @SerialName("originalName") val originalName: String?,
|
val name: String,
|
||||||
@JsonProperty("seasonCount") @SerialName("seasonCount") val seasonCount: Long,
|
@JsonProperty("originalName")
|
||||||
@JsonProperty("episodeCount") @SerialName("episodeCount") val episodeCount: Long,
|
val originalName: String?,
|
||||||
@JsonProperty("baseDuration") @SerialName("baseDuration") val baseDuration: Double,
|
@JsonProperty("seasonCount")
|
||||||
@JsonProperty("episodes") @SerialName("episodes") val episodes: List<Episode>,
|
val seasonCount: Long,
|
||||||
|
@JsonProperty("episodeCount")
|
||||||
|
val episodeCount: Long,
|
||||||
|
@JsonProperty("baseDuration")
|
||||||
|
val baseDuration: Double,
|
||||||
|
@JsonProperty("episodes")
|
||||||
|
val episodes: List<Episode>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Episode(
|
data class Episode(
|
||||||
@JsonProperty("number") @SerialName("number") val number: String?,
|
@JsonProperty("number")
|
||||||
@JsonProperty("absoluteNumber") @SerialName("absoluteNumber") val absoluteNumber: String?,
|
val number: String?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: String?,
|
@JsonProperty("absoluteNumber")
|
||||||
@JsonProperty("timestamps") @SerialName("timestamps") val timestamps: List<Timestamp>,
|
val absoluteNumber: String?,
|
||||||
|
@JsonProperty("season")
|
||||||
|
val season: String?,
|
||||||
|
@JsonProperty("timestamps")
|
||||||
|
val timestamps: List<Timestamp>,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Timestamp(
|
data class Timestamp(
|
||||||
@JsonProperty("at") @SerialName("at") val at: Double,
|
@JsonProperty("at")
|
||||||
@JsonProperty("type") @SerialName("type") val type: Type,
|
val at: Double,
|
||||||
|
@JsonProperty("type")
|
||||||
|
val type: Type,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Type(
|
data class Type(
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name")
|
||||||
|
val name: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
val cache: ConcurrentHashMap<String, Data> = ConcurrentHashMap()
|
val cache: ConcurrentHashMap<String, Data> = ConcurrentHashMap()
|
||||||
|
|
@ -353,3 +367,4 @@ class AnimeSkip : SkipAPI() {
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,6 @@ import com.lagradost.cloudstream3.LoadResponse.Companion.getImdbId
|
||||||
import com.lagradost.cloudstream3.TvType
|
import com.lagradost.cloudstream3.TvType
|
||||||
import com.lagradost.cloudstream3.app
|
import com.lagradost.cloudstream3.app
|
||||||
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
import com.lagradost.cloudstream3.ui.result.ResultEpisode
|
||||||
import kotlinx.serialization.SerialName
|
|
||||||
import kotlinx.serialization.Serializable
|
|
||||||
|
|
||||||
class IntroDbSkip : SkipAPI() {
|
class IntroDbSkip : SkipAPI() {
|
||||||
override val name = "IntroDb"
|
override val name = "IntroDb"
|
||||||
|
|
@ -57,24 +55,23 @@ class IntroDbSkip : SkipAPI() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class IntroDbResponse(
|
data class IntroDbResponse(
|
||||||
@JsonProperty("imdb_id") @SerialName("imdb_id") val imdbId: String?,
|
@JsonProperty("imdb_id") val imdbId: String?,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
val season: Int?,
|
||||||
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
|
val episode: Int?,
|
||||||
@JsonProperty("intro") @SerialName("intro") val intro: Segment?,
|
val intro: Segment?,
|
||||||
@JsonProperty("recap") @SerialName("recap") val recap: Segment?,
|
val recap: Segment?,
|
||||||
@JsonProperty("outro") @SerialName("outro") val outro: Segment?,
|
val outro: Segment?,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
|
||||||
data class Segment(
|
data class Segment(
|
||||||
@JsonProperty("start_sec") @SerialName("start_sec") val startSec: Double?,
|
@JsonProperty("start_sec") val startSec: Double?,
|
||||||
@JsonProperty("end_sec") @SerialName("end_sec") val endSec: Double?,
|
@JsonProperty("end_sec") val endSec: Double?,
|
||||||
@JsonProperty("start_ms") @SerialName("start_ms") val startMs: Long?,
|
@JsonProperty("start_ms") val startMs: Long?,
|
||||||
@JsonProperty("end_ms") @SerialName("end_ms") val endMs: Long?,
|
@JsonProperty("end_ms") val endMs: Long?,
|
||||||
@JsonProperty("confidence") @SerialName("confidence") val confidence: Double?,
|
val confidence: Double?,
|
||||||
@JsonProperty("submission_count") @SerialName("submission_count") val submissionCount: Int?,
|
@JsonProperty("submission_count") val submissionCount: Int?,
|
||||||
@JsonProperty("updated_at") @SerialName("updated_at") val updatedAt: String?,
|
@JsonProperty("updated_at") val updatedAt: String?,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue