mirror of
https://github.com/recloudstream/cloudstream.git
synced 2026-08-23 08:33:16 +00:00
Compare commits
2 commits
master
...
reposearch
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13a2b447a2 |
||
|
|
d1a5d0a39f |
210 changed files with 3709 additions and 19266 deletions
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 }})'
|
|
||||||
})
|
|
||||||
5
.github/workflows/pull_request.yml
vendored
5
.github/workflows/pull_request.yml
vendored
|
|
@ -26,11 +26,6 @@ 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 check
|
||||||
|
|
||||||
|
|
|
||||||
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.
|
|
||||||
|
|
@ -276,8 +276,6 @@ dependencies {
|
||||||
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
|
// Deprecated; will be removed once extensions have time to migrate from using it
|
||||||
implementation("me.xdrop:fuzzywuzzy:1.4.0")
|
implementation("me.xdrop:fuzzywuzzy:1.4.0")
|
||||||
|
|
||||||
|
|
@ -325,9 +323,11 @@ 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",
|
||||||
|
"kotlin.uuid.ExperimentalUuidApi",
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -136,9 +136,9 @@ class SerializationClassTester {
|
||||||
runCatching { Class.forName(it).kotlin }.getOrNull()
|
runCatching { Class.forName(it).kotlin }.getOrNull()
|
||||||
}.filter { kClass ->
|
}.filter { kClass ->
|
||||||
// Not possible to use .hasAnnotation() on newer Android versions.
|
// Not possible to use .hasAnnotation() on newer Android versions.
|
||||||
kClass.java.annotations.any { it is Serializable }
|
kClass.java.annotations.any {
|
||||||
&& kClass.java.annotations.none { it is SkipSerializationTest }
|
it is Serializable
|
||||||
&& !kClass.isAbstract
|
} && kClass.java.annotations.none { it is SkipSerializationTest }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,157 @@
|
||||||
|
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.ExperimentalSerializationApi
|
||||||
|
import kotlinx.serialization.KeepGeneratedSerializer
|
||||||
|
import kotlinx.serialization.Serializable
|
||||||
|
import org.junit.Assert.assertEquals
|
||||||
|
import org.junit.Assert.assertFalse
|
||||||
|
import org.junit.Assert.assertNull
|
||||||
|
import org.junit.Assert.assertTrue
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
@OptIn(ExperimentalSerializationApi::class)
|
||||||
|
@KeepGeneratedSerializer
|
||||||
|
@Serializable(with = NonEmptyData.Serializer::class)
|
||||||
|
data class NonEmptyData(
|
||||||
|
val title: String = "",
|
||||||
|
val tags: List<String> = emptyList(),
|
||||||
|
val meta: Map<String, String> = emptyMap(),
|
||||||
|
val name: String = "hello",
|
||||||
|
) {
|
||||||
|
object Serializer : NonEmptySerializer<NonEmptyData>(NonEmptyData.generatedSerializer())
|
||||||
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalSerializationApi::class)
|
||||||
|
@KeepGeneratedSerializer
|
||||||
|
@Serializable(with = WriteOnlyData.Serializer::class)
|
||||||
|
data class WriteOnlyData(
|
||||||
|
val fieldA: String = "",
|
||||||
|
val fieldB: String = "",
|
||||||
|
) {
|
||||||
|
object Serializer : WriteOnlySerializer<WriteOnlyData>(
|
||||||
|
WriteOnlyData.generatedSerializer(),
|
||||||
|
setOf("fieldB"),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@OptIn(ExperimentalSerializationApi::class)
|
||||||
|
@KeepGeneratedSerializer
|
||||||
|
@Serializable(with = MultiWriteOnly.Serializer::class)
|
||||||
|
data class MultiWriteOnly(
|
||||||
|
val fieldA: String = "",
|
||||||
|
val fieldB: String = "",
|
||||||
|
val fieldC: String = "",
|
||||||
|
) {
|
||||||
|
object Serializer : WriteOnlySerializer<MultiWriteOnly>(
|
||||||
|
MultiWriteOnly.generatedSerializer(),
|
||||||
|
setOf("fieldB", "fieldC"),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class UriData(
|
||||||
|
@Serializable(with = UriSerializer::class)
|
||||||
|
val uri: Uri = Uri.EMPTY,
|
||||||
|
)
|
||||||
|
|
||||||
|
class SerializerTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun nonEmptySerializerOmitsEmptyStrings() {
|
||||||
|
val data = NonEmptyData(title = "", name = "hello")
|
||||||
|
val result = data.toJson()
|
||||||
|
assertFalse(result.contains("title"))
|
||||||
|
assertTrue(result.contains("name"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun nonEmptySerializerOmitsEmptyLists() {
|
||||||
|
val data = NonEmptyData(tags = emptyList(), name = "hello")
|
||||||
|
val result = data.toJson()
|
||||||
|
assertFalse(result.contains("tags"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun nonEmptySerializerOmitsEmptyMaps() {
|
||||||
|
val data = NonEmptyData(meta = emptyMap(), name = "hello")
|
||||||
|
val result = data.toJson()
|
||||||
|
assertFalse(result.contains("meta"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun nonEmptySerializerKeepsNonEmptyFields() {
|
||||||
|
val data = NonEmptyData(title = "hello", tags = listOf("a"), meta = mapOf("k" to "v"))
|
||||||
|
val result = data.toJson()
|
||||||
|
assertTrue(result.contains("title"))
|
||||||
|
assertTrue(result.contains("tags"))
|
||||||
|
assertTrue(result.contains("meta"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun nonEmptySerializerDoesNotAffectDeserialization() {
|
||||||
|
val input = """{"title":"hello","tags":["a"],"meta":{"k":"v"},"name":"world"}"""
|
||||||
|
val result = parseJson<NonEmptyData>(input)
|
||||||
|
assertEquals("hello", result.title)
|
||||||
|
assertEquals(listOf("a"), result.tags)
|
||||||
|
assertEquals(mapOf("k" to "v"), result.meta)
|
||||||
|
assertEquals("world", result.name)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun writeOnlySerializerOmitsFieldOnSerialize() {
|
||||||
|
val data = WriteOnlyData(fieldA = "hello", fieldB = "secret")
|
||||||
|
val result = data.toJson()
|
||||||
|
assertTrue(result.contains("fieldA"))
|
||||||
|
assertFalse(result.contains("fieldB"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun writeOnlySerializerDeserializesNormally() {
|
||||||
|
val input = """{"fieldA":"hello","fieldB":"secret"}"""
|
||||||
|
val result = parseJson<WriteOnlyData>(input)
|
||||||
|
assertEquals("hello", result.fieldA)
|
||||||
|
assertEquals("secret", result.fieldB)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun writeOnlySerializerDeserializesMissingAsDefault() {
|
||||||
|
val input = """{"fieldA":"hello"}"""
|
||||||
|
val result = parseJson<WriteOnlyData>(input)
|
||||||
|
assertEquals("hello", result.fieldA)
|
||||||
|
assertEquals("", result.fieldB)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun writeOnlySerializerHandlesMultipleKeys() {
|
||||||
|
val data = MultiWriteOnly(fieldA = "hello", fieldB = "secret1", fieldC = "secret2")
|
||||||
|
val result = data.toJson()
|
||||||
|
assertTrue(result.contains("fieldA"))
|
||||||
|
assertFalse(result.contains("fieldB"))
|
||||||
|
assertFalse(result.contains("fieldC"))
|
||||||
|
}
|
||||||
|
|
||||||
|
@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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -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? {
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
@ -786,6 +784,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)
|
||||||
|
|
@ -816,24 +815,22 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
|
||||||
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.javaClass.getDeclaredConstructor().newInstance()
|
||||||
it::class.createInstance().apply {
|
.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 +1212,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 +1426,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)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2018,7 +2014,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()
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ 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 = atomicListOf(
|
||||||
|
|
@ -160,7 +161,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
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
@ -74,4 +74,4 @@ open class VlcPackage: OpenInAppAction(
|
||||||
Log.d("VLC", "Position: $position, Duration: $duration")
|
Log.d("VLC", "Position: $position, Duration: $duration")
|
||||||
updateDurationAndPosition(position, duration)
|
updateDurationAndPosition(position, duration)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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) }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -176,11 +176,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 +224,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 +282,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 +309,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 +359,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 +379,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 +421,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 +512,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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -838,16 +835,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 +852,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 +861,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 {
|
||||||
|
|
|
||||||
|
|
@ -75,30 +75,10 @@ data class SitePlugin(
|
||||||
@JsonProperty("fileHash") @SerialName("fileHash") val fileHash: String?,
|
@JsonProperty("fileHash") @SerialName("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,18 +121,12 @@ 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://cutt.ly/404")) return@safeAsync null
|
||||||
if (url.startsWith("https://py.md/404")) return@safeAsync null
|
if (url.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
|
||||||
if (url.removeSuffix("/") == "https://py.md") return@safeAsync null
|
return@safeAsync url
|
||||||
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.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
|
|
||||||
return@safeAsync url
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else null
|
} else null
|
||||||
|
|
@ -161,8 +135,7 @@ object RepositoryManager {
|
||||||
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), cacheTime = 5, cacheUnit = TimeUnit.MINUTES).parsedSafe<Repository>()
|
||||||
.parsedSafe<Repository>()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -180,14 +153,13 @@ 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(
|
||||||
|
|
@ -240,7 +212,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
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,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)
|
||||||
|
|
|
||||||
|
|
@ -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),
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,13 @@ 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.APIHolder.unixTimeMS
|
||||||
import com.lagradost.cloudstream3.base64Encode
|
import com.lagradost.cloudstream3.base64Encode
|
||||||
import com.lagradost.cloudstream3.splitUrlParameters
|
|
||||||
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.APP_STRING
|
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.APP_STRING
|
||||||
|
import com.lagradost.cloudstream3.utils.AppContextUtils.splitQuery
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
import kotlinx.serialization.ExperimentalSerializationApi
|
||||||
import kotlinx.serialization.SerialName
|
import kotlinx.serialization.SerialName
|
||||||
import kotlinx.serialization.Serializable
|
import kotlinx.serialization.Serializable
|
||||||
import kotlinx.serialization.json.JsonNames
|
import kotlinx.serialization.json.JsonNames
|
||||||
|
import java.net.URI
|
||||||
import java.security.SecureRandom
|
import java.security.SecureRandom
|
||||||
|
|
||||||
data class AuthLoginPage(
|
data class AuthLoginPage(
|
||||||
|
|
@ -171,8 +172,10 @@ abstract class AuthAPI {
|
||||||
get() = unixTimeMS
|
get() = unixTimeMS
|
||||||
|
|
||||||
fun splitRedirectUrl(redirectUrl: String): Map<String, String> {
|
fun splitRedirectUrl(redirectUrl: String): Map<String, String> {
|
||||||
return splitUrlParameters(
|
return splitQuery(
|
||||||
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
|
URI(
|
||||||
|
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
|
||||||
|
).toURL()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ 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
|
||||||
|
|
@ -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(
|
||||||
|
|
@ -66,7 +66,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
var found: List<SubtitleEntity>? = null
|
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
|
found = item.response
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
@ -79,7 +79,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
|
||||||
|
|
||||||
// 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 {
|
searchCache.withLock {
|
||||||
if (searchCache.size > CACHE_SIZE) {
|
if (searchCache.size > CACHE_SIZE) {
|
||||||
searchCache[searchCacheIndex] = add // rolling cache
|
searchCache[searchCacheIndex] = add // rolling cache
|
||||||
|
|
|
||||||
|
|
@ -27,10 +27,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
|
||||||
|
|
||||||
|
|
@ -55,7 +54,7 @@ class AniListApi : SyncAPI() {
|
||||||
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 = APIHolder.unixTime + sanitizer["expires_in"]!!.toLong(),
|
accessTokenLifetime = APIHolder.unixTime + sanitizer["expires_in"]!!.toLong(),
|
||||||
)
|
)
|
||||||
return token
|
return token
|
||||||
|
|
@ -82,6 +81,7 @@ 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"
|
||||||
}
|
}
|
||||||
|
|
@ -103,6 +103,7 @@ class AniListApi : SyncAPI() {
|
||||||
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 {
|
||||||
|
|
@ -156,13 +157,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 +260,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,
|
||||||
).toJson()
|
"type" to "ANIME"
|
||||||
|
).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 +300,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,7 +458,7 @@ 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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -504,6 +506,7 @@ 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? {
|
||||||
|
|
@ -519,84 +522,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 +613,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>? {
|
||||||
|
|
@ -685,6 +672,7 @@ class AniListApi : SyncAPI() {
|
||||||
private suspend fun getFullAniListList(auth: AuthData): FullAnilistList? {
|
private suspend fun getFullAniListList(auth: AuthData): FullAnilistList? {
|
||||||
val userID = auth.user.id
|
val userID = auth.user.id
|
||||||
val mediaType = "ANIME"
|
val mediaType = "ANIME"
|
||||||
|
|
||||||
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) {
|
||||||
|
|
@ -723,44 +711,33 @@ 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 {
|
||||||
nodes {
|
nodes {
|
||||||
id
|
id
|
||||||
title {
|
title {
|
||||||
romaji
|
romaji
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}"""
|
}"""
|
||||||
val data = postApi(auth.token, q)
|
val data = postApi(auth.token, q)
|
||||||
return data != ""
|
return data != ""
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 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,
|
||||||
|
|
@ -770,6 +747,7 @@ class AniListApi : SyncAPI() {
|
||||||
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) {
|
||||||
|
|
@ -813,22 +791,22 @@ class AniListApi : SyncAPI() {
|
||||||
|
|
||||||
private suspend fun getUser(token: AuthToken): AniListUser? {
|
private suspend fun getUser(token: AuthToken): AniListUser? {
|
||||||
val q = """
|
val q = """
|
||||||
{
|
{
|
||||||
Viewer {
|
Viewer {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
avatar {
|
avatar {
|
||||||
large
|
large
|
||||||
}
|
}
|
||||||
favourites {
|
favourites {
|
||||||
anime {
|
anime {
|
||||||
nodes {
|
nodes {
|
||||||
id
|
id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}"""
|
||||||
}"""
|
|
||||||
val data = postApi(token, q)
|
val data = postApi(token, q)
|
||||||
if (data.isNullOrBlank()) return null
|
if (data.isNullOrBlank()) return null
|
||||||
val userData = parseJson<AniListRoot>(data)
|
val userData = parseJson<AniListRoot>(data)
|
||||||
|
|
@ -861,356 +839,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?,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -7,10 +7,11 @@ 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.SerialName
|
||||||
import kotlinx.serialization.Serializable
|
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 +20,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 "{}"
|
|
||||||
),
|
val postData = if (type == TvType.TvSeries) {
|
||||||
cacheTime = 120,
|
mapOf(
|
||||||
cacheUnit = TimeUnit.MINUTES,
|
"langs" to "[]",
|
||||||
).parsedSafe<SearchRoot>() ?: return null
|
"movieName" to searchRes.found.first().linkName,
|
||||||
|
"season" to "season-${query.seasonNumber}"
|
||||||
val firstResult = searchResponse.results.firstOrNull() ?: return null
|
)
|
||||||
|
} else {
|
||||||
val apiResponse = app.get(
|
mapOf(
|
||||||
url = "$APIURL${firstResult.link.replace("series", "subtitles")}",
|
"langs" to "[]",
|
||||||
cacheTime = 120,
|
"movieName" to searchRes.found.first().linkName,
|
||||||
cacheUnit = TimeUnit.MINUTES,
|
|
||||||
).parsedSafe<ItemRoot>() ?: return null
|
|
||||||
|
|
||||||
val filteredSubtitles = apiResponse.subtitles.filter { sub ->
|
|
||||||
sub.releaseType != "trailer" &&
|
|
||||||
sub.language.equals(queryLang, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
// api doesn't has episode number or lang filtering
|
|
||||||
val subtitles = if (type == TvType.Movie) {
|
|
||||||
filteredSubtitles
|
|
||||||
} else {
|
|
||||||
val shouldContain = String.format(
|
|
||||||
null,
|
|
||||||
"E%02d",
|
|
||||||
query.epNumber
|
|
||||||
)
|
)
|
||||||
filteredSubtitles.filter { sub ->
|
|
||||||
sub.releaseInfo.contains(
|
|
||||||
shouldContain
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return subtitles.map { subtitle ->
|
val getMovieRes = app.post(
|
||||||
|
url = "$APIURL/getMovie",
|
||||||
|
data = postData
|
||||||
|
).parsedSafe<ApiResponse>().let {
|
||||||
|
// api doesn't has episode number or lang filtering
|
||||||
|
if (type == TvType.Movie) {
|
||||||
|
it?.subs?.filter { sub ->
|
||||||
|
sub.lang == queryLang
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
it?.subs?.filter { sub ->
|
||||||
|
sub.releaseName!!.contains(
|
||||||
|
String.format(
|
||||||
|
null,
|
||||||
|
"E%02d",
|
||||||
|
query.epNumber
|
||||||
|
)
|
||||||
|
) && sub.lang == queryLang
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} ?: return null
|
||||||
|
|
||||||
|
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 +99,79 @@ 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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class SearchRoot(
|
data class ApiSearch(
|
||||||
@JsonProperty("success") @SerialName("success") var success: Boolean? = null,
|
@JsonProperty("success") @SerialName("success") val success: Boolean,
|
||||||
@JsonProperty("results") @SerialName("results") var results: ArrayList<Results> = arrayListOf(),
|
@JsonProperty("found") @SerialName("found") val found: List<Found>,
|
||||||
@JsonProperty("users") @SerialName("users") var users: ArrayList<Users> = arrayListOf()
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Users(
|
data class Found(
|
||||||
|
@JsonProperty("id") @SerialName("id") val id: Long,
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("title") @SerialName("title") val title: String,
|
||||||
@JsonProperty("displayname") @SerialName("displayname") var displayname: String? = null,
|
@JsonProperty("seasons") @SerialName("seasons") val seasons: Long,
|
||||||
@JsonProperty("avatar") @SerialName("avatar") var avatar: String? = null,
|
@JsonProperty("type") @SerialName("type") val type: String,
|
||||||
@JsonProperty("badges") @SerialName("badges") var badges: ArrayList<String> = arrayListOf()
|
@JsonProperty("releaseYear") @SerialName("releaseYear") val releaseYear: Long,
|
||||||
|
@JsonProperty("linkName") @SerialName("linkName") val linkName: String,
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Results(
|
data class ApiResponse(
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("success") @SerialName("success") val success: Boolean,
|
||||||
@JsonProperty("title") @SerialName("title") var title: String? = null,
|
@JsonProperty("movie") @SerialName("movie") val movie: Movie,
|
||||||
@JsonProperty("type") @SerialName("type") var type: String? = null,
|
@JsonProperty("subs") @SerialName("subs") val subs: List<Sub>,
|
||||||
@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
|
@Serializable
|
||||||
|
data class Movie(
|
||||||
data class ItemRoot(
|
@JsonProperty("id") @SerialName("id") val id: Long? = null,
|
||||||
|
@JsonProperty("type") @SerialName("type") val type: String? = null,
|
||||||
// @SerialName("media_type" ) var mediaType : String? = null,
|
@JsonProperty("year") @SerialName("year") val year: Long? = null,
|
||||||
@JsonProperty("subtitles") @SerialName("subtitles") var subtitles: ArrayList<Subtitles>,
|
@JsonProperty("fullName") @SerialName("fullName") val fullName: String? = null,
|
||||||
//@SerialName("movie" ) var movie : Movie? = Movie()
|
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Subtitles(
|
data class Sub(
|
||||||
|
@JsonProperty("hi") @SerialName("hi") val hi: Int? = null,
|
||||||
@JsonProperty("id") @SerialName("id") var id: Int? = null,
|
@JsonProperty("fullLink") @SerialName("fullLink") val fullLink: String? = null,
|
||||||
@JsonProperty("language") @SerialName("language") var language: String,
|
@JsonProperty("linkName") @SerialName("linkName") val linkName: String? = null,
|
||||||
@JsonProperty("release_type") @SerialName("release_type") var releaseType: String? = null,
|
@JsonProperty("lang") @SerialName("lang") val lang: String? = null,
|
||||||
@JsonProperty("release_info") @SerialName("release_info") var releaseInfo: String,
|
@JsonProperty("releaseName") @SerialName("releaseName") val releaseName: String? = null,
|
||||||
@JsonProperty("upload_date") @SerialName("upload_date") var uploadDate: String? = null,
|
@JsonProperty("subId") @SerialName("subId") val subId: Long? = 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
|
@Serializable
|
||||||
data class DownloadRoot(
|
data class SubData(
|
||||||
@JsonProperty("subtitle") @SerialName("subtitle") var subtitle: Subtitle,
|
@JsonProperty("movie") @SerialName("movie") val movie: String,
|
||||||
//@SerializedName("movie" ) var movie : Movie? = Movie(),
|
@JsonProperty("lang") @SerialName("lang") val lang: String,
|
||||||
//@SerializedName("donationLinks" ) var donationLinks : DonationLinks? = DonationLinks(),
|
@JsonProperty("id") @SerialName("id") val id: String,
|
||||||
//@SerializedName("isDownloaded" ) var isDownloaded : Boolean? = null,
|
|
||||||
//@SerializedName("user_rated" ) var userRated : String? = null
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class Subtitle(
|
data class SubTitleLink(
|
||||||
|
@JsonProperty("sub") @SerialName("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
|
|
||||||
|
|
||||||
|
@Serializable
|
||||||
|
data class SubToken(
|
||||||
|
@JsonProperty("downloadToken") @SerialName("downloadToken") val downloadToken: String,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ 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.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 +34,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 +89,48 @@ 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() {
|
||||||
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 =
|
||||||
?: ArrayList()
|
remoteMediaClient?.mediaInfo?.mediaTracks?.filter { it.type == MediaTrack.TYPE_TEXT }
|
||||||
|
?: 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,8 +138,10 @@ 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 }
|
|
||||||
.indexOfFirst { currentTracks.contains(it) } + 1
|
val subtitleIndex =
|
||||||
|
if (currentTracks == null) 0 else subTracks.map { it.id }
|
||||||
|
.indexOfFirst { currentTracks.contains(it) } + 1
|
||||||
|
|
||||||
subtitleList.setSelection(subtitleIndex)
|
subtitleList.setSelection(subtitleIndex)
|
||||||
subtitleList.setItemChecked(subtitleIndex, true)
|
subtitleList.setItemChecked(subtitleIndex, true)
|
||||||
|
|
@ -134,7 +153,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
|
||||||
|
|
||||||
|
|
@ -151,7 +172,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
if (!it.status.isSuccess) {
|
if (!it.status.isSuccess) {
|
||||||
Log.e(
|
Log.e(
|
||||||
"CHROMECAST", "Failed with status code:" +
|
"CHROMECAST", "Failed with status code:" +
|
||||||
it.status.statusCode + " > " + it.status.statusMessage
|
it.status.statusCode + " > " + it.status.statusMessage
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -160,15 +181,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 =
|
||||||
.toTypedArray()
|
items.map { "${it.name} ${Qualities.getStringByInt(it.quality)}" }
|
||||||
|
.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 +201,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 +214,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 +244,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 +259,8 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loadMirror(which)
|
loadMirror(which)
|
||||||
|
|
||||||
bottomSheetDialog.dismissSafe(activity)
|
bottomSheetDialog.dismissSafe(activity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -239,19 +270,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 +303,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 +314,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 +329,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 +340,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 +374,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 +397,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,46 +174,42 @@ 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()) {
|
||||||
|
val imageLoader = ImageLoader(context)
|
||||||
|
val request = ImageRequest.Builder(context)
|
||||||
|
.data(url)
|
||||||
|
.allowHardware(false)
|
||||||
|
.listener(
|
||||||
|
onSuccess = { _, _ ->
|
||||||
|
currentEditAccount = currentEditAccount.copy(customImage = url)
|
||||||
|
binding.accountImage.loadImage(url)
|
||||||
|
showToast(
|
||||||
|
R.string.edit_profile_image_success,
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
)
|
||||||
|
bottomSheetDialog.dismiss()
|
||||||
|
},
|
||||||
|
onError = { _, _ ->
|
||||||
|
showToast(
|
||||||
|
R.string.edit_profile_image_error_invalid,
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.build()
|
||||||
|
imageLoader.enqueue(request)
|
||||||
|
} else {
|
||||||
showToast(R.string.edit_profile_image_error_empty, Toast.LENGTH_SHORT)
|
showToast(R.string.edit_profile_image_error_empty, Toast.LENGTH_SHORT)
|
||||||
return@setOnClickListener
|
|
||||||
}
|
}
|
||||||
applyBtt.showProgress()
|
|
||||||
val imageLoader = ImageLoader(context)
|
|
||||||
val request = ImageRequest.Builder(context)
|
|
||||||
.data(url)
|
|
||||||
.allowHardware(false)
|
|
||||||
.listener(
|
|
||||||
onSuccess = { _, _ ->
|
|
||||||
currentEditAccount = currentEditAccount.copy(customImage = url)
|
|
||||||
binding.accountImage.loadImage(url)
|
|
||||||
showToast(
|
|
||||||
R.string.edit_profile_image_success,
|
|
||||||
Toast.LENGTH_SHORT
|
|
||||||
)
|
|
||||||
bottomSheetDialog.dismissSafe()
|
|
||||||
},
|
|
||||||
onError = { _, _ ->
|
|
||||||
showToast(
|
|
||||||
R.string.edit_profile_image_error_invalid,
|
|
||||||
Toast.LENGTH_SHORT
|
|
||||||
)
|
|
||||||
applyBtt.hideProgress()
|
|
||||||
},
|
|
||||||
onCancel = {
|
|
||||||
applyBtt.hideProgress()
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.build()
|
|
||||||
imageLoader.enqueue(request)
|
|
||||||
}
|
|
||||||
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)
|
||||||
|
|
@ -609,4 +584,4 @@ class DownloadViewModel : ViewModel() {
|
||||||
val names: List<String>,
|
val names: List<String>,
|
||||||
val parentName: String?
|
val parentName: String?
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -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,8 +79,8 @@ 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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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>(
|
||||||
|
|
@ -572,4 +568,4 @@ class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class MenuSearchView(context: Context) : SearchView(context)
|
class MenuSearchView(context: Context) : SearchView(context)
|
||||||
|
|
@ -719,7 +719,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 {
|
||||||
|
|
|
||||||
|
|
@ -307,7 +307,6 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
|
||||||
playerVideoTitleRez,
|
playerVideoTitleRez,
|
||||||
playerVideoInfo,
|
playerVideoInfo,
|
||||||
playerGoBackHolder,
|
playerGoBackHolder,
|
||||||
playerVideoClock,
|
|
||||||
).forEach {
|
).forEach {
|
||||||
it.animateY(titleMove)
|
it.animateY(titleMove)
|
||||||
}
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
@ -1203,10 +1202,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
|
||||||
|
|
@ -512,8 +507,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,58 +790,47 @@ 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()
|
ioSafe {
|
||||||
return@setOnClickListener
|
when (val apiResource =
|
||||||
}
|
Resource.fromResult(api.resource(currentSubtitle))) {
|
||||||
|
is Resource.Success -> {
|
||||||
|
val subtitles = apiResource.value.getSubtitles().map { resource ->
|
||||||
|
SubtitleData(
|
||||||
|
originalName = resource.name ?: getName(
|
||||||
|
currentSubtitle,
|
||||||
|
true
|
||||||
|
),
|
||||||
|
nameSuffix = "",
|
||||||
|
url = resource.url,
|
||||||
|
origin = resource.origin,
|
||||||
|
mimeType = resource.url.toSubtitleMimeType(),
|
||||||
|
headers = currentSubtitle.headers,
|
||||||
|
languageCode = currentSubtitle.lang
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (subtitles.isEmpty()) {
|
||||||
|
showToast(R.string.no_subtitles)
|
||||||
|
return@ioSafe
|
||||||
|
}
|
||||||
|
runOnMainThread {
|
||||||
|
addAndSelectSubtitles(*subtitles.toTypedArray())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
val api = providers.firstOrNull { it.idPrefix == currentSubtitle.idPrefix }
|
is Resource.Failure -> {
|
||||||
if (api == null) {
|
showToast(apiResource.errorString)
|
||||||
dialog.dismissSafe()
|
}
|
||||||
return@setOnClickListener
|
|
||||||
}
|
|
||||||
|
|
||||||
binding.applyBtt.showProgress()
|
is Resource.Loading -> {
|
||||||
ioSafe {
|
// not possible
|
||||||
val apiResource =
|
}
|
||||||
Resource.fromResult(api.resource(currentSubtitle))
|
|
||||||
binding.applyBtt.hideProgress()
|
|
||||||
when (apiResource) {
|
|
||||||
is Resource.Success -> {
|
|
||||||
val subtitles = apiResource.value.getSubtitles().map { resource ->
|
|
||||||
SubtitleData(
|
|
||||||
originalName = resource.name ?: getName(
|
|
||||||
currentSubtitle,
|
|
||||||
true
|
|
||||||
),
|
|
||||||
nameSuffix = "",
|
|
||||||
url = resource.url,
|
|
||||||
origin = resource.origin,
|
|
||||||
mimeType = resource.url.toSubtitleMimeType(),
|
|
||||||
headers = currentSubtitle.headers,
|
|
||||||
languageCode = currentSubtitle.lang
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
if (subtitles.isEmpty()) {
|
|
||||||
showToast(R.string.no_subtitles)
|
|
||||||
return@ioSafe
|
|
||||||
}
|
|
||||||
dialog.dismissSafe()
|
|
||||||
runOnMainThread {
|
|
||||||
addAndSelectSubtitles(*subtitles.toTypedArray())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
is Resource.Failure -> {
|
|
||||||
showToast(apiResource.errorString)
|
|
||||||
}
|
|
||||||
|
|
||||||
is Resource.Loading -> {
|
|
||||||
// not possible
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
dialog.dismissSafe()
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog.setOnDismissListener {
|
dialog.setOnDismissListener {
|
||||||
|
|
@ -1115,29 +1098,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 +1128,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 +1136,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 +1349,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 +1518,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 +1525,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,22 +1540,8 @@ 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()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1614,9 +1552,7 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
|
|
||||||
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 +1560,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()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1691,26 +1627,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,10 +1698,8 @@ 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)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2217,7 +2150,6 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
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()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2271,14 +2203,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)
|
||||||
|
|
@ -2357,23 +2281,19 @@ class GeneratorPlayer : FullScreenPlayer() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
observe(viewModel.currentLinks) { (_, instance) ->
|
observe(viewModel.currentLinks) { (links, instance) ->
|
||||||
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
if (instance != viewModel.state.instance) return@observe // Outdated observe
|
||||||
|
|
||||||
val sortedLinks = viewModel.state.sortLinks(currentQualityProfile)
|
val turnVisible = links.isNotEmpty() && viewModel.generator?.canSkipLoading == true
|
||||||
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})"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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,20 +40,12 @@ 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<Unit> = Resource.Loading(),
|
||||||
val generatorState: GeneratorState? = null,
|
val generatorState: GeneratorState? = null,
|
||||||
|
|
@ -66,52 +56,19 @@ data class VideoState(
|
||||||
*
|
*
|
||||||
* 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,12 +113,6 @@ 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>(
|
data class VideoLive<T>(
|
||||||
|
|
@ -190,8 +141,9 @@ class PlayerGeneratorViewModel : ViewModel() {
|
||||||
var state = VideoState(instance = 0)
|
var state = VideoState(instance = 0)
|
||||||
private set
|
private set
|
||||||
|
|
||||||
private val _currentLinks = MutableLiveData<VideoLive<Set<VideoLink>>>(null)
|
private val _currentLinks =
|
||||||
val currentLinks: LiveData<VideoLive<Set<VideoLink>>> = _currentLinks
|
MutableLiveData<VideoLive<Set<Pair<ExtractorLink?, ExtractorUri?>>>>(null)
|
||||||
|
val currentLinks: LiveData<VideoLive<Set<Pair<ExtractorLink?, ExtractorUri?>>>> = _currentLinks
|
||||||
|
|
||||||
private val _currentSubtitles = MutableLiveData<VideoLive<Set<SubtitleData>>>(null)
|
private val _currentSubtitles = MutableLiveData<VideoLive<Set<SubtitleData>>>(null)
|
||||||
val currentSubtitles: LiveData<VideoLive<Set<SubtitleData>>> = _currentSubtitles
|
val currentSubtitles: LiveData<VideoLive<Set<SubtitleData>>> = _currentSubtitles
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -147,4 +142,4 @@ class PlayerSubtitleHelper {
|
||||||
setSubStyle(it)
|
setSubStyle(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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> {
|
||||||
|
|
@ -258,9 +223,4 @@ object QualityDataHelper {
|
||||||
if (target == null) return Qualities.Unknown
|
if (target == null) return Qualities.Unknown
|
||||||
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,79 +28,76 @@ 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>(
|
|
||||||
).apply {
|
|
||||||
submitList(Qualities.entries.mapNotNull {
|
|
||||||
SourcePriority(
|
|
||||||
it,
|
|
||||||
Qualities.getStringByIntFull(it.value).ifBlank { return@mapNotNull null },
|
|
||||||
QualityDataHelper.getQualityPriority(profile.id, it)
|
|
||||||
)
|
|
||||||
}.sortedBy { -it.priority })
|
|
||||||
}
|
|
||||||
|
|
||||||
@Suppress("UNCHECKED_CAST") // We know the types
|
|
||||||
saveBtt.setOnClickListener {
|
|
||||||
val qualityAdapter = sortQualities.adapter as? PriorityAdapter<Qualities>
|
|
||||||
val sourcesAdapter = sortSources.adapter as? PriorityAdapter<Nothing?>
|
|
||||||
|
|
||||||
val qualities = qualityAdapter?.immutableCurrentList ?: emptyList()
|
|
||||||
val sources = sourcesAdapter?.immutableCurrentList ?: emptyList()
|
|
||||||
|
|
||||||
qualities.forEach {
|
|
||||||
QualityDataHelper.setQualityPriority(profile.id, it.data, it.priority)
|
|
||||||
}
|
|
||||||
|
|
||||||
sources.forEach {
|
|
||||||
QualityDataHelper.setSourcePriority(profile.id, it.name, it.priority)
|
|
||||||
}
|
|
||||||
|
|
||||||
qualityAdapter?.submitList(qualities.sortedBy { -it.priority })
|
|
||||||
sourcesAdapter?.submitList(sources.sortedBy { -it.priority })
|
|
||||||
|
|
||||||
val savedProfileName = profileTextEditable.text.toString()
|
|
||||||
if (savedProfileName.isBlank()) {
|
|
||||||
QualityDataHelper.setProfileName(profile.id, null)
|
|
||||||
} else {
|
|
||||||
QualityDataHelper.setProfileName(profile.id, savedProfileName)
|
|
||||||
}
|
|
||||||
updatedCallback.invoke()
|
|
||||||
}
|
|
||||||
|
|
||||||
closeBtt.setOnClickListener {
|
|
||||||
dismissSafe()
|
|
||||||
}
|
|
||||||
|
|
||||||
helpBtt.setOnClickListener {
|
|
||||||
AlertDialog.Builder(context, R.style.AlertDialogCustom).apply {
|
|
||||||
setMessage(R.string.quality_profile_help)
|
|
||||||
}.show()
|
|
||||||
}
|
|
||||||
|
|
||||||
settingsBtt.setOnClickListener {
|
|
||||||
SourceProfileSettingsDialog(ctx, themeRes, profile.id).show()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qualitiesRecyclerView.adapter = PriorityAdapter<Qualities>(
|
||||||
|
).apply {
|
||||||
|
submitList(Qualities.entries.mapNotNull {
|
||||||
|
SourcePriority(
|
||||||
|
it,
|
||||||
|
Qualities.getStringByIntFull(it.value).ifBlank { return@mapNotNull null },
|
||||||
|
QualityDataHelper.getQualityPriority(profile.id, it)
|
||||||
|
)
|
||||||
|
}.sortedBy { -it.priority })
|
||||||
|
}
|
||||||
|
|
||||||
|
@Suppress("UNCHECKED_CAST") // We know the types
|
||||||
|
saveBtt.setOnClickListener {
|
||||||
|
val qualityAdapter = qualitiesRecyclerView.adapter as? PriorityAdapter<Qualities>
|
||||||
|
val sourcesAdapter = sourcesRecyclerView.adapter as? PriorityAdapter<Nothing?>
|
||||||
|
|
||||||
|
val qualities = qualityAdapter?.immutableCurrentList ?: emptyList()
|
||||||
|
val sources = sourcesAdapter?.immutableCurrentList ?: emptyList()
|
||||||
|
|
||||||
|
qualities.forEach {
|
||||||
|
QualityDataHelper.setQualityPriority(profile.id, it.data, it.priority)
|
||||||
|
}
|
||||||
|
|
||||||
|
sources.forEach {
|
||||||
|
QualityDataHelper.setSourcePriority(profile.id, it.name, it.priority)
|
||||||
|
}
|
||||||
|
|
||||||
|
qualityAdapter?.submitList(qualities.sortedBy { -it.priority })
|
||||||
|
sourcesAdapter?.submitList(sources.sortedBy { -it.priority })
|
||||||
|
|
||||||
|
val savedProfileName = profileText.text.toString()
|
||||||
|
if (savedProfileName.isBlank()) {
|
||||||
|
QualityDataHelper.setProfileName(profile.id, null)
|
||||||
|
} else {
|
||||||
|
QualityDataHelper.setProfileName(profile.id, savedProfileName)
|
||||||
|
}
|
||||||
|
updatedCallback.invoke()
|
||||||
|
}
|
||||||
|
|
||||||
|
exitBtt.setOnClickListener {
|
||||||
|
this.dismissSafe()
|
||||||
|
}
|
||||||
|
|
||||||
|
helpBtt.setOnClickListener {
|
||||||
|
AlertDialog.Builder(context, R.style.AlertDialogCustom).apply {
|
||||||
|
setMessage(R.string.quality_profile_help)
|
||||||
|
}.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 -> {
|
||||||
|
|
@ -158,4 +137,4 @@ class ActorAdaptor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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", "")
|
||||||
|
|
@ -262,4 +262,4 @@ class SettingsFragment : BaseFragment<MainSettingsBinding>(
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -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,8 @@ 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.SerialName
|
||||||
import kotlinx.serialization.Serializable
|
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 +74,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 +94,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 +103,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"),
|
||||||
|
|
@ -153,12 +147,9 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
|
||||||
setToolBarScrollFlags()
|
setToolBarScrollFlags()
|
||||||
}
|
}
|
||||||
|
|
||||||
@OptIn(ExperimentalSerializationApi::class) // JsonNames is an experimental annotation for now
|
|
||||||
@Serializable
|
@Serializable
|
||||||
data class CustomSite(
|
data class CustomSite(
|
||||||
@JsonProperty("parentClassName") @JsonAlias("parentJavaClass")
|
@JsonProperty("parentJavaClass") @SerialName("parentJavaClass") val parentJavaClass: String, // javaClass.simpleName
|
||||||
@SerialName("parentClassName") @JsonNames("parentJavaClass")
|
|
||||||
val parentClassName: String, // ::class.simpleName
|
|
||||||
@JsonProperty("name") @SerialName("name") val name: String,
|
@JsonProperty("name") @SerialName("name") val name: String,
|
||||||
@JsonProperty("url") @SerialName("url") val url: String,
|
@JsonProperty("url") @SerialName("url") val url: String,
|
||||||
@JsonProperty("lang") @SerialName("lang") val lang: String,
|
@JsonProperty("lang") @SerialName("lang") val lang: String,
|
||||||
|
|
@ -251,14 +242,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 +352,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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,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>(
|
||||||
|
|
@ -116,7 +114,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
|
||||||
|
|
@ -154,7 +156,7 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
binding.repoRecyclerView.isVisible = repos.isNotEmpty()
|
binding.repoRecyclerView.isVisible = repos.isNotEmpty()
|
||||||
binding.blankRepoScreen.isVisible = repos.isEmpty()
|
binding.blankRepoScreen.isVisible = repos.isEmpty()
|
||||||
(binding.repoRecyclerView.adapter as? RepoAdapter)?.submitList(repos.toList())
|
(binding.repoRecyclerView.adapter as? RepoAdapter)?.submitList(repos.toList())
|
||||||
pluginViewModel.updatePluginList(binding.root.context, repos.toList())
|
pluginViewModel.updatePluginList(binding.root.context, repos.map { it.url })
|
||||||
}
|
}
|
||||||
|
|
||||||
observeNullable(extensionViewModel.pluginStats) { value ->
|
observeNullable(extensionViewModel.pluginStats) { value ->
|
||||||
|
|
@ -183,8 +185,10 @@ 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
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
@ -197,8 +201,9 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
)
|
)
|
||||||
setRecycledViewPool(PluginAdapter.sharedPool)
|
setRecycledViewPool(PluginAdapter.sharedPool)
|
||||||
adapter =
|
adapter =
|
||||||
PluginAdapter(true) {
|
PluginAdapter {
|
||||||
val urls = extensionViewModel.repositories.value?.toList() ?: emptyList()
|
val urls = extensionViewModel.repositories.value?.map { repo -> repo.url }
|
||||||
|
?: emptyList()
|
||||||
pluginViewModel.handlePluginAction(activity, urls, it, false)
|
pluginViewModel.handlePluginAction(activity, urls, it, false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -280,18 +285,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
|
||||||
|
|
@ -307,28 +307,24 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
|
||||||
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(
|
||||||
|
fixedName,
|
||||||
|
url,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
this@ExtensionsFragment.activity?.addRepositoryDialog(
|
|
||||||
newRepo
|
|
||||||
)
|
|
||||||
} 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
|
||||||
|
|
|
||||||
|
|
@ -55,16 +55,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()) {
|
||||||
|
|
|
||||||
|
|
@ -23,13 +23,12 @@ 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>(
|
||||||
|
|
@ -62,25 +61,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 -> {
|
||||||
|
|
@ -161,7 +159,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, listOf(url), it, isLocal)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -185,7 +183,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, listOf(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 +204,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,8 +17,8 @@ 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
|
||||||
|
|
@ -26,6 +26,8 @@ import com.lagradost.cloudstream3.utils.Coroutines.runOnMainThread
|
||||||
import com.lagradost.cloudstream3.utils.Levenshtein
|
import com.lagradost.cloudstream3.utils.Levenshtein
|
||||||
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, listOf(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>,
|
repositoryUrls: List<String>,
|
||||||
pluginWrapper: PluginWrapper,
|
plugin: Plugin,
|
||||||
isLocal: Boolean
|
isLocal: Boolean
|
||||||
) = ioSafe {
|
) = ioSafe {
|
||||||
Log.i(TAG, "handlePluginAction = ${repositoryUrls}, $pluginWrapper, $isLocal")
|
Log.i(TAG, "handlePluginAction = ${repositoryUrls}, $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
|
||||||
}
|
}
|
||||||
|
|
@ -200,20 +201,20 @@ class PluginsViewModel : ViewModel() {
|
||||||
updatePluginListPrivate(activity, repositoryUrls)
|
updatePluginListPrivate(activity, repositoryUrls)
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun updatePluginListPrivate(context: Context, repositories: List<RepositoryData>) {
|
private suspend fun updatePluginListPrivate(context: Context, repositoryUrls: List<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 = repositoryUrls.flatMap { repositoryUrl ->
|
||||||
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 +227,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,26 +236,26 @@ 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.isNullOrBlank()) {
|
||||||
// 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.mapNotNull {
|
||||||
// Try matching name
|
// Try matching name
|
||||||
val score = Levenshtein.partialRatio(
|
val score = Levenshtein.partialRatio(
|
||||||
it.pluginWrapper.plugin.name.lowercase(),
|
it.plugin.second.name.lowercase(),
|
||||||
query.lowercase()
|
query.lowercase()
|
||||||
).takeIf { score -> score > 80 } ?:
|
).takeIf { score -> score > 80 } ?:
|
||||||
// Fallback to description, but limit characters to reduce lag
|
// Fallback to description, but limit characters to reduce lag
|
||||||
it.pluginWrapper.plugin.description?.lowercase()?.take(64)
|
it.plugin.second.description?.lowercase()?.take(64)
|
||||||
?.let { description ->
|
?.let { description ->
|
||||||
Levenshtein.partialRatio(
|
Levenshtein.partialRatio(
|
||||||
description,
|
description,
|
||||||
|
|
@ -281,11 +282,11 @@ class PluginsViewModel : ViewModel() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun updatePluginList(context: Context?, repositories: List<RepositoryData>) =
|
fun updatePluginList(context: Context?, repositoryUrls: List<String>) =
|
||||||
viewModelScope.launchSafe {
|
viewModelScope.launchSafe {
|
||||||
if (context == null) return@launchSafe
|
if (context == null) return@launchSafe
|
||||||
Log.i(TAG, "updatePluginList = $repositories")
|
Log.i(TAG, "updatePluginList = $repositoryUrls")
|
||||||
updatePluginListPrivate(context, repositories)
|
updatePluginListPrivate(context, repositoryUrls)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun search(query: String?) {
|
fun search(query: String?) {
|
||||||
|
|
@ -304,7 +305,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
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,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()
|
||||||
|
|
|
||||||
|
|
@ -115,9 +115,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 +261,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 +293,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,15 @@ 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 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(apis.filter { hasUniversal || activeLangs.contains(it.lang) }.map { it.name })
|
||||||
.map { it.name })
|
|
||||||
return hashSet
|
return hashSet
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -468,8 +463,7 @@ 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 = 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 +517,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(
|
||||||
repo.iconUrl ?: "",
|
RepositoryData(
|
||||||
repo.name,
|
repo.iconUrl ?: "",
|
||||||
url
|
repo.name,
|
||||||
|
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 +531,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 +547,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 +557,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 +630,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 +684,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 +707,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 +717,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 +843,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)
|
||||||
|
|
@ -900,4 +896,4 @@ object AppContextUtils {
|
||||||
} else null
|
} else null
|
||||||
return currentAudioFocusRequest
|
return currentAudioFocusRequest
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -181,11 +181,11 @@ object DataStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun <T : Any> Context.getKey(path: String, valueType: Class<T>): T? {
|
fun <T : Any> 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 parseJson(json, valueType.kotlin)
|
||||||
} catch (_: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
return null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -193,37 +193,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 parseJson(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated(
|
|
||||||
message = "Use parseJson<T>(this) directly instead.",
|
|
||||||
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 {
|
fun <T : Any> String.toKotlinObject(valueType: Class<T>): T {
|
||||||
return parseJson(this, valueType.kotlin)
|
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)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ object SyncUtil {
|
||||||
// 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 = tryParseJson<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
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,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
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
@ -163,4 +161,4 @@ object TvChannelUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -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(
|
||||||
|
|
|
||||||
|
|
@ -1640,11 +1640,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(
|
data class DownloadEpisodeCached(
|
||||||
@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("episode") @SerialName("episode") val episode: Int,
|
@JsonProperty("episode") val episode: Int,
|
||||||
@JsonProperty("season") @SerialName("season") val season: Int?,
|
@JsonProperty("season") val season: Int?,
|
||||||
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
|
@JsonProperty("parentId") val parentId: Int,
|
||||||
@JsonProperty("score") @SerialName("score") var score: Score? = null,
|
@JsonProperty("score") var score: Score? = null,
|
||||||
@JsonProperty("description") @SerialName("description") val description: String?,
|
@JsonProperty("description") val description: 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) {
|
||||||
object Serializer : WriteOnlySerializer<DownloadEpisodeCached>(
|
|
||||||
DownloadEpisodeCached.generatedSerializer(),
|
|
||||||
setOf("rating"),
|
|
||||||
)
|
|
||||||
|
|
||||||
@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,
|
||||||
|
|
@ -248,4 +221,4 @@ object DownloadObjects {
|
||||||
return Objects.hash(startByte, endByte)
|
return Objects.hash(startByte, endByte)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
package com.lagradost.cloudstream3.utils.serializers
|
package com.lagradost.cloudstream3.utils.serializers
|
||||||
|
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import com.lagradost.cloudstream3.InternalAPI
|
|
||||||
import kotlinx.serialization.KSerializer
|
import kotlinx.serialization.KSerializer
|
||||||
import kotlinx.serialization.descriptors.PrimitiveKind
|
import kotlinx.serialization.descriptors.PrimitiveKind
|
||||||
import kotlinx.serialization.descriptors.PrimitiveSerialDescriptor
|
import kotlinx.serialization.descriptors.PrimitiveSerialDescriptor
|
||||||
|
|
@ -27,7 +26,6 @@ import kotlinx.serialization.encoding.Encoder
|
||||||
* val uri: Uri,
|
* val uri: Uri,
|
||||||
* )
|
* )
|
||||||
*/
|
*/
|
||||||
@InternalAPI
|
|
||||||
object UriSerializer : KSerializer<Uri> {
|
object UriSerializer : KSerializer<Uri> {
|
||||||
override val descriptor: SerialDescriptor =
|
override val descriptor: SerialDescriptor =
|
||||||
PrimitiveSerialDescriptor("Uri", PrimitiveKind.STRING)
|
PrimitiveSerialDescriptor("Uri", PrimitiveKind.STRING)
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="960"
|
|
||||||
android:viewportHeight="960">
|
|
||||||
<path
|
|
||||||
android:pathData="m612,668 l56,-56 -148,-148v-184h-80v216l172,172ZM480,880q-83,0 -156,-31.5T197,763q-54,-54 -85.5,-127T80,480q0,-83 31.5,-156T197,197q54,-54 127,-85.5T480,80q83,0 156,31.5T763,197q54,54 85.5,127T880,480q0,83 -31.5,156T763,763q-54,54 -127,85.5T480,880ZM480,480ZM480,800q133,0 226.5,-93.5T800,480q0,-133 -93.5,-226.5T480,160q-133,0 -226.5,93.5T160,480q0,133 93.5,226.5T480,800Z"
|
|
||||||
android:fillColor="#e3e3e3"/>
|
|
||||||
</vector>
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
@ -13,13 +14,13 @@
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:paddingBottom="8dp">
|
android:paddingBottom="8dp">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/subtitles_click_settings"
|
android:id="@+id/subtitles_click_settings"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
||||||
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
|
||||||
|
|
||||||
|
|
@ -32,21 +33,14 @@
|
||||||
android:textSize="20sp"
|
android:textSize="20sp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/settings_btt"
|
|
||||||
style="@style/WhiteButton"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical|end"
|
|
||||||
android:text="@string/title_settings" />
|
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/help_btt"
|
android:id="@+id/help_btt"
|
||||||
android:layout_width="44dp"
|
android:layout_width="44dp"
|
||||||
android:layout_height="44dp"
|
android:layout_height="44dp"
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
||||||
android:contentDescription="@string/help"
|
|
||||||
android:padding="10dp"
|
android:padding="10dp"
|
||||||
android:src="@drawable/baseline_help_outline_24" />
|
android:src="@drawable/baseline_help_outline_24"
|
||||||
|
android:contentDescription="@string/help" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
|
@ -68,7 +62,7 @@
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:paddingBottom="8dp">
|
android:paddingBottom="8dp">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
@ -99,8 +93,8 @@
|
||||||
android:id="@+id/apply_btt_holder"
|
android:id="@+id/apply_btt_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="60dp"
|
android:layout_height="60dp"
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
android:paddingHorizontal="?android:attr/listPreferredItemPaddingStart">
|
android:paddingHorizontal="?android:attr/listPreferredItemPaddingStart">
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
|
|
@ -114,19 +108,19 @@
|
||||||
android:textColor="?attr/textColor"
|
android:textColor="?attr/textColor"
|
||||||
android:textSize="20sp"
|
android:textSize="20sp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:ignore="LabelFor"
|
tools:text="@string/profile_number"
|
||||||
tools:text="@string/profile_number" />
|
tools:ignore="LabelFor" />
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
android:id="@+id/save_btt"
|
android:id="@+id/save_btt"
|
||||||
style="@style/WhiteButton"
|
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:text="@string/sort_save" />
|
android:text="@string/sort_save"
|
||||||
|
style="@style/WhiteButton" />
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
android:id="@+id/close_btt"
|
android:id="@+id/close_btt"
|
||||||
style="@style/BlackButton"
|
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:text="@string/sort_close" />
|
android:text="@string/sort_close"
|
||||||
|
style="@style/BlackButton" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,6 @@
|
||||||
</androidx.cardview.widget.CardView>
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
<androidx.cardview.widget.CardView
|
<androidx.cardview.widget.CardView
|
||||||
android:id="@+id/voice_actor_image_holder2"
|
|
||||||
android:layout_width="70dp"
|
android:layout_width="70dp"
|
||||||
android:layout_height="70dp"
|
android:layout_height="70dp"
|
||||||
android:foreground="@drawable/outline_drawable"
|
android:foreground="@drawable/outline_drawable"
|
||||||
|
|
|
||||||
|
|
@ -261,7 +261,7 @@
|
||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
|
|
||||||
android:src="@drawable/ic_network_stream"
|
android:src="@drawable/ic_network_stream"
|
||||||
app:tint="?attr/textColor" />
|
app:tint="?attr/textColor"></ImageView>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</com.google.android.material.appbar.AppBarLayout>
|
</com.google.android.material.appbar.AppBarLayout>
|
||||||
|
|
@ -306,7 +306,7 @@
|
||||||
android:paddingBottom="100dp"
|
android:paddingBottom="100dp"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:descendantFocusability="afterDescendants"
|
android:descendantFocusability="afterDescendants"
|
||||||
android:nextFocusUp="@id/download_stream_button_tv"
|
android:nextFocusUp="@id/download_appbar"
|
||||||
android:nextFocusLeft="@id/navigation_downloads"
|
android:nextFocusLeft="@id/navigation_downloads"
|
||||||
android:nextFocusDown="@id/download_queue_button"
|
android:nextFocusDown="@id/download_queue_button"
|
||||||
android:tag="@string/tv_no_focus_tag"
|
android:tag="@string/tv_no_focus_tag"
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?attr/primaryBlackBackground"
|
android:background="?attr/primaryBlackBackground"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:layout_marginBottom="80dp"
|
|
||||||
android:nextFocusLeft="@id/nav_rail_view"
|
android:nextFocusLeft="@id/nav_rail_view"
|
||||||
android:nextFocusUp="@id/tvtypes_chips"
|
android:nextFocusUp="@id/tvtypes_chips"
|
||||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||||
|
|
@ -241,8 +241,6 @@
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:nextFocusLeft="@id/plugin_storage_appbar"
|
android:nextFocusLeft="@id/plugin_storage_appbar"
|
||||||
android:nextFocusUp="@id/repo_recycler_view"
|
android:nextFocusUp="@id/repo_recycler_view"
|
||||||
android:nextFocusRight="@id/add_repo_button_imageview"
|
|
||||||
android:nextFocusDown="@id/add_repo_button_imageview"
|
|
||||||
|
|
||||||
android:src="@drawable/ic_baseline_add_24"
|
android:src="@drawable/ic_baseline_add_24"
|
||||||
app:tint="?attr/textColor" />
|
app:tint="?attr/textColor" />
|
||||||
|
|
|
||||||
|
|
@ -227,12 +227,6 @@
|
||||||
tools:listitem="@layout/homepage_parent"
|
tools:listitem="@layout/homepage_parent"
|
||||||
tools:visibility="gone" />
|
tools:visibility="gone" />
|
||||||
|
|
||||||
<TextClock
|
|
||||||
android:id="@+id/home_clock"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:visibility="gone" />
|
|
||||||
|
|
||||||
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||||
android:id="@+id/home_api_fab"
|
android:id="@+id/home_api_fab"
|
||||||
style="@style/ExtendedFloatingActionButton"
|
style="@style/ExtendedFloatingActionButton"
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,6 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</com.facebook.shimmer.ShimmerFrameLayout>
|
</com.facebook.shimmer.ShimmerFrameLayout>
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
|
@ -164,22 +163,6 @@
|
||||||
tools:listitem="@layout/homepage_parent_tv"
|
tools:listitem="@layout/homepage_parent_tv"
|
||||||
tools:visibility="gone" />
|
tools:visibility="gone" />
|
||||||
|
|
||||||
<TextClock
|
|
||||||
android:id="@+id/home_clock"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:maxWidth="600dp"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
android:textSize="20sp"
|
|
||||||
android:visibility="visible"
|
|
||||||
android:format12Hour="hh:mm a"
|
|
||||||
android:format24Hour="HH:mm"
|
|
||||||
android:fontFamily="@font/google_sans"
|
|
||||||
android:textStyle="bold"
|
|
||||||
android:gravity="start"
|
|
||||||
android:layout_gravity="start"
|
|
||||||
android:layout_margin="10dp" />
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/home_api_holder"
|
android:id="@+id/home_api_holder"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
|
|
||||||
|
|
@ -264,15 +264,6 @@
|
||||||
tools:visibility="visible"
|
tools:visibility="visible"
|
||||||
android:layout_gravity="center"/>
|
android:layout_gravity="center"/>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<TextClock
|
|
||||||
android:id="@+id/player_video_clock"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="end"
|
|
||||||
android:gravity="end"
|
|
||||||
android:visibility="gone"
|
|
||||||
android:textStyle="bold" />
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<!-- Removed as it has no use anymore-->
|
<!-- Removed as it has no use anymore-->
|
||||||
|
|
@ -1085,8 +1076,6 @@
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/subtitle_holder"
|
android:id="@+id/subtitle_holder"
|
||||||
android:clipChildren="false"
|
|
||||||
android:clipToPadding="false"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -352,22 +352,6 @@
|
||||||
android:layout_marginEnd="32dp"
|
android:layout_marginEnd="32dp"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextClock
|
|
||||||
android:id="@+id/player_video_clock"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="end"
|
|
||||||
android:gravity="end"
|
|
||||||
android:maxWidth="600dp"
|
|
||||||
android:textAlignment="viewEnd"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
android:textSize="16sp"
|
|
||||||
android:visibility="visible"
|
|
||||||
android:format12Hour="hh:mm a"
|
|
||||||
android:format24Hour="HH:mm"
|
|
||||||
android:fontFamily="@font/google_sans"
|
|
||||||
android:textStyle="bold" />
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/player_video_title_holder"
|
android:id="@+id/player_video_title_holder"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
|
@ -1132,8 +1116,6 @@
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/subtitle_holder"
|
android:id="@+id/subtitle_holder"
|
||||||
android:clipChildren="false"
|
|
||||||
android:clipToPadding="false"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,13 +160,6 @@
|
||||||
<!-- android:layout_gravity="center"-->
|
<!-- android:layout_gravity="center"-->
|
||||||
<!-- android:src="@drawable/outline_edit_24" />-->
|
<!-- android:src="@drawable/outline_edit_24" />-->
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/settings_btt"
|
|
||||||
style="@style/WhiteButton"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical|end"
|
|
||||||
android:text="@string/title_settings" />
|
|
||||||
|
|
||||||
<Space
|
<Space
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
|
||||||
|
|
@ -80,8 +80,8 @@
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:layout_marginEnd="5dp"
|
android:layout_marginEnd="5dp"
|
||||||
android:textColor="?attr/grayTextColor"
|
android:textColor="?attr/grayTextColor"
|
||||||
android:visibility="gone"
|
|
||||||
tools:text="Votes: 10K"
|
tools:text="Votes: 10K"
|
||||||
|
android:visibility="gone"
|
||||||
tools:visibility="visible" />
|
tools:visibility="visible" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
@ -103,14 +103,6 @@
|
||||||
android:textColor="?attr/grayTextColor"
|
android:textColor="?attr/grayTextColor"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="https://github.com/..." />
|
tools:text="https://github.com/..." />
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:layout_marginTop="5dp"
|
|
||||||
tools:visibility="visible"
|
|
||||||
android:visibility="gone"
|
|
||||||
android:id="@+id/repository_name_text"
|
|
||||||
style="@style/SmallBlackButton"
|
|
||||||
tools:text="Repository name" />
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
|
|
|
||||||
|
|
@ -106,13 +106,6 @@
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="https://github.com/..." />
|
tools:text="https://github.com/..." />
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:layout_marginTop="5dp"
|
|
||||||
tools:visibility="visible"
|
|
||||||
android:visibility="gone"
|
|
||||||
android:id="@+id/repository_name_text"
|
|
||||||
style="@style/SmallBlackButton"
|
|
||||||
tools:text="Repository name" />
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
|
|
@ -141,7 +134,6 @@
|
||||||
android:contentDescription="@string/download"
|
android:contentDescription="@string/download"
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:nextFocusLeft="@id/action_settings"
|
android:nextFocusLeft="@id/action_settings"
|
||||||
android:nextFocusRight="@id/add_repo_button_imageview"
|
|
||||||
android:padding="12dp"
|
android:padding="12dp"
|
||||||
tools:src="@drawable/ic_baseline_add_24" />
|
tools:src="@drawable/ic_baseline_add_24" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,31 +10,13 @@
|
||||||
style="@style/CheckLabel"
|
style="@style/CheckLabel"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
tools:text="hello" />
|
tools:text="hello" />
|
||||||
<LinearLayout
|
<ImageView
|
||||||
android:layout_width="wrap_content"
|
android:id="@+id/pinicon"
|
||||||
android:layout_height="wrap_content"
|
android:layout_width="50dp"
|
||||||
|
android:layout_height="24dp"
|
||||||
android:layout_gravity="end|center_vertical"
|
android:layout_gravity="end|center_vertical"
|
||||||
android:orientation="horizontal">
|
android:src="@drawable/pin_ic"
|
||||||
|
android:visibility="gone"
|
||||||
<ImageView
|
tools:visibility="visible"
|
||||||
android:id="@+id/action_settings"
|
tools:ignore="RtlHardcoded" />
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:padding="8dp"
|
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
|
||||||
android:src="@drawable/ic_baseline_tune_24"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible"
|
|
||||||
android:contentDescription="@string/title_settings" />
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:id="@+id/pinicon"
|
|
||||||
android:layout_width="50dp"
|
|
||||||
android:layout_height="24dp"
|
|
||||||
android:layout_gravity="center_vertical"
|
|
||||||
android:src="@drawable/pin_ic"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible"
|
|
||||||
tools:ignore="RtlHardcoded" />
|
|
||||||
</LinearLayout>
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
@ -1,99 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:id="@+id/profile_settings_root"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:background="?attr/primaryBlackBackground"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<!-- <ScrollView-->
|
|
||||||
<!-- android:layout_width="match_parent"-->
|
|
||||||
<!-- android:layout_height="match_parent">-->
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_rowWeight="1"
|
|
||||||
android:layout_marginTop="20dp"
|
|
||||||
android:layout_marginBottom="10dp"
|
|
||||||
android:paddingStart="20dp"
|
|
||||||
android:paddingEnd="20dp"
|
|
||||||
android:text="@string/profile_settings"
|
|
||||||
android:textColor="?attr/textColor"
|
|
||||||
android:textSize="20sp"
|
|
||||||
android:textStyle="bold" />
|
|
||||||
|
|
||||||
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
||||||
android:id="@+id/profile_hide_negative_sources"
|
|
||||||
style="@style/SettingsItem"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:fontFamily="@font/google_sans"
|
|
||||||
android:nextFocusLeft="@id/apply_btt"
|
|
||||||
android:nextFocusRight="@id/cancel_btt"
|
|
||||||
android:nextFocusDown="@id/profile_hide_error_sources"
|
|
||||||
android:text="@string/profile_hide_negative_sources"
|
|
||||||
app:drawableEndCompat="@null"
|
|
||||||
app:trackTint="@color/toggle_selector" />
|
|
||||||
|
|
||||||
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
||||||
android:id="@+id/profile_hide_error_sources"
|
|
||||||
style="@style/SettingsItem"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:fontFamily="@font/google_sans"
|
|
||||||
android:nextFocusLeft="@id/apply_btt"
|
|
||||||
android:nextFocusRight="@id/cancel_btt"
|
|
||||||
android:nextFocusUp="@id/profile_hide_negative_sources"
|
|
||||||
android:nextFocusDown="@id/apply_btt"
|
|
||||||
android:text="@string/profile_hide_error_sources"
|
|
||||||
app:drawableEndCompat="@null"
|
|
||||||
app:trackTint="@color/toggle_selector" />
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="60dp"
|
|
||||||
android:layout_gravity="bottom"
|
|
||||||
android:gravity="bottom|end"
|
|
||||||
android:orientation="horizontal"
|
|
||||||
tools:ignore="UselessParent">
|
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/apply_btt"
|
|
||||||
style="@style/WhiteButton"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical|end"
|
|
||||||
android:nextFocusRight="@id/cancel_btt"
|
|
||||||
android:nextFocusUp="@id/subtitles_italic"
|
|
||||||
android:text="@string/sort_apply"
|
|
||||||
android:visibility="visible">
|
|
||||||
|
|
||||||
<requestFocus />
|
|
||||||
</com.google.android.material.button.MaterialButton>
|
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/cancel_btt"
|
|
||||||
style="@style/BlackButton"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_gravity="center_vertical|end"
|
|
||||||
android:nextFocusLeft="@id/apply_btt"
|
|
||||||
android:nextFocusUp="@id/subtitles_remove_captions"
|
|
||||||
android:text="@string/sort_cancel" />
|
|
||||||
</LinearLayout>
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
<!-- </ScrollView>-->
|
|
||||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
||||||
|
|
@ -102,8 +102,6 @@
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/subtitle_holder"
|
android:id="@+id/subtitle_holder"
|
||||||
android:clipChildren="false"
|
|
||||||
android:clipToPadding="false"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
@ -171,12 +169,6 @@
|
||||||
android:layout_marginEnd="32dp"
|
android:layout_marginEnd="32dp"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<TextClock
|
|
||||||
android:id="@+id/player_video_clock"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:visibility="gone"/>
|
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/player_video_title_holder"
|
android:id="@+id/player_video_title_holder"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
|
||||||
|
|
@ -756,9 +756,4 @@
|
||||||
<string name="video_singular">مقطع</string>
|
<string name="video_singular">مقطع</string>
|
||||||
<string name="skip_type_preview">استعراض</string>
|
<string name="skip_type_preview">استعراض</string>
|
||||||
<string name="player_is_live">البث قائم</string>
|
<string name="player_is_live">البث قائم</string>
|
||||||
<string name="tv_layout_clock_settings">أظهر ساعة الوقت الحقيقي</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">أظهر شاشة الوقت الحقيقي في قمة الشاشة. ينطبق على الصفحة الرئيسية و المشغل</string>
|
|
||||||
<string name="profile_settings">اعدادات الملف الشخصي</string>
|
|
||||||
<string name="profile_hide_negative_sources">أخفي المصادر صاحبة الأولوية السلبية</string>
|
|
||||||
<string name="profile_hide_error_sources">أخفي المصادر التي تحتوي أخطاء</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<string name="result_poster_img_des">পোস্টার</string>
|
<string name="result_poster_img_des">পোস্টার</string>
|
||||||
<string name="play_with_app_name">ক্লাউডস্ট্রিম দিয়ে চালান</string>
|
<string name="play_with_app_name">ক্লাউডস্ট্রিম দিয়ে চালান</string>
|
||||||
<string name="title_home">হোম</string>
|
<string name="title_home">হোম</string>
|
||||||
<string name="cast_format" formatted="true">অভিনয়ে: %s</string>
|
<string name="cast_format" formatted="true">অভিনয়েঃ %s</string>
|
||||||
<string name="next_episode_time_day_format" formatted="true">%1$dদিন %2$dঘন্টা %3$dমিনিট</string>
|
<string name="next_episode_time_day_format" formatted="true">%1$dদিন %2$dঘন্টা %3$dমিনিট</string>
|
||||||
<string name="next_episode_time_hour_format" formatted="true">%1$dঘন্টা %2$dমিনিট</string>
|
<string name="next_episode_time_hour_format" formatted="true">%1$dঘন্টা %2$dমিনিট</string>
|
||||||
<string name="next_episode_time_min_format" formatted="true">%d মিনিট</string>
|
<string name="next_episode_time_min_format" formatted="true">%d মিনিট</string>
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<string name="title_search">খুঁজুন</string>
|
<string name="title_search">খুঁজুন</string>
|
||||||
<string name="title_downloads">ডাউনলোডসমূহ</string>
|
<string name="title_downloads">ডাউনলোডসমূহ</string>
|
||||||
<string name="title_settings">সেটিংস</string>
|
<string name="title_settings">সেটিংস</string>
|
||||||
<string name="app_dub_sub_episode_text_format" formatted="true">%1$s পর্ব %2$d</string>
|
<string name="app_dub_sub_episode_text_format" formatted="true">%1$s এপি %2$d</string>
|
||||||
<string name="next_episode_format" formatted="true">পর্ব %d মুক্তির তারিখ</string>
|
<string name="next_episode_format" formatted="true">পর্ব %d মুক্তির তারিখ</string>
|
||||||
<string name="result_share">শেয়ার</string>
|
<string name="result_share">শেয়ার</string>
|
||||||
<string name="result_open_in_browser">ব্রাউজারে খুলুন</string>
|
<string name="result_open_in_browser">ব্রাউজারে খুলুন</string>
|
||||||
|
|
@ -131,8 +131,8 @@
|
||||||
<string name="backup_failed">স্টোরেজ এর অনুমতি অনুপস্থিত। দয়া করে আবার চেষ্টা করুন।</string>
|
<string name="backup_failed">স্টোরেজ এর অনুমতি অনুপস্থিত। দয়া করে আবার চেষ্টা করুন।</string>
|
||||||
<string name="settings_info">তথ্য</string>
|
<string name="settings_info">তথ্য</string>
|
||||||
<string name="show_trailers_settings">ট্রেইলার প্রদর্শন করুন</string>
|
<string name="show_trailers_settings">ট্রেইলার প্রদর্শন করুন</string>
|
||||||
<string name="kitsu_settings">Kitsu থেকে পোস্টারসমূহ প্রদর্শন করুন</string>
|
<string name="kitsu_settings">কিটসু হতে পোস্টারসমূহ প্রদর্শন করুন</string>
|
||||||
<string name="automatic_plugin_updates">স্বয়ংক্রিয় প্লাগইন আপডেট</string>
|
<string name="automatic_plugin_updates">স্বয়ংক্রিয়ভাবে প্লাগিন এর হালনাগাদ</string>
|
||||||
<string name="automatic_plugin_download">স্বয়ংক্রিয়ভাবে প্লাগিনসমুহের ডাউনলোড</string>
|
<string name="automatic_plugin_download">স্বয়ংক্রিয়ভাবে প্লাগিনসমুহের ডাউনলোড</string>
|
||||||
<string name="category_updates">হালনাগাদ ও ব্যাকআপ</string>
|
<string name="category_updates">হালনাগাদ ও ব্যাকআপ</string>
|
||||||
<string name="updates_settings">অ্যাপ এর হালনাগাদ দেখান</string>
|
<string name="updates_settings">অ্যাপ এর হালনাগাদ দেখান</string>
|
||||||
|
|
@ -148,9 +148,9 @@
|
||||||
<string name="double_tap_to_seek_settings_des">সামনে বা পিছনের দিকে যেতে ডান বা বাম দিকে দুবার আলতো চাপুন</string>
|
<string name="double_tap_to_seek_settings_des">সামনে বা পিছনের দিকে যেতে ডান বা বাম দিকে দুবার আলতো চাপুন</string>
|
||||||
<string name="delete_file">ফাইল ডিলিট</string>
|
<string name="delete_file">ফাইল ডিলিট</string>
|
||||||
<string name="subs_default_reset_toast">মান ডিফল্ট এ রিসেট করুন</string>
|
<string name="subs_default_reset_toast">মান ডিফল্ট এ রিসেট করুন</string>
|
||||||
<string name="updates_settings_des">স্টার্টআপে নতুন আপডেটের জন্য স্বয়ংক্রিয়ভাবে অনুসন্ধান করুন যোগ।</string>
|
<string name="updates_settings_des">স্টার্টআপে নতুন আপডেটের জন্য স্বয়ংক্রিয়ভাবে অনুসন্ধান করুন</string>
|
||||||
<string name="movies_singular">সিনেমা</string>
|
<string name="movies_singular">সিনেমা</string>
|
||||||
<string name="show_fillers_settings">অ্যানিমে ফিলার পর্ব প্রদর্শন</string>
|
<string name="show_fillers_settings">এনিমে এর ফিলার পর্ব দেখায়</string>
|
||||||
<string name="tv_series">টিভি সিরিজ</string>
|
<string name="tv_series">টিভি সিরিজ</string>
|
||||||
<string name="no_links_found_toast">লিংক পাওয়া যায়নি</string>
|
<string name="no_links_found_toast">লিংক পাওয়া যায়নি</string>
|
||||||
<string name="benene_des">চা খাওয়ানো হয়েছে</string>
|
<string name="benene_des">চা খাওয়ানো হয়েছে</string>
|
||||||
|
|
@ -174,7 +174,7 @@
|
||||||
<string name="delete">ডিলিট</string>
|
<string name="delete">ডিলিট</string>
|
||||||
<string name="start">শুরু</string>
|
<string name="start">শুরু</string>
|
||||||
<string name="cartoons">কার্টুন</string>
|
<string name="cartoons">কার্টুন</string>
|
||||||
<string name="apk_installer_settings_des">Some devices do not support the new package installer. Try the legacy option if updates do not install।</string>
|
<string name="apk_installer_settings_des">কিছু ফোন নতুন প্যাকেজ ইনস্টলার সাপোর্ট করে না। যদি আপডেটগুলি ইনস্টল না হয় তবে পুরোনো পদ্ধতি ব্যবহার করে দেখুন।</string>
|
||||||
<string name="no_subtitles">সাবটাইটেল নেই</string>
|
<string name="no_subtitles">সাবটাইটেল নেই</string>
|
||||||
<string name="no_chromecast_support_toast">এই প্রোভাইডার ক্রোমকাস্ট সাপোর্ট করে না</string>
|
<string name="no_chromecast_support_toast">এই প্রোভাইডার ক্রোমকাস্ট সাপোর্ট করে না</string>
|
||||||
<string name="advanced_search">উন্নত অনুসন্ধান</string>
|
<string name="advanced_search">উন্নত অনুসন্ধান</string>
|
||||||
|
|
@ -204,7 +204,7 @@
|
||||||
<string name="anim">আমাদের তৈরি Anime দেখার অ্যাপ্লিকেশন</string>
|
<string name="anim">আমাদের তৈরি Anime দেখার অ্যাপ্লিকেশন</string>
|
||||||
<string name="nsfw">18+</string>
|
<string name="nsfw">18+</string>
|
||||||
<string name="anime">এনিমে</string>
|
<string name="anime">এনিমে</string>
|
||||||
<string name="pref_filter_search_quality">অনুসন্ধানের ফলে নির্বাচিত ভিডিওর মান লুকান</string>
|
<string name="pref_filter_search_quality">অনুসন্ধান ফলাফলে নির্বাচিত ভিডিও কুয়ালিটি লুকান</string>
|
||||||
<string name="app_storage">অ্যাপ</string>
|
<string name="app_storage">অ্যাপ</string>
|
||||||
<string name="livestreams">লাইভস্ট্রিম</string>
|
<string name="livestreams">লাইভস্ট্রিম</string>
|
||||||
<string name="apk_installer_settings">APK ইনস্টলার</string>
|
<string name="apk_installer_settings">APK ইনস্টলার</string>
|
||||||
|
|
@ -353,38 +353,4 @@
|
||||||
<string name="play_from_beginning_img_des">শুরু থেকে চালু করুন</string>
|
<string name="play_from_beginning_img_des">শুরু থেকে চালু করুন</string>
|
||||||
<string name="speech_recognition_unavailable">স্পিচ রিকগনিশন উপলব্ধ নেই</string>
|
<string name="speech_recognition_unavailable">স্পিচ রিকগনিশন উপলব্ধ নেই</string>
|
||||||
<string name="begin_speaking">কথা বলা শুরু করুন…</string>
|
<string name="begin_speaking">কথা বলা শুরু করুন…</string>
|
||||||
<string name="download_queue">ডাউনলোড তালিকা</string>
|
|
||||||
<string name="play_full_series_button">সম্পূর্ণ সিরিজ প্লে করুন</string>
|
|
||||||
<string name="torrent_info">এই ভিডিওটি একটি টরেন্ট, অর্থাৎ আপনার ভিডিও অ্যাক্টিভিটি ট্র্যাক করা সম্ভব।\nএগোনোর আগে টরেন্টিং সম্পর্কে ভালোভাবে বুঝে নিন।</string>
|
|
||||||
<string name="downloads_delete_select">ডিলিট করার জন্য আইটেম সিলেক্ট করুন</string>
|
|
||||||
<string name="downloads_empty">বর্তমানে কোনো ডাউনলোড নেই।</string>
|
|
||||||
<string name="queue_empty_message">বর্তমানে কোনো ডাউনলোড কিউতে নেই।</string>
|
|
||||||
<string name="offline_file">অফলাইনে দেখার জন্য উপলব্ধ</string>
|
|
||||||
<string name="select_all">সব সিলেক্ট করুন</string>
|
|
||||||
<string name="deselect_all">সব ডিসিলেক্ট করুন</string>
|
|
||||||
<string name="open_local_video">লোকাল ভিডিও খুলুন</string>
|
|
||||||
<string name="extra_brightness_settings">অতিরিক্ত ব্রাইটনেস</string>
|
|
||||||
<string name="extra_brightness_settings_des">ডিসপ্লে ব্রাইটনেস ১০০% ছাড়িয়ে গেলে ব্রাইটনেস ফিল্টার চালু করুন</string>
|
|
||||||
<string name="search_suggestions">সার্চ সাজেশন</string>
|
|
||||||
<string name="search_suggestions_des">টাইপ করার সময় সার্চ সাজেশন দেখান</string>
|
|
||||||
<string name="clear_suggestions">সাজেশন মুছে ফেলুন</string>
|
|
||||||
<string name="show_player_metadata_overlay">প্লেয়ার মেটাডেটা ওভারলে প্রদর্শন</string>
|
|
||||||
<string name="show_cast_in_details">কাস্ট প্যানেল প্রদর্শন</string>
|
|
||||||
<string name="install_prerelease">প্রাক-মুক্তি সংস্করণ ইনস্টলেশন</string>
|
|
||||||
<string name="prerelease_already_installed">প্রাক-মুক্তি সংস্করণ ইতোমধ্যে ইনস্টল রয়েছে।</string>
|
|
||||||
<string name="prerelease_install_failed">প্রাক-মুক্তি সংস্করণ ইনস্টল করতে সমস্যা হয়েছে।</string>
|
|
||||||
<string name="delete_format" formatted="true">(%1$d | %2$s) মুছুন</string>
|
|
||||||
<string name="test_warning">সাবধান</string>
|
|
||||||
<string name="delete_message_multiple" formatted="true">আপনি কি নিম্নলিখিত আইটেমগুলো স্থায়ীভাবে মুছতে চান?\n\n%s</string>
|
|
||||||
<string name="delete_files">ফাইল মুছুন</string>
|
|
||||||
<string name="delete_message_series_episodes" formatted="true">আপনি কি নিশ্চিত যে আপনি %1$s-এ নিচের এপিসোডগুলো স্থায়ীভাবে মুছে ফেলতে চান?\n\n%2$s</string>
|
|
||||||
<string name="delete_message_series_section" formatted="true">আপনি নিচের সিরিজগুলোর সব এপিসোডও স্থায়ীভাবে মুছে ফেলবেন:\n\n%s</string>
|
|
||||||
<string name="delete_message_series_only" formatted="true">আপনি কি নিশ্চিত যে আপনি নিচের সিরিজটির সব এপিসোড স্থায়ীভাবে মুছে ফেলতে চান?\n\n%s</string>
|
|
||||||
<string name="music_singular">সঙ্গীত</string>
|
|
||||||
<string name="audio_book_singular">অডিও বই</string>
|
|
||||||
<string name="custom_media_singular">মিডিয়া</string>
|
|
||||||
<string name="audio_singular">অডিও</string>
|
|
||||||
<string name="podcast_singular">পডকাস্ট</string>
|
|
||||||
<string name="video_singular">ভিডিও</string>
|
|
||||||
<string name="encoding_error">এনকোডিং ত্রুটি</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -754,15 +754,4 @@
|
||||||
<string name="video_singular">Video</string>
|
<string name="video_singular">Video</string>
|
||||||
<string name="skip_type_preview">Náhled</string>
|
<string name="skip_type_preview">Náhled</string>
|
||||||
<string name="player_is_live">Živě</string>
|
<string name="player_is_live">Živě</string>
|
||||||
<string name="profile_settings">Nastavení profilu</string>
|
|
||||||
<string name="profile_hide_negative_sources">Skrýt zdroje s negativní prioritou</string>
|
|
||||||
<string name="profile_hide_error_sources">Skrýt zdroje s chybami</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d skrytý odkaz</item>
|
|
||||||
<item quantity="few">%d skryté odkazy</item>
|
|
||||||
<item quantity="many">%d skrytých odkazů</item>
|
|
||||||
<item quantity="other">%d skrytých odkazů</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="tv_layout_clock_settings">Zobrazit hodiny s reálným časem</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Zobrazit hodiny s reálným časem v horní části obrazovky. Platí pro domovskou obrazovku a přehrávač</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -737,9 +737,4 @@
|
||||||
<string name="video_singular">Vídeo</string>
|
<string name="video_singular">Vídeo</string>
|
||||||
<string name="skip_type_preview">Vista previa</string>
|
<string name="skip_type_preview">Vista previa</string>
|
||||||
<string name="player_is_live">En Vivo</string>
|
<string name="player_is_live">En Vivo</string>
|
||||||
<string name="tv_layout_clock_settings">Mostrar reloj en tiempo real</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Muestra un reloj en tiempo real en la parte superior de la pantalla. Se aplica a la página de inicio y al reproductor</string>
|
|
||||||
<string name="profile_settings">Configuración del perfil</string>
|
|
||||||
<string name="profile_hide_negative_sources">Ocultar fuentes con prioridad negativa</string>
|
|
||||||
<string name="profile_hide_error_sources">Ocultar fuentes con errores</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@
|
||||||
<string name="live_singular">Livestream</string>
|
<string name="live_singular">Livestream</string>
|
||||||
<string name="nsfw_singular">NSFW</string>
|
<string name="nsfw_singular">NSFW</string>
|
||||||
<string name="other_singular">Altro</string>
|
<string name="other_singular">Altro</string>
|
||||||
<string name="source_error">Errore fonte</string>
|
<string name="source_error">Errore sorgente</string>
|
||||||
<string name="remote_error">Errore remoto</string>
|
<string name="remote_error">Errore remoto</string>
|
||||||
<string name="render_error">Errore del renderer</string>
|
<string name="render_error">Errore del renderer</string>
|
||||||
<string name="unexpected_error">Errore imprevisto del lettore</string>
|
<string name="unexpected_error">Errore imprevisto del lettore</string>
|
||||||
|
|
@ -247,7 +247,7 @@
|
||||||
<string name="check_for_update">Controlla aggiornamenti</string>
|
<string name="check_for_update">Controlla aggiornamenti</string>
|
||||||
<string name="video_lock">Blocca</string>
|
<string name="video_lock">Blocca</string>
|
||||||
<string name="video_aspect_ratio_resize">Ridimensiona</string>
|
<string name="video_aspect_ratio_resize">Ridimensiona</string>
|
||||||
<string name="video_source">Fonte</string>
|
<string name="video_source">Sorgente</string>
|
||||||
<string name="video_skip_op">Salta OP</string>
|
<string name="video_skip_op">Salta OP</string>
|
||||||
<string name="dont_show_again">Non mostrare di nuovo</string>
|
<string name="dont_show_again">Non mostrare di nuovo</string>
|
||||||
<string name="skip_update">Salta questo aggiornamento</string>
|
<string name="skip_update">Salta questo aggiornamento</string>
|
||||||
|
|
@ -346,7 +346,7 @@
|
||||||
<string name="actor_main">Protagonista</string>
|
<string name="actor_main">Protagonista</string>
|
||||||
<string name="actor_supporting">Supporto</string>
|
<string name="actor_supporting">Supporto</string>
|
||||||
<string name="actor_background">Secondario</string>
|
<string name="actor_background">Secondario</string>
|
||||||
<string name="home_source">Fonte</string>
|
<string name="home_source">Sorgente</string>
|
||||||
<string name="home_random">Casuale</string>
|
<string name="home_random">Casuale</string>
|
||||||
<string name="coming_soon">Prossimamente…</string>
|
<string name="coming_soon">Prossimamente…</string>
|
||||||
<string name="quality_cam">Cam</string>
|
<string name="quality_cam">Cam</string>
|
||||||
|
|
@ -670,7 +670,7 @@
|
||||||
<string name="sort_episodes_date_oldest">Data di messa in onda (più vecchia)</string>
|
<string name="sort_episodes_date_oldest">Data di messa in onda (più vecchia)</string>
|
||||||
<string name="sort_button_rating">Valutazione %s</string>
|
<string name="sort_button_rating">Valutazione %s</string>
|
||||||
<string name="starting_plugin_update_manually">Avvio del processo di aggiornamento plugin!</string>
|
<string name="starting_plugin_update_manually">Avvio del processo di aggiornamento plugin!</string>
|
||||||
<string name="plugins_updated_manually">%d plugin aggiornati correttamente</string>
|
<string name="plugins_updated_manually">%d plugin aggiornati con successo!</string>
|
||||||
<string name="no_plugins_updated_manually">Nessun plugin è stato aggiornato.</string>
|
<string name="no_plugins_updated_manually">Nessun plugin è stato aggiornato.</string>
|
||||||
<string name="player_notification_channel_name">Notifiche lettore</string>
|
<string name="player_notification_channel_name">Notifiche lettore</string>
|
||||||
<string name="player_notification_channel_description">La notifica del lettore per controllare la riproduzione in background</string>
|
<string name="player_notification_channel_description">La notifica del lettore per controllare la riproduzione in background</string>
|
||||||
|
|
@ -733,7 +733,7 @@
|
||||||
<string name="clear_suggestions">Cancella suggerimenti</string>
|
<string name="clear_suggestions">Cancella suggerimenti</string>
|
||||||
<string name="show_cast_in_details">Mostra pannello cast</string>
|
<string name="show_cast_in_details">Mostra pannello cast</string>
|
||||||
<string name="video_info">Info sui media</string>
|
<string name="video_info">Info sui media</string>
|
||||||
<string name="source_name">Nome fonte</string>
|
<string name="source_name">Nome sorgente</string>
|
||||||
<string name="extra_brightness_settings">Luminosità extra</string>
|
<string name="extra_brightness_settings">Luminosità extra</string>
|
||||||
<string name="extra_brightness_settings_des">Attiva il filtro di luminosità quando viene superato il 100% della luminosità dello schermo</string>
|
<string name="extra_brightness_settings_des">Attiva il filtro di luminosità quando viene superato il 100% della luminosità dello schermo</string>
|
||||||
<string name="extra_brightness_key">extra_brightness_enabled</string>
|
<string name="extra_brightness_key">extra_brightness_enabled</string>
|
||||||
|
|
@ -753,20 +753,10 @@
|
||||||
<item quantity="many">%d download in coda</item>
|
<item quantity="many">%d download in coda</item>
|
||||||
<item quantity="other">%d download in coda</item>
|
<item quantity="other">%d download in coda</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="source_priority">Priorità fonti</string>
|
<string name="source_priority">Priorità sorgente</string>
|
||||||
<string name="source_priority_help">Decidi come le fonti video devono essere ordinate nel lettore</string>
|
<string name="source_priority_help">Decidi come le sorgenti video devono essere ordinate nel lettore</string>
|
||||||
<string name="show_player_metadata_overlay">Mostra sovrapposizione metadati lettore</string>
|
<string name="show_player_metadata_overlay">Mostra sovrapposizione metadati lettore</string>
|
||||||
<string name="video_singular">Video</string>
|
<string name="video_singular">Video</string>
|
||||||
<string name="skip_type_preview">Anteprima</string>
|
<string name="skip_type_preview">Anteprima</string>
|
||||||
<string name="player_is_live">Live</string>
|
<string name="player_is_live">Live</string>
|
||||||
<string name="profile_settings">Impostazioni profilo</string>
|
|
||||||
<string name="profile_hide_negative_sources">Nascondi fonti con priorità negativa</string>
|
|
||||||
<string name="profile_hide_error_sources">Nascondi fonti con errori</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d collegamento nascosto</item>
|
|
||||||
<item quantity="many">%d collegamenti nascosti</item>
|
|
||||||
<item quantity="other">%d collegamenti nascosti</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="tv_layout_clock_settings">Mostra orologio in tempo reale</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Mostra un orologio in tempo reale nella parte superiore dello schermo. Si applica alla homepage e al lettore</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -730,7 +730,4 @@
|
||||||
<string name="source_priority">ソースの優先順位</string>
|
<string name="source_priority">ソースの優先順位</string>
|
||||||
<string name="source_priority_help">プレイヤーでのビデオソースの並び順を設定します</string>
|
<string name="source_priority_help">プレイヤーでのビデオソースの並び順を設定します</string>
|
||||||
<string name="show_player_metadata_overlay">プレイヤーメタデータオーバーレイを表示</string>
|
<string name="show_player_metadata_overlay">プレイヤーメタデータオーバーレイを表示</string>
|
||||||
<string name="video_singular">動画</string>
|
|
||||||
<string name="skip_type_preview">プレビュー</string>
|
|
||||||
<string name="player_is_live">ライブ</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -25,18 +25,18 @@
|
||||||
<string name="sort_copy">Kopijuoti</string>
|
<string name="sort_copy">Kopijuoti</string>
|
||||||
<string name="benene_des">Duoti bananai</string>
|
<string name="benene_des">Duoti bananai</string>
|
||||||
<string name="home_more_info">Daugiau informacijos</string>
|
<string name="home_more_info">Daugiau informacijos</string>
|
||||||
<string name="title_downloads">Atsisiuntimai</string>
|
<string name="title_downloads">Atsiuntimai</string>
|
||||||
<string name="subs_auto_select_language">Automatiškai pasirinkti kalbą</string>
|
<string name="subs_auto_select_language">Automatiškai pasirinkti kalbą</string>
|
||||||
<string name="error_loading_links_toast">Klaida kraunant nuorodas</string>
|
<string name="error_loading_links_toast">Klaida kraunant nuorodas</string>
|
||||||
<string name="go_forward_30">+30</string>
|
<string name="go_forward_30">+30</string>
|
||||||
<string name="download_done">Atsisiuntimas baigtas</string>
|
<string name="download_done">Atsiuntimas baigtas</string>
|
||||||
<string name="continue_watching">Tęsti žiūrėjimą</string>
|
<string name="continue_watching">Tęsti žiūrėjimą</string>
|
||||||
<string name="new_update_format" formatted="true">Rastas atnaujinimas!\n%1$s -> %2$s</string>
|
<string name="new_update_format" formatted="true">Rastas atnaujinimas! \n%1$s -> %2$s</string>
|
||||||
<string name="subs_download_languages">Atsisiųsti kalbas</string>
|
<string name="subs_download_languages">Atsisiųsti kalbas</string>
|
||||||
<string name="search_provider_text_providers">Ieškoti naudojant tiekėjus</string>
|
<string name="search_provider_text_providers">Ieškoti naudojant tiekėjus</string>
|
||||||
<string name="go_back_img_des">Grįžti atgal</string>
|
<string name="go_back_img_des">Grįžti atgal</string>
|
||||||
<string name="downloading">Siunčiama</string>
|
<string name="downloading">Siunčiama</string>
|
||||||
<string name="episode_more_options_des">Daugiau parinkčių</string>
|
<string name="episode_more_options_des">Daugiau pasirinkčiu</string>
|
||||||
<string name="play_episode">Paleisti seriją</string>
|
<string name="play_episode">Paleisti seriją</string>
|
||||||
<string name="player_speed">Grotuvo greitis</string>
|
<string name="player_speed">Grotuvo greitis</string>
|
||||||
<string name="benene_count_text">%d Bananai duoti kūrėjams</string>
|
<string name="benene_count_text">%d Bananai duoti kūrėjams</string>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<string name="result_tags">Žanrai</string>
|
<string name="result_tags">Žanrai</string>
|
||||||
<string name="go_back_30">-30</string>
|
<string name="go_back_30">-30</string>
|
||||||
<string name="episode_poster_img_des">Serijos plakatas</string>
|
<string name="episode_poster_img_des">Serijos plakatas</string>
|
||||||
<string name="vpn_might_be_needed">Gali reikėti VPN šiam tiekėjui, kad veiktų teisingai</string>
|
<string name="vpn_might_be_needed">Gali reikėti VPN šitam tiekėjui, kad veiktų teisingai</string>
|
||||||
<string name="search_hint_site" formatted="true">Ieškoti %s…</string>
|
<string name="search_hint_site" formatted="true">Ieškoti %s…</string>
|
||||||
<string name="github">Github</string>
|
<string name="github">Github</string>
|
||||||
<string name="benene_count_text_none">Nėra duotu bananų</string>
|
<string name="benene_count_text_none">Nėra duotu bananų</string>
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
<string name="cancel">Atšaukti</string>
|
<string name="cancel">Atšaukti</string>
|
||||||
<string name="start">Pradėti</string>
|
<string name="start">Pradėti</string>
|
||||||
<string name="cartoons_singular">Filmukas</string>
|
<string name="cartoons_singular">Filmukas</string>
|
||||||
<string name="download_canceled">Atsisiuntimas atšauktas</string>
|
<string name="download_canceled">Atsiuntimas atšauktas</string>
|
||||||
<string name="advanced_search">Išplėstinė paieška</string>
|
<string name="advanced_search">Išplėstinė paieška</string>
|
||||||
<string name="empty_library_logged_in_message">Tuščias sąrašas. Pabandykite pasirinkti kitą sąrašą.</string>
|
<string name="empty_library_logged_in_message">Tuščias sąrašas. Pabandykite pasirinkti kitą sąrašą.</string>
|
||||||
<string name="chromecast_subtitles_settings">Chromecast subtitrai</string>
|
<string name="chromecast_subtitles_settings">Chromecast subtitrai</string>
|
||||||
|
|
@ -93,10 +93,10 @@
|
||||||
<string name="type_completed">Užbaigta</string>
|
<string name="type_completed">Užbaigta</string>
|
||||||
<string name="use_system_brightness_settings_des">Naudoti sistemos ryškumą programos grotuve vietoj tamsumo</string>
|
<string name="use_system_brightness_settings_des">Naudoti sistemos ryškumą programos grotuve vietoj tamsumo</string>
|
||||||
<string name="restore_failed_format" formatted="true">Nepavyko atstatyti duomenis iš failo %s</string>
|
<string name="restore_failed_format" formatted="true">Nepavyko atstatyti duomenis iš failo %s</string>
|
||||||
<string name="play_trailer_button">Paleisti anonsą</string>
|
<string name="play_trailer_button">Paleisti anonsa</string>
|
||||||
<string name="play_livestream_button">Paleisti gyvą transliaciją</string>
|
<string name="play_livestream_button">Paleisti gyva transliacija</string>
|
||||||
<string name="no_episodes_found">Nerasta serijų</string>
|
<string name="no_episodes_found">Nerasta serijų</string>
|
||||||
<string name="vpn_torrent">Šis tiekėjas yra iš Torrent\'ų, rekomenduojamas VPN</string>
|
<string name="vpn_torrent">Šis tiekėjas yra iš Torrentų, VPN rekomenduojama naudoti</string>
|
||||||
<string name="test_failed">Nepavyko</string>
|
<string name="test_failed">Nepavyko</string>
|
||||||
<string name="result_poster_img_des">Plakatas</string>
|
<string name="result_poster_img_des">Plakatas</string>
|
||||||
<string name="popup_play_file">Paleisti failą</string>
|
<string name="popup_play_file">Paleisti failą</string>
|
||||||
|
|
@ -108,21 +108,21 @@
|
||||||
<string name="redo_setup_process">Perdaryti nustatymo procesą</string>
|
<string name="redo_setup_process">Perdaryti nustatymo procesą</string>
|
||||||
<string name="episodes_range">%1$d-%2$d</string>
|
<string name="episodes_range">%1$d-%2$d</string>
|
||||||
<string name="benene">Duoti bananą kūrėjams</string>
|
<string name="benene">Duoti bananą kūrėjams</string>
|
||||||
<string name="go_back">Sugrįšti</string>
|
<string name="go_back">Sugryšti</string>
|
||||||
<string name="copy_link_toast">Nuoroda nukopijuota į iškarpinę</string>
|
<string name="copy_link_toast">Nuoroda nukopijuota į iškarpinę</string>
|
||||||
<string name="search">Paieška</string>
|
<string name="search">Paieška</string>
|
||||||
<string name="settings_info">Informacija</string>
|
<string name="settings_info">Informacija</string>
|
||||||
<string name="skip_loading">Praleisti įkėlimą</string>
|
<string name="skip_loading">Praleisti įkėlima</string>
|
||||||
<string name="home_info">Informacija</string>
|
<string name="home_info">Informacija</string>
|
||||||
<string name="next_episode_format" formatted="true">Serija %d bus išleista</string>
|
<string name="next_episode_format" formatted="true">Serija %d bus išleista</string>
|
||||||
<string name="sort_save">Išsaugoti</string>
|
<string name="sort_save">Išsaugoti</string>
|
||||||
<string name="clipboard_too_large">Perdaug teksto. Nepavyko išsaugoti i iškarpynę.</string>
|
<string name="clipboard_too_large">Perdaug teksto. Nepavyko išsaugoti i iškarpynę.</string>
|
||||||
<string name="download_failed">Atsisiuntimas nepavyko</string>
|
<string name="download_failed">Atsiuntimas nepavyko</string>
|
||||||
<string name="result_share">Pasidalinti</string>
|
<string name="result_share">Pasidalinti</string>
|
||||||
<string name="home_main_poster_img_des">Pagrindinis Plakatas</string>
|
<string name="home_main_poster_img_des">Pagrindinis Plakatas</string>
|
||||||
<string name="pick_source">Šaltiniai</string>
|
<string name="pick_source">Šaltiniai</string>
|
||||||
<string name="title_settings">Nustatymai</string>
|
<string name="title_settings">Nustatymai</string>
|
||||||
<string name="title_search">Paieška</string>
|
<string name="title_search">Ieškoti</string>
|
||||||
<string name="loading">Kraunama…</string>
|
<string name="loading">Kraunama…</string>
|
||||||
<string name="action_remove_watching">Pašalinti</string>
|
<string name="action_remove_watching">Pašalinti</string>
|
||||||
<string name="action_open_watching">Daugiau informacijos</string>
|
<string name="action_open_watching">Daugiau informacijos</string>
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
<string name="sort_close">Uždaryti</string>
|
<string name="sort_close">Uždaryti</string>
|
||||||
<string name="action_add_to_bookmarks">Nustatyti žiūrėjimo statusą</string>
|
<string name="action_add_to_bookmarks">Nustatyti žiūrėjimo statusą</string>
|
||||||
<string name="play_with_app_name">Paleisti su CloudStream</string>
|
<string name="play_with_app_name">Paleisti su CloudStream</string>
|
||||||
<string name="subs_subtitle_elevation">Subtitrų lygis</string>
|
<string name="subs_subtitle_elevation">Subtitrų iškėlimas</string>
|
||||||
<string name="episodes">Serijos</string>
|
<string name="episodes">Serijos</string>
|
||||||
<string name="cast_format" formatted="true">Skleisti: %s</string>
|
<string name="cast_format" formatted="true">Skleisti: %s</string>
|
||||||
<string name="season">Sezonas</string>
|
<string name="season">Sezonas</string>
|
||||||
|
|
@ -248,51 +248,4 @@
|
||||||
<string name="confirm_exit_dialog">Ar tikrai norite išeiti?</string>
|
<string name="confirm_exit_dialog">Ar tikrai norite išeiti?</string>
|
||||||
<string name="action_remove_from_watched">Pašalinti iš žiūrimų</string>
|
<string name="action_remove_from_watched">Pašalinti iš žiūrimų</string>
|
||||||
<string name="audio_tracks">Garso takelis</string>
|
<string name="audio_tracks">Garso takelis</string>
|
||||||
<string name="filler" formatted="true">Užpildymas</string>
|
|
||||||
<string name="duration_format" formatted="true">%d min</string>
|
|
||||||
<string name="title_home">Namai</string>
|
|
||||||
<string name="download_queue">Atsisiuntimų eilė</string>
|
|
||||||
<string name="speech_recognition_unavailable">Balso atpažinimas nepasiekiamas</string>
|
|
||||||
<string name="begin_speaking">Pradėkite kalbėti…</string>
|
|
||||||
<string name="type_dropped">Nežiūrimas</string>
|
|
||||||
<string name="play_full_series_button">Paleisti visą seriją</string>
|
|
||||||
<string name="torrent_info">Šis įrašas yra Torrent\'e, tai reiškia, kad tavo įrašo veikla gali būti sekama. Įsitikinkite, kad suprantate Torrenting prieš tęsiant.</string>
|
|
||||||
<string name="reload_error">Atkurti ryšį…</string>
|
|
||||||
<string name="downloads_delete_select">Pasirinkite elementus, kuriuos norite pašalinti</string>
|
|
||||||
<string name="downloads_empty">Šiuo metu atsisiuntimų nėra.</string>
|
|
||||||
<string name="queue_empty_message">Šiuo metu atsisiuntimų eilėje nėra.</string>
|
|
||||||
<string name="offline_file">Pasiekiama žiūrėti neprisijungus</string>
|
|
||||||
<string name="select_all">Pasirinkti viską</string>
|
|
||||||
<string name="deselect_all">Panaikinti visus pasirinkimus</string>
|
|
||||||
<string name="stream">Tinklo srautas</string>
|
|
||||||
<string name="open_local_video">Atidaryti vietinį video</string>
|
|
||||||
<string name="links_reloaded_toast">Nuorodos perkrautos</string>
|
|
||||||
<string name="app_subbed_text">Subtitrai</string>
|
|
||||||
<string name="repo_copy_label">Repozitorijos pavadinimas ir adresas</string>
|
|
||||||
<string name="toast_copied">nukopijuota!</string>
|
|
||||||
<string name="subscribe_tooltip">Naujos serijos pranešimas</string>
|
|
||||||
<string name="result_search_tooltip">Ieškoti kituose plėtiniuose</string>
|
|
||||||
<string name="recommendations_tooltip">Rodyti rekomendacijas</string>
|
|
||||||
<string name="subs_outline_color">Apvado spalva</string>
|
|
||||||
<string name="subs_edge_type">Rėmelio tipas</string>
|
|
||||||
<string name="search_provider_text_types">Ieškoti naudojant tipus</string>
|
|
||||||
<string name="subs_hold_to_reset_to_default">Laikyti ilgai, kad sugražinti pradinius nustatymus</string>
|
|
||||||
<string name="subs_import_text" formatted="true">Įkelti šriftus sudedant juos į %s</string>
|
|
||||||
<string name="provider_info_meta">Metaduomenys nesuteikiamos svetainės, vaizdo įkėlimas nepavyks, jeigu jo nebus svetainėje.</string>
|
|
||||||
<string name="torrent_plot">Aprašymas</string>
|
|
||||||
<string name="normal_no_plot">Nėra siužeto aprašymo</string>
|
|
||||||
<string name="torrent_no_plot">Aprašymas nerastas</string>
|
|
||||||
<string name="show_log_cat">Rodyti Logcat</string>
|
|
||||||
<string name="picture_in_picture">Vaizdas vaizde</string>
|
|
||||||
<string name="picture_in_picture_des">Tęsia atkūrimą mažame grotuve virš kitų programų</string>
|
|
||||||
<string name="player_size_settings">Grotuvo dydžio pakeitimo mygtukas</string>
|
|
||||||
<string name="player_size_settings_des">Pašalinti juodas paraštes</string>
|
|
||||||
<string name="player_subtitles_settings">Subtitrai</string>
|
|
||||||
<string name="chromecast_subtitles_settings_des">Chromecast subtitrų nustatymai</string>
|
|
||||||
<string name="eigengraumode_settings">Atkūrimo sparta</string>
|
|
||||||
<string name="speed_setting_summary">Prideda greičio pasirinkimą grotuve</string>
|
|
||||||
<string name="swipe_to_seek_settings">Braukite, kas ieškotumėte</string>
|
|
||||||
<string name="swipe_to_seek_settings_des">Braukite į šonus, kad kontroliuotumėte padėtį vaizdo įraše</string>
|
|
||||||
<string name="swipe_to_change_settings">Braukite, kad pakeistumėte nustatymus</string>
|
|
||||||
<string name="swipe_to_change_settings_des">Braukite aukštyn arba žemyn ekrano kairėje arba dešinėje, jei norite pakeisti ryškumą arba garsą</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -287,12 +287,12 @@
|
||||||
<string name="pref_category_defaults">Parasts</string>
|
<string name="pref_category_defaults">Parasts</string>
|
||||||
<string name="pref_category_looks">Izskats</string>
|
<string name="pref_category_looks">Izskats</string>
|
||||||
<string name="pref_category_ui_features">Funkcijas</string>
|
<string name="pref_category_ui_features">Funkcijas</string>
|
||||||
<string name="category_general">Vispārīgie</string>
|
<string name="category_general">Ģenerāls</string>
|
||||||
<string name="random_button_settings">Randomā poga</string>
|
<string name="random_button_settings">Randomā poga</string>
|
||||||
<string name="random_button_settings_desc">Rādīt izlases pogu Sākums un Bibliotēka sadaļās</string>
|
<string name="random_button_settings_desc">Rādīt izlases pogu Sākums un Bibliotēka sadaļās</string>
|
||||||
<string name="provider_lang_settings">Papildinājuma valodas</string>
|
<string name="provider_lang_settings">Papildinājuma valodas</string>
|
||||||
<string name="app_layout">Lietotnes izkārtojums</string>
|
<string name="app_layout">Lietotnes izkārtojums</string>
|
||||||
<string name="preferred_media_settings">Vēlamie multimediji</string>
|
<string name="preferred_media_settings">Izvēlētā media</string>
|
||||||
<string name="enable_nsfw_on_providers">Iespējot nepiedienīgu, izaicinošu saturu (NSFW) atbalstītajos papildinājumos</string>
|
<string name="enable_nsfw_on_providers">Iespējot nepiedienīgu, izaicinošu saturu (NSFW) atbalstītajos papildinājumos</string>
|
||||||
<string name="subtitles_encoding">Subtitru kodējums</string>
|
<string name="subtitles_encoding">Subtitru kodējums</string>
|
||||||
<string name="category_providers">Devēji</string>
|
<string name="category_providers">Devēji</string>
|
||||||
|
|
@ -372,7 +372,7 @@
|
||||||
<string name="error">Kļūda</string>
|
<string name="error">Kļūda</string>
|
||||||
<string name="subtitles_remove_captions">Noņemt slēgtos parakstus no subtitriem</string>
|
<string name="subtitles_remove_captions">Noņemt slēgtos parakstus no subtitriem</string>
|
||||||
<string name="subtitles_remove_bloat">Noņemt lieko no subtitriem (piemēram, reklāmu)</string>
|
<string name="subtitles_remove_bloat">Noņemt lieko no subtitriem (piemēram, reklāmu)</string>
|
||||||
<string name="subtitles_filter_lang">Atlasīt pēc vēlamās multimediju valodas</string>
|
<string name="subtitles_filter_lang">Filtrēt pēc vēlamās multivides valodas</string>
|
||||||
<string name="extras">Ekstras</string>
|
<string name="extras">Ekstras</string>
|
||||||
<string name="trailer">Treileris</string>
|
<string name="trailer">Treileris</string>
|
||||||
<string name="network_adress_example">https://piemērs.com/piemērs.mp4</string>
|
<string name="network_adress_example">https://piemērs.com/piemērs.mp4</string>
|
||||||
|
|
@ -382,7 +382,7 @@
|
||||||
<string name="previous">Iepriekšējais</string>
|
<string name="previous">Iepriekšējais</string>
|
||||||
<string name="skip_setup">Izlaist uzstādīšanu</string>
|
<string name="skip_setup">Izlaist uzstādīšanu</string>
|
||||||
<string name="app_layout_subtext">Mainiet lietotnes izskatu, lai tā atbilstu savai ierīcei</string>
|
<string name="app_layout_subtext">Mainiet lietotnes izskatu, lai tā atbilstu savai ierīcei</string>
|
||||||
<string name="preferred_media_subtext">Ko jūs vēlētos skatīt</string>
|
<string name="preferred_media_subtext">Ko tu vēlies redzēt</string>
|
||||||
<string name="setup_done">Pabeigts</string>
|
<string name="setup_done">Pabeigts</string>
|
||||||
<string name="extensions">Papildinājumi</string>
|
<string name="extensions">Papildinājumi</string>
|
||||||
<string name="add_repository">Pievienot repozitoriju</string>
|
<string name="add_repository">Pievienot repozitoriju</string>
|
||||||
|
|
@ -607,11 +607,4 @@
|
||||||
<string name="delete_message_series_only" formatted="true">Vai tiešām vēlaties neatgriezeniski dzēst visas šī seriāla, raidījuma epizodes?\n\n%s</string>
|
<string name="delete_message_series_only" formatted="true">Vai tiešām vēlaties neatgriezeniski dzēst visas šī seriāla, raidījuma epizodes?\n\n%s</string>
|
||||||
<string name="queue_empty_message">Pašlaik nav nevienas rindā ievietotas lejupielādes.</string>
|
<string name="queue_empty_message">Pašlaik nav nevienas rindā ievietotas lejupielādes.</string>
|
||||||
<string name="open_local_video">Atvērt vietējo video</string>
|
<string name="open_local_video">Atvērt vietējo video</string>
|
||||||
<string name="custom_media_singular">Multimedija</string>
|
|
||||||
<string name="video_info">Multimediju informācija</string>
|
|
||||||
<string name="torrent_preferred_media">Iespējojiet torrentu Iestatījumi/Pakalpojumu sniedzēji/Vēlamie multimediji sadaļā</string>
|
|
||||||
<string name="subscribe_tooltip">Paziņojums par jaunu epizodi</string>
|
|
||||||
<string name="extra_brightness_settings">Papildu spilgtums</string>
|
|
||||||
<string name="extra_brightness_key">Papildu spilgtums iespējots</string>
|
|
||||||
<string name="search_suggestions">Meklēšanas ieteikumi</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -677,22 +677,4 @@
|
||||||
<string name="confirm_before_exiting_title">Bevestig voor afsluiten</string>
|
<string name="confirm_before_exiting_title">Bevestig voor afsluiten</string>
|
||||||
<string name="confirm_before_exiting_desc">Toon dialoogvenster voordat de app wordt afgesloten</string>
|
<string name="confirm_before_exiting_desc">Toon dialoogvenster voordat de app wordt afgesloten</string>
|
||||||
<string name="subs_edge_size">Randgrote</string>
|
<string name="subs_edge_size">Randgrote</string>
|
||||||
<string name="show_player_metadata_overlay">Laat Speler Metadata Overlay zien</string>
|
|
||||||
<string name="device_pin_error_message">Kon de apparaat PIN niet vinden, probeer locale authenticatie</string>
|
|
||||||
<string name="torrent_preferred_media">Zet torrent aan in Instellingen/Providers/Media voorkeur</string>
|
|
||||||
<string name="torrent_not_accepted">Herstart de app en accepteer de Stream Torrent pop-up om verder te gaan.</string>
|
|
||||||
<string name="update_plugins_manually">Handmatige Update Knop</string>
|
|
||||||
<string name="biometric_setting_summary">Open de app met Vingerafdruk, Face ID, PIN, Pattern en Wachtwoord.</string>
|
|
||||||
<string name="preview_seekbar">Seekbar preview</string>
|
|
||||||
<string name="preview_seekbar_desc">Zet preview thumbnail aan op seekbar</string>
|
|
||||||
<string name="software_decoding">Software decodering</string>
|
|
||||||
<string name="software_decoding_desc">Software decodering staat de mogelijkheid toe om de speler videobestanden af te laten spelen op jouw apparaat, maar het kan een haperige of onstabiele kijkervaring zorgen op hoge resolutie.</string>
|
|
||||||
<string name="volume_exceeded_100">Volume heeft de 100% overschreden</string>
|
|
||||||
<string name="update_plugins">Update Plugins</string>
|
|
||||||
<string name="no_plugins_updated_manually">Geen plugins zijn geupdate.</string>
|
|
||||||
<string name="player_notification_channel_name">Speler meldingen</string>
|
|
||||||
<string name="player_notification_channel_description">De speler melding om de kijkervaring van de achtergrond de besturen</string>
|
|
||||||
<string name="subtitles_from_online">Online</string>
|
|
||||||
<string name="download_parallel_settings_des">Hoeveel verschillende items kunnen in parallel gedownload worden</string>
|
|
||||||
<string name="parallel_downloads">Parallel downloads</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -649,7 +649,7 @@
|
||||||
<string name="sort_episodes_number_desc">Odcinek (malejąco)</string>
|
<string name="sort_episodes_number_desc">Odcinek (malejąco)</string>
|
||||||
<string name="sort_episodes_rating_high_low">Ocena (najwyższa)</string>
|
<string name="sort_episodes_rating_high_low">Ocena (najwyższa)</string>
|
||||||
<string name="update_plugins">Zaktualizuj wtyczki</string>
|
<string name="update_plugins">Zaktualizuj wtyczki</string>
|
||||||
<string name="plugins_updated_manually">Pomyślnie zaktualizowano wtyczki: %d</string>
|
<string name="plugins_updated_manually">Pomyślnie zaktualizowano wtyczki: %d!</string>
|
||||||
<string name="no_plugins_updated_manually">Nie zaktualizowano żadnych wtyczek.</string>
|
<string name="no_plugins_updated_manually">Nie zaktualizowano żadnych wtyczek.</string>
|
||||||
<string name="update_plugins_manually">Zaktualizuj wtyczki ręcznie</string>
|
<string name="update_plugins_manually">Zaktualizuj wtyczki ręcznie</string>
|
||||||
<string name="starting_plugin_update_manually">Rozpoczęcie procesu aktualizacji wtyczek!</string>
|
<string name="starting_plugin_update_manually">Rozpoczęcie procesu aktualizacji wtyczek!</string>
|
||||||
|
|
@ -742,15 +742,4 @@
|
||||||
<string name="video_singular">Wideo</string>
|
<string name="video_singular">Wideo</string>
|
||||||
<string name="skip_type_preview">Zapowiedź</string>
|
<string name="skip_type_preview">Zapowiedź</string>
|
||||||
<string name="player_is_live">Na żywo</string>
|
<string name="player_is_live">Na żywo</string>
|
||||||
<string name="profile_settings">Ustawienia profilu</string>
|
|
||||||
<string name="profile_hide_negative_sources">Ukryj źródła z negatywnym priorytetem</string>
|
|
||||||
<string name="profile_hide_error_sources">Ukryj źródła z błędami</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d ukryty odnośnik</item>
|
|
||||||
<item quantity="few">%d ukryte odnośniki</item>
|
|
||||||
<item quantity="many">%d ukrytych odnośników</item>
|
|
||||||
<item quantity="other">%d ukrytych odnośników</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="tv_layout_clock_settings">Pokaż zegar czasu rzeczywistego</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Wyświetl zegar czasu rzeczywistego u góry ekranu. Dotyczy strony głównej i odtwarzacza</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -735,13 +735,4 @@
|
||||||
<string name="video_singular">Video</string>
|
<string name="video_singular">Video</string>
|
||||||
<string name="skip_type_preview">Förhandsvisning</string>
|
<string name="skip_type_preview">Förhandsvisning</string>
|
||||||
<string name="player_is_live">Live</string>
|
<string name="player_is_live">Live</string>
|
||||||
<string name="tv_layout_clock_settings">Visa realtidsklocka</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Visa en realtidsklocka högst upp på skärmen. Gäller startsidan och spelaren</string>
|
|
||||||
<string name="profile_settings">Profilinställningar</string>
|
|
||||||
<string name="profile_hide_negative_sources">Dölj källor med negativ prioritet</string>
|
|
||||||
<string name="profile_hide_error_sources">Dölj källor med fel</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d dold länk</item>
|
|
||||||
<item quantity="other">%d dolda länkar</item>
|
|
||||||
</plurals>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -609,7 +609,7 @@
|
||||||
<string name="confirm_before_exiting_desc">பயன்பாட்டிலிருந்து வெளியேறுவதற்கு முன் உரையாடலைக் காட்டு</string>
|
<string name="confirm_before_exiting_desc">பயன்பாட்டிலிருந்து வெளியேறுவதற்கு முன் உரையாடலைக் காட்டு</string>
|
||||||
<string name="auth_locally">உள்நாட்டில் அங்கீகரிக்கவும்</string>
|
<string name="auth_locally">உள்நாட்டில் அங்கீகரிக்கவும்</string>
|
||||||
<string name="dismiss">தள்ளுபடி</string>
|
<string name="dismiss">தள்ளுபடி</string>
|
||||||
<string name="device_pin_url_message">உங்கள் ச்மார்ட்போன் அல்லது கணினியில் <b>%s</b> ஐப் பார்வையிட்டு மேலே உள்ள குறியீட்டை உள்ளிடவும்</string>
|
<string name="device_pin_url_message">உங்கள் ச்மார்ட்போன் அல்லது கணினியில் <b>%s </b> ஐப் பார்வையிட்டு மேலே உள்ள குறியீட்டை உள்ளிடவும்</string>
|
||||||
<string name="device_pin_error_message">சாதன முள் குறியீட்டைப் பெற முடியாது, உள்ளக அங்கீகாரத்தை முயற்சிக்கவும்</string>
|
<string name="device_pin_error_message">சாதன முள் குறியீட்டைப் பெற முடியாது, உள்ளக அங்கீகாரத்தை முயற்சிக்கவும்</string>
|
||||||
<string name="device_pin_expired_message">முள் குறியீடு இப்போது காலாவதியானது!</string>
|
<string name="device_pin_expired_message">முள் குறியீடு இப்போது காலாவதியானது!</string>
|
||||||
<string name="subs_edge_size">விளிம்பு அளவு</string>
|
<string name="subs_edge_size">விளிம்பு அளவு</string>
|
||||||
|
|
@ -652,7 +652,7 @@
|
||||||
<string name="update_plugins">செருகுநிரல்களைப் புதுப்பிக்கவும்</string>
|
<string name="update_plugins">செருகுநிரல்களைப் புதுப்பிக்கவும்</string>
|
||||||
<string name="update_plugins_manually">செருகுநிரல்களை கைமுறையாக புதுப்பிக்கவும்</string>
|
<string name="update_plugins_manually">செருகுநிரல்களை கைமுறையாக புதுப்பிக்கவும்</string>
|
||||||
<string name="starting_plugin_update_manually">சொருகி புதுப்பிப்பு செயல்முறையைத் தொடங்குகிறது!</string>
|
<string name="starting_plugin_update_manually">சொருகி புதுப்பிப்பு செயல்முறையைத் தொடங்குகிறது!</string>
|
||||||
<string name="plugins_updated_manually">%d செருகுநிரல்(கள்) வெற்றிகரமாக புதுப்பிக்கப்பட்டது</string>
|
<string name="plugins_updated_manually">வெற்றிகரமாக புதுப்பிக்கப்பட்டது %d சொருகி (கள்)!</string>
|
||||||
<string name="no_plugins_updated_manually">செருகுநிரல்கள் எதுவும் புதுப்பிக்கப்படவில்லை.</string>
|
<string name="no_plugins_updated_manually">செருகுநிரல்கள் எதுவும் புதுப்பிக்கப்படவில்லை.</string>
|
||||||
<string name="player_notification_channel_name">பிளேயர் அறிவிப்புகள்</string>
|
<string name="player_notification_channel_name">பிளேயர் அறிவிப்புகள்</string>
|
||||||
<string name="player_notification_channel_description">பின்னணியில் இருந்து பின்னணியைக் கட்டுப்படுத்துவதற்கான பிளேயர் அறிவிப்பு</string>
|
<string name="player_notification_channel_description">பின்னணியில் இருந்து பின்னணியைக் கட்டுப்படுத்துவதற்கான பிளேயர் அறிவிப்பு</string>
|
||||||
|
|
@ -731,17 +731,4 @@
|
||||||
<item quantity="one">%d பதிவிறக்கம் வரிசையில் உள்ளது</item>
|
<item quantity="one">%d பதிவிறக்கம் வரிசையில் உள்ளது</item>
|
||||||
<item quantity="other">%d பதிவிறக்கங்கள் வரிசையில் உள்ளன</item>
|
<item quantity="other">%d பதிவிறக்கங்கள் வரிசையில் உள்ளன</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="show_player_metadata_overlay">பிளேயர் மேனிலை தரவு மேலடுக்கைக் காட்டு</string>
|
|
||||||
<string name="video_singular">ஒளிதோற்றம்</string>
|
|
||||||
<string name="tv_layout_clock_settings">உண்மையான நேர கடிகாரத்தைக் காட்டு</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">திரையின் மேற்புறத்தில் நிகழ் நேர கடிகாரத்தைக் காட்டு. முகப்புப்பக்கம் மற்றும் பிளேயருக்குப் பொருந்தும்</string>
|
|
||||||
<string name="skip_type_preview">முன்னோட்டம்</string>
|
|
||||||
<string name="profile_settings">சுயவிவர அமைப்புகள்</string>
|
|
||||||
<string name="profile_hide_negative_sources">எதிர்மறையான முன்னுரிமையுடன் ஆதாரங்களை மறை</string>
|
|
||||||
<string name="profile_hide_error_sources">பிழைகளுடன் ஆதாரங்களை மறைக்கவும்</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d மறைக்கப்பட்ட இணைப்பு</item>
|
|
||||||
<item quantity="other">%d மறைக்கப்பட்ட இணைப்புகள்</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="player_is_live">வாழ்க</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -661,7 +661,7 @@
|
||||||
<string name="sort_button_date">Tarih %s</string>
|
<string name="sort_button_date">Tarih %s</string>
|
||||||
<string name="update_plugins">Eklentileri Güncelle</string>
|
<string name="update_plugins">Eklentileri Güncelle</string>
|
||||||
<string name="starting_plugin_update_manually">Eklenti güncellemesi başlıyor!</string>
|
<string name="starting_plugin_update_manually">Eklenti güncellemesi başlıyor!</string>
|
||||||
<string name="plugins_updated_manually">%d eklenti başarıyla güncellendi</string>
|
<string name="plugins_updated_manually">%d eklenti başarıyla güncellendi!</string>
|
||||||
<string name="no_plugins_updated_manually">Hiçbir eklenti güncellenmedi.</string>
|
<string name="no_plugins_updated_manually">Hiçbir eklenti güncellenmedi.</string>
|
||||||
<string name="update_plugins_manually">Eklentileri el ile güncelle</string>
|
<string name="update_plugins_manually">Eklentileri el ile güncelle</string>
|
||||||
<string name="player_notification_channel_description">Oynatıcı bildirimi arka planda oynatmasını kontrol etmek içindir</string>
|
<string name="player_notification_channel_description">Oynatıcı bildirimi arka planda oynatmasını kontrol etmek içindir</string>
|
||||||
|
|
@ -749,13 +749,4 @@
|
||||||
<string name="player_is_live">Canlı</string>
|
<string name="player_is_live">Canlı</string>
|
||||||
<string name="skip_type_preview">Ön Gösterim</string>
|
<string name="skip_type_preview">Ön Gösterim</string>
|
||||||
<string name="video_singular">Video</string>
|
<string name="video_singular">Video</string>
|
||||||
<string name="tv_layout_clock_settings">Gerçek zamanlı saati göster</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Ekranın üst kısmında gerçek zamanlı bir saat göster. Ana sayfa ve oynatıcı için uygulanır</string>
|
|
||||||
<string name="profile_settings">Profil ayarları</string>
|
|
||||||
<string name="profile_hide_negative_sources">Eksi önceliğe sahip kaynakları gizle</string>
|
|
||||||
<string name="profile_hide_error_sources">Hatalı kaynakları gizle</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d gizli bağlantı</item>
|
|
||||||
<item quantity="other">%d gizli bağlantı</item>
|
|
||||||
</plurals>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -646,7 +646,7 @@
|
||||||
<string name="sort_button_episode">Еп. %s</string>
|
<string name="sort_button_episode">Еп. %s</string>
|
||||||
<string name="sort_button_date">Дата %s</string>
|
<string name="sort_button_date">Дата %s</string>
|
||||||
<string name="update_plugins">Оновити розширення</string>
|
<string name="update_plugins">Оновити розширення</string>
|
||||||
<string name="plugins_updated_manually">Успішно оновлено %d розширення(-ь)</string>
|
<string name="plugins_updated_manually">Успішно оновлено %d розширення(-ь)!</string>
|
||||||
<string name="update_plugins_manually">Оновити розширення вручну</string>
|
<string name="update_plugins_manually">Оновити розширення вручну</string>
|
||||||
<string name="starting_plugin_update_manually">Починається оновлення розширень!</string>
|
<string name="starting_plugin_update_manually">Починається оновлення розширень!</string>
|
||||||
<string name="no_plugins_updated_manually">Не оновлено жодного розширення.</string>
|
<string name="no_plugins_updated_manually">Не оновлено жодного розширення.</string>
|
||||||
|
|
@ -739,15 +739,4 @@
|
||||||
<string name="video_singular">Відео</string>
|
<string name="video_singular">Відео</string>
|
||||||
<string name="skip_type_preview">Передперегляд</string>
|
<string name="skip_type_preview">Передперегляд</string>
|
||||||
<string name="player_is_live">Наживо</string>
|
<string name="player_is_live">Наживо</string>
|
||||||
<string name="tv_layout_clock_settings">Показувати поточний час</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Показувати поточний час у верхній частині екрана (на головній та у програвачі)</string>
|
|
||||||
<string name="profile_settings">Налаштування профілю</string>
|
|
||||||
<string name="profile_hide_negative_sources">Приховати джерела з від’ємним пріоритетом</string>
|
|
||||||
<string name="profile_hide_error_sources">Приховати джерела з помилками</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="one">%d приховане посилання</item>
|
|
||||||
<item quantity="few">%d приховані посилання</item>
|
|
||||||
<item quantity="many">%d прихованих посилань</item>
|
|
||||||
<item quantity="other">%d прихованих посилань</item>
|
|
||||||
</plurals>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
<string name="next_episode">Tập tiếp theo</string>
|
<string name="next_episode">Tập tiếp theo</string>
|
||||||
<string name="result_tags">Thể loại</string>
|
<string name="result_tags">Thể loại</string>
|
||||||
<string name="result_share">Chia sẻ</string>
|
<string name="result_share">Chia sẻ</string>
|
||||||
<string name="result_open_in_browser">Phát bằng Trình duyệt</string>
|
<string name="result_open_in_browser">Mở bằng trình duyệt</string>
|
||||||
<string name="skip_loading">Bỏ tải</string>
|
<string name="skip_loading">Bỏ tải</string>
|
||||||
<string name="loading">Đang tải…</string>
|
<string name="loading">Đang tải…</string>
|
||||||
<string name="type_watching">Đang xem</string>
|
<string name="type_watching">Đang xem</string>
|
||||||
|
|
@ -255,13 +255,13 @@
|
||||||
<string name="watch_quality_pref">Chất lượng xem ưu tiên (WiFi)</string>
|
<string name="watch_quality_pref">Chất lượng xem ưu tiên (WiFi)</string>
|
||||||
<string name="limit_title">Số ký tự tối đa tiêu đề trình phát</string>
|
<string name="limit_title">Số ký tự tối đa tiêu đề trình phát</string>
|
||||||
<string name="limit_title_rez">Hiển thị thông tin trình phát</string>
|
<string name="limit_title_rez">Hiển thị thông tin trình phát</string>
|
||||||
<string name="video_buffer_size_settings">Kích thước bộ đệm video</string>
|
<string name="video_buffer_size_settings">Kích thước bộ nhớ đệm video</string>
|
||||||
<string name="video_buffer_length_settings">Thời lượng bộ đệm video</string>
|
<string name="video_buffer_length_settings">Thời lượng bộ nhớ đệm</string>
|
||||||
<string name="video_buffer_disk_settings">Bộ nhớ đệm video trên thiết bị</string>
|
<string name="video_buffer_disk_settings">Bộ nhớ đệm video trên thiết bị</string>
|
||||||
<string name="video_buffer_clear_settings">Xoá bộ nhớ đệm hình ảnh và video</string>
|
<string name="video_buffer_clear_settings">Xoá bộ nhớ đệm hình ảnh và video</string>
|
||||||
<string name="video_ram_description">Sẽ gây lỗi nếu đặt quá cao trên thiết bị có bộ nhớ thấp như Android TV.</string>
|
<string name="video_ram_description">Sẽ gây lỗi nếu đặt quá cao trên thiết bị có bộ nhớ thấp như Android TV.</string>
|
||||||
<string name="video_disk_description">Sẽ gây lỗi nếu đặt quá cao trên thiết bị có dung lượng lưu trữ thấp như Android TV.</string>
|
<string name="video_disk_description">Sẽ gây lỗi nếu đặt quá cao trên máy có dung lượng lưu trữ thấp như Android TV.</string>
|
||||||
<string name="dns_pref">DNS qua HTTPS</string>
|
<string name="dns_pref">DNS over HTTPS</string>
|
||||||
<string name="dns_pref_summary">Rất hữu ích để bỏ chặn ISP</string>
|
<string name="dns_pref_summary">Rất hữu ích để bỏ chặn ISP</string>
|
||||||
<string name="add_site_pref">Bản sao trang web</string>
|
<string name="add_site_pref">Bản sao trang web</string>
|
||||||
<string name="remove_site_pref">Xoá trang web</string>
|
<string name="remove_site_pref">Xoá trang web</string>
|
||||||
|
|
@ -748,12 +748,4 @@
|
||||||
<string name="player_is_live">Trực tiếp</string>
|
<string name="player_is_live">Trực tiếp</string>
|
||||||
<string name="video_singular">Video</string>
|
<string name="video_singular">Video</string>
|
||||||
<string name="skip_type_preview">Xem trước</string>
|
<string name="skip_type_preview">Xem trước</string>
|
||||||
<string name="tv_layout_clock_settings">Hiển thị đồng hồ thời gian thực</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">Hiển thị đồng hồ thời gian thực ở phía trên màn hình. Áp dụng cho trang chủ và trình phát</string>
|
|
||||||
<string name="profile_settings">Cài đặt hồ sơ</string>
|
|
||||||
<string name="profile_hide_negative_sources">Ẩn nguồn có độ ưu tiên âm</string>
|
|
||||||
<string name="profile_hide_error_sources">Ẩn nguồn có lỗi</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="other">%d liên kết bị ẩn</item>
|
|
||||||
</plurals>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -655,7 +655,7 @@
|
||||||
<string name="sort_button_rating">得分 %s</string>
|
<string name="sort_button_rating">得分 %s</string>
|
||||||
<string name="sort_button_date">日期 %s</string>
|
<string name="sort_button_date">日期 %s</string>
|
||||||
<string name="update_plugins">更新插件</string>
|
<string name="update_plugins">更新插件</string>
|
||||||
<string name="plugins_updated_manually">成功更新了 %d 个插件</string>
|
<string name="plugins_updated_manually">成功更新了 %d 个插件!</string>
|
||||||
<string name="no_plugins_updated_manually">没有插件被更新。</string>
|
<string name="no_plugins_updated_manually">没有插件被更新。</string>
|
||||||
<string name="update_plugins_manually">手动更新插件</string>
|
<string name="update_plugins_manually">手动更新插件</string>
|
||||||
<string name="sort_episodes_number_asc">集数(升序)</string>
|
<string name="sort_episodes_number_asc">集数(升序)</string>
|
||||||
|
|
@ -747,12 +747,4 @@
|
||||||
<string name="video_singular">视频</string>
|
<string name="video_singular">视频</string>
|
||||||
<string name="skip_type_preview">预览</string>
|
<string name="skip_type_preview">预览</string>
|
||||||
<string name="player_is_live">播放中</string>
|
<string name="player_is_live">播放中</string>
|
||||||
<string name="tv_layout_clock_settings">显示实时时钟</string>
|
|
||||||
<string name="tv_layout_clock_settings_des">在屏幕顶部显示实时时钟。应用于主页和播放器</string>
|
|
||||||
<string name="profile_settings">配置文件设置</string>
|
|
||||||
<string name="profile_hide_negative_sources">隐藏负优先级的来源</string>
|
|
||||||
<string name="profile_hide_error_sources">隐藏有错误的来源</string>
|
|
||||||
<plurals name="links_hidden">
|
|
||||||
<item quantity="other">%d 条隐藏链接</item>
|
|
||||||
</plurals>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
<string name="continue_watching">Працягнуць прагляд</string>
|
<string name="continue_watching">Працягнуць прагляд</string>
|
||||||
<string name="action_remove_watching">Выдаліць</string>
|
<string name="action_remove_watching">Выдаліць</string>
|
||||||
<string name="action_open_watching">Больш інфармацыі</string>
|
<string name="action_open_watching">Больш інфармацыі</string>
|
||||||
<string name="action_open_play">@string/home_play</string>
|
<string name="action_open_play">\@string/home_play</string>
|
||||||
<string name="vpn_might_be_needed">Для карэктнай працы гэтага пастаўшчыка можа спатрэбіцца VPN</string>
|
<string name="vpn_might_be_needed">Для карэктнай працы гэтага пастаўшчыка можа спатрэбіцца VPN</string>
|
||||||
<string name="vpn_torrent">Гэты пастаўшчык — Torrent, рэкамендуецца VPN</string>
|
<string name="vpn_torrent">Гэты пастаўшчык — Torrent, рэкамендуецца VPN</string>
|
||||||
<string name="provider_info_meta">Вэб-сайт не пастаўляе метададзеных, загрузіць відэа не ўдасца, калі на сайце яго няма.</string>
|
<string name="provider_info_meta">Вэб-сайт не пастаўляе метададзеных, загрузіць відэа не ўдасца, калі на сайце яго няма.</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