Compare commits

..

1 commit

Author SHA1 Message Date
firelight
480923433e
Fix(TV): Crash issue due to missing xml, Closes #2980 2026-06-30 20:40:40 +02:00
372 changed files with 3724 additions and 27925 deletions

View file

@ -26,11 +26,6 @@ jobs:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
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
run: ./gradlew assemblePrereleaseDebug lint check

View file

@ -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.

View file

@ -9,8 +9,6 @@ plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.dokka)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.compose.multiplatform)
alias(libs.plugins.compose.compiler)
}
val javaTarget = JvmTarget.fromTarget(libs.versions.jvmTarget.get())
@ -278,8 +276,6 @@ dependencies {
implementation(libs.jackson.module.kotlin) // JSON Parser
implementation(libs.zipline)
// Temp/deprecated; will be removed once extensions have time to migrate from using it
implementation("com.google.code.gson:gson:2.11.0")
// Deprecated; will be removed once extensions have time to migrate from using it
implementation("me.xdrop:fuzzywuzzy:1.4.0")
@ -290,12 +286,7 @@ dependencies {
implementation(libs.work.runtime.ktx)
implementation(libs.nicehttp) // HTTP Lib
implementation(libs.bundles.compose)
implementation(libs.activity.compose)
implementation(libs.kotlinx.io.core) // Logcat parser
implementation(project(":library"))
implementation(project(":shared"))
}
tasks.register<Jar>("androidSourcesJar") {
@ -332,9 +323,11 @@ tasks.withType<KotlinJvmCompile> {
compilerOptions {
jvmTarget.set(javaTarget)
jvmDefault.set(JvmDefaultMode.ENABLE)
freeCompilerArgs.add("-Xannotation-default-target=param-property")
optIn.addAll(
"com.lagradost.cloudstream3.InternalAPI",
"com.lagradost.cloudstream3.Prerelease",
"kotlin.uuid.ExperimentalUuidApi",
)
}
}

View file

@ -136,9 +136,9 @@ class SerializationClassTester {
runCatching { Class.forName(it).kotlin }.getOrNull()
}.filter { kClass ->
// Not possible to use .hasAnnotation() on newer Android versions.
kClass.java.annotations.any { it is Serializable }
&& kClass.java.annotations.none { it is SkipSerializationTest }
&& !kClass.isAbstract
kClass.java.annotations.any {
it is Serializable
} && kClass.java.annotations.none { it is SkipSerializationTest }
}
}

View file

@ -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)
}
}

View file

@ -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)
}
}

View file

@ -7,7 +7,7 @@ package com.lagradost.cloudstream3
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp"),
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
class AcraApplication {
companion object {
@ -15,14 +15,14 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.context"),
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
val context get() = CloudStreamApp.context
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.removeKeys(folder)"),
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
fun removeKeys(folder: String): Int? =
CloudStreamApp.removeKeys(folder)
@ -30,7 +30,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.setKey(path, value)"),
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
fun <T> setKey(path: String, value: T) =
CloudStreamApp.setKey(path, value)
@ -38,7 +38,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
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) =
CloudStreamApp.setKey(folder, path, value)
@ -46,7 +46,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
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? =
CloudStreamApp.getKey(path, defVal)
@ -54,7 +54,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
replaceWith = ReplaceWith("com.lagradost.cloudstream3.CloudStreamApp.getKey(path)"),
level = DeprecationLevel.ERROR
level = DeprecationLevel.WARNING
)
inline fun <reified T : Any> getKey(path: String): T? =
CloudStreamApp.getKey(path)
@ -62,7 +62,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
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? =
CloudStreamApp.getKey(folder, path)
@ -70,7 +70,7 @@ class AcraApplication {
@Deprecated(
message = "AcraApplication is deprecated, use CloudStreamApp instead",
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? =
CloudStreamApp.getKey(folder, path, defVal)

View file

@ -113,7 +113,7 @@ class CloudStreamApp : Application(), SingletonImageLoader.Factory {
get() = _context?.get()
private set(value) {
_context = WeakReference(value)
setContext(value)
setContext(WeakReference(value))
}
fun <T : Any> getKeyClass(path: String, valueType: Class<T>): T? {
@ -170,11 +170,11 @@ class CloudStreamApp : Application(), SingletonImageLoader.Factory {
}
/** Will fall back to WebView if in TV or emulator layout. */
fun openBrowser(url: String, activity: Activity?) {
fun openBrowser(url: String, activity: FragmentActivity?) {
openBrowser(
url,
isLayout(TV or EMULATOR),
(activity as? FragmentActivity)?.supportFragmentManager?.fragments?.lastOrNull()
activity?.supportFragmentManager?.fragments?.lastOrNull()
)
}
}

View file

@ -171,7 +171,6 @@ import com.lagradost.cloudstream3.utils.UIHelper.hideKeyboard
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
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.USER_PROVIDER_API
import com.lagradost.cloudstream3.utils.USER_SELECTED_HOMEPAGE_API
@ -1215,7 +1214,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?
safe {
val appVer = BuildConfig.VERSION_NAME
val lastAppAutoBackup: String = getKey<String>("VERSION_NAME") ?: ""
val lastAppAutoBackup: String = getKey("VERSION_NAME") ?: ""
if (appVer != lastAppAutoBackup) {
setKey("VERSION_NAME", BuildConfig.VERSION_NAME)
if (lastAppAutoBackup.isEmpty()) return@safe
@ -1429,9 +1428,8 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
else -> {
resultviewPreviewBookmark.isEnabled = false
resultviewPreviewBookmark.showProgress()
//resultviewPreviewBookmark.setIconResource(R.drawable.ic_baseline_bookmark_border_24)
//resultviewPreviewBookmark.setText(R.string.loading)
resultviewPreviewBookmark.setIconResource(R.drawable.ic_baseline_bookmark_border_24)
resultviewPreviewBookmark.setText(R.string.loading)
}
}
}
@ -2018,7 +2016,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener, BiometricCa
}
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)
// If no plugins bring up extensions screen
} else if (PluginManager.getPluginsOnline().isEmpty()

View file

@ -98,7 +98,7 @@ object VideoClickActionHolder {
?.second
}
fun getPlayers(context: Context? = null) = allVideoClickActions.filter { it.isPlayer && it.shouldShowSafe(context, null) }
fun getPlayers(activity: Activity? = null) = allVideoClickActions.filter { it.isPlayer && it.shouldShowSafe(activity, null) }
}
abstract class VideoClickAction {

View file

@ -60,7 +60,7 @@ open class VlcPackage: OpenInAppAction(
intent.putExtra("secure_uri", true)
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 {
subsLang == it.languageCode
}?.let {
@ -74,4 +74,4 @@ open class VlcPackage: OpenInAppAction(
Log.d("VLC", "Position: $position, Duration: $duration")
updateDurationAndPosition(position, duration)
}
}
}

View file

@ -22,6 +22,7 @@ fun Requests.initClient(context: Context) {
}
/** Only use ignoreSSL if you know what you are doing*/
@Prerelease
fun Requests.initClient(context: Context, ignoreSSL: Boolean = false) {
this.baseClient = buildDefaultClient(context, ignoreSSL)
}
@ -33,11 +34,12 @@ fun buildDefaultClient(context: Context): OkHttpClient {
}
/** Only use ignoreSSL if you know what you are doing*/
@Prerelease
fun buildDefaultClient(context: Context, ignoreSSL: Boolean = false): OkHttpClient {
safe { Security.insertProviderAt(Conscrypt.newProvider(), 1) }
val settingsManager = PreferenceManager.getDefaultSharedPreferences(context)
val dns = settingsManager.getInt(context.getString(R.string.dns_key), 0)
val dns = settingsManager.getInt(context.getString(R.string.dns_pref), 0)
val baseClient = OkHttpClient.Builder()
.followRedirects(true)
.followSslRedirects(true)

View file

@ -176,11 +176,11 @@ object PluginManager {
fun getPluginsOnline(): Array<PluginData> {
return getKey<Array<PluginData>>(PLUGINS_KEY) ?: emptyArray()
return getKey(PLUGINS_KEY) ?: emptyArray()
}
fun getPluginsLocal(): Array<PluginData> {
return getKey<Array<PluginData>>(PLUGINS_KEY_LOCAL) ?: emptyArray()
return getKey(PLUGINS_KEY_LOCAL) ?: emptyArray()
}
private val CLOUD_STREAM_FOLDER =
@ -512,9 +512,6 @@ object PluginManager {
val res = dir.mkdirs()
if (!res) {
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
}
}

View file

@ -98,7 +98,7 @@ data class PluginWrapper(
object RepositoryManager {
const val ONLINE_PLUGINS_FOLDER = "Extensions"
val PREBUILT_REPOSITORIES: Array<RepositoryData> by lazy {
getKey<Array<RepositoryData>>("PREBUILT_REPOSITORIES") ?: emptyArray()
getKey("PREBUILT_REPOSITORIES") ?: emptyArray()
}
private val GH_REGEX =
Regex("^https://raw.githubusercontent.com/([A-Za-z0-9-]+)/([A-Za-z0-9_.-]+)/(.*)$")
@ -141,18 +141,12 @@ object RepositoryManager {
}
} else if (fixedUrl.matches("^[a-zA-Z0-9!_-]+$".toRegex())) {
safeAsync {
if (fixedUrl.startsWith("!")) {
val response = app.get("https://py.md/${fixedUrl.removePrefix("!")}", allowRedirects = false)
val url = response.headers["Location"] ?: return@safeAsync null
if (url.startsWith("https://py.md/404")) return@safeAsync null
if (url.removeSuffix("/") == "https://py.md") return@safeAsync null
return@safeAsync url
} else {
val response = app.get("https://cutt.ly/${fixedUrl}", allowRedirects = false)
val url = response.headers["Location"] ?: return@safeAsync null
if (url.startsWith("https://cutt.ly/404")) return@safeAsync null
if (url.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
return@safeAsync url
app.get("https://cutt.ly/${fixedUrl}", allowRedirects = false).let { it2 ->
it2.headers["Location"]?.let { url ->
if (url.startsWith("https://cutt.ly/404")) return@safeAsync null
if (url.removeSuffix("/") == "https://cutt.ly") return@safeAsync null
return@safeAsync url
}
}
}
} else null
@ -240,7 +234,7 @@ object RepositoryManager {
}
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

View file

@ -70,8 +70,7 @@ abstract class AccountManager {
SubtitleRepo(openSubtitlesApi),
SubtitleRepo(addic7ed),
SubtitleRepo(subDlApi),
PlainAuthRepo(animeSkipApi),
SubtitleRepo(subSourceApi)
PlainAuthRepo(animeSkipApi)
)
fun updateAccountIds() {
@ -121,8 +120,7 @@ abstract class AccountManager {
val subtitleProviders = arrayOf(
SubtitleRepo(openSubtitlesApi),
SubtitleRepo(addic7ed),
SubtitleRepo(subDlApi),
SubtitleRepo(subSourceApi)
SubtitleRepo(subDlApi)
)
val syncApis = arrayOf(
SyncRepo(malApi),

View file

@ -6,12 +6,13 @@ import com.lagradost.cloudstream3.APIHolder
import com.lagradost.cloudstream3.APIHolder.unixTime
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
import com.lagradost.cloudstream3.base64Encode
import com.lagradost.cloudstream3.splitUrlParameters
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.APP_STRING
import com.lagradost.cloudstream3.utils.AppContextUtils.splitQuery
import kotlinx.serialization.ExperimentalSerializationApi
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonNames
import java.net.URI
import java.security.SecureRandom
data class AuthLoginPage(
@ -171,8 +172,10 @@ abstract class AuthAPI {
get() = unixTimeMS
fun splitRedirectUrl(redirectUrl: String): Map<String, String> {
return splitUrlParameters(
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
return splitQuery(
URI(
redirectUrl.replace(APP_STRING, "https").replace("/#", "?")
).toURL()
)
}

View file

@ -2,6 +2,7 @@ package com.lagradost.cloudstream3.syncproviders
import androidx.annotation.WorkerThread
import com.lagradost.cloudstream3.APIHolder.unixTime
import com.lagradost.cloudstream3.ErrorLoadingException
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleEntity
import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities.SubtitleSearch
import com.lagradost.cloudstream3.subtitles.SubtitleResource
@ -13,8 +14,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
data class SavedSearchResponse(
val unixTime: Long,
val response: List<SubtitleEntity>,
val query: SubtitleSearch,
val idPrefix: String,
val query: SubtitleSearch
)
data class SavedResourceResponse(
@ -66,7 +66,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
var found: List<SubtitleEntity>? = null
for (item in searchCache) {
// 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
break
}
@ -79,7 +79,7 @@ class SubtitleRepo(override val api: SubtitleAPI) : AuthRepo(api) {
// only cache valid return values
if (returnValue.isNotEmpty()) {
val add = SavedSearchResponse(unixTime, returnValue, query, idPrefix)
val add = SavedSearchResponse(unixTime, returnValue, query)
searchCache.withLock {
if (searchCache.size > CACHE_SIZE) {
searchCache[searchCacheIndex] = add // rolling cache

View file

@ -27,10 +27,9 @@ import com.lagradost.cloudstream3.ui.library.ListSorting
import com.lagradost.cloudstream3.utils.AppUtils.parseJson
import com.lagradost.cloudstream3.utils.AppUtils.toJson
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.txt
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import java.net.URLEncoder
import java.util.Locale
@ -55,7 +54,7 @@ class AniListApi : SyncAPI() {
val token = AuthToken(
accessToken = sanitizer["access_token"]
?: throw ErrorLoadingException("No access token"),
// refreshToken = sanitizer["refresh_token"],
//refreshToken = sanitizer["refresh_token"],
accessTokenLifetime = APIHolder.unixTime + sanitizer["expires_in"]!!.toLong(),
)
return token
@ -82,6 +81,7 @@ class AniListApi : SyncAPI() {
override fun urlToId(url: String): String? =
url.removePrefix("$mainUrl/anime/").removeSuffix("/")
private fun getUrlFromId(id: Int): String {
return "$mainUrl/anime/$id"
}
@ -103,6 +103,7 @@ class AniListApi : SyncAPI() {
val internalId = (Regex("anilist\\.co/anime/(\\d*)").find(id)?.groupValues?.getOrNull(1)
?: id).toIntOrNull() ?: throw ErrorLoadingException("Invalid internalId")
val season = getSeason(internalId).data.media
return SyncAPI.SyncResult(
season.id.toString(),
nextAiring = season.nextAiringEpisode?.let {
@ -156,13 +157,14 @@ class AniListApi : SyncAPI() {
"youtube" -> listOf("https://www.youtube.com/watch?v=${season.trailer.id}")
else -> null
}
// TODO REST
//TODO REST
)
}
override suspend fun status(auth: AuthData?, id: String): SyncAPI.AbstractSyncStatus? {
val internalId = id.toIntOrNull() ?: return null
val data = getDataAboutId(auth ?: return null, internalId) ?: return null
return SyncAPI.SyncStatus(
score = Score.from100(data.score),
watchedEpisodes = data.progress,
@ -258,24 +260,24 @@ class AniListApi : SyncAPI() {
val data =
mapOf(
"query" to query,
"variables" to Variables(
search = name,
page = 1,
type = "ANIME",
).toJson()
"variables" to
mapOf(
"search" to name,
"page" to 1,
"type" to "ANIME"
).toJson()
)
val res = app.post(
"https://graphql.anilist.co/",
// headers = mapOf(),
data = data, // (if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
//headers = mapOf(),
data = data,//(if (vars == null) mapOf("query" to q) else mapOf("query" to q, "variables" to vars))
timeout = 5000 // REASONABLE TIMEOUT
).text.replace("\\", "")
return parseJson<GetSearchRoot>(res)
return res.toKotlinObject()
} catch (e: Exception) {
logError(e)
}
return null
}
@ -298,7 +300,7 @@ class AniListApi : SyncAPI() {
.replace(")", "\\)")
})"""
)
// println("NAME $name NEW NAME ${name.replace(blackListRegex, "")}")
//println("NAME $name NEW NAME ${name.replace(blackListRegex, "")}")
val shows = searchShows(name.replace(blackListRegex, ""))
shows?.data?.page?.media?.find {
@ -456,7 +458,7 @@ class AniListApi : SyncAPI() {
cacheTime = 0,
).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,
)
}
}
private suspend fun postApi(token: AuthToken, q: String, cache: Boolean = false): String? {
@ -519,84 +522,71 @@ class AniListApi : SyncAPI() {
q,
"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
).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(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("title") @SerialName("title") val title: Title?,
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage?,
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
@JsonProperty("id") val id: Int,
@JsonProperty("title") val title: Title?,
@JsonProperty("idMal") val idMal: Int?,
@JsonProperty("coverImage") val coverImage: CoverImage?,
@JsonProperty("averageScore") val averageScore: Int?
)
@Serializable
data class FullAnilistList(
@JsonProperty("data") @SerialName("data") val data: Data?,
@JsonProperty("data") val data: Data?
)
@Serializable
data class CompletedAt(
@JsonProperty("year") @SerialName("year") val year: Int,
@JsonProperty("month") @SerialName("month") val month: Int,
@JsonProperty("day") @SerialName("day") val day: Int,
@JsonProperty("year") val year: Int,
@JsonProperty("month") val month: Int,
@JsonProperty("day") val day: Int
)
@Serializable
data class StartedAt(
@JsonProperty("year") @SerialName("year") val year: String?,
@JsonProperty("month") @SerialName("month") val month: String?,
@JsonProperty("day") @SerialName("day") val day: String?,
@JsonProperty("year") val year: String?,
@JsonProperty("month") val month: String?,
@JsonProperty("day") val day: String?
)
@Serializable
data class Title(
@JsonProperty("english") @SerialName("english") val english: String?,
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
@JsonProperty("english") val english: String?,
@JsonProperty("romaji") val romaji: String?
)
@Serializable
data class CoverImage(
@JsonProperty("medium") @SerialName("medium") val medium: String?,
@JsonProperty("large") @SerialName("large") val large: String?,
@JsonProperty("extraLarge") @SerialName("extraLarge") val extraLarge: String?,
@JsonProperty("medium") val medium: String?,
@JsonProperty("large") val large: String?,
@JsonProperty("extraLarge") val extraLarge: String?
)
@Serializable
data class Media(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
@JsonProperty("season") @SerialName("season") val season: String?,
@JsonProperty("seasonYear") @SerialName("seasonYear") val seasonYear: Int,
@JsonProperty("format") @SerialName("format") val format: String?,
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int,
@JsonProperty("title") @SerialName("title") val title: Title,
@JsonProperty("description") @SerialName("description") val description: String?,
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage,
@JsonProperty("synonyms") @SerialName("synonyms") val synonyms: List<String>,
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
@JsonProperty("id") val id: Int,
@JsonProperty("idMal") val idMal: Int?,
@JsonProperty("season") val season: String?,
@JsonProperty("seasonYear") val seasonYear: Int,
@JsonProperty("format") val format: String?,
//@JsonProperty("source") val source: String,
@JsonProperty("episodes") val episodes: Int,
@JsonProperty("title") val title: Title,
@JsonProperty("description") val description: String?,
@JsonProperty("coverImage") val coverImage: CoverImage,
@JsonProperty("synonyms") val synonyms: List<String>,
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
)
@Serializable
data class Entries(
@JsonProperty("status") @SerialName("status") val status: String?,
@JsonProperty("completedAt") @SerialName("completedAt") val completedAt: CompletedAt,
@JsonProperty("startedAt") @SerialName("startedAt") val startedAt: StartedAt,
@JsonProperty("updatedAt") @SerialName("updatedAt") val updatedAt: Int,
@JsonProperty("progress") @SerialName("progress") val progress: Int,
@JsonProperty("score") @SerialName("score") val score: Int,
@JsonProperty("private") @SerialName("private") val private: Boolean,
@JsonProperty("media") @SerialName("media") val media: Media,
@JsonProperty("status") val status: String?,
@JsonProperty("completedAt") val completedAt: CompletedAt,
@JsonProperty("startedAt") val startedAt: StartedAt,
@JsonProperty("updatedAt") val updatedAt: Int,
@JsonProperty("progress") val progress: Int,
@JsonProperty("score") val score: Int,
@JsonProperty("private") val private: Boolean,
@JsonProperty("media") val media: Media
) {
fun toLibraryItem(): SyncAPI.LibraryItem {
return SyncAPI.LibraryItem(
@ -623,20 +613,17 @@ class AniListApi : SyncAPI() {
}
}
@Serializable
data class Lists(
@JsonProperty("status") @SerialName("status") val status: String?,
@JsonProperty("entries") @SerialName("entries") val entries: List<Entries>,
@JsonProperty("status") val status: String?,
@JsonProperty("entries") val entries: List<Entries>
)
@Serializable
data class MediaListCollection(
@JsonProperty("lists") @SerialName("lists") val lists: List<Lists>,
@JsonProperty("lists") val lists: List<Lists>
)
@Serializable
data class Data(
@JsonProperty("MediaListCollection") @SerialName("MediaListCollection") val mediaListCollection: MediaListCollection,
@JsonProperty("MediaListCollection") val mediaListCollection: MediaListCollection
)
private suspend fun getAniListAnimeListSmart(auth: AuthData): Array<Lists>? {
@ -685,6 +672,7 @@ class AniListApi : SyncAPI() {
private suspend fun getFullAniListList(auth: AuthData): FullAnilistList? {
val userID = auth.user.id
val mediaType = "ANIME"
val query = """
query (${'$'}userID: Int = $userID, ${'$'}MEDIA: MediaType = $mediaType) {
MediaListCollection (userId: ${'$'}userID, type: ${'$'}MEDIA) {
@ -723,44 +711,33 @@ class AniListApi : SyncAPI() {
}
}
}
}
}
"""
val text = postApi(auth.token, query)
return tryParseJson<FullAnilistList>(text)
return text?.toKotlinObject()
}
suspend fun toggleLike(auth: AuthData, id: Int): Boolean {
val q = """mutation (${'$'}animeId: Int = $id) {
ToggleFavourite (animeId: ${'$'}animeId) {
anime {
nodes {
id
title {
romaji
}
}
}
}
}"""
ToggleFavourite (animeId: ${'$'}animeId) {
anime {
nodes {
id
title {
romaji
}
}
}
}
}"""
val data = postApi(auth.token, q)
return data != ""
}
/** Used to query a saved MediaItem on the list to get the id for removal */
@Serializable
data class MediaListItemRoot(
@JsonProperty("data") @SerialName("data") val data: MediaListItem? = 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,
)
data class MediaListItemRoot(@JsonProperty("data") val data: MediaListItem? = null)
data class MediaListItem(@JsonProperty("MediaList") val mediaList: MediaListId? = null)
data class MediaListId(@JsonProperty("id") val id: Long? = null)
private suspend fun postDataAboutId(
auth: AuthData,
@ -770,6 +747,7 @@ class AniListApi : SyncAPI() {
progress: Int?
): Boolean {
val userID = auth.user.id
val q =
// Delete item if status type is None
if (type == AniListStatusType.None) {
@ -813,22 +791,22 @@ class AniListApi : SyncAPI() {
private suspend fun getUser(token: AuthToken): AniListUser? {
val q = """
{
Viewer {
id
name
avatar {
large
}
favourites {
anime {
nodes {
id
{
Viewer {
id
name
avatar {
large
}
favourites {
anime {
nodes {
id
}
}
}
}
}
}"""
}
}"""
val data = postApi(token, q)
if (data.isNullOrBlank()) return null
val userData = parseJson<AniListRoot>(data)
@ -861,356 +839,305 @@ class AniListApi : SyncAPI() {
return seasons.toList()
}
@Serializable
data class SeasonResponse(
@JsonProperty("data") @SerialName("data") val data: SeasonData,
@JsonProperty("data") val data: SeasonData,
)
@Serializable
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(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("title") @SerialName("title") val title: MediaTitle?,
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
@JsonProperty("format") @SerialName("format") val format: String?,
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
@JsonProperty("relations") @SerialName("relations") val relations: SeasonEdges?,
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: MediaCoverImage?,
@JsonProperty("duration") @SerialName("duration") val duration: Int?,
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
@JsonProperty("genres") @SerialName("genres") val genres: List<String>?,
@JsonProperty("synonyms") @SerialName("synonyms") val synonyms: List<String>?,
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
@JsonProperty("isAdult") @SerialName("isAdult") val isAdult: Boolean?,
@JsonProperty("trailer") @SerialName("trailer") val trailer: MediaTrailer?,
@JsonProperty("description") @SerialName("description") val description: String?,
@JsonProperty("characters") @SerialName("characters") val characters: CharacterConnection?,
@JsonProperty("recommendations") @SerialName("recommendations") val recommendations: RecommendationConnection?,
@JsonProperty("id") val id: Int?,
@JsonProperty("title") val title: MediaTitle?,
@JsonProperty("idMal") val idMal: Int?,
@JsonProperty("format") val format: String?,
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
@JsonProperty("relations") val relations: SeasonEdges?,
@JsonProperty("coverImage") val coverImage: MediaCoverImage?,
@JsonProperty("duration") val duration: Int?,
@JsonProperty("episodes") val episodes: Int?,
@JsonProperty("genres") val genres: List<String>?,
@JsonProperty("synonyms") val synonyms: List<String>?,
@JsonProperty("averageScore") val averageScore: Int?,
@JsonProperty("isAdult") val isAdult: Boolean?,
@JsonProperty("trailer") val trailer: MediaTrailer?,
@JsonProperty("description") val description: String?,
@JsonProperty("characters") val characters: CharacterConnection?,
@JsonProperty("recommendations") val recommendations: RecommendationConnection?,
)
@Serializable
data class RecommendationConnection(
@JsonProperty("edges") @SerialName("edges") val edges: List<RecommendationEdge> = emptyList(),
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Recommendation> = emptyList(),
@JsonProperty("edges") val edges: List<RecommendationEdge> = emptyList(),
@JsonProperty("nodes") val nodes: List<Recommendation> = emptyList(),
//@JsonProperty("pageInfo") val pageInfo: PageInfo,
)
@Serializable
data class RecommendationEdge(
@JsonProperty("node") @SerialName("node") val node: Recommendation,
//@JsonProperty("rating") val rating: Int,
@JsonProperty("node") val node: Recommendation,
)
@Serializable
data class Recommendation(
@JsonProperty("mediaRecommendation") @SerialName("mediaRecommendation") val mediaRecommendation: RecommendedMedia?,
val id: Long,
@JsonProperty("mediaRecommendation") val mediaRecommendation: SeasonMedia?,
)
@Serializable
data class CharacterName(
@JsonProperty("name") @SerialName("name") val first: String?,
@JsonProperty("middle") @SerialName("middle") val middle: String?,
@JsonProperty("last") @SerialName("last") val last: String?,
@JsonProperty("full") @SerialName("full") val full: String?,
@JsonProperty("native") @SerialName("native") val native: String?,
@JsonProperty("alternative") @SerialName("alternative") val alternative: List<String>?,
@JsonProperty("alternativeSpoiler") @SerialName("alternativeSpoiler") val alternativeSpoiler: List<String>?,
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
@JsonProperty("name") val first: String?,
@JsonProperty("middle") val middle: String?,
@JsonProperty("last") val last: String?,
@JsonProperty("full") val full: String?,
@JsonProperty("native") val native: String?,
@JsonProperty("alternative") val alternative: List<String>?,
@JsonProperty("alternativeSpoiler") val alternativeSpoiler: List<String>?,
@JsonProperty("userPreferred") val userPreferred: String?,
)
@Serializable
data class CharacterImage(
@JsonProperty("large") @SerialName("large") val large: String?,
@JsonProperty("medium") @SerialName("medium") val medium: String?,
@JsonProperty("large") val large: String?,
@JsonProperty("medium") val medium: String?,
)
@Serializable
data class Character(
@JsonProperty("name") @SerialName("name") val name: CharacterName?,
@JsonProperty("age") @SerialName("age") val age: String?,
@JsonProperty("image") @SerialName("image") val image: CharacterImage?,
@JsonProperty("name") val name: CharacterName?,
@JsonProperty("age") val age: String?,
@JsonProperty("image") val image: CharacterImage?,
)
@Serializable
data class CharacterEdge(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("id") val id: Int?,
/**
* MAIN - A primary character role in the media
* SUPPORTING - A supporting character role in the media
* BACKGROUND - A background character in the media
MAIN
A primary character role 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("name") @SerialName("name") val name: String?,
@JsonProperty("voiceActors") @SerialName("voiceActors") val voiceActors: List<Staff>?,
@JsonProperty("favouriteOrder") @SerialName("favouriteOrder") val favouriteOrder: Int?,
@JsonProperty("media") @SerialName("media") val media: List<CharacterMedia>?,
@JsonProperty("node") @SerialName("node") val node: Character?,
@JsonProperty("role") val role: String?,
@JsonProperty("name") val name: String?,
@JsonProperty("voiceActors") val voiceActors: List<Staff>?,
@JsonProperty("favouriteOrder") val favouriteOrder: Int?,
@JsonProperty("media") val media: List<SeasonMedia>?,
@JsonProperty("node") val node: Character?,
)
@Serializable
data class StaffImage(
@JsonProperty("large") @SerialName("large") val large: String?,
@JsonProperty("medium") @SerialName("medium") val medium: String?,
@JsonProperty("large") val large: String?,
@JsonProperty("medium") val medium: String?,
)
@Serializable
data class StaffName(
@JsonProperty("name") @SerialName("name") val first: String?,
@JsonProperty("middle") @SerialName("middle") val middle: String?,
@JsonProperty("last") @SerialName("last") val last: String?,
@JsonProperty("full") @SerialName("full") val full: String?,
@JsonProperty("native") @SerialName("native") val native: String?,
@JsonProperty("alternative") @SerialName("alternative") val alternative: List<String>?,
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
@JsonProperty("name") val first: String?,
@JsonProperty("middle") val middle: String?,
@JsonProperty("last") val last: String?,
@JsonProperty("full") val full: String?,
@JsonProperty("native") val native: String?,
@JsonProperty("alternative") val alternative: List<String>?,
@JsonProperty("userPreferred") val userPreferred: String?,
)
@Serializable
data class Staff(
@JsonProperty("image") @SerialName("image") val image: StaffImage?,
@JsonProperty("name") @SerialName("name") val name: StaffName?,
@JsonProperty("age") @SerialName("age") val age: Int?,
@JsonProperty("image") val image: StaffImage?,
@JsonProperty("name") val name: StaffName?,
@JsonProperty("age") val age: Int?,
)
@Serializable
data class CharacterConnection(
@JsonProperty("edges") @SerialName("edges") val edges: List<CharacterEdge>?,
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Character>?,
@JsonProperty("edges") val edges: List<CharacterEdge>?,
@JsonProperty("nodes") val nodes: List<Character>?,
//@JsonProperty("pageInfo") pageInfo: PageInfo
)
@Serializable
data class MediaTrailer(
@JsonProperty("id") @SerialName("id") val id: String?,
@JsonProperty("site") @SerialName("site") val site: String?,
@JsonProperty("thumbnail") @SerialName("thumbnail") val thumbnail: String?,
@JsonProperty("id") val id: String?,
@JsonProperty("site") val site: String?,
@JsonProperty("thumbnail") val thumbnail: String?,
)
@Serializable
data class MediaCoverImage(
@JsonProperty("extraLarge") @SerialName("extraLarge") val extraLarge: String?,
@JsonProperty("large") @SerialName("large") val large: String?,
@JsonProperty("medium") @SerialName("medium") val medium: String?,
@JsonProperty("color") @SerialName("color") val color: String?,
@JsonProperty("extraLarge") val extraLarge: String?,
@JsonProperty("large") val large: String?,
@JsonProperty("medium") val medium: String?,
@JsonProperty("color") val color: String?,
)
@Serializable
data class SeasonNextAiringEpisode(
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
@JsonProperty("timeUntilAiring") @SerialName("timeUntilAiring") val timeUntilAiring: Int?,
@JsonProperty("episode") val episode: Int?,
@JsonProperty("timeUntilAiring") val timeUntilAiring: Int?,
)
@Serializable
data class SeasonEdges(
@JsonProperty("edges") @SerialName("edges") val edges: List<SeasonEdge>?,
@JsonProperty("edges") val edges: List<SeasonEdge>?,
)
@Serializable
data class SeasonEdge(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("relationType") @SerialName("relationType") val relationType: String?,
@JsonProperty("node") @SerialName("node") val node: SeasonNode?,
@JsonProperty("id") val id: Int?,
@JsonProperty("relationType") val relationType: String?,
@JsonProperty("node") val node: SeasonNode?,
)
@Serializable
data class AniListFavoritesMediaConnection(
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<LikeNode>,
@JsonProperty("nodes") val nodes: List<LikeNode>,
)
@Serializable
data class AniListFavourites(
@JsonProperty("anime") @SerialName("anime") val anime: AniListFavoritesMediaConnection,
@JsonProperty("anime") val anime: AniListFavoritesMediaConnection,
)
@Serializable
data class MediaTitle(
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
@JsonProperty("english") @SerialName("english") val english: String?,
@JsonProperty("native") @SerialName("native") val native: String?,
@JsonProperty("userPreferred") @SerialName("userPreferred") val userPreferred: String?,
@JsonProperty("romaji") val romaji: String?,
@JsonProperty("english") val english: String?,
@JsonProperty("native") val native: String?,
@JsonProperty("userPreferred") val userPreferred: String?,
)
@Serializable
data class SeasonNode(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("format") @SerialName("format") val format: String?,
@JsonProperty("title") @SerialName("title") val title: Title?,
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
@JsonProperty("coverImage") @SerialName("coverImage") val coverImage: CoverImage?,
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
@JsonProperty("id") val id: Int,
@JsonProperty("format") val format: String?,
@JsonProperty("title") val title: Title?,
@JsonProperty("idMal") val idMal: Int?,
@JsonProperty("coverImage") val coverImage: CoverImage?,
@JsonProperty("averageScore") val averageScore: Int?
// @JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
)
@Serializable
data class AniListAvatar(
@JsonProperty("large") @SerialName("large") val large: String?,
@JsonProperty("large") val large: String?,
)
@Serializable
data class AniListViewer(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("name") @SerialName("name") val name: String,
@JsonProperty("avatar") @SerialName("avatar") val avatar: AniListAvatar?,
@JsonProperty("favourites") @SerialName("favourites") val favourites: AniListFavourites?,
@JsonProperty("id") val id: Int,
@JsonProperty("name") val name: String,
@JsonProperty("avatar") val avatar: AniListAvatar?,
@JsonProperty("favourites") val favourites: AniListFavourites?,
)
@Serializable
data class AniListData(
@JsonProperty("Viewer") @SerialName("Viewer") val viewer: AniListViewer?,
@JsonProperty("Viewer") val viewer: AniListViewer?,
)
@Serializable
data class AniListRoot(
@JsonProperty("data") @SerialName("data") val data: AniListData?,
@JsonProperty("data") val data: AniListData?,
)
@Serializable
data class AniListUser(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("name") @SerialName("name") val name: String,
@JsonProperty("picture") @SerialName("picture") val picture: String?,
@JsonProperty("id") val id: Int,
@JsonProperty("name") val name: String,
@JsonProperty("picture") val picture: String?,
)
@Serializable
data class LikeNode(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("id") val id: Int?,
//@JsonProperty("idMal") public int idMal;
)
@Serializable
data class LikePageInfo(
@JsonProperty("total") @SerialName("total") val total: Int?,
@JsonProperty("currentPage") @SerialName("currentPage") val currentPage: Int?,
@JsonProperty("lastPage") @SerialName("lastPage") val lastPage: Int?,
@JsonProperty("perPage") @SerialName("perPage") val perPage: Int?,
@JsonProperty("hasNextPage") @SerialName("hasNextPage") val hasNextPage: Boolean?,
@JsonProperty("total") val total: Int?,
@JsonProperty("currentPage") val currentPage: Int?,
@JsonProperty("lastPage") val lastPage: Int?,
@JsonProperty("perPage") val perPage: Int?,
@JsonProperty("hasNextPage") val hasNextPage: Boolean?,
)
@Serializable
data class LikeAnime(
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<LikeNode>?,
@JsonProperty("pageInfo") @SerialName("pageInfo") val pageInfo: LikePageInfo?,
@JsonProperty("nodes") val nodes: List<LikeNode>?,
@JsonProperty("pageInfo") val pageInfo: LikePageInfo?,
)
@Serializable
data class LikeFavourites(
@JsonProperty("anime") @SerialName("anime") val anime: LikeAnime?,
@JsonProperty("anime") val anime: LikeAnime?,
)
@Serializable
data class LikeViewer(
@JsonProperty("favourites") @SerialName("favourites") val favourites: LikeFavourites?,
@JsonProperty("favourites") val favourites: LikeFavourites?,
)
@Serializable
data class LikeData(
@JsonProperty("Viewer") @SerialName("Viewer") val viewer: LikeViewer?,
@JsonProperty("Viewer") val viewer: LikeViewer?,
)
@Serializable
data class LikeRoot(
@JsonProperty("data") @SerialName("data") val data: LikeData?,
@JsonProperty("data") val data: LikeData?,
)
@Serializable
data class AniListTitleHolder(
@JsonProperty("title") @SerialName("title") val title: Title?,
@JsonProperty("isFavourite") @SerialName("isFavourite") val isFavourite: Boolean?,
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("progress") @SerialName("progress") val progress: Int?,
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
@JsonProperty("score") @SerialName("score") val score: Int?,
@JsonProperty("type") @SerialName("type") val type: AniListStatusType?,
@JsonProperty("title") val title: Title?,
@JsonProperty("isFavourite") val isFavourite: Boolean?,
@JsonProperty("id") val id: Int?,
@JsonProperty("progress") val progress: Int?,
@JsonProperty("episodes") val episodes: Int?,
@JsonProperty("score") val score: Int?,
@JsonProperty("type") val type: AniListStatusType?,
)
@Serializable
data class GetDataMediaListEntry(
@JsonProperty("progress") @SerialName("progress") val progress: Int?,
@JsonProperty("status") @SerialName("status") val status: String?,
@JsonProperty("score") @SerialName("score") val score: Int?,
@JsonProperty("progress") val progress: Int?,
@JsonProperty("status") val status: String?,
@JsonProperty("score") val score: Int?,
)
@Serializable
data class Nodes(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("mediaRecommendation") @SerialName("mediaRecommendation") val mediaRecommendation: MediaRecommendation?,
@JsonProperty("id") val id: Int?,
@JsonProperty("mediaRecommendation") val mediaRecommendation: MediaRecommendation?
)
@Serializable
data class GetDataMedia(
@JsonProperty("isFavourite") @SerialName("isFavourite") val isFavourite: Boolean?,
@JsonProperty("episodes") @SerialName("episodes") val episodes: Int?,
@JsonProperty("title") @SerialName("title") val title: Title?,
@JsonProperty("mediaListEntry") @SerialName("mediaListEntry") val mediaListEntry: GetDataMediaListEntry?,
@JsonProperty("isFavourite") val isFavourite: Boolean?,
@JsonProperty("episodes") val episodes: Int?,
@JsonProperty("title") val title: Title?,
@JsonProperty("mediaListEntry") val mediaListEntry: GetDataMediaListEntry?
)
@Serializable
data class Recommendations(
@JsonProperty("nodes") @SerialName("nodes") val nodes: List<Nodes>?,
@JsonProperty("nodes") val nodes: List<Nodes>?
)
@Serializable
data class GetDataData(
@JsonProperty("Media") @SerialName("Media") val media: GetDataMedia?,
@JsonProperty("Media") val media: GetDataMedia?,
)
@Serializable
data class GetDataRoot(
@JsonProperty("data") @SerialName("data") val data: GetDataData?,
@JsonProperty("data") val data: GetDataData?,
)
@Serializable
data class GetSearchTitle(
@JsonProperty("romaji") @SerialName("romaji") val romaji: String?,
@JsonProperty("romaji") val romaji: String?,
)
@Serializable
data class TrailerObject(
@JsonProperty("id") @SerialName("id") val id: String?,
@JsonProperty("thumbnail") @SerialName("thumbnail") val thumbnail: String?,
@JsonProperty("site") @SerialName("site") val site: String?,
@JsonProperty("id") val id: String?,
@JsonProperty("thumbnail") val thumbnail: String?,
@JsonProperty("site") val site: String?,
)
@Serializable
data class GetSearchMedia(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("idMal") @SerialName("idMal") val idMal: Int?,
@JsonProperty("seasonYear") @SerialName("seasonYear") val seasonYear: Int,
@JsonProperty("title") @SerialName("title") val title: GetSearchTitle,
@JsonProperty("startDate") @SerialName("startDate") val startDate: StartedAt,
@JsonProperty("averageScore") @SerialName("averageScore") val averageScore: Int?,
@JsonProperty("meanScore") @SerialName("meanScore") val meanScore: Int?,
@JsonProperty("bannerImage") @SerialName("bannerImage") val bannerImage: String?,
@JsonProperty("trailer") @SerialName("trailer") val trailer: TrailerObject?,
@JsonProperty("nextAiringEpisode") @SerialName("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
@JsonProperty("recommendations") @SerialName("recommendations") val recommendations: Recommendations?,
@JsonProperty("relations") @SerialName("relations") val relations: SeasonEdges?,
@JsonProperty("id") val id: Int,
@JsonProperty("idMal") val idMal: Int?,
@JsonProperty("seasonYear") val seasonYear: Int,
@JsonProperty("title") val title: GetSearchTitle,
@JsonProperty("startDate") val startDate: StartedAt,
@JsonProperty("averageScore") val averageScore: Int?,
@JsonProperty("meanScore") val meanScore: Int?,
@JsonProperty("bannerImage") val bannerImage: String?,
@JsonProperty("trailer") val trailer: TrailerObject?,
@JsonProperty("nextAiringEpisode") val nextAiringEpisode: SeasonNextAiringEpisode?,
@JsonProperty("recommendations") val recommendations: Recommendations?,
@JsonProperty("relations") val relations: SeasonEdges?
)
@Serializable
data class GetSearchPage(
@JsonProperty("Page") @SerialName("Page") val page: GetSearchData?,
@JsonProperty("Page") val page: GetSearchData?,
)
@Serializable
data class GetSearchData(
@JsonProperty("media") @SerialName("media") val media: List<GetSearchMedia>?,
@JsonProperty("media") val media: List<GetSearchMedia>?,
)
@Serializable
data class GetSearchRoot(
@JsonProperty("data") @SerialName("data") val data: GetSearchPage?,
@JsonProperty("data") val data: GetSearchPage?,
)
}
}

View file

@ -7,10 +7,11 @@ import com.lagradost.cloudstream3.subtitles.AbstractSubtitleEntities
import com.lagradost.cloudstream3.subtitles.SubtitleResource
import com.lagradost.cloudstream3.syncproviders.AuthData
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 kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import java.util.concurrent.TimeUnit
class SubSourceApi : SubtitleAPI() {
override val name = "SubSource"
@ -19,70 +20,77 @@ class SubSourceApi : SubtitleAPI() {
override val requiresLogin = false
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(
auth: AuthData?,
query: AbstractSubtitleEntities.SubtitleSearch
): List<AbstractSubtitleEntities.SubtitleEntity>? {
//Only supports Imdb Id search for now
if (query.imdbId == null) return null
val queryLang = SubtitleHelper.fromTagToEnglishLanguageName(query.lang)
val type = if ((query.seasonNumber ?: 0) > 0) TvType.TvSeries else TvType.Movie
val searchResponse = app.post(
url = "$APIURL/movie/search",
json = mapOf(
"includeSeasons" to false,
"limit" to 15,
"query" to query.imdbId!!,
"signal" to "{}"
),
cacheTime = 120,
cacheUnit = TimeUnit.MINUTES,
).parsedSafe<SearchRoot>() ?: return null
val firstResult = searchResponse.results.firstOrNull() ?: return null
val apiResponse = app.get(
url = "$APIURL${firstResult.link.replace("series", "subtitles")}",
cacheTime = 120,
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
val searchRes = app.post(
url = "$APIURL/searchMovie",
data = mapOf(
"query" to query.imdbId!!
)
).parsedSafe<ApiSearch>() ?: return null
val postData = if (type == TvType.TvSeries) {
mapOf(
"langs" to "[]",
"movieName" to searchRes.found.first().linkName,
"season" to "season-${query.seasonNumber}"
)
} else {
mapOf(
"langs" to "[]",
"movieName" to searchRes.found.first().linkName,
)
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(
idPrefix = this.idPrefix,
name = subtitle.releaseInfo,
lang = subtitle.language,
data = subtitle.link,
name = subtitle.releaseName!!,
lang = subtitle.lang!!,
data = SubData(
movie = subtitle.linkName!!,
lang = subtitle.lang,
id = subtitle.subId.toString(),
).toJson(),
type = type,
source = this.name,
epNumber = query.epNumber,
seasonNumber = query.seasonNumber,
isHearingImpaired = subtitle.hearingImpaired == 1,
isHearingImpaired = subtitle.hi == 1,
)
}
}
@ -91,114 +99,79 @@ class SubSourceApi : SubtitleAPI() {
auth: AuthData?,
subtitle: AbstractSubtitleEntities.SubtitleEntity
) {
val data = app.get("$APIURL/subtitle/${subtitle.data}")
.parsedSafe<DownloadRoot>()
?: return
val parsedSub = parseJson<SubData>(subtitle.data)
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(
"$APIURL/subtitle/download/${data.subtitle.downloadToken}"
"$DOWNLOADENDPOINT/${subRes.sub.downloadToken}"
) { name, _ ->
name
}
}
@Serializable
data class SearchRoot(
@JsonProperty("success") @SerialName("success") var success: Boolean? = null,
@JsonProperty("results") @SerialName("results") var results: ArrayList<Results> = arrayListOf(),
@JsonProperty("users") @SerialName("users") var users: ArrayList<Users> = arrayListOf()
data class ApiSearch(
@JsonProperty("success") @SerialName("success") val success: Boolean,
@JsonProperty("found") @SerialName("found") val found: List<Found>,
)
@Serializable
data class Users(
@JsonProperty("id") @SerialName("id") var id: Int? = null,
@JsonProperty("displayname") @SerialName("displayname") var displayname: String? = null,
@JsonProperty("avatar") @SerialName("avatar") var avatar: String? = null,
@JsonProperty("badges") @SerialName("badges") var badges: ArrayList<String> = arrayListOf()
data class Found(
@JsonProperty("id") @SerialName("id") val id: Long,
@JsonProperty("title") @SerialName("title") val title: String,
@JsonProperty("seasons") @SerialName("seasons") val seasons: Long,
@JsonProperty("type") @SerialName("type") val type: String,
@JsonProperty("releaseYear") @SerialName("releaseYear") val releaseYear: Long,
@JsonProperty("linkName") @SerialName("linkName") val linkName: String,
)
@Serializable
data class Results(
@JsonProperty("id") @SerialName("id") var id: Int? = null,
@JsonProperty("title") @SerialName("title") var title: String? = null,
@JsonProperty("type") @SerialName("type") var type: String? = null,
@JsonProperty("link") @SerialName("link") var link: String,
@JsonProperty("releaseYear") @SerialName("releaseYear") var releaseYear: Int? = null,
@JsonProperty("poster") @SerialName("poster") var poster: String? = null,
@JsonProperty("subtitleCount") @SerialName("subtitleCount") var subtitleCount: String? = null,
@JsonProperty("rating") @SerialName("rating") var rating: Double? = null,
@JsonProperty("cast") @SerialName("cast") var cast: ArrayList<String> = arrayListOf(),
@JsonProperty("genres") @SerialName("genres") var genres: ArrayList<String> = arrayListOf(),
@JsonProperty("score") @SerialName("score") var score: Double? = null
data class ApiResponse(
@JsonProperty("success") @SerialName("success") val success: Boolean,
@JsonProperty("movie") @SerialName("movie") val movie: Movie,
@JsonProperty("subs") @SerialName("subs") val subs: List<Sub>,
)
@Serializable
data class ItemRoot(
// @SerialName("media_type" ) var mediaType : String? = null,
@JsonProperty("subtitles") @SerialName("subtitles") var subtitles: ArrayList<Subtitles>,
//@SerialName("movie" ) var movie : Movie? = Movie()
data class Movie(
@JsonProperty("id") @SerialName("id") val id: Long? = null,
@JsonProperty("type") @SerialName("type") val type: String? = null,
@JsonProperty("year") @SerialName("year") val year: Long? = null,
@JsonProperty("fullName") @SerialName("fullName") val fullName: String? = null,
)
@Serializable
data class Subtitles(
@JsonProperty("id") @SerialName("id") var id: Int? = null,
@JsonProperty("language") @SerialName("language") var language: String,
@JsonProperty("release_type") @SerialName("release_type") var releaseType: String? = null,
@JsonProperty("release_info") @SerialName("release_info") var releaseInfo: String,
@JsonProperty("upload_date") @SerialName("upload_date") var uploadDate: String? = null,
@JsonProperty("hearing_impaired") @SerialName("hearing_impaired") var hearingImpaired: Int? = null,
@JsonProperty("caption") @SerialName("caption") var caption: String? = null,
@JsonProperty("rating") @SerialName("rating") var rating: String? = null,
@JsonProperty("uploader_id") @SerialName("uploader_id") var uploaderId: Int? = null,
@JsonProperty("uploader_displayname") @SerialName("uploader_displayname") var uploaderDisplayname: String? = null,
@JsonProperty("uploader_badges") @SerialName("uploader_badges") var uploaderBadges: ArrayList<String> = arrayListOf(),
@JsonProperty("link") @SerialName("link") var link: String,
@JsonProperty("production_type") @SerialName("production_type") var productionType: String? = null,
@JsonProperty("last_subtitle") @SerialName("last_subtitle") var lastSubtitle: Boolean? = null
data class Sub(
@JsonProperty("hi") @SerialName("hi") val hi: Int? = null,
@JsonProperty("fullLink") @SerialName("fullLink") val fullLink: String? = null,
@JsonProperty("linkName") @SerialName("linkName") val linkName: String? = null,
@JsonProperty("lang") @SerialName("lang") val lang: String? = null,
@JsonProperty("releaseName") @SerialName("releaseName") val releaseName: String? = null,
@JsonProperty("subId") @SerialName("subId") val subId: Long? = null,
)
@Serializable
data class DownloadRoot(
@JsonProperty("subtitle") @SerialName("subtitle") var subtitle: Subtitle,
//@SerializedName("movie" ) var movie : Movie? = Movie(),
//@SerializedName("donationLinks" ) var donationLinks : DonationLinks? = DonationLinks(),
//@SerializedName("isDownloaded" ) var isDownloaded : Boolean? = null,
//@SerializedName("user_rated" ) var userRated : String? = null
data class SubData(
@JsonProperty("movie") @SerialName("movie") val movie: String,
@JsonProperty("lang") @SerialName("lang") val lang: String,
@JsonProperty("id") @SerialName("id") val id: String,
)
@Serializable
data class Subtitle(
@JsonProperty("id") @SerialName("id") var id: Int? = null,
@JsonProperty("uploaded_at") @SerialName("uploaded_at") var uploadedAt: String? = null,
@JsonProperty("language") @SerialName("language") var language: String? = null,
@JsonProperty("rating") @SerialName("rating") var rating: String? = null,
//SerialName("rates" ) var rates : Rates? = Rates(),
@JsonProperty("uploaded_by") @SerialName("uploaded_by") var uploadedBy: Int? = null,
//@SerialName("contribs" ) var contribs : ArrayList<Contribs> = arrayListOf(),
@JsonProperty("release_info") @SerialName("release_info") var releaseInfo: ArrayList<String> = arrayListOf(),
@JsonProperty("commentary") @SerialName("commentary") var commentary: String? = null,
@JsonProperty("files") @SerialName("files") var files: String? = null,
@JsonProperty("size") @SerialName("size") var size: String? = null,
@JsonProperty("downloads") @SerialName("downloads") var downloads: Int? = null,
@JsonProperty("comments") @SerialName("comments") var comments: Int? = null,
@JsonProperty("production_type") @SerialName("production_type") var productionType: String? = null,
@JsonProperty("release_type") @SerialName("release_type") var releaseType: String? = null,
@JsonProperty("episode") @SerialName("episode") var episode: String? = null,
@JsonProperty("hearing_impaired") @SerialName("hearing_impaired") var hearingImpaired: Int? = null,
@JsonProperty("foreign_parts") @SerialName("foreign_parts") var foreignParts: String? = null,
@JsonProperty("framerate") @SerialName("framerate") var framerate: String? = null,
@JsonProperty("preview") @SerialName("preview") var preview: String? = null,
@JsonProperty("user_uploaded") @SerialName("user_uploaded") var userUploaded: Boolean? = null,
@JsonProperty("download_token") @SerialName("download_token") var downloadToken: String
data class SubTitleLink(
@JsonProperty("sub") @SerialName("sub") val sub: SubToken,
)
@Serializable
data class SubToken(
@JsonProperty("downloadToken") @SerialName("downloadToken") val downloadToken: String,
)
}

View file

@ -12,7 +12,6 @@ import android.widget.ImageView
import android.widget.LinearLayout
import android.widget.ListView
import androidx.appcompat.app.AlertDialog
import com.fasterxml.jackson.annotation.JsonProperty
import com.google.android.gms.cast.MediaLoadOptions
import com.google.android.gms.cast.MediaQueueItem
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.subtitles.ChromecastSubtitlesFragment
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.CastHelper.awaitLinks
import com.lagradost.cloudstream3.utils.CastHelper.getMediaInfo
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.ExtractorLink
import com.lagradost.cloudstream3.utils.Qualities
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
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? {
return try {
val index = this.mediaQueue.itemIds.indexOf(this.currentItem?.itemId ?: 0)
if (index < 0) null else index
} catch (_: Exception) {
} catch (e: Exception) {
null
}
}
@ -79,41 +89,48 @@ class SkipNextEpisodeController(val view: ImageView) : UIController() {
}
}
@Serializable
data class MetadataHolder(
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
@JsonProperty("isMovie") @SerialName("isMovie") val isMovie: Boolean,
@JsonProperty("title") @SerialName("title") val title: String?,
@JsonProperty("poster") @SerialName("poster") val poster: String?,
@JsonProperty("currentEpisodeIndex") @SerialName("currentEpisodeIndex") val currentEpisodeIndex: Int,
@JsonProperty("episodes") @SerialName("episodes") val episodes: List<ResultEpisode>,
@JsonProperty("currentLinks") @SerialName("currentLinks") val currentLinks: List<ExtractorLink>,
@JsonProperty("currentSubtitles") @SerialName("currentSubtitles") val currentSubtitles: List<SubtitleData>,
val apiName: String,
val isMovie: Boolean,
val title: String?,
val poster: String?,
val currentEpisodeIndex: Int,
val episodes: List<ResultEpisode>,
val currentLinks: List<ExtractorLink>,
val currentSubtitles: List<SubtitleData>
)
class SelectSourceController(val view: ImageView, val activity: ControllerActivity) : UIController() {
class SelectSourceController(val view: ImageView, val activity: ControllerActivity) :
UIController() {
init {
view.setImageResource(R.drawable.ic_baseline_playlist_play_24)
view.setOnClickListener {
// lateinit var dialog: AlertDialog
val holder = getCurrentMetaData()
if (holder != null) {
val items = holder.currentLinks
if (items.isNotEmpty() && remoteMediaClient?.currentItem != null) {
val subTracks = remoteMediaClient?.mediaInfo?.mediaTracks?.filter { it.type == MediaTrack.TYPE_TEXT }
?: ArrayList()
val subTracks =
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)
val bottomSheetDialog = bottomSheetDialogBuilder.create()
bottomSheetDialog.show()
val providerList = bottomSheetDialog.findViewById<ListView>(R.id.sort_providers)!!
val subtitleList = bottomSheetDialog.findViewById<ListView>(R.id.sort_subtitles)!!
// bottomSheetDialog.setContentView(R.layout.sort_bottom_sheet)
val providerList =
bottomSheetDialog.findViewById<ListView>(R.id.sort_providers)!!
val subtitleList =
bottomSheetDialog.findViewById<ListView>(R.id.sort_subtitles)!!
if (subTracks.isEmpty()) {
bottomSheetDialog.findViewById<LinearLayout>(R.id.sort_subtitles_holder)?.visibility = GONE
bottomSheetDialog.findViewById<LinearLayout>(R.id.sort_subtitles_holder)?.visibility =
GONE
} 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.addAll(subTracks.mapNotNull { it.name })
@ -121,8 +138,10 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
subtitleList.adapter = arrayAdapter
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.setItemChecked(subtitleIndex, true)
@ -134,7 +153,9 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
ChromecastSubtitlesFragment.getCurrentSavedStyle().apply {
val font = TextTrackStyle()
font.setFontFamily(fontFamily ?: "Google Sans")
fontGenericFamily?.let { font.fontGenericFamily = it }
fontGenericFamily?.let {
font.fontGenericFamily = it
}
font.windowColor = windowColor
font.backgroundColor = backgroundColor
@ -151,7 +172,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
if (!it.status.isSuccess) {
Log.e(
"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
?: remoteMediaClient?.currentItem?.media?.contentId)
val sortingMethods = items.map { "${it.name} ${Qualities.getStringByInt(it.quality)}" }
.toTypedArray()
val sortingMethods =
items.map { "${it.name} ${Qualities.getStringByInt(it.quality)}" }
.toTypedArray()
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())
providerList.choiceMode = AbsListView.CHOICE_MODE_SINGLE
@ -178,8 +201,10 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
providerList.setOnItemClickListener { _, _, which, _ ->
val epData = holder.episodes[holder.currentEpisodeIndex]
fun loadMirror(index: Int) {
if (holder.currentLinks.size <= index) return
val mediaItem = getMediaInfo(
epData,
holder,
@ -189,21 +214,25 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
)
val startAt = remoteMediaClient?.approximateStreamPosition ?: 0
//remoteMediaClient.load(mediaItem, true, startAt)
try { // THIS IS VERY IMPORTANT BECAUSE WE NEVER WANT TO AUTOLOAD THE NEXT EPISODE
val currentIdIndex = remoteMediaClient?.getItemIndex()
val nextId = remoteMediaClient?.mediaQueue?.itemIds?.get(
currentIdIndex?.plus(1) ?: 0
)
if (currentIdIndex == null && nextId != null) {
awaitLinks(
remoteMediaClient?.queueInsertAndPlayItem(
MediaQueueItem.Builder(mediaItem).build(),
nextId,
startAt,
JSONObject(),
JSONObject()
)
) { loadMirror(index + 1) }
) {
loadMirror(index + 1)
}
} else {
val mediaLoadOptions =
MediaLoadOptions.Builder()
@ -215,9 +244,11 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
mediaItem,
mediaLoadOptions
)
) { loadMirror(index + 1) }
) {
loadMirror(index + 1)
}
}
} catch (_: Exception) {
} catch (e: Exception) {
val mediaLoadOptions =
MediaLoadOptions.Builder()
.setPlayPosition(startAt)
@ -228,8 +259,8 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
}
}
}
loadMirror(which)
bottomSheetDialog.dismissSafe(activity)
}
}
@ -239,19 +270,23 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
private fun getCurrentMetaData(): MetadataHolder? {
return try {
val data = remoteMediaClient?.mediaInfo?.customData?.toString() ?: return null
parseJson<MetadataHolder>(data)
} catch (_: Exception) {
val data = remoteMediaClient?.mediaInfo?.customData?.toString()
data?.toKotlinObject()
} catch (e: Exception) {
null
}
}
var isLoadingMore = false
override fun onMediaStatusUpdated() {
super.onMediaStatusUpdated()
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 {
if (meta != null && meta.episodes.size > meta.currentEpisodeIndex + 1) {
val currentIdIndex = remoteMediaClient?.getItemIndex() ?: return
@ -268,7 +303,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
currentPosition,
currentDuration,
epData,
meta.episodes.getOrNull(index + 1),
meta.episodes.getOrNull(index + 1)
)
} catch (t: Throwable) {
logError(t)
@ -279,7 +314,9 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
ioSafe {
val currentLinks = mutableSetOf<ExtractorLink>()
val currentSubs = mutableSetOf<SubtitleData>()
val generator = RepoLinkGenerator(listOf(epData))
val isSuccessful = safeApiCall {
generator.generateLinks(
clearCache = false,
@ -292,7 +329,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
currentSubs.add(it)
},
offset = 0,
isCasting = true,
isCasting = true
)
}
@ -303,18 +340,32 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
val jsonCopy = meta.copy(
currentLinks = sortedLinks,
currentSubtitles = sortedSubs,
currentEpisodeIndex = index,
currentEpisodeIndex = index
)
val done = JSONObject(jsonCopy.toJson())
val done =
JSONObject(jsonCopy.toJson())
val mediaInfo = getMediaInfo(
epData,
jsonCopy,
0,
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 {
awaitLinks(
remoteMediaClient?.queueAppendItem(
@ -323,6 +374,7 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
)
) {
println("FAILED TO LOAD NEXT ITEM")
// loadIndex(1)
}
isLoadingMore = false
}
@ -345,7 +397,10 @@ class SelectSourceController(val view: ImageView, val activity: ControllerActivi
class SkipTimeController(val view: ImageView, forwards: Boolean) : UIController() {
init {
//val settingsManager = PreferenceManager.getDefaultSharedPreferences()
//val time = settingsManager?.getInt("chromecast_tap_time", 30) ?: 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.setOnClickListener {
remoteMediaClient?.let {

View file

@ -37,10 +37,8 @@ import com.lagradost.cloudstream3.utils.DataStoreHelper
import com.lagradost.cloudstream3.utils.DataStoreHelper.getDefaultAccount
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
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.showInputMethod
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
object AccountHelper {
fun showAccountEditDialog(
@ -166,7 +164,7 @@ object AccountHelper {
canSetPin = true
binding.editProfilePhotoButton.setOnClickListener {
binding.editProfilePhotoButton.setOnClickListener({
val bottomSheetDialog = BottomSheetDialog(context)
val sheetBinding = BottomInputDialogBinding.inflate(LayoutInflater.from(context))
bottomSheetDialog.setContentView(sheetBinding.root)
@ -176,46 +174,42 @@ object AccountHelper {
text1.text = context.getString(R.string.edit_profile_image_title)
nginxTextInput.hint = context.getString(R.string.edit_profile_image_hint)
applyBtt.setOnClickListener {
applyBtt.setOnClickListener({
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)
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()
}
})
sheetBinding.cancelBtt.setOnClickListener({
bottomSheetDialog.dismissSafe()
})
}
}
})
}
fun showPinInputDialog(

View file

@ -54,15 +54,10 @@ class AccountSelectActivity : FragmentActivity(), BiometricCallback {
false
)
val isFromMainActivity = intent.getBooleanExtra(
"isFromMainActivity",
false
)
// Sometimes we start this activity when we have already logged in
// For example when using cloudstreamsearch://
// In those cases we want to just go to the main activity instantly
if (hasLoggedIn && !isEditingFromMainActivity && !isFromMainActivity) {
if (hasLoggedIn && !isEditingFromMainActivity) {
navigateToMainActivity()
return
}
@ -103,7 +98,7 @@ class AccountSelectActivity : FragmentActivity(), BiometricCallback {
// Don't show account selection if there is only
// one account that exists
if (!isFromMainActivity && !isEditingFromMainActivity && skipStartup) {
if (!isEditingFromMainActivity && skipStartup) {
val currentAccount = accounts.firstOrNull { it.keyIndex == selectedKeyIndex }
if (currentAccount?.lockPin != null) {
CommonActivity.init(this)

View file

@ -10,7 +10,6 @@ import androidx.lifecycle.LiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.lagradost.api.Log
import com.lagradost.cloudstream3.CloudStreamApp
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.isEpisodeBased
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.DownloadQueueManager
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 kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
@ -69,17 +67,6 @@ class DownloadViewModel : ViewModel() {
private val _selectedItemIds = ConsistentLiveData<Set<Int>?>(null)
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() {
updateSelectedItems { null }
@ -402,18 +389,6 @@ class DownloadViewModel : ViewModel() {
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>) {
try {
val stat = StatFs(Environment.getExternalStorageDirectory().path)
@ -609,4 +584,4 @@ class DownloadViewModel : ViewModel() {
val names: List<String>,
val parentName: String?
)
}
}

View file

@ -164,11 +164,9 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
}
}
fun downloadDeleteEvent(data: Int) {
if (data == persistentId) {
resetView()
}
}
/*fun downloadDeleteEvent(data: Int) {
}*/
/*fun downloadEvent(data: Pair<Int, VideoDownloadManager.DownloadActionType>) {
val (id, action) = data
@ -187,7 +185,7 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
override fun onAttachedToWindow() {
VideoDownloadManager.downloadStatusEvent += ::downloadStatusEvent
VideoDownloadManager.downloadDeleteEvent += ::downloadDeleteEvent
// VideoDownloadManager.downloadDeleteEvent += ::downloadDeleteEvent
// VideoDownloadManager.downloadEvent += ::downloadEvent
VideoDownloadManager.downloadProgressEvent += ::downloadProgressEvent
@ -202,7 +200,7 @@ abstract class BaseFetchButton(context: Context, attributeSet: AttributeSet) :
override fun onDetachedFromWindow() {
VideoDownloadManager.downloadStatusEvent -= ::downloadStatusEvent
VideoDownloadManager.downloadDeleteEvent -= ::downloadDeleteEvent
// VideoDownloadManager.downloadDeleteEvent -= ::downloadDeleteEvent
// VideoDownloadManager.downloadEvent -= ::downloadEvent
VideoDownloadManager.downloadProgressEvent -= ::downloadProgressEvent

View file

@ -24,15 +24,11 @@ import androidx.core.view.isVisible
import androidx.fragment.app.activityViewModels
import androidx.preference.PreferenceManager
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.BottomSheetDialog
import com.google.android.material.chip.Chip
import com.lagradost.api.Log
import com.lagradost.cloudstream3.APIHolder
import com.lagradost.cloudstream3.APIHolder.apis
import com.lagradost.cloudstream3.APIHolder.getApiFromNameNull
import com.lagradost.cloudstream3.AllLanguagesName
import com.lagradost.cloudstream3.CommonActivity.showToast
import com.lagradost.cloudstream3.MainAPI
@ -47,7 +43,6 @@ import com.lagradost.cloudstream3.mvvm.Resource
import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.mvvm.observe
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.randomApi
import com.lagradost.cloudstream3.ui.BaseFragment
@ -68,7 +63,6 @@ import com.lagradost.cloudstream3.utils.AppContextUtils.getApiProviderLangSettin
import com.lagradost.cloudstream3.utils.AppContextUtils.isNetworkAvailable
import com.lagradost.cloudstream3.utils.AppContextUtils.isRecyclerScrollable
import com.lagradost.cloudstream3.utils.AppContextUtils.loadSearchResult
import com.lagradost.cloudstream3.utils.AppContextUtils.openBrowser
import com.lagradost.cloudstream3.utils.AppContextUtils.ownHide
import com.lagradost.cloudstream3.utils.AppContextUtils.ownShow
import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
@ -112,14 +106,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
val errorProfilePic = errorProfilePics.random()
fun Context.getDisplayName(apiName: String?): String? {
return when (apiName) {
noneApi.name -> getString(R.string.none)
randomApi.name -> getString(R.string.home_random)
else -> apiName
}
}
//fun Activity.loadHomepageList(
// item: HomePageList,
// deleteCallback: (() -> Unit)? = null,
@ -438,30 +424,11 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
.inflate(R.layout.sort_bottom_single_provider_choice, parent, false)
val titleText = view.findViewById<TextView>(R.id.text1)
val pinIcon = view.findViewById<ImageView>(R.id.pinicon)
val settingsIcon = view.findViewById<ImageView>(R.id.action_settings)
val name = getItem(position)
titleText?.text = name
val providerApi = currentValidApis[position]
val isPinned =
pinnedphashset.contains(providerApi.name)
pinnedphashset.contains(currentValidApis[position].name)
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
}
}
@ -484,14 +451,7 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
arrayAdapter.clear()
val sortedApis = validAPIs
.filter {
val isPinned = pinnedphashset.contains(it.name)
// 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(
it.hasMainPage && (pinnedphashset.contains(it.name) || it.supportedTypes.any(
preSelectedTypes::contains
))
}
@ -513,10 +473,8 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
addAll(remainingApis)
}
val names = currentValidApis.map {
val displayName = getDisplayName(it.name)
if (isMultiLang) "${getFlagFromIso(it.lang)?.plus(" ") ?: ""}$displayName" else displayName
}
val names =
currentValidApis.map { if (isMultiLang) "${getFlagFromIso(it.lang)?.plus(" ") ?: ""}${it.name}" else it.name }
val index = currentValidApis.map { it.name }.indexOf(currentApiName)
listView?.setItemChecked(index, true)
arrayAdapter.addAll(names)
@ -707,6 +665,7 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
fromUI = true
)
showToast(R.string.action_reload, Toast.LENGTH_SHORT)
true
}
homePreviewSearchButton.setOnClickListener { _ ->
@ -714,38 +673,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
homeViewModel.queryTextSubmit("")
}
homePreviewSettingsButton.setOnClickListener { view ->
val apiName = homeViewModel.apiName.value
val plugin = APIHolder.getApiFromNameNull(apiName)
?.sourcePlugin?.let { PluginManager.plugins[it] } as? Plugin
val openSettings = plugin?.openSettings
if (openSettings != null) {
try {
val activityContext = view.context.getActivity() ?: view.context
openSettings.invoke(activityContext)
} catch (e: Throwable) {
logError(e)
}
}
}
// 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() {
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) {
if (isLayout(PHONE)) {
@ -785,17 +712,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
view.getLocationInWindow(rect)
scrollParent.isVisible = true
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)
@ -818,10 +734,9 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
observe(homeViewModel.apiName) { apiName ->
currentApiName = apiName
val displayApiName = context?.getDisplayName(apiName) ?: apiName
binding.apply {
homeApiFab.text = displayApiName
homeChangeApi.text = displayApiName
homeApiFab.text = apiName
homeChangeApi.text = apiName
homePreviewReloadProvider.isGone = (apiName == noneApi.name)
homePreviewSearchButton.isGone = (apiName == noneApi.name)
}
@ -829,12 +744,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
observe(homeViewModel.page) { data ->
binding.apply {
if (isLayout(TV or EMULATOR)) {
val plugin = APIHolder.getApiFromNameNull(homeViewModel.apiName.value)
?.sourcePlugin?.let { PluginManager.plugins[it] } as? Plugin
homePreviewSettingsButton.isGone = plugin?.openSettings == null
}
when (data) {
is Resource.Success -> {
val d = data.value
@ -850,7 +759,6 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
homeLoadingError.isVisible = false
homeMasterRecycler.isVisible = true
homeLoadingShimmer.stopShimmer()
//home_loaded?.isVisible = true
if (toggleRandomButton) {
val distinct = d.values
@ -871,16 +779,26 @@ class HomeFragment : BaseFragment<FragmentHomeBinding>(
homeRandomButtonTv.isGone = true
}
}
//Open browser directly, without a menu.
is Resource.Failure -> {
homeLoadingShimmer.stopShimmer()
homeReloadConnectionerror.setOnClickListener(apiChangeClickListener)
homeReloadConnectionOpenInBrowser.setOnClickListener {
val currentApi = currentApiName?.let { getApiFromNameNull(it) }
?: homeViewModel.apiName.value?.let { getApiFromNameNull(it) }
val mainUrl = currentApi?.mainUrl
if (!mainUrl.isNullOrBlank()) {
context?.openBrowser(mainUrl)
homeReloadConnectionOpenInBrowser.setOnClickListener { view ->
val validAPIs = apis//.filter { api -> api.hasMainPage }
view.popupMenuNoIconsAndNoStringRes(validAPIs.mapIndexed { index, api ->
Pair(
index,
api.name
)
}) {
try {
val i = Intent(Intent.ACTION_VIEW)
i.data = validAPIs[itemId].mainUrl.toUri()
startActivity(i)
} catch (e: Exception) {
logError(e)
}
}
}

View file

@ -58,7 +58,7 @@ class HomeScrollAdapter(
when (binding) {
is HomeScrollViewBinding -> {
binding.homeScrollPreview.loadImage(posterUrl, item.posterHeaders)
binding.homeScrollPreview.loadImage(posterUrl)
binding.homeScrollPreviewTags.apply {
text = item.tags?.joinToString("") ?: ""
isGone = item.tags.isNullOrEmpty()
@ -79,8 +79,8 @@ class HomeScrollAdapter(
binding.homeScrollPreview.setOnClickListener { view ->
callback.invoke(view ?: return@setOnClickListener, position, item)
}
binding.homeScrollPreview.loadImage(posterUrl, item.posterHeaders)
binding.homeScrollPreview.loadImage(posterUrl)
}
}
}
}
}

View file

@ -20,7 +20,6 @@ import androidx.core.view.isVisible
import androidx.fragment.app.activityViewModels
import androidx.preference.PreferenceManager
import androidx.recyclerview.widget.RecyclerView
import com.fasterxml.jackson.annotation.JsonProperty
import com.google.android.material.tabs.TabLayout
import com.google.android.material.tabs.TabLayoutMediator
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.UIHelper.fixSystemBarsPadding
import com.lagradost.cloudstream3.utils.UIHelper.getSpanCount
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import java.util.concurrent.CopyOnWriteArrayList
import kotlin.math.abs
const val LIBRARY_FOLDER = "library_folder"
enum class LibraryOpenerType(@StringRes val stringRes: Int) {
Default(R.string.action_default),
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 */
@Serializable
data class LibraryOpener(
@JsonProperty("openType") @SerialName("openType") val openType: LibraryOpenerType,
@JsonProperty("providerData") @SerialName("providerData") val providerData: ProviderLibraryData?,
val openType: LibraryOpenerType,
val providerData: ProviderLibraryData?,
)
@Serializable
data class ProviderLibraryData(
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
val apiName: String
)
class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
@ -572,4 +568,4 @@ class LibraryFragment : BaseFragment<FragmentLibraryBinding>(
}
}
class MenuSearchView(context: Context) : SearchView(context)
class MenuSearchView(context: Context) : SearchView(context)

View file

@ -719,7 +719,7 @@ class CS3IPlayer : IPlayer {
**/
var preferredAudioTrackLanguage: String? = null
get() {
return field ?: getKey<String>(
return field ?: getKey(
"$currentAccount/$PREFERRED_AUDIO_LANGUAGE_KEY",
field
)?.also {

View file

@ -307,7 +307,6 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
playerVideoTitleRez,
playerVideoInfo,
playerGoBackHolder,
playerVideoClock,
).forEach {
it.animateY(titleMove)
}
@ -773,7 +772,7 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
val showPlayerEpisodes = !isGone && isThereEpisodes()
playerEpisodesButtonRoot.isVisible = showPlayerEpisodes
playerEpisodesButton.isVisible = showPlayerEpisodes
playerVideoTitleHolder.isGone = togglePlayerTitleGone || playerVideoTitle.text.isBlank()
playerVideoTitleHolder.isGone = togglePlayerTitleGone
playerVideoTitleRez.isGone = isGone || playerVideoTitleRez.text.isBlank()
playerEpisodeFiller.isGone = isGone
playerCenterMenu.isGone = isGone
@ -1203,10 +1202,6 @@ open class FullScreenPlayer : AbstractPlayerFragment<FragmentPlayerBinding>(
}
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)
}

View file

@ -8,7 +8,6 @@ import android.content.Context
import android.content.Intent
import android.content.res.ColorStateList
import android.graphics.Bitmap
import android.graphics.Typeface
import android.os.Build
import android.os.Bundle
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.PlayerSubtitleHelper.Companion.toSubtitleMimeType
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.getLinkPriority
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.dismissSafe
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.popCurrentPage
import com.lagradost.cloudstream3.utils.UIHelper.showProgress
import com.lagradost.cloudstream3.utils.UIHelper.toPx
import com.lagradost.cloudstream3.utils.downloader.DownloadUtils.getImageBitmapFromUrl
import com.lagradost.cloudstream3.utils.setText
@ -134,7 +130,6 @@ import kotlinx.coroutines.delay
import kotlinx.coroutines.isActive
import kotlinx.coroutines.launch
import java.io.Serializable
import java.lang.ref.WeakReference
import java.util.Calendar
import java.util.UUID
import java.util.concurrent.ConcurrentHashMap
@ -512,8 +507,7 @@ class GeneratorPlayer : FullScreenPlayer() {
showDownloadProgress(DownloadEvent(0, 0, 0, null))
// uiReset() // Removed due to UX
uiReset()
currentSelectedLink = link
// setEpisodes(viewModel.getAllMeta() ?: emptyList())
setPlayerDimen(null)
@ -796,58 +790,47 @@ class GeneratorPlayer : FullScreenPlayer() {
}
binding.applyBtt.setOnClickListener {
val currentSubtitle = currentSubtitle
if (currentSubtitle == null) {
dialog.dismissSafe()
return@setOnClickListener
}
currentSubtitle?.let { currentSubtitle ->
providers.firstOrNull { it.idPrefix == currentSubtitle.idPrefix }?.let { api ->
ioSafe {
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 }
if (api == null) {
dialog.dismissSafe()
return@setOnClickListener
}
is Resource.Failure -> {
showToast(apiResource.errorString)
}
binding.applyBtt.showProgress()
ioSafe {
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
)
is Resource.Loading -> {
// not possible
}
}
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 {
@ -1115,29 +1098,21 @@ class GeneratorPlayer : FullScreenPlayer() {
var sourceIndex = 0
var startSource = 0
// Filtered and sorted links
var currentHiddenFooter: View? = null
var filteredLinks: List<DisplayLink> = emptyList()
var sortedUrls = emptyList<Pair<ExtractorLink?, ExtractorUri?>>()
fun refreshLinks(qualityProfile: Int) {
val currentLinkUsed = currentSelectedLink
// Always display current linkFooter
val sortedLinks = viewModel.state.sortLinks(qualityProfile)
filteredLinks = sortedLinks.filter { it.shouldUseLink || it.link == currentLinkUsed }
if (sortedLinks.isEmpty()) {
sortedUrls = viewModel.state.sortLinks(qualityProfile)
if (sortedUrls.isEmpty()) {
sourceDialog.findViewById<LinearLayout>(R.id.sort_sources_holder)?.isGone =
true
} else {
startSource = filteredLinks.indexOfFirst { it.link == currentLinkUsed }
startSource = sortedUrls.indexOf(currentSelectedLink)
sourceIndex = startSource
val sourcesArrayAdapter =
ArrayAdapter<String>(ctx, R.layout.sort_bottom_single_choice)
sourcesArrayAdapter.addAll(filteredLinks.map { displayLink ->
val (link, uri) = displayLink.link
sourcesArrayAdapter.addAll(sortedUrls.map { (link, uri) ->
val name = link?.name ?: uri?.name ?: "NULL"
"$name ${Qualities.getStringByInt(link?.quality)}"
})
@ -1153,7 +1128,7 @@ class GeneratorPlayer : FullScreenPlayer() {
}
providerList.setOnItemLongClickListener { _, _, position, _ ->
sortedLinks.getOrNull(position)?.link?.first?.url?.let {
sortedUrls.getOrNull(position)?.first?.url?.let {
clipboardHelper(
txt(R.string.video_source),
it
@ -1161,25 +1136,6 @@ class GeneratorPlayer : FullScreenPlayer() {
}
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) {
filteredLinks.getOrNull(sourceIndex)?.let {
loadLink(it.link, true)
sortedUrls.getOrNull(sourceIndex)?.let {
loadLink(it, true)
}
}
sourceDialog.dismissSafe(activity)
@ -1562,10 +1518,6 @@ class GeneratorPlayer : FullScreenPlayer() {
}
override fun playerError(exception: Throwable) {
currentSelectedLink?.let { link ->
viewModel.modifyState { this.addError(link) }
}
val currentUrl =
currentSelectedLink?.let { it.first?.url ?: it.second?.uri?.toString() } ?: "unknown"
val headers = currentSelectedLink?.first?.headers?.toString() ?: "none"
@ -1588,22 +1540,8 @@ class GeneratorPlayer : FullScreenPlayer() {
private fun noLinksFound() {
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()
}
@ -1614,9 +1552,7 @@ class GeneratorPlayer : FullScreenPlayer() {
}
val links = viewModel.state.sortLinks(currentQualityProfile)
val firstAvailableLink = links.firstOrNull { it.shouldUseLink }?.link
if (firstAvailableLink == null) {
if (links.isEmpty()) {
noLinksFound()
return
}
@ -1624,7 +1560,7 @@ class GeneratorPlayer : FullScreenPlayer() {
if (!isPlayerActive.compareAndSet(false, true)) {
return
}
loadLink(firstAvailableLink, false)
loadLink(links.first(), false)
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 {
return getNextLink() != null
val links = viewModel.state.sortLinks(currentQualityProfile)
return links.isNotEmpty() && links.indexOf(currentSelectedLink) + 1 < links.size
}
override fun nextMirror() {
val nextLink = getNextLink()
if (nextLink == null) {
val links = viewModel.state.sortLinks(currentQualityProfile)
if (links.isEmpty()) {
noLinksFound()
return
}
loadLink(nextLink.link, true)
val newIndex = links.indexOf(currentSelectedLink) + 1
if (newIndex >= links.size) {
noLinksFound()
return
}
loadLink(links[newIndex], true)
}
override fun onDestroy() {
@ -1763,10 +1698,8 @@ class GeneratorPlayer : FullScreenPlayer() {
if (settingsManager.getBoolean(
ctx.getString(R.string.episode_sync_enabled_key), true
)
) {
maxEpisodeSet = meta.episode
sync.modifyMaxEpisode(meta.totalEpisodeIndex ?: meta.episode)
}
) maxEpisodeSet = meta.episode
sync.modifyMaxEpisode(meta.totalEpisodeIndex ?: meta.episode)
}
}
@ -2217,7 +2150,6 @@ class GeneratorPlayer : FullScreenPlayer() {
isPlayerActive.set(false)
binding?.overlayLoadingSkipButton?.isVisible = false
binding?.playerLoadingOverlay?.isVisible = true
viewModel.modifyState { setError(emptyList()) }
uiReset()
}
@ -2271,14 +2203,6 @@ class GeneratorPlayer : FullScreenPlayer() {
fromTagToEnglishLanguageName(it)?.lowercase() ?: return@mapNotNull null
} ?: 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)
@ -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
val sortedLinks = viewModel.state.sortLinks(currentQualityProfile)
val usableLinks = sortedLinks.count { link -> link.shouldUseLink }
val turnVisible = usableLinks > 0 && viewModel.generator?.canSkipLoading == true
val turnVisible = links.isNotEmpty() && viewModel.generator?.canSkipLoading == true
val wasGone = binding.overlayLoadingSkipButton.isGone
binding.overlayLoadingSkipButton.apply {
isVisible = turnVisible
if (usableLinks == 0) {
if (links.isEmpty()) {
setText(R.string.skip_loading)
} else {
@SuppressLint("SetTextI18n")
text = "${context.getString(R.string.skip_loading)} (${usableLinks})"
text = "${context.getString(R.string.skip_loading)} (${links.size})"
}
}

View file

@ -10,8 +10,6 @@ import com.lagradost.cloudstream3.mvvm.Resource
import com.lagradost.cloudstream3.mvvm.launchSafe
import com.lagradost.cloudstream3.mvvm.logError
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.result.ResultEpisode
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
@ -42,20 +40,12 @@ data class GeneratorState(
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 */
// @MustUseReturnValues
// @Immutable
data class VideoState(
val subtitles: PersistentSet<SubtitleData> = persistentSetOf(),
val links: PersistentSet<VideoLink> = persistentSetOf(),
val erroredLinks: PersistentSet<VideoLink> = persistentSetOf(),
val stamps: PersistentList<VideoSkipStamp> = persistentListOf(),
val loading: Resource<Unit> = Resource.Loading(),
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
* */
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()
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
// 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.
* Use .links if order is not needed */
@Contract(pure = true)
fun sortLinks(qualityProfile: Int): List<DisplayLink> {
sortedLinks[qualityProfile]?.let {
return it
}
val hideNegativeSources =
QualityDataHelper.getProfileSetting(qualityProfile, ProfileSettings.HideNegativeSources)
val hideErrorSources =
QualityDataHelper.getProfileSetting(qualityProfile, ProfileSettings.HideErrorSources)
return links.map { link ->
fun sortLinks(qualityProfile: Int): List<VideoLink> {
return sortedLinks[qualityProfile] ?: links.sortedBy { link ->
// negative because we want to sort highest quality first
link.toDisplayLink(qualityProfile, hideNegativeSources, hideErrorSources)
}.sortedBy {
// negative because we want to sort highest quality first
-it.priority
-getLinkPriority(qualityProfile, link.first)
}.also { value -> sortedLinks[qualityProfile] = value }
}
@ -156,12 +113,6 @@ data class VideoState(
@JvmName("setVideoSkipStamp")
@Contract(pure = true)
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>(
@ -190,8 +141,9 @@ class PlayerGeneratorViewModel : ViewModel() {
var state = VideoState(instance = 0)
private set
private val _currentLinks = MutableLiveData<VideoLive<Set<VideoLink>>>(null)
val currentLinks: LiveData<VideoLive<Set<VideoLink>>> = _currentLinks
private val _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)
val currentSubtitles: LiveData<VideoLive<Set<SubtitleData>>> = _currentSubtitles

View file

@ -8,14 +8,11 @@ import androidx.annotation.OptIn
import androidx.media3.common.MimeTypes
import androidx.media3.common.util.UnstableApi
import androidx.media3.ui.SubtitleView
import com.fasterxml.jackson.annotation.JsonIgnore
import com.lagradost.cloudstream3.SubtitleFile
import com.lagradost.cloudstream3.ui.subtitles.SaveCaptionStyle
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment.Companion.setSubtitleViewStyle
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromLanguageToTagIETF
import com.lagradost.cloudstream3.utils.UIHelper.toPx
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
enum class SubtitleStatus {
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 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"
*/
@Serializable
* */
data class SubtitleData(
@SerialName("originalName") val originalName: String,
@SerialName("nameSuffix") val nameSuffix: String,
@SerialName("url") val url: String,
@SerialName("origin") val origin: SubtitleOrigin,
@SerialName("mimeType") val mimeType: String,
@SerialName("headers") val headers: Map<String, String>,
@SerialName("languageCode") val languageCode: String?,
val originalName: String,
val nameSuffix: String,
val url: String,
val origin: SubtitleOrigin,
val mimeType: String,
val headers: Map<String, String>,
val languageCode: String?,
) {
/** Internal ID for media3, unique for each link. */
@JsonIgnore
/** Internal ID for exoplayer, unique for each link*/
fun getId(): String {
return if (origin == SubtitleOrigin.EMBEDDED_IN_VIDEO) url
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. */
@JsonIgnore
fun getIETF_tag(): String? {
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.
*/
@JsonIgnore
fun getFixedUrl(): String {
// Some extensions fail to include the protocol, this helps with that.
val fixedSubUrl = if (this.url.startsWith("//")) {
"https:${this.url}"
} else this.url
} else {
this.url
}
return fixedSubUrl
}
}
@ -147,4 +142,4 @@ class PlayerSubtitleHelper {
setSubStyle(it)
}
}
}
}

View file

@ -9,8 +9,6 @@ import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.ExtractorLinkType
import com.lagradost.cloudstream3.utils.newExtractorLink
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import torrServer.TorrServer
import java.io.File
import java.net.ConnectException
@ -34,14 +32,14 @@ object Torrent {
/** Returns true if the server is up */
private suspend fun echo(): Boolean {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
return false
}
return try {
app.get(
"$TORRENT_SERVER_URL/echo",
).text.isNotEmpty()
} catch (_: ConnectException) {
} catch (e: ConnectException) {
// `Failed to connect to /127.0.0.1:8090` if the server is down
false
} catch (t: Throwable) {
@ -54,7 +52,7 @@ object Torrent {
/** Gracefully shutdown the server.
* should not be used because I am unable to start it again, and the stopTorrentServer() crashes the app */
suspend fun shutdown(): Boolean {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
return false
}
return try {
@ -70,7 +68,7 @@ object Torrent {
/** Lists all torrents by the server */
@Throws
private suspend fun list(): Array<TorrentStatus> {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
throw ErrorLoadingException("Not initialized")
}
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 */
private suspend fun drop(hash: String): Boolean {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
return false
}
return try {
@ -106,7 +104,7 @@ object Torrent {
/** Removes a single torrent from the server registry */
private suspend fun rem(hash: String): Boolean {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
return false
}
return try {
@ -128,7 +126,7 @@ object Torrent {
/** Removes all torrents from the server, and returns if it is successful */
suspend fun clearAll(): Boolean {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
return true
}
return try {
@ -166,8 +164,10 @@ object Torrent {
/** 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 */
@Throws
suspend fun get(hash: String): TorrentStatus {
if (TORRENT_SERVER_URL.isEmpty()) {
suspend fun get(
hash: String,
): TorrentStatus {
if(TORRENT_SERVER_URL.isEmpty()) {
throw ErrorLoadingException("Not initialized")
}
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*/
@Throws
private suspend fun add(url: String): TorrentStatus {
if (TORRENT_SERVER_URL.isEmpty()) {
if(TORRENT_SERVER_URL.isEmpty()) {
throw ErrorLoadingException("Not initialized")
}
return app.post(
@ -204,7 +204,7 @@ object Torrent {
return true
}
val port = TorrServer.startTorrentServer(dir, 0)
if (port < 0) {
if(port < 0) {
return false
}
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/main/web/api/route.go#L7
@Serializable
data class TorrentRequest(
@JsonProperty("action") @SerialName("action") val action: String,
@JsonProperty("hash") @SerialName("hash") val hash: String = "",
@JsonProperty("link") @SerialName("link") val link: String = "",
@JsonProperty("title") @SerialName("title") val title: String = "",
@JsonProperty("poster") @SerialName("poster") val poster: String = "",
@JsonProperty("data") @SerialName("data") val data: String = "",
@JsonProperty("save_to_db") @SerialName("save_to_db") val saveToDB: Boolean = false,
@JsonProperty("action")
val action: String,
@JsonProperty("hash")
val hash: String = "",
@JsonProperty("link")
val link: String = "",
@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
// omitempty = nullable
@Serializable
data class TorrentStatus(
@JsonProperty("title") @SerialName("title") var title: String,
@JsonProperty("poster") @SerialName("poster") var poster: String,
@JsonProperty("data") @SerialName("data") var data: String?,
@JsonProperty("timestamp") @SerialName("timestamp") var timestamp: Long,
@JsonProperty("name") @SerialName("name") var name: String?,
@JsonProperty("hash") @SerialName("hash") var hash: String?,
@JsonProperty("stat") @SerialName("stat") var stat: Int,
@JsonProperty("stat_string") @SerialName("stat_string") var statString: String,
@JsonProperty("loaded_size") @SerialName("loaded_size") var loadedSize: Long?,
@JsonProperty("torrent_size") @SerialName("torrent_size") var torrentSize: Long?,
@JsonProperty("preloaded_bytes") @SerialName("preloaded_bytes") var preloadedBytes: Long?,
@JsonProperty("preload_size") @SerialName("preload_size") var preloadSize: Long?,
@JsonProperty("download_speed") @SerialName("download_speed") var downloadSpeed: Double?,
@JsonProperty("upload_speed") @SerialName("upload_speed") var uploadSpeed: Double?,
@JsonProperty("total_peers") @SerialName("total_peers") var totalPeers: Int?,
@JsonProperty("pending_peers") @SerialName("pending_peers") var pendingPeers: Int?,
@JsonProperty("active_peers") @SerialName("active_peers") var activePeers: Int?,
@JsonProperty("connected_seeders") @SerialName("connected_seeders") var connectedSeeders: Int?,
@JsonProperty("half_open_peers") @SerialName("half_open_peers") var halfOpenPeers: Int?,
@JsonProperty("bytes_written") @SerialName("bytes_written") var bytesWritten: Long?,
@JsonProperty("bytes_written_data") @SerialName("bytes_written_data") var bytesWrittenData: Long?,
@JsonProperty("bytes_read") @SerialName("bytes_read") var bytesRead: Long?,
@JsonProperty("bytes_read_data") @SerialName("bytes_read_data") var bytesReadData: Long?,
@JsonProperty("bytes_read_useful_data") @SerialName("bytes_read_useful_data") var bytesReadUsefulData: Long?,
@JsonProperty("chunks_written") @SerialName("chunks_written") var chunksWritten: Long?,
@JsonProperty("chunks_read") @SerialName("chunks_read") var chunksRead: Long?,
@JsonProperty("chunks_read_useful") @SerialName("chunks_read_useful") var chunksReadUseful: Long?,
@JsonProperty("chunks_read_wasted") @SerialName("chunks_read_wasted") var chunksReadWasted: Long?,
@JsonProperty("pieces_dirtied_good") @SerialName("pieces_dirtied_good") var piecesDirtiedGood: Long?,
@JsonProperty("pieces_dirtied_bad") @SerialName("pieces_dirtied_bad") var piecesDirtiedBad: Long?,
@JsonProperty("duration_seconds") @SerialName("duration_seconds") var durationSeconds: Double?,
@JsonProperty("bit_rate") @SerialName("bit_rate") var bitRate: String?,
@JsonProperty("file_stats") @SerialName("file_stats") var fileStats: List<TorrentFileStat>?,
@JsonProperty("trackers") @SerialName("trackers") var trackers: List<String>?,
@JsonProperty("title")
var title: String,
@JsonProperty("poster")
var poster: String,
@JsonProperty("data")
var data: String?,
@JsonProperty("timestamp")
var timestamp: Long,
@JsonProperty("name")
var name: String?,
@JsonProperty("hash")
var hash: String?,
@JsonProperty("stat")
var stat: Int,
@JsonProperty("stat_string")
var statString: String,
@JsonProperty("loaded_size")
var loadedSize: Long?,
@JsonProperty("torrent_size")
var torrentSize: Long?,
@JsonProperty("preloaded_bytes")
var preloadedBytes: Long?,
@JsonProperty("preload_size")
var preloadSize: Long?,
@JsonProperty("download_speed")
var downloadSpeed: Double?,
@JsonProperty("upload_speed")
var uploadSpeed: Double?,
@JsonProperty("total_peers")
var totalPeers: Int?,
@JsonProperty("pending_peers")
var pendingPeers: Int?,
@JsonProperty("active_peers")
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 {
val fileName =
@ -342,10 +381,12 @@ object Torrent {
}
}
@Serializable
data class TorrentFileStat(
@JsonProperty("id") @SerialName("id") val id: Int?,
@JsonProperty("path") @SerialName("path") val path: String?,
@JsonProperty("length") @SerialName("length") val length: Long?,
@JsonProperty("id")
val id: Int?,
@JsonProperty("path")
val path: String?,
@JsonProperty("length")
val length: Long?,
)
}
}

View file

@ -12,16 +12,12 @@ import com.lagradost.cloudstream3.utils.txt
import com.lagradost.cloudstream3.utils.DataStoreHelper.currentAccount
import com.lagradost.cloudstream3.utils.ExtractorLink
import com.lagradost.cloudstream3.utils.Qualities
import java.util.EnumMap
import java.util.concurrent.ConcurrentHashMap
import kotlin.also
import kotlin.math.abs
object QualityDataHelper {
private const val VIDEO_SOURCE_PRIORITY = "video_source_priority"
private const val VIDEO_PROFILE_NAME = "video_profile_name"
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
@Deprecated("Changed to support multiple types per profile")
@ -57,21 +53,13 @@ object QualityDataHelper {
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 {
if (name == null) return DEFAULT_SOURCE_PRIORITY
return sourcePriorityCache[profile]?.get(name) ?: (getKey<Int>(
return getKey(
"$currentAccount/$VIDEO_SOURCE_PRIORITY/$profile",
name,
DEFAULT_SOURCE_PRIORITY
) ?: DEFAULT_SOURCE_PRIORITY).also {
sourcePriorityCache.getOrPut(profile) { hashMapOf() }
sourcePriorityCache[profile]?.set(name, it)
}
) ?: DEFAULT_SOURCE_PRIORITY
}
fun getAllSourcePriorityNames(profile: Int): List<String> {
@ -89,8 +77,6 @@ object QualityDataHelper {
} else {
setKey(folder, name, priority)
}
sourcePriorityCache[profile]?.set(name, priority)
}
fun setProfileName(profile: Int, name: String?) {
@ -107,17 +93,12 @@ object QualityDataHelper {
?: 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 {
return qualityPriorityCache[profile]?.get(quality) ?: (getKey<Int>(
return getKey(
"$currentAccount/$VIDEO_QUALITY_PRIORITY/$profile",
quality.value.toString(),
quality.defaultPriority
)?.also {
qualityPriorityCache.getOrPut(profile) { EnumMap(Qualities::class.java) }
qualityPriorityCache[profile]?.set(quality, it)
}) ?: quality.defaultPriority
) ?: quality.defaultPriority
}
fun setQualityPriority(profile: Int, quality: Qualities, priority: Int) {
@ -126,24 +107,8 @@ object QualityDataHelper {
quality.value.toString(),
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")
fun getQualityProfileTypes(profile: Int): Set<QualityProfileType> {
@ -258,9 +223,4 @@ object QualityDataHelper {
if (target == null) return Qualities.Unknown
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)
}
}

View file

@ -1,6 +1,5 @@
package com.lagradost.cloudstream3.ui.player.source_priority
import android.app.Activity
import android.app.Dialog
import androidx.annotation.StyleRes
import androidx.core.view.isVisible
@ -27,7 +26,7 @@ data class LinkSource(
class QualityProfileDialog private constructor(
val activity: Activity,
val activity: FragmentActivity,
@StyleRes val themeRes: Int,
private val links: List<LinkSource>,
private val usedProfile: Int?,
@ -35,7 +34,7 @@ class QualityProfileDialog private constructor(
private val useProfileSelection: Boolean
) : Dialog(activity, themeRes) {
constructor(
activity: Activity,
activity: FragmentActivity,
@StyleRes themeRes: Int,
links: List<LinkSource>,
usedProfile: Int,
@ -43,7 +42,7 @@ class QualityProfileDialog private constructor(
) : this(activity, themeRes, links, usedProfile, profileSelectionCallback, true)
constructor(
activity: Activity,
activity: FragmentActivity,
@StyleRes themeRes: Int,
links: List<LinkSource>
) : this(activity, themeRes, links, null, null, false)

View file

@ -14,7 +14,7 @@ import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
class SourcePriorityDialog(
val ctx: Context,
@StyleRes val themeRes: Int,
@StyleRes themeRes: Int,
val links: List<LinkSource>,
private val profile: QualityDataHelper.QualityProfile,
/**
@ -28,79 +28,76 @@ class SourcePriorityDialog(
PlayerSelectSourcePriorityBinding.inflate(LayoutInflater.from(ctx), null, false)
setContentView(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 {
profileTextEditable.setText(
QualityDataHelper.getProfileName(profile.id).asString(context)
)
profileTextEditable.hint = txt(R.string.profile_number, profile.id).asString(context)
profileText.setText(QualityDataHelper.getProfileName(profile.id).asString(context))
profileText.hint = txt(R.string.profile_number, profile.id).asString(context)
sortSources.adapter = PriorityAdapter<Nothing?>(
).apply {
val sortedLinks = links.map { link ->
SourcePriority(
null,
link.source,
QualityDataHelper.getSourcePriority(profile.id, link.source)
)
}.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()
}
sourcesRecyclerView.adapter = PriorityAdapter<Nothing?>(
).apply {
submitList(links.map { link ->
SourcePriority(
null,
link.source,
QualityDataHelper.getSourcePriority(profile.id, link.source)
)
}.distinctBy { it.name }.sortedBy { -it.priority })
}
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()
}
}

View file

@ -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()
}
}

View file

@ -5,9 +5,6 @@ import android.content.Intent
import android.view.LayoutInflater
import android.view.View
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 com.lagradost.cloudstream3.ActorData
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) {
when (val binding = holder.view) {
is CastItemBinding -> {
@ -158,4 +137,4 @@ class ActorAdaptor(
}
}
}
}
}

View file

@ -21,8 +21,6 @@ import com.lagradost.cloudstream3.utils.DataStoreHelper.getViewPos
import com.lagradost.cloudstream3.utils.Event
import com.lagradost.cloudstream3.utils.ImageLoader.loadImage
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_LOAD_EP = 2
@ -36,32 +34,33 @@ enum class VideoWatchState {
Watched
}
@Serializable
data class ResultEpisode(
@SerialName("headerName") val headerName: String,
@SerialName("name") val name: String?,
@SerialName("poster") val poster: String?,
@SerialName("episode") val episode: Int,
@SerialName("seasonIndex") val seasonIndex: Int?, // this is the "season" index used season names
@SerialName("season") val season: Int?, // this is the display
@SerialName("data") val data: String,
@SerialName("apiName") val apiName: String,
@SerialName("id") val id: Int,
@SerialName("index") val index: Int,
@SerialName("position") val position: Long, // time in MS
@SerialName("duration") val duration: Long, // duration in MS
@SerialName("score") val score: Score?,
@SerialName("description") val description: String?,
@SerialName("isFiller") val isFiller: Boolean?,
@SerialName("tvType") val tvType: TvType,
@SerialName("parentId") val parentId: Int,
/** Conveys if the episode itself is marked as watched. */
@SerialName("videoWatchState") val videoWatchState: VideoWatchState,
/** Sum of all previous season episode counts + episode. */
@SerialName("totalEpisodeIndex") val totalEpisodeIndex: Int? = null,
@SerialName("airDate") val airDate: Long? = null,
@SerialName("runTime") val runTime: Int? = null,
@SerialName("seasonData") val seasonData: SeasonData? = null,
val headerName: String,
val name: String?,
val poster: String?,
val episode: Int,
val seasonIndex: Int?, // this is the "season" index used season names
val season: Int?, // this is the display
val data: String,
val apiName: String,
val id: Int,
val index: Int,
val position: Long, // time in MS
val duration: Long, // duration in MS
val score: Score?,
val description: String?,
val isFiller: Boolean?,
val tvType: TvType,
val parentId: Int,
/**
* Conveys if the episode itself is marked as watched
**/
val videoWatchState: VideoWatchState,
/** Sum of all previous season episode counts + episode */
val totalEpisodeIndex: Int? = null,
val airDate: Long? = null,
val runTime: Int? = null,
val seasonData: SeasonData? = null,
)
fun ResultEpisode.getRealPosition(): Long {

View file

@ -874,9 +874,10 @@ class ResultFragmentTv : BaseFragment<FragmentResultTvBinding>(
resultMetaRating.setText(d.ratingText)
resultMetaStatus.setText(d.onGoingText)
resultMetaContentRating.setText(d.contentRatingText)
resultCastText.setText(d.actorsText)
resultNextAiring.setText(d.nextAiringEpisode)
resultNextAiringTime.setText(d.nextAiringDate)
resultPoster.loadImage(d.posterImage, headers = d.posterHeaders)
resultPoster.loadImage(d.posterImage)
var isExpanded = false
resultDescription.apply {
@ -909,7 +910,7 @@ class ResultFragmentTv : BaseFragment<FragmentResultTvBinding>(
R.drawable.profile_bg_teal
).random()
backgroundPoster.loadImage(d.posterBackgroundImage, headers = d.posterHeaders) {
backgroundPoster.loadImage(d.posterBackgroundImage) {
error { getImageFromDrawable(context ?: return@error null, error) }
}
@ -931,7 +932,6 @@ class ResultFragmentTv : BaseFragment<FragmentResultTvBinding>(
true
)
resultCastText.setText(if (showCast) d.actorsText else null)
resultCastItems.isGone = !showCast || d.actors.isNullOrEmpty()
(resultCastItems.adapter as? ActorAdaptor)?.submitList(if (showCast) d.actors else emptyList())

View file

@ -182,7 +182,6 @@ class SyncViewModel : ViewModel() {
fun publishUserData() = ioSafe {
Log.i(TAG, "publishUserData")
val user = userData.value
_userDataResponse.postValue(Resource.Loading())
if (user is Resource.Success) {
syncs.forEach { (prefix, id) ->
repos.firstOrNull { it.idPrefix == prefix }?.updateStatus(id, user.value)

View file

@ -1,18 +1,19 @@
package com.lagradost.cloudstream3.ui.settings
import android.app.UiModeManager
import android.content.Context
import android.content.res.Configuration
import android.content.res.Resources
import android.os.Build
import androidx.preference.PreferenceManager
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream4.compose.DeviceLayout.Companion.isAutoTv
object Globals {
var beneneCount = 0
const val PHONE: Int = 0b00001
const val TV: Int = 0b00010
const val EMULATOR: Int = 0b00100
const val PHONE : Int = 0b001
const val TV : Int = 0b010
const val EMULATOR : Int = 0b100
private const val INVALID = -1
private var layoutId = INVALID
@ -21,9 +22,18 @@ object Globals {
return settingsManager.getInt(this.getString(R.string.app_layout_key), -1)
}
fun Context.updateTv() {
layoutId = when (getLayoutInt()) {
-1 -> if (isAutoTv(this)) TV else PHONE
private fun Context.isAutoTv(): Boolean {
val uiModeManager = getSystemService(Context.UI_MODE_SERVICE) as UiModeManager?
// AFT = Fire TV
val model = Build.MODEL.lowercase()
return uiModeManager?.currentModeType == Configuration.UI_MODE_TYPE_TELEVISION || Build.MODEL.contains(
"AFT"
) || model.contains("firestick") || model.contains("fire tv") || model.contains("chromecast")
}
private fun Context.layoutIntCorrected(): Int {
return when(getLayoutInt()) {
-1 -> if (isAutoTv()) TV else PHONE
0 -> PHONE
1 -> TV
2 -> EMULATOR
@ -31,10 +41,14 @@ object Globals {
}
}
fun Context.updateTv() {
layoutId = layoutIntCorrected()
}
/** Returns true if the current orientation is landscape. */
fun isLandscape(): Boolean =
isLayout(TV or EMULATOR) ||
Resources.getSystem().configuration.orientation == Configuration.ORIENTATION_LANDSCAPE
Resources.getSystem().configuration.orientation == Configuration.ORIENTATION_LANDSCAPE
/** Returns true if the layout is any of the flags,
* so isLayout(TV or EMULATOR) is a valid statement for checking if the layout is in the emulator
@ -42,7 +56,7 @@ object Globals {
*
* Valid flags are: PHONE, TV, EMULATOR
* */
fun isLayout(flags: Int): Boolean {
fun isLayout(flags: Int) : Boolean {
return (layoutId and flags) != 0
}
}

View file

@ -1,7 +1,6 @@
package com.lagradost.cloudstream3.ui.settings
import android.annotation.SuppressLint
import android.app.Activity
import android.graphics.Bitmap
import android.os.Bundle
import android.os.CountDownTimer
@ -14,6 +13,7 @@ import androidx.appcompat.app.AlertDialog
import androidx.core.content.edit
import androidx.core.view.isGone
import androidx.core.view.isVisible
import androidx.fragment.app.FragmentActivity
import androidx.preference.PreferenceManager
import androidx.preference.SwitchPreference
import androidx.recyclerview.widget.RecyclerView
@ -29,8 +29,8 @@ import com.lagradost.cloudstream3.databinding.DeviceAuthBinding
import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.aniListApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.animeSkipApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.kitsuApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.malApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.kitsuApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.openSubtitlesApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.simklApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.subDlApi
@ -42,8 +42,8 @@ import com.lagradost.cloudstream3.syncproviders.SubtitleRepo
import com.lagradost.cloudstream3.syncproviders.SyncRepo
import com.lagradost.cloudstream3.ui.BasePreferenceFragmentCompat
import com.lagradost.cloudstream3.ui.settings.Globals.EMULATOR
import com.lagradost.cloudstream3.ui.settings.Globals.PHONE
import com.lagradost.cloudstream3.ui.settings.Globals.TV
import com.lagradost.cloudstream3.ui.settings.Globals.PHONE
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.getPref
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.hideOn
@ -65,8 +65,6 @@ import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialogTe
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
import com.lagradost.cloudstream3.utils.UIHelper.dismissSafe
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.txt
import qrcode.QRCode
@ -76,7 +74,7 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
/** Used by nginx plugin too */
@SuppressLint("StringFormatInvalid")
fun showLoginInfo(
activity: Activity?,
activity: FragmentActivity?,
api: AuthRepo,
info: AuthUser?,
index: Int,
@ -121,7 +119,7 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
}
}
private fun showAccountSwitch(activity: Activity, api: AuthRepo) {
private fun showAccountSwitch(activity: FragmentActivity, api: AuthRepo) {
val accounts = api.accounts
val binding: AccountSwitchBinding =
AccountSwitchBinding.inflate(activity.layoutInflater, null, false)
@ -153,7 +151,7 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
@UiThread
fun showPin(activity: Activity, api: AuthRepo) {
fun showPin(activity: FragmentActivity, api: AuthRepo) {
val binding: DeviceAuthBinding =
DeviceAuthBinding.inflate(activity.layoutInflater, null, false)
@ -273,7 +271,8 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
}
fun showAppLogin(activity: Activity, api: AuthRepo) {
fun showAppLogin(activity: FragmentActivity, api: AuthRepo) {
val binding: AddAccountInputBinding =
AddAccountInputBinding.inflate(activity.layoutInflater, null, false)
val builder =
@ -314,7 +313,7 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
binding.createAccount.setOnClickListener {
openBrowser(
api.createAccountUrl ?: return@setOnClickListener,
activity,
activity
)
dialog.dismissSafe()
}
@ -349,7 +348,6 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
email = if (req.email) binding.loginEmailInput.text?.toString() else null,
server = if (req.server) binding.loginServerInput.text?.toString() else null,
)
binding.applyBtt.showProgress()
ioSafe {
try {
if (api.login(loginData)) {
@ -379,8 +377,6 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
api.name
)
)
} finally {
binding.applyBtt.hideProgress()
}
}
}
@ -390,7 +386,7 @@ class SettingsAccount : BasePreferenceFragmentCompat(), BiometricCallback {
}
@UiThread
fun addAccount(activity: Activity, api: AuthRepo) {
fun addAccount(activity: FragmentActivity, api: AuthRepo) {
try {
if (api.hasPin && !isLayout(PHONE)) {
showPin(activity, api)

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsAccount2 : BaseComposeFragment(), SearchableSettings by SettingsAccountScreen

View file

@ -1,148 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.content.Context
import androidx.activity.compose.LocalActivity
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.fragment.app.FragmentActivity
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.CommonActivity.onDialogDismissedEvent
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.aniListApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.animeSkipApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.kitsuApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.malApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.openSubtitlesApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.simklApi
import com.lagradost.cloudstream3.syncproviders.AccountManager.Companion.subDlApi
import com.lagradost.cloudstream3.syncproviders.PlainAuthRepo
import com.lagradost.cloudstream3.syncproviders.SubtitleRepo
import com.lagradost.cloudstream3.syncproviders.SyncRepo
import com.lagradost.cloudstream3.ui.settings.SettingsAccount.Companion.addAccount
import com.lagradost.cloudstream3.ui.settings.SettingsAccount.Companion.showLoginInfo
import com.lagradost.cloudstream3.utils.AppContextUtils.html
import com.lagradost.cloudstream3.utils.BackupUtils
import com.lagradost.cloudstream3.utils.BiometricAuthenticator
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.authCallback
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.biometricPrompt
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.deviceHasPasswordPinLock
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.isAuthEnabled
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.promptInfo
import com.lagradost.cloudstream3.utils.BiometricAuthenticator.startBiometricAuthentication
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialogText
import com.lagradost.cloudstream4.AppSettings
import com.lagradost.cloudstream4.compose.PHONE
import com.lagradost.cloudstream4.compose.isLayout
import com.lagradost.cloudstream4.rememberAppSettings
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import kotlinx.collections.immutable.persistentListOf
object SettingsAccountScreen : SearchableSettings, BiometricAuthenticator.BiometricCallback {
val syncApis = persistentListOf(
SyncRepo(malApi),
SyncRepo(kitsuApi),
SyncRepo(aniListApi),
SyncRepo(simklApi),
SubtitleRepo(openSubtitlesApi),
SubtitleRepo(subDlApi),
PlainAuthRepo(animeSkipApi),
)
private fun updateAuthPreference(context: Context, enabled: Boolean) {
val settings = AppSettings(context)
settings.security.biometrics.set(enabled)
}
override fun onAuthenticationError() {
val context = activity ?: return
updateAuthPreference(context, !isAuthEnabled(context))
}
override fun onAuthenticationSuccess() {
val context = activity ?: return
if (isAuthEnabled(context)) {
updateAuthPreference(context, true)
BackupUtils.backup(context)
context.showBottomDialogText(
context.getString(R.string.biometric_setting),
context.getString(R.string.biometric_warning).html()
) { onDialogDismissedEvent }
} else {
updateAuthPreference(context, false)
}
}
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_account)
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
val activity = LocalActivity.current
val context = LocalContext.current
val hasSecurity = remember(context) {
try {
deviceHasPasswordPinLock(context)
} catch (_ : Throwable) {
// e.g preview
false
}
}
return persistentListOf(
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_accounts),
preferenceItems = syncApis.map { api ->
Preference.PreferenceItem.TextPreference(
title = api.name,
icon = api.icon?.let { painterResource(it) },
onClick = {
val activity = activity ?: return@TextPreference
val info = api.authUser()
val index =
api.accounts.indexOfFirst { account -> account.user.id == info?.id }
if (api.accounts.isNotEmpty()) {
showLoginInfo(activity, api, info, index)
} else {
addAccount(activity, api)
}
})
} + Preference.PreferenceItem.SwitchPreference(
preference = settings.security.skipAccountSelection,
title = stringResource(R.string.skip_startup_account_select_pref),
icon = painterResource(R.drawable.ic_outline_account_circle_24)
),
), Preference.PreferenceGroup(
enabled = hasSecurity && isLayout(PHONE),
title = stringResource(R.string.pref_category_security),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SwitchPreference(
preference = settings.security.biometrics,
title = stringResource(R.string.biometric_setting),
subtitle = stringResource(R.string.biometric_setting_summary),
icon = painterResource(R.drawable.ic_fingerprint),
onValueChanged = { _ ->
val activity =
activity as? FragmentActivity ?: return@SwitchPreference false
if (deviceHasPasswordPinLock(activity)) {
startBiometricAuthentication(
activity, R.string.biometric_authentication_title, false
)
promptInfo?.let {
authCallback = this
biometricPrompt?.authenticate(it)
}
}
return@SwitchPreference true
})
)
)
)
}
}

View file

@ -249,7 +249,7 @@ class SettingsFragment : BaseFragment<MainSettingsBinding>(
val appVersion = BuildConfig.VERSION_NAME
val commitHash = activity?.currentCommitHash() ?: ""
val buildTimestamp = SimpleDateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM,
val buildTimestamp = SimpleDateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG,
Locale.getDefault()
).apply { timeZone = TimeZone.getTimeZone("UTC")
}.format(Date(BuildConfig.BUILD_DATE)).replace("UTC", "")
@ -262,4 +262,4 @@ class SettingsFragment : BaseFragment<MainSettingsBinding>(
true
}
}
}
}

View file

@ -1,8 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.lagradost.cloudstream4.compose.Screen
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsFragment2 : BaseComposeFragment(), Screen by SettingsFragmentScreen

View file

@ -1,430 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.annotation.SuppressLint
import android.os.Bundle
import androidx.activity.compose.BackHandler
import androidx.compose.animation.Crossfade
import androidx.compose.foundation.border
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.text.input.TextFieldState
import androidx.compose.foundation.text.input.rememberTextFieldState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.ExperimentalMaterial3ExpressiveApi
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.ProvideTextStyle
import androidx.compose.material3.Scaffold
import androidx.compose.material3.SearchBarDefaults
import androidx.compose.material3.SearchBarState
import androidx.compose.material3.SearchBarValue
import androidx.compose.material3.Surface
import androidx.compose.material3.Text
import androidx.compose.material3.rememberSearchBarState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.focus.onFocusChanged
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.input.nestedscroll.NestedScrollConnection
import androidx.compose.ui.input.nestedscroll.NestedScrollSource
import androidx.compose.ui.input.nestedscroll.nestedScroll
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.layout.onGloballyPositioned
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.semantics.clearAndSetSemantics
import androidx.compose.ui.tooling.preview.PreviewLightDark
import androidx.compose.ui.unit.dp
import coil3.compose.AsyncImage
import com.lagradost.cloudstream3.BuildConfig
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.utils.DataStoreHelper
import com.lagradost.cloudstream3.utils.DataStoreHelper.profileImages
import com.lagradost.cloudstream3.utils.GitInfo.currentCommitHash
import com.lagradost.cloudstream3.utils.UIHelper.clipboardHelper
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream3.utils.txt
import com.lagradost.cloudstream4.compose.Screen
import com.lagradost.cloudstream4.compose.TV
import com.lagradost.cloudstream4.compose.circle
import com.lagradost.cloudstream4.compose.focusOutline
import com.lagradost.cloudstream4.compose.isLayout
import com.lagradost.cloudstream4.theme.CloudStreamPreviewTheme
import com.mihon.material.padding
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import com.mihon.presentation.settings.SettingSearchResults
import com.mihon.presentation.settings.SettingsData
import com.mihon.presentation.settings.widget.TextPreferenceWidget
import kotlinx.collections.immutable.persistentListOf
import kotlinx.collections.immutable.toPersistentList
import kotlinx.coroutines.launch
import java.text.DateFormat
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
import java.util.TimeZone
object SettingsFragmentScreen : Screen {
val screens = persistentListOf(
SettingsNavigation(
title = R.string.category_general,
navigation = R.id.action_navigation_global_to_navigation_settings_general,
screen = SettingsGeneralScreen,
icon = R.drawable.build_24px,
),
SettingsNavigation(
title = R.string.category_player,
navigation = R.id.action_navigation_global_to_navigation_settings_player,
screen = SettingsPlayerScreen,
icon = R.drawable.play_arrow_24px,
),
/*SettingsNavigation(
title = R.string.category_providers,
navigation = R.id.action_navigation_global_to_navigation_settings_providers,
screen = SettingsProvidersScreen,
icon = R.drawable.build_24px,
),*/
SettingsNavigation(
title = R.string.category_ui,
navigation = R.id.action_navigation_global_to_navigation_settings_ui,
screen = SettingsUIScreen,
icon = R.drawable.format_paint_24px,
),
SettingsNavigation(
title = R.string.category_updates,
navigation = R.id.action_navigation_global_to_navigation_settings_updates,
screen = SettingsUpdatesScreen,
icon = R.drawable.mobile_arrow_down_24px,
),
SettingsNavigation(
title = R.string.category_account,
navigation = R.id.action_navigation_global_to_navigation_settings_account,
screen = SettingsAccountScreen,
icon = R.drawable.encrypted_24px,
),
SettingsNavigation(
title = R.string.pref_category_extensions,
navigation = R.id.action_navigation_global_to_navigation_settings_extensions,
screen = null,
icon = R.drawable.extension_24px,
subtitle = R.string.add_repository
),
)
data class SettingsNavigation(
val title: Int,
val navigation: Int,
val screen: SearchableSettings?,
val icon: Int,
val subtitle: Int? = null,
)
@OptIn(ExperimentalMaterial3Api::class)
@Composable
@SuppressLint("UnusedMaterial3ScaffoldPaddingParameter")
override fun Content() {
val textFieldState = rememberTextFieldState()
val searchBarState = rememberSearchBarState()
val screen = screens.mapNotNull { item ->
val contents = item.screen?.getPreferences() ?: return@mapNotNull null
SettingsData(
title = stringResource(item.title),
navigation = item.navigation,
contents = contents
)
}.toPersistentList()
val outerListState = rememberScrollState()
val parentFirstScrollConnection = remember {
object : NestedScrollConnection {
override fun onPreScroll(available: Offset, source: NestedScrollSource): Offset {
val delta = available.y
return if (delta < 0 && outerListState.canScrollForward) {
val consumed = outerListState.dispatchRawDelta(-delta)
Offset(0f, -consumed)
} else {
Offset.Zero
}
}
}
}
Scaffold { _ ->
Column(modifier = Modifier.verticalScroll(outerListState)) {
Spacer(modifier = Modifier.height(MaterialTheme.padding.small))
val default = DataStoreHelper.getDefaultAccount(
LocalContext.current
)
val flow by DataStoreHelper.selectedAccountNumberFlow.collectAsState()
val account = remember(flow) {
DataStoreHelper.getCurrentAccount() ?: default
}
Row(
modifier = Modifier.fillMaxSize().focusOutline().clickable {
activity.navigate(
R.id.accountSelectActivity,
Bundle().apply { putBoolean("isFromMainActivity", true) }
)
}.padding(
vertical = MaterialTheme.padding.large,
horizontal = MaterialTheme.padding.medium
)
) {
val image =
account.customImage ?: profileImages.getOrNull(account.defaultImageIndex)
?: profileImages.first()
Box(
modifier = Modifier
.size(50.dp)
.border(
2.dp,
MaterialTheme.colorScheme.onBackground.copy(alpha = 0.2f),
CircleShape
)
.circle(),
) {
AsyncImage(
contentScale = ContentScale.Crop,
model = image,
modifier = Modifier.fillMaxSize(),
contentDescription = null,
)
}
Spacer(modifier = Modifier.width(MaterialTheme.padding.medium))
Column {
Text(
text = account.name,
style = MaterialTheme.typography.titleLarge,
)
Text(
text = stringResource(R.string.title_settings),
style = MaterialTheme.typography.bodyMedium,
)
}
}
Spacer(modifier = Modifier.height(MaterialTheme.padding.small))
SettingsSearch(searchBarState = searchBarState, textFieldState = textFieldState)
Spacer(modifier = Modifier.height(MaterialTheme.padding.small))
SettingSearchResults(
nestedScrollConnection = parentFirstScrollConnection,
searchKey = textFieldState.text.toString(),
items = screen,
onItemClick = { item ->
SearchableSettings.highlightKey = item.highlightKey
activity?.navigate(item.navigation)
}, empty = {
Column(
modifier = Modifier
.nestedScroll(parentFirstScrollConnection)
) {
screens.forEach { settingsTab ->
SettingsTab(settingsTab)
}
BuildStamp()
}
})
}
}
}
@OptIn(ExperimentalMaterial3Api::class, ExperimentalMaterial3ExpressiveApi::class)
@Composable
fun SettingsSearch(searchBarState: SearchBarState, textFieldState: TextFieldState) {
val scope = rememberCoroutineScope()
val inputField =
@Composable {
SearchBarDefaults.InputField(
textFieldState = textFieldState,
searchBarState = searchBarState,
modifier = Modifier.onFocusChanged { newFocus ->
if (newFocus.hasFocus) {
scope.launch {
searchBarState.animateToExpanded()
}
}
},
onSearch = { scope.launch { searchBarState.animateToCollapsed() } },
placeholder = {
Text(modifier = Modifier.clearAndSetSemantics {}, text = stringResource(R.string.search_hint))
},
leadingIcon = {
Crossfade(
targetState = searchBarState.targetValue,
label = "leftsearch",
) { value ->
when (value) {
SearchBarValue.Expanded -> {
IconButton(onClick = {
textFieldState.edit { replace(0, length, "") }
scope.launch {
searchBarState.animateToCollapsed()
}
}) {
Icon(
painter = painterResource(R.drawable.keyboard_arrow_left_24px),
tint = MaterialTheme.colorScheme.onBackground,
contentDescription = null
)
}
}
SearchBarValue.Collapsed -> {
IconButton(onClick = {
scope.launch {
searchBarState.animateToExpanded()
}
}) {
Icon(
painter = painterResource(R.drawable.search_icon),
tint = MaterialTheme.colorScheme.onBackground,
contentDescription = null
)
}
}
}
}
/*SampleLeadingIcon(searchBarState, scope)*/
},
trailingIcon = {
Crossfade(
targetState = searchBarState.targetValue,
label = "rightsearch",
) { value ->
when (value) {
SearchBarValue.Expanded -> {
IconButton(onClick = {
textFieldState.edit { replace(0, length, "") }
}) {
Icon(
painter = painterResource(R.drawable.close_24px),
tint = MaterialTheme.colorScheme.onBackground,
contentDescription = null
)
}
}
SearchBarValue.Collapsed -> {
}
}
}
},
)
}
Surface(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 24.dp - 12.dp * searchBarState.progress)
.focusOutline(enabled = isLayout(TV), CircleShape)
.onGloballyPositioned { searchBarState.collapsedCoords = it },
shape = SearchBarDefaults.inputFieldShape,
color = MaterialTheme.colorScheme.surfaceVariant,
tonalElevation = SearchBarDefaults.TonalElevation,
shadowElevation = SearchBarDefaults.ShadowElevation,
content = inputField,
)
BackHandler(enabled = searchBarState.targetValue == SearchBarValue.Expanded) {
textFieldState.edit { replace(0, length, "") }
scope.launch {
searchBarState.animateToCollapsed()
}
}
}
@Composable
fun SettingsTab(settingsTab: SettingsNavigation) {
val pref = settingsTab.screen?.getPreferences() ?: emptyList()
val groups = pref.filterIsInstance<Preference.PreferenceGroup>()
.filter { it.enabled }
TextPreferenceWidget(
title = stringResource(settingsTab.title),
icon = painterResource(settingsTab.icon),
subtitle = settingsTab.subtitle?.let { stringResource(it) }
?: groups.joinToString { it.title }) {
// Clear it if we have already set it but navigated back instantly
SearchableSettings.highlightKey = null
activity?.navigate(settingsTab.navigation)
}
}
@Composable
fun BuildStamp() {
val (commitHash, buildTimestamp) = remember {
val commitHash = activity?.currentCommitHash() ?: ""
val buildTimestamp = SimpleDateFormat.getDateTimeInstance(
DateFormat.LONG, DateFormat.MEDIUM,
Locale.getDefault()
).apply {
timeZone = TimeZone.getTimeZone("UTC")
}.format(Date(BuildConfig.BUILD_DATE)).replace("UTC", "")
commitHash to buildTimestamp
}
Row(
horizontalArrangement = Arrangement.SpaceEvenly,
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier
.fillMaxWidth()
.height(50.dp)
.focusOutline()
.clickable {
clipboardHelper(
txt(R.string.extension_version),
"${BuildConfig.VERSION_NAME} $commitHash $buildTimestamp"
)
},
) {
ProvideTextStyle(MaterialTheme.typography.bodyMedium) {
Text(text = BuildConfig.VERSION_NAME)
if (commitHash != "") {
Text("")
Text(text = commitHash)
}
Text("")
Text(text = buildTimestamp)
}
}
}
}
@PreviewLightDark
@Composable
fun Preview() {
CloudStreamPreviewTheme {
SettingsFragmentScreen.Content()
}
}

View file

@ -3,7 +3,6 @@ package com.lagradost.cloudstream3.ui.settings
import android.content.Context
import android.net.Uri
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.widget.Toast
import androidx.appcompat.app.AlertDialog
@ -18,7 +17,6 @@ import com.lagradost.cloudstream3.CloudStreamApp
import com.lagradost.cloudstream3.CloudStreamApp.Companion.getKey
import com.lagradost.cloudstream3.CloudStreamApp.Companion.setKey
import com.lagradost.cloudstream3.CommonActivity
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.CommonActivity.showToast
import com.lagradost.cloudstream3.MainActivity
import com.lagradost.cloudstream3.R
@ -79,7 +77,6 @@ val appLanguages = arrayListOf(
Pair("Azərbaycan dili", "az"),
Pair("Bahasa Indonesia", "in"),
Pair("Bahasa Melayu", "ms"),
Pair("català", "ca"),
Pair("Deutsch", "de"),
Pair("English", "en"),
Pair("Español", "es"),
@ -100,7 +97,6 @@ val appLanguages = arrayListOf(
Pair("Português", "pt"),
Pair("Português (Brasil)", "pt-BR"),
Pair("Română", "ro"),
Pair("Shqip мова", "sq"),
Pair("Slovenčina", "sk"),
Pair("Soomaaliga", "so"),
Pair("Svenska", "sv"),
@ -110,7 +106,6 @@ val appLanguages = arrayListOf(
Pair("Wikang Filipino", "fil"),
Pair("Čeština", "cs"),
Pair("Ελληνικά", "el"),
Pair("беларуская мова", "be"),
Pair("български", "bg"),
Pair("македонски", "mk"),
Pair("русский", "ru"),
@ -177,96 +172,6 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
putString(context.getString(R.string.download_path_key_visual), visual)
}
}
fun getCurrent(): MutableList<CustomSite> {
return getKey<Array<CustomSite>>(USER_PROVIDER_API)?.toMutableList()
?: mutableListOf()
}
fun showAdd() {
val providers = allProviders.distinctBy { it::class }.sortedBy { it.name }
val context = activity
context?.showDialog(
providers.map { "${it.name} (${it.mainUrl})" },
-1,
context.getString(R.string.add_site_pref),
true,
{}) { selection ->
val provider = providers.getOrNull(selection) ?: return@showDialog
val binding : AddSiteInputBinding = AddSiteInputBinding.inflate(LayoutInflater.from(
context
),null,false)
val builder =
AlertDialog.Builder(context, R.style.AlertDialogCustom)
.setView(binding.root)
val dialog = builder.create()
dialog.show()
binding.text2.text = provider.name
binding.applyBtt.setOnClickListener {
val name = binding.siteNameInput.text?.toString()
val url = binding.siteUrlInput.text?.toString()
val lang = binding.siteLangInput.text?.toString()
val realLang = if (lang.isNullOrBlank()) provider.lang else lang
val simpleName = provider::class.simpleName
if (url.isNullOrBlank() || name.isNullOrBlank() || simpleName == null) {
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
return@setOnClickListener
}
val current = getCurrent()
val newSite = CustomSite(simpleName, name, url, realLang)
current.add(newSite)
setKey(USER_PROVIDER_API, current.toTypedArray())
// reload apis
MainActivity.afterPluginsLoadedEvent.invoke(false)
dialog.dismissSafe(activity)
}
binding.cancelBtt.setOnClickListener {
dialog.dismissSafe(activity)
}
}
}
fun showDelete() {
val current = getCurrent()
val context = activity
context?.showMultiDialog(
current.map { it.name },
listOf(),
context.getString(R.string.remove_site_pref),
{}) { indexes ->
current.removeAll(indexes.map { current[it] })
setKey(USER_PROVIDER_API, current.toTypedArray())
}
}
fun showAddOrDelete() {
val context = activity
val binding : AddRemoveSitesBinding = AddRemoveSitesBinding.inflate(
LayoutInflater.from(
context
),null,false)
val builder =
AlertDialog.Builder(context ?: return, R.style.AlertDialogCustom)
.setView(binding.root)
val dialog = builder.create()
dialog.show()
binding.addSite.setOnClickListener {
showAdd()
dialog.dismissSafe(activity)
}
binding.removeSite.setOnClickListener {
showDelete()
dialog.dismissSafe(activity)
}
}
}
private val pathPicker = getChooseFolderLauncher { uri, path ->
@ -278,6 +183,10 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
setPreferencesFromResource(R.xml.settings_general, rootKey)
val settingsManager = PreferenceManager.getDefaultSharedPreferences(requireContext())
fun getCurrent(): MutableList<CustomSite> {
return getKey<Array<CustomSite>>(USER_PROVIDER_API)?.toMutableList()
?: mutableListOf()
}
getPref(R.string.locale_key)?.setOnPreferenceClickListener { pref ->
val current = getCurrentLocale(pref.context)
@ -314,7 +223,83 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
true
}
fun showAdd() {
val providers = allProviders.distinctBy { it::class }.sortedBy { it.name }
activity?.showDialog(
providers.map { "${it.name} (${it.mainUrl})" },
-1,
context?.getString(R.string.add_site_pref) ?: return,
true,
{}) { selection ->
val provider = providers.getOrNull(selection) ?: return@showDialog
val binding : AddSiteInputBinding = AddSiteInputBinding.inflate(layoutInflater,null,false)
val builder =
AlertDialog.Builder(context ?: return@showDialog, R.style.AlertDialogCustom)
.setView(binding.root)
val dialog = builder.create()
dialog.show()
binding.text2.text = provider.name
binding.applyBtt.setOnClickListener {
val name = binding.siteNameInput.text?.toString()
val url = binding.siteUrlInput.text?.toString()
val lang = binding.siteLangInput.text?.toString()
val realLang = if (lang.isNullOrBlank()) provider.lang else lang
val simpleName = provider::class.simpleName
if (url.isNullOrBlank() || name.isNullOrBlank() || simpleName == null) {
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
return@setOnClickListener
}
val current = getCurrent()
val newSite = CustomSite(simpleName, name, url, realLang)
current.add(newSite)
setKey(USER_PROVIDER_API, current.toTypedArray())
// reload apis
MainActivity.afterPluginsLoadedEvent.invoke(false)
dialog.dismissSafe(activity)
}
binding.cancelBtt.setOnClickListener {
dialog.dismissSafe(activity)
}
}
}
fun showDelete() {
val current = getCurrent()
activity?.showMultiDialog(
current.map { it.name },
listOf(),
context?.getString(R.string.remove_site_pref) ?: return,
{}) { indexes ->
current.removeAll(indexes.map { current[it] })
setKey(USER_PROVIDER_API, current.toTypedArray())
}
}
fun showAddOrDelete() {
val binding : AddRemoveSitesBinding = AddRemoveSitesBinding.inflate(layoutInflater,null,false)
val builder =
AlertDialog.Builder(context ?: return, R.style.AlertDialogCustom)
.setView(binding.root)
val dialog = builder.create()
dialog.show()
binding.addSite.setOnClickListener {
showAdd()
dialog.dismissSafe(activity)
}
binding.removeSite.setOnClickListener {
showDelete()
dialog.dismissSafe(activity)
}
}
getPref(R.string.override_site_key)?.setOnPreferenceClickListener { _ ->
@ -341,7 +326,7 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
val prefValues = resources.getIntArray(R.array.dns_pref_values)
val currentDns =
settingsManager.getInt(getString(R.string.dns_key), 0)
settingsManager.getInt(getString(R.string.dns_pref), 0)
activity?.showBottomDialog(
prefNames.toList(),
@ -349,7 +334,7 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
getString(R.string.dns_pref),
true,
{}) {
settingsManager.edit { putInt(getString(R.string.dns_key), prefValues[it]) }
settingsManager.edit { putInt(getString(R.string.dns_pref), prefValues[it]) }
(context ?: CloudStreamApp.context)?.let { ctx -> app.initClient(ctx) }
}
return@setOnPreferenceClickListener true
@ -367,14 +352,14 @@ class SettingsGeneral : BasePreferenceFragmentCompat() {
(first +
ctx.getExternalFilesDirs("").mapNotNull { it.path } +
currentDir)
} catch (_: Exception) {
} catch (e: Exception) {
first
}).filterNotNull().distinct()
}
} ?: 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 ->
setKey(getString(R.string.jsdelivr_proxy_key), newValue)
return@setOnPreferenceChangeListener true

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsGeneral2 : BaseComposeFragment(), SearchableSettings by SettingsGeneralScreen

View file

@ -1,299 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.content.Intent
import android.net.Uri
import androidx.activity.compose.rememberLauncherForActivityResult
import androidx.activity.result.contract.ActivityResultContracts
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.integerArrayResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringArrayResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.PreviewLightDark
import com.lagradost.cloudstream3.APIHolder
import com.lagradost.cloudstream3.AllLanguagesName
import com.lagradost.cloudstream3.CloudStreamApp
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.CommonActivity.showToast
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.TvType
import com.lagradost.cloudstream3.UnsafeSSL
import com.lagradost.cloudstream3.app
import com.lagradost.cloudstream3.insecureApp
import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.network.initClient
import com.lagradost.cloudstream3.ui.settings.SettingsProvidersScreen.toStringRes
import com.lagradost.cloudstream3.utils.BatteryOptimizationChecker.isAppRestricted
import com.lagradost.cloudstream3.utils.BatteryOptimizationChecker.showRequestIgnoreBatteryOptDialog
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromTagToLanguageName
import com.lagradost.cloudstream3.utils.SubtitleHelper.getNameNextToFlagEmoji
import com.lagradost.cloudstream4.AppSettings
import com.lagradost.cloudstream4.compose.ActionDialog
import com.lagradost.cloudstream4.compose.PHONE
import com.lagradost.cloudstream4.compose.isLayout
import com.lagradost.cloudstream4.rememberAppSettings
import com.lagradost.cloudstream4.theme.CloudStreamPreviewTheme
import com.lagradost.safefile.SafeFile
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import com.mihon.presentation.settings.collectAsState
import kotlinx.collections.immutable.persistentListOf
object SettingsGeneralScreen : SearchableSettings {
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_general)
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
// TODO Refactor entirely to use a different file path selector ect like QuickNovel
val selectFileSelector =
rememberLauncherForActivityResult(ActivityResultContracts.OpenDocumentTree()) { uri ->
// It lies, it can be null if file manager quits.
if (uri == null) return@rememberLauncherForActivityResult
val context = CloudStreamApp.context ?: return@rememberLauncherForActivityResult
try {
val settings = AppSettings(context)
// RW perms for the path
val flags = Intent.FLAG_GRANT_READ_URI_PERMISSION or
Intent.FLAG_GRANT_WRITE_URI_PERMISSION
context.contentResolver.takePersistableUriPermission(uri, flags)
val filePath = SafeFile.fromUri(context, uri)?.filePath()
println("Selected URI path: $uri - Full path: $filePath")
// store the actual URI instead of the path due to permissions.
// filePath should only be used for cosmetic purposes.
val visual = filePath ?: uri.toString()
settings.general.downloadPath.set(uri.toString())
settings.general.downloadPathVisual.set(visual)
} catch (t: Throwable) {
logError(t)
}
}
val bananas by settings.general.bananas.collectAsState()
val parallelDownloads by settings.general.parallelDownloads.collectAsState()
val concurrentConnections by settings.general.concurrentConnections.collectAsState()
val locale by settings.general.locale.collectAsState()
val downloadPathVisual by settings.general.downloadPathVisual.collectAsState()
//val downloadPath by settings.general.downloadPath.collectAsState()
var isBatteryShown by remember { mutableStateOf(false) }
val context = LocalContext.current
if (isBatteryShown) {
ActionDialog(
icon = painterResource(R.drawable.battery_alert_24px),
title = stringResource(R.string.battery_dialog_title),
text = stringResource(R.string.battery_dialog_message),
confirmText = stringResource(R.string.ok),
dismissText = stringResource(R.string.cancel),
dismiss = {
isBatteryShown = false
settings.general.batterOptimization.set(false)
},
confirm = {
isBatteryShown = false
// The og impl never modified it to true?
// settings.general.batterOptimization.set(true)
context.showRequestIgnoreBatteryOptDialog()
}
)
}
val default = AllLanguagesName to stringResource(R.string.all_languages_preference)
val languages = APIHolder.apis.withLock {
APIHolder.apis.map { api -> api.lang }.distinct()
}.sortedBy { fromTagToLanguageName(it) ?: it }
return persistentListOf(
Preference.PreferenceGroup(title = stringResource(R.string.extension_language), preferenceItems = persistentListOf(
Preference.PreferenceItem.BasicListPreference(
value = locale,
entries = appLanguages.associate { (name, code) -> (code to (name to code).nameNextToFlagEmoji()) },
title = stringResource(R.string.app_language),
icon = painterResource(R.drawable.language_korean_latin_24px),
onValueChanged = { value ->
settings.general.locale.set(value)
activity?.recreate()
},
subtitleProvider = { v, e -> e[v] ?: getCurrentLocale(LocalContext.current) }
),
Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.provider_lang_settings),
icon = painterResource(R.drawable.plugin_lang),
entries = mapOf(default) + languages.associateWith { lang ->
(getNameNextToFlagEmoji(
lang
) ?: lang)
},
preference = settings.provider.extensionLanguages
),
Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.preferred_media_settings),
icon = painterResource(R.drawable.movie_edit_24px),
preference = settings.provider.preferredMedia,
entries = TvType.entries.associate {
it.ordinal.toString() to stringResource(it.toStringRes())
}),
)),
Preference.PreferenceGroup(
title = stringResource(R.string.title_downloads),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
icon = painterResource(R.drawable.netflix_download),
subtitle = downloadPathVisual,
title = stringResource(R.string.download_path_pref),
onClick = {
// This is not a ListPreference because the old selection system is
// broken af. This needs to be refactored to QuickNovels download path
// system.
selectFileSelector.launch(Uri.EMPTY)
},
),
Preference.PreferenceItem.SliderPreference(
icon = painterResource(R.drawable.arrow_or_edge_24px),
value = parallelDownloads,
valueRange = 1..10,
title = stringResource(R.string.parallel_downloads),
subtitle = stringResource(R.string.download_parallel_settings_des),
onValueChanged = settings.general.parallelDownloads::set,
),
Preference.PreferenceItem.SliderPreference(
icon = painterResource(R.drawable.arrow_and_edge_24px),
value = concurrentConnections,
valueRange = 1..10,
title = stringResource(R.string.concurrent_connections),
subtitle = stringResource(R.string.concurrent_connections_settings_des),
onValueChanged = settings.general.concurrentConnections::set,
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.battery_dialog_title),
icon = painterResource(R.drawable.battery_alert_24px),
enabled = isLayout(PHONE),
onClick = {
if (isAppRestricted(context)) {
isBatteryShown = true
} else {
showToast(R.string.app_unrestricted_toast)
}
}
),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_bypass),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.add_site_pref),
subtitle = stringResource(R.string.add_site_summary),
icon = painterResource(R.drawable.copy_all_24px),
onClick = {
// TODO refactor into compose
if (SettingsGeneral.getCurrent().isEmpty()) {
SettingsGeneral.showAdd()
} else {
SettingsGeneral.showAddOrDelete()
}
}
),
Preference.PreferenceItem.ListPreference(
title = stringResource(R.string.dns_pref),
subtitle = stringResource(R.string.dns_pref_summary),
icon = painterResource(R.drawable.dns_24px),
preference = settings.general.dns,
entries = integerArrayResource(R.array.dns_pref_values).zip(
stringArrayResource(R.array.dns_pref)
).toMap(),
onValueChanged = {
(CloudStreamApp.context)?.let { ctx ->
app.initClient(ctx, ignoreSSL = false)
@OptIn(UnsafeSSL::class)
insecureApp.initClient(ctx, ignoreSSL = true)
}
return@ListPreference true
},
),
Preference.PreferenceItem.SwitchPreference(
title = stringResource(R.string.jsdelivr_proxy),
subtitle = stringResource(R.string.jsdelivr_proxy_summary),
icon = painterResource(R.drawable.wifi_proxy_24px),
preference = settings.general.jsdelivrProxy
)
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_links),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.github),
subtitle = "https://github.com/recloudstream/cloudstream",
icon = painterResource(R.drawable.ic_github_logo),
onClick = {
CloudStreamApp.openBrowser("https://github.com/recloudstream/cloudstream")
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.lightnovel),
subtitle = "https://github.com/LagradOst/QuickNovel",
icon = painterResource(R.drawable.quick_novel_icon),
onClick = {
CloudStreamApp.openBrowser("https://github.com/LagradOst/QuickNovel")
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.discord),
subtitle = "https://discord.gg/5Hus6fM",
icon = painterResource(R.drawable.ic_baseline_discord_24),
onClick = {
CloudStreamApp.openBrowser("https://discord.gg/5Hus6fM")
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.cs3wiki),
subtitle = "https://cloudstream.miraheze.org/",
icon = painterResource(R.drawable.description_24px),
onClick = {
CloudStreamApp.openBrowser("https://cloudstream.miraheze.org/")
}
),
)
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.benene),
subtitle = if (bananas == 0) {
stringResource(R.string.benene_count_text_none)
} else {
stringResource(R.string.benene_count_text, bananas)
},
onClick = {
settings.general.bananas.set(bananas + 1)
},
icon = painterResource(R.drawable.benene),
),
Preference.PreferenceItem.InfoPreference(title = stringResource(R.string.legal_notice_text)),
)
}
}
@PreviewLightDark
@Composable
private fun SettingGeneralPreview() {
CloudStreamPreviewTheme {
SettingsGeneralScreen.Content()
}
}

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsPlayer2 : BaseComposeFragment(), SearchableSettings by SettingsPlayerScreen

View file

@ -1,353 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.text.format.Formatter.formatShortFileSize
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableIntStateOf
import androidx.compose.runtime.mutableLongStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.integerArrayResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringArrayResource
import androidx.compose.ui.res.stringResource
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.actions.VideoClickActionHolder
import com.lagradost.cloudstream3.ui.player.source_priority.QualityProfileDialog
import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.getFolderSize
import com.lagradost.cloudstream3.ui.subtitles.ChromecastSubtitlesFragment
import com.lagradost.cloudstream3.ui.subtitles.SubtitlesFragment
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
import com.lagradost.cloudstream4.compose.EMULATOR
import com.lagradost.cloudstream4.compose.PHONE
import com.lagradost.cloudstream4.compose.TV
import com.lagradost.cloudstream4.compose.isLayout
import com.lagradost.cloudstream4.rememberAppSettings
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import com.mihon.presentation.settings.collectAsState
import kotlinx.collections.immutable.persistentListOf
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import kotlin.reflect.jvm.jvmName
object SettingsPlayerScreen : SearchableSettings {
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_player)
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
val context = LocalContext.current
val defaultPlayerName = stringResource(R.string.player_settings_play_in_app)
val players = remember(context) {
mapOf("" to defaultPlayerName) + VideoClickActionHolder.getPlayers()
.associate { player ->
player.uniqueId() to (player.name.asStringNull(context)
?: player::class.simpleName ?: player::class.jvmName)
}
}
val playerSeekTime by settings.player.doubleTapTime.collectAsState()
val tvSeekOnTime by settings.player.tvSeekOnTime.collectAsState()
val tvSeekOffTime by settings.player.tvSeekOffTime.collectAsState()
var cacheSize by remember { mutableLongStateOf(0L) }
var cacheCleared by remember { mutableIntStateOf(0) }
val cacheDir = LocalContext.current.cacheDir
LaunchedEffect(cacheCleared) {
withContext(Dispatchers.IO) {
cacheSize = getFolderSize(cacheDir)
}
}
return persistentListOf(
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_subtitles),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.player_subtitles_settings),
subtitle = stringResource(R.string.player_subtitles_settings_des),
icon = painterResource(R.drawable.subtitles_gear_24px),
onClick = {
SubtitlesFragment.push(activity, false)
}),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.chromecast_subtitles_settings),
subtitle = stringResource(R.string.chromecast_subtitles_settings_des),
icon = painterResource(R.drawable.cast),
onClick = {
ChromecastSubtitlesFragment.push(activity, false)
}),
),
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_player_features),
preferenceItems = persistentListOf(
Preference.PreferenceItem.ListPreference(
title = stringResource(R.string.player_pref),
icon = painterResource(R.drawable.play_arrow_24px),
preference = settings.player.defaultPlayer,
entries = players,
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.source_priority),
subtitle = stringResource(R.string.source_priority_help),
icon = painterResource(R.drawable.ic_baseline_people_24),
onClick = {
ioSafe {
val defaultSources = QualityProfileDialog.getAllDefaultSources()
val activity = activity ?: return@ioSafe
activity.runOnUiThread {
QualityProfileDialog(
activity,
R.style.DialogFullscreenPlayer,
defaultSources,
).show()
}
}
}),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.pipEnabled,
title = stringResource(R.string.picture_in_picture),
subtitle = stringResource(R.string.picture_in_picture_des),
icon = painterResource(R.drawable.pip_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.resizeEnabled,
title = stringResource(R.string.player_size_settings),
subtitle = stringResource(R.string.player_size_settings_des),
icon = painterResource(R.drawable.aspect_ratio_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.speedEnabled,
title = stringResource(R.string.eigengraumode_settings),
subtitle = stringResource(R.string.speed_setting_summary),
icon = painterResource(R.drawable.ic_baseline_speed_24),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.tiktokEnabled,
title = stringResource(R.string.speedup_title),
subtitle = stringResource(R.string.speedup_summary),
icon = painterResource(R.drawable.speedup),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.autoPlayEnabled,
title = stringResource(R.string.autoplay_next_settings),
subtitle = stringResource(R.string.autoplay_next_settings_des),
icon = painterResource(R.drawable.skip_next_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.skipOpEnabled,
title = stringResource(R.string.video_skip_op),
subtitle = stringResource(R.string.enable_skip_op_from_database_des),
icon = painterResource(R.drawable.keyboard_double_arrow_right_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.autoRotateEnabled,
title = stringResource(R.string.auto_rotate_video),
subtitle = stringResource(R.string.auto_rotate_video_desc),
icon = painterResource(R.drawable.screen_rotation_alt_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.rotateButtonEnabled,
title = stringResource(R.string.rotate_video),
subtitle = stringResource(R.string.rotate_video_desc),
icon = painterResource(R.drawable.screen_rotation),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.previewBarEnabled,
enabled = isLayout(PHONE or EMULATOR),
title = stringResource(R.string.preview_seekbar),
subtitle = stringResource(R.string.preview_seekbar_desc),
icon = painterResource(R.drawable.picture_in_picture_center_24px),
),
Preference.PreferenceItem.ListPreference(
preference = settings.player.softwareDecoding,
title = stringResource(R.string.software_decoding),
subtitle = stringResource(R.string.software_decoding_desc),
icon = painterResource(R.drawable.memory_24px),
entries = integerArrayResource(R.array.software_decoding_switch_values).zip(
stringArrayResource(R.array.software_decoding_switch)
).toMap()
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.extraBrightnessEnabled,
title = stringResource(R.string.extra_brightness_settings),
subtitle = stringResource(R.string.extra_brightness_settings_des),
icon = painterResource(R.drawable.light_mode_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.episodeSync,
title = stringResource(R.string.episode_sync_settings),
subtitle = stringResource(R.string.episode_sync_settings_des),
icon = painterResource(R.drawable.autorenew_24px)
),
),
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_gestures),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.swipeHorizontalEnabled,
title = stringResource(R.string.swipe_to_seek_settings),
subtitle = stringResource(R.string.swipe_to_seek_settings_des),
icon = painterResource(R.drawable.swipe_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.swipeVerticalEnabled,
title = stringResource(R.string.swipe_to_change_settings),
subtitle = stringResource(R.string.swipe_to_change_settings_des),
icon = painterResource(R.drawable.swipe_vertical_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.doubleTapToSeekEnabled,
title = stringResource(R.string.double_tap_to_seek_settings),
subtitle = stringResource(R.string.double_tap_to_seek_settings_des),
icon = painterResource(R.drawable.touch_double_24px),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.doubleTapToPauseEnabled,
title = stringResource(R.string.double_tap_to_pause_settings),
subtitle = stringResource(R.string.double_tap_to_pause_settings_des),
icon = painterResource(R.drawable.touch_double_24px),
),
Preference.PreferenceItem.SliderPreference(
value = playerSeekTime,
title = stringResource(R.string.double_tap_to_seek_amount_settings),
icon = painterResource(R.drawable.go_forward_30),
valueRange = 5..60,
steps = 10,
onValueChanged = settings.player.doubleTapTime::set
),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_android_tv),
enabled = isLayout(TV or EMULATOR),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SliderPreference(
value = tvSeekOnTime,
title = stringResource(R.string.android_tv_interface_on_seek_settings),
subtitle = stringResource(R.string.android_tv_interface_on_seek_settings_summary),
icon = painterResource(R.drawable.go_forward_30),
valueRange = 5..60,
steps = 10,
onValueChanged = settings.player.tvSeekOnTime::set
),
Preference.PreferenceItem.SliderPreference(
value = tvSeekOffTime,
title = stringResource(R.string.android_tv_interface_off_seek_settings),
subtitle = stringResource(R.string.android_tv_interface_off_seek_settings_summary),
icon = painterResource(R.drawable.go_forward_30),
valueRange = 5..60,
steps = 10,
onValueChanged = settings.player.tvSeekOffTime::set
),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_player_layout),
preferenceItems = persistentListOf(
Preference.PreferenceItem.ListPreference(
preference = settings.player.limitPlayerTitle,
title = stringResource(R.string.limit_title),
icon = painterResource(R.drawable.match_word_24px),
entries = integerArrayResource(R.array.limit_title_pref_values).zip(
stringArrayResource(R.array.limit_title_pref_names)
).toMap()
),
Preference.PreferenceItem.SwitchPreference(
enabled = isLayout(PHONE or EMULATOR),
preference = settings.player.hidePlayerControlNames,
icon = painterResource(R.drawable.visibility_off_24px),
title = stringResource(R.string.hide_player_control_names),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.showName,
icon = painterResource(R.drawable.label_24px),
title = stringResource(R.string.source_name),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.showMediaInfo,
icon = painterResource(R.drawable.movie_info_24px),
title = stringResource(R.string.video_info),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.player.showResolution,
title = stringResource(R.string.resolution),
icon = painterResource(R.drawable.high_res_24px),
),
// Unsure if we want to have MultiSelectListPreference or boolean
/*Preference.PreferenceItem.MultiSelectListPreference(
preference = settings.player.showPlayerInfo,
title = stringResource(R.string.limit_title_rez),
icon = painterResource(R.drawable.ic_baseline_text_format_24),
entries = persistentMapOf(
ShowPlayerInfo.Name to stringResource(R.string.source_name),
ShowPlayerInfo.Resolution to stringResource(R.string.resolution),
ShowPlayerInfo.VideoInfo to stringResource(R.string.video_info),
)
), */
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_cache),
preferenceItems = persistentListOf(
Preference.PreferenceItem.ListPreference(
preference = settings.player.bufferDiskMB,
title = stringResource(R.string.video_buffer_disk_settings),
subtitle = "%s\n" + stringResource(R.string.video_disk_description),
icon = painterResource(R.drawable.hard_drive_24px),
entries = integerArrayResource(R.array.video_buffer_size_values).zip(
stringArrayResource(R.array.video_buffer_size_names)
).toMap()
),
Preference.PreferenceItem.ListPreference(
preference = settings.player.bufferRamMB,
title = stringResource(R.string.video_buffer_size_settings),
subtitle = "%s\n" + stringResource(R.string.video_ram_description),
icon = painterResource(R.drawable.memory_alt_24px),
entries = integerArrayResource(R.array.video_buffer_size_values).zip(
stringArrayResource(R.array.video_buffer_size_names)
).toMap()
),
Preference.PreferenceItem.ListPreference(
preference = settings.player.bufferTimeSec,
title = stringResource(R.string.video_buffer_length_settings),
subtitle = "%s\n" + stringResource(R.string.video_ram_description),
icon = painterResource(R.drawable.history_toggle_off_24px),
entries = integerArrayResource(R.array.video_buffer_length_values).zip(
stringArrayResource(R.array.video_buffer_length_names)
).toMap()
),
Preference.PreferenceItem.TextPreference(
icon = painterResource(R.drawable.ic_baseline_delete_outline_24),
title = stringResource(R.string.video_buffer_clear_settings),
subtitle = formatShortFileSize(LocalContext.current, cacheSize),
onClick = {
ioSafe {
cacheDir.deleteRecursively()
cacheCleared += 1
}
})
)
),
)
}
}

View file

@ -109,8 +109,7 @@ class SettingsProviders : BasePreferenceFragmentCompat() {
return@setOnPreferenceClickListener true
}
getPref(R.string.
provider_lang_key)?.setOnPreferenceClickListener {
getPref(R.string.provider_lang_key)?.setOnPreferenceClickListener {
activity?.getApiProviderLangSettings()?.let { currentLangTags ->
val languagesTagName = APIHolder.apis.withLock {
listOf(Pair(AllLanguagesName, getString(R.string.all_languages_preference))) +

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
@Deprecated("This setting was merged into other places")
class SettingsProviders2 : BaseComposeFragment(), SearchableSettings by SettingsProvidersScreen

View file

@ -1,89 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import androidx.compose.runtime.Composable
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import com.lagradost.cloudstream3.APIHolder
import com.lagradost.cloudstream3.AllLanguagesName
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.DubStatus
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.TvType
import com.lagradost.cloudstream3.utils.SubtitleHelper.fromTagToLanguageName
import com.lagradost.cloudstream3.utils.SubtitleHelper.getNameNextToFlagEmoji
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream4.rememberAppSettings
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import kotlinx.collections.immutable.persistentListOf
@Deprecated("This setting was merged into other places")
object SettingsProvidersScreen : SearchableSettings {
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_providers)
fun TvType.toStringRes() = when (this) {
TvType.TvSeries -> R.string.tv_series_singular
TvType.Anime -> R.string.anime_singular
TvType.OVA -> R.string.ova_singular
TvType.AnimeMovie -> R.string.movies_singular
TvType.Cartoon -> R.string.cartoons_singular
TvType.Documentary -> R.string.documentaries_singular
TvType.Movie -> R.string.movies_singular
TvType.Torrent -> R.string.torrent_singular
TvType.AsianDrama -> R.string.asian_drama_singular
TvType.Live -> R.string.live_singular
TvType.Others -> R.string.other_singular
TvType.NSFW -> R.string.nsfw_singular
TvType.Music -> R.string.music_singular
TvType.AudioBook -> R.string.audio_book_singular
TvType.CustomMedia -> R.string.custom_media_singular
TvType.Audio -> R.string.audio_singular
TvType.Podcast -> R.string.podcast_singular
TvType.Video -> R.string.video_singular
}
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
val default = AllLanguagesName to stringResource(R.string.all_languages_preference)
val languages = APIHolder.apis.withLock {
APIHolder.apis.map { api -> api.lang }.distinct()
}.sortedBy { fromTagToLanguageName(it) ?: it }
return persistentListOf(
Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.provider_lang_settings),
icon = painterResource(R.drawable.plugin_lang),
entries = mapOf(default) + languages.associateWith { lang ->
(getNameNextToFlagEmoji(
lang
) ?: lang)
},
preference = settings.provider.extensionLanguages
), Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.preferred_media_settings),
icon = painterResource(R.drawable.movie_edit_24px),
preference = settings.provider.preferredMedia,
entries = TvType.entries.associate {
it.ordinal.toString() to stringResource(it.toStringRes())
}),
Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.display_subbed_dubbed_settings),
icon = painterResource(R.drawable.audio_capture_24px),
preference = settings.provider.displayDubSub,
entries = mapOf(
DubStatus.None.name to stringResource(R.string.none),
DubStatus.Dubbed.name to stringResource(R.string.app_dubbed_text),
DubStatus.Subbed.name to stringResource(R.string.app_subbed_text),
)
), Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.test_extensions),
subtitle = stringResource(R.string.test_extensions_summary),
icon = painterResource(R.drawable.baseline_network_ping_24),
onClick = {
activity?.navigate(R.id.navigation_test_providers)
}))
}
}

View file

@ -228,8 +228,6 @@ class SettingsUI : BasePreferenceFragmentCompat() {
return@setOnPreferenceClickListener true
}
getPref(R.string.tv_layout_clock_key)?.hideOn(PHONE or EMULATOR)
getPref(R.string.confirm_exit_key)?.setOnPreferenceClickListener {
val prefNames = resources.getStringArray(R.array.confirm_exit)
val prefValues = resources.getIntArray(R.array.confirm_exit_values)

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsUI2 : BaseComposeFragment(), SearchableSettings by SettingsUIScreen

View file

@ -1,306 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.os.Build
import androidx.compose.foundation.background
import androidx.compose.foundation.border
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.integerArrayResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringArrayResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.DubStatus
import com.lagradost.cloudstream3.MainActivity
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.SearchQuality
import com.lagradost.cloudstream3.mvvm.safe
import com.lagradost.cloudstream3.ui.clear
import com.lagradost.cloudstream3.ui.home.HomeChildItemAdapter
import com.lagradost.cloudstream3.ui.home.ParentItemAdapter
import com.lagradost.cloudstream3.ui.search.SearchAdapter
import com.lagradost.cloudstream3.ui.settings.Globals.updateTv
import com.lagradost.cloudstream3.utils.UIHelper.toPx
import com.lagradost.cloudstream4.compose.TV
import com.lagradost.cloudstream4.compose.isLayout
import com.lagradost.cloudstream4.rememberAppSettings
import com.lagradost.cloudstream4.theme.CloudStreamPrimaryColor
import com.lagradost.cloudstream4.theme.modeToTheme
import com.lagradost.cloudstream4.theme.perfToColor
import com.lagradost.cloudstream4.theme.perfToMode
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import com.mihon.presentation.settings.collectAsState
import kotlinx.collections.immutable.mutate
import kotlinx.collections.immutable.persistentListOf
import kotlinx.collections.immutable.toPersistentMap
object SettingsUIScreen : SearchableSettings {
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_ui)
fun SearchQuality.toStringRes() = when (this) {
SearchQuality.BlueRay -> R.string.quality_blueray
SearchQuality.Cam -> R.string.quality_cam
SearchQuality.CamRip -> R.string.quality_cam_rip
SearchQuality.DVD -> R.string.quality_dvd
SearchQuality.HD -> R.string.quality_hd
SearchQuality.HQ -> R.string.quality_hq
SearchQuality.HdCam -> R.string.quality_cam_hd
SearchQuality.Telecine -> R.string.quality_tc
SearchQuality.Telesync -> R.string.quality_ts
SearchQuality.WorkPrint -> R.string.quality_workprint
SearchQuality.SD -> R.string.quality_sd
SearchQuality.FourK -> R.string.quality_4k
SearchQuality.UHD -> R.string.quality_uhd
SearchQuality.SDR -> R.string.quality_sdr
SearchQuality.HDR -> R.string.quality_hdr
SearchQuality.WebRip -> R.string.quality_webrip
}
@Composable
fun RoundColor(color: Color) {
Box(
modifier = Modifier
.padding(start = 15.dp)
.size(20.dp)
.border(width = 1.5.dp, shape = CircleShape, color = MaterialTheme.colorScheme.onBackground)
.background(color, CircleShape)
)
}
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
val overscanDp by settings.ui.overscanDp.collectAsState()
val posterSize by settings.ui.posterSize.collectAsState()
return persistentListOf(
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_looks),
preferenceItems = persistentListOf(
Preference.PreferenceItem.ListPreference(
preference = settings.ui.primaryColor,
icon = painterResource(R.drawable.colors_24px),
title = stringResource(R.string.primary_color_settings),
entries = stringArrayResource(R.array.themes_overlay_names_values).zip(
stringArrayResource(R.array.themes_overlay_names)
).toMap().toPersistentMap().mutate { map ->
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.S) { // remove monet on android 11 and less
map.remove("Monet")
map.remove("Monet2")
}
},
iconProvider = { k, _ ->
val color = perfToColor(k)
RoundColor(color.color)
},
onValueChanged = { newValue ->
settings.ui.primaryColor.set(newValue) // We need to set before we recreate
safe {
activity?.recreate()
}
return@ListPreference false
}),
Preference.PreferenceItem.ListPreference(
preference = settings.ui.theme,
icon = painterResource(R.drawable.palette_24px),
title = stringResource(R.string.app_theme_settings),
entries = stringArrayResource(R.array.themes_names_values).zip(
stringArrayResource(R.array.themes_names)
).toMap().toPersistentMap().mutate { map ->
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.S) { // remove monet on android 11 and less
map.remove("Monet")
}
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) { // Remove system on android 9 and less
map.remove("System")
}
},
iconProvider = { k, _ ->
val theme = modeToTheme(perfToMode(k), CloudStreamPrimaryColor.NORMAL)
RoundColor(theme.background)
},
onValueChanged = { newValue ->
settings.ui.theme.set(newValue) // We need to set before we recreate
safe {
activity?.recreate()
}
return@ListPreference false
}),
Preference.PreferenceItem.ListPreference(
preference = settings.ui.layout,
icon = painterResource(R.drawable.responsive_layout_24px),
title = stringResource(R.string.app_layout),
entries = integerArrayResource(R.array.app_layout_values).zip(
stringArrayResource(R.array.app_layout)
).toMap().toPersistentMap(),
onValueChanged = { newValue ->
settings.ui.layout.set(newValue) // We need to set before we recreate
safe {
activity?.updateTv()
activity?.recreate()
}
return@ListPreference false
}),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_ui_features),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SliderPreference(
value = overscanDp,
title = stringResource(R.string.overscan_settings),
subtitle = stringResource(R.string.overscan_settings_des),
valueRange = 0..100,
icon = painterResource(R.drawable.arrows_input_24px),
enabled = isLayout(TV),
onValueChanged = { newValue ->
settings.ui.overscanDp.set(newValue)
val padding = newValue.toPx
(activity as? MainActivity)?.binding?.homeRoot?.setPadding(
padding, padding, padding, padding
)
}),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.advancedSearch,
title = stringResource(R.string.advanced_search),
subtitle = stringResource(R.string.advanced_search_des),
icon = painterResource(R.drawable.search_icon)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.searchSuggestions,
title = stringResource(R.string.search_suggestions),
subtitle = stringResource(R.string.search_suggestions_des),
icon = painterResource(R.drawable.tooltip_24px)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.trailersEnabled,
title = stringResource(R.string.show_trailers_settings),
icon = painterResource(R.drawable.baseline_theaters_24)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.kitsuPostersEnabled,
title = stringResource(R.string.kitsu_settings),
icon = painterResource(R.drawable.kitsu_icon)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.castEnabled,
title = stringResource(R.string.show_cast_in_details),
icon = painterResource(R.drawable.face_24px)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.fillersEnabled,
title = stringResource(R.string.show_fillers_settings),
icon = painterResource(R.drawable.skip_next_24px)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.showMetadataOverlay,
title = stringResource(R.string.show_player_metadata_overlay),
icon = painterResource(R.drawable.metadata_overlay_icon)
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.showClock,
title = stringResource(R.string.tv_layout_clock_settings),
subtitle = stringResource(R.string.tv_layout_clock_settings_des),
icon = painterResource(R.drawable.ic_baseline_clock_24),
enabled = isLayout(TV),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.randomButtonEnabled,
title = stringResource(R.string.random_button_settings),
subtitle = stringResource(R.string.random_button_settings_desc),
icon = painterResource(R.drawable.shuffle_24px)
),
Preference.PreferenceItem.ListPreference(
preference = settings.ui.confirmExit,
title = stringResource(R.string.confirm_before_exiting_title),
subtitle = stringResource(R.string.confirm_before_exiting_desc),
icon = painterResource(R.drawable.ic_baseline_exit_24),
entries = integerArrayResource(R.array.confirm_exit_values).zip(
stringArrayResource(R.array.confirm_exit)
).toMap()
),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.search_poster_img_des),
preferenceItems = persistentListOf(
Preference.PreferenceItem.MultiSelectListPreference(
preference = settings.ui.filterQuality,
title = stringResource(R.string.pref_filter_search_quality),
icon = painterResource(R.drawable.filter_alt_24px),
entries = SearchQuality.entries.associateWith { stringResource(it.toStringRes()) }),
Preference.PreferenceItem.MultiSelectListPreference(
title = stringResource(R.string.display_subbed_dubbed_settings),
icon = painterResource(R.drawable.audio_capture_24px),
preference = settings.provider.displayDubSub,
entries = mapOf(
DubStatus.None.name to stringResource(R.string.none),
DubStatus.Dubbed.name to stringResource(R.string.app_dubbed_text),
DubStatus.Subbed.name to stringResource(R.string.app_subbed_text),
)),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.bottomTitle,
title = stringResource(R.string.bottom_title_settings),
subtitle = stringResource(R.string.bottom_title_settings_des),
icon = painterResource(R.drawable.title_24px)
),
Preference.PreferenceItem.SliderPreference(
value = posterSize,
title = stringResource(R.string.poster_size_settings),
subtitle = stringResource(R.string.poster_size_settings_des),
valueRange = 0..15,
icon = painterResource(R.drawable.baseline_grid_view_24),
onValueChanged = { newValue ->
HomeChildItemAdapter.sharedPool.clear()
ParentItemAdapter.sharedPool.clear()
SearchAdapter.sharedPool.clear()
activity?.let { HomeChildItemAdapter.updatePosterSize(it, newValue) }
settings.ui.posterSize.set(newValue)
}),
),
),
Preference.PreferenceGroup(
title = stringResource(R.string.poster_ui_settings),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowRating,
title = stringResource(R.string.show_rating),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowEpisode,
title = stringResource(R.string.show_episode_text),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowTitle,
title = stringResource(R.string.show_title),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowHd,
title = stringResource(R.string.show_hd),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowDub,
title = stringResource(R.string.show_dub),
),
Preference.PreferenceItem.SwitchPreference(
preference = settings.ui.posterShowSub,
title = stringResource(R.string.show_sub),
),
)
)
)
}
}

View file

@ -1,7 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import com.lagradost.cloudstream3.utils.BaseComposeFragment
import com.mihon.presentation.settings.SearchableSettings
/** Empty glue code to connect the old navigation graph to Compose */
class SettingsUpdates2 : BaseComposeFragment(), SearchableSettings by SettingsUpdatesScreen

View file

@ -1,229 +0,0 @@
package com.lagradost.cloudstream3.ui.settings
import android.content.Intent
import android.net.Uri
import android.widget.Toast
import androidx.activity.compose.rememberLauncherForActivityResult
import androidx.activity.result.contract.ActivityResultContracts
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.res.integerArrayResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringArrayResource
import androidx.compose.ui.res.stringResource
import com.lagradost.cloudstream3.AutoDownloadMode
import com.lagradost.cloudstream3.BuildConfig
import com.lagradost.cloudstream3.CloudStreamApp
import com.lagradost.cloudstream3.CommonActivity.activity
import com.lagradost.cloudstream3.CommonActivity.showToast
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.plugins.PluginManager
import com.lagradost.cloudstream3.utils.BackupUtils
import com.lagradost.cloudstream3.utils.BackupUtils.restorePrompt
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
import com.lagradost.cloudstream3.utils.InAppUpdater.installPreReleaseIfNeeded
import com.lagradost.cloudstream3.utils.InAppUpdater.runAutoUpdate
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream4.AppSettings
import com.lagradost.cloudstream4.rememberAppSettings
import com.lagradost.safefile.SafeFile
import com.mihon.presentation.settings.Preference
import com.mihon.presentation.settings.SearchableSettings
import com.mihon.presentation.settings.collectAsState
import kotlinx.collections.immutable.persistentListOf
object SettingsUpdatesScreen : SearchableSettings {
@Composable
override fun getTitleRes(): String = stringResource(R.string.category_updates)
@Composable
override fun getPreferences(): List<Preference> {
val settings = rememberAppSettings()
// TODO Refactor entirely to use a different file path selector ect like QuickNovel
val selectFileSelector =
rememberLauncherForActivityResult(ActivityResultContracts.OpenDocumentTree()) { uri ->
// It lies, it can be null if file manager quits.
if (uri == null) return@rememberLauncherForActivityResult
val context = CloudStreamApp.context ?: return@rememberLauncherForActivityResult
try {
val settings = AppSettings(context)
// RW perms for the path
val flags = Intent.FLAG_GRANT_READ_URI_PERMISSION or
Intent.FLAG_GRANT_WRITE_URI_PERMISSION
context.contentResolver.takePersistableUriPermission(uri, flags)
val filePath = SafeFile.fromUri(context, uri)?.filePath()
println("Selected URI path: $uri - Full path: $filePath")
// store the actual URI instead of the path due to permissions.
// filePath should only be used for cosmetic purposes.
val visual = filePath ?: uri.toString()
settings.backup.path.set(uri.toString())
settings.backup.visualPath.set(visual)
} catch (t: Throwable) {
logError(t)
}
}
val visualBackupPath by settings.backup.visualPath.collectAsState()
var showDialog by remember { mutableStateOf(false) }
if (showDialog) {
com.lagradost.cloudstream3.ui.settings.logcat.LogcatDialog {
showDialog = false
}
}
return persistentListOf(
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_app_updates),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.check_for_update),
subtitle = BuildConfig.VERSION_NAME,
icon = painterResource(R.drawable.mobile_arrow_down_24px),
onClick = {
ioSafe {
if (activity?.runAutoUpdate(false) == false) {
activity?.runOnUiThread {
showToast(
R.string.no_update_found,
Toast.LENGTH_SHORT
)
}
}
}
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.install_prerelease),
icon = painterResource(R.drawable.mobile_code_24px),
enabled = BuildConfig.FLAVOR == "stable",
onClick = {
activity?.installPreReleaseIfNeeded()
}
),
Preference.PreferenceItem.ListPreference(
title = stringResource(R.string.apk_installer_settings),
subtitle = stringResource(R.string.apk_installer_settings_des),
icon = painterResource(R.drawable.mobile_wrench_24px),
entries = integerArrayResource(R.array.apk_installer_values).zip(
stringArrayResource(R.array.apk_installer_pref)
).toMap(),
preference = settings.updates.apkInstaller
),
Preference.PreferenceItem.SwitchPreference(
title = stringResource(R.string.updates_settings),
subtitle = stringResource(R.string.updates_settings_des),
icon = painterResource(R.drawable.notifications_active_24px),
preference = settings.updates.showAppUpdates
)
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_backup),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.backup_settings),
icon = painterResource(R.drawable.save_as_24px),
onClick = {
BackupUtils.backup(activity)
}
),
Preference.PreferenceItem.ListPreference(
title = stringResource(R.string.backup_frequency),
icon = painterResource(R.drawable.save_clock_24px),
entries = integerArrayResource(R.array.periodic_work_values).zip(
stringArrayResource(R.array.periodic_work_names)
).toMap(),
preference = settings.backup.frequency
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.backup_path_title),
icon = painterResource(R.drawable.folder_24px),
subtitle = visualBackupPath,
onClick = {
// This is not a ListPreference because the old selection system is
// broken af. This needs to be refactored to QuickNovels download path
// system.
selectFileSelector.launch(Uri.EMPTY)
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.restore_settings),
icon = painterResource(R.drawable.restore_page_24px),
onClick = {
activity?.restorePrompt()
}
),
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_extensions),
preferenceItems = persistentListOf(
Preference.PreferenceItem.SwitchPreference(
title = stringResource(R.string.automatic_plugin_updates),
icon = painterResource(R.drawable.extension_24px),
preference = settings.plugins.autoUpdate,
),
Preference.PreferenceItem.ListPreference(
title = stringResource(R.string.automatic_plugin_download),
subtitle = "%s\n" + stringResource(R.string.automatic_plugin_download_summary),
icon = painterResource(R.drawable.extention_renew2),
entries = AutoDownloadMode.entries.map { it.value }.sorted()
.zip(stringArrayResource((R.array.auto_download_plugin))).toMap(),
preference = settings.plugins.autoDownload
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.update_plugins),
subtitle = stringResource(R.string.update_plugins_manually),
icon = painterResource(R.drawable.extention_download),
onClick = {
ioSafe {
PluginManager.___DO_NOT_CALL_FROM_A_PLUGIN_manuallyReloadAndUpdatePlugins(
activity ?: return@ioSafe
)
}
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.test_extensions),
subtitle = stringResource(R.string.test_extensions_summary),
icon = painterResource(R.drawable.baseline_network_ping_24),
onClick = {
activity?.navigate(R.id.navigation_test_providers)
})
)
),
Preference.PreferenceGroup(
title = stringResource(R.string.pref_category_actions),
preferenceItems = persistentListOf(
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.show_log_cat),
icon = painterResource(R.drawable.article_24px),
onClick = {
showDialog = true
}
),
Preference.PreferenceItem.TextPreference(
title = stringResource(R.string.redo_setup_process),
icon = painterResource(R.drawable.construction_24px),
onClick = {
activity?.navigate(R.id.navigation_setup_language)
}
),
)
)
)
}
}

View file

@ -39,8 +39,6 @@ import com.lagradost.cloudstream3.utils.AppContextUtils.setDefaultFocus
import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
import com.lagradost.cloudstream3.utils.Coroutines.main
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
class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
@ -280,18 +278,13 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
binding.applyBtt.setOnClickListener secondListener@{
val name = binding.repoNameInput.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 {
try {
val url = RepositoryManager.parseRepoUrl(urlInput)
if (url.isNullOrBlank()) {
val url = urlInput?.let { it1 -> RepositoryManager.parseRepoUrl(it1) }
if (url.isNullOrBlank()) {
main {
showToast(R.string.error_invalid_data, Toast.LENGTH_SHORT)
return@ioSafe
}
} else {
val repository = RepositoryManager.parseRepository(url)
// Exit if wrong repository
@ -307,28 +300,23 @@ class ExtensionsFragment : BaseFragment<FragmentExtensionsBinding>(
extensionViewModel.loadStats()
extensionViewModel.loadRepositories()
dialog.dismissSafe(activity) // Only dismiss if the repo was added
val plugins = RepositoryManager.getRepoPlugins(newRepo)
if (plugins.isNullOrEmpty()) {
showToast(R.string.no_plugins_found_error, Toast.LENGTH_LONG)
return@ioSafe
} else {
this@ExtensionsFragment.activity?.addRepositoryDialog(
newRepo
)
}
this@ExtensionsFragment.activity?.addRepositoryDialog(
newRepo
)
} finally {
binding.applyBtt.hideProgress()
}
}
dialog.dismissSafe(activity)
}
binding.cancelBtt.setOnClickListener {
dialog.dismissSafe(activity)
}
}
val isTv = isLayout(TV)
binding.apply {
addRepoButton.isGone = isTv

View file

@ -238,7 +238,7 @@ class PluginsViewModel : ViewModel() {
if (it.pluginWrapper.plugin.language == null) {
return@filter selectedLanguages.contains("none")
}
selectedLanguages.contains(it.pluginWrapper.plugin.language.lowercase())
selectedLanguages.contains(it.pluginWrapper.plugin.language?.lowercase())
}
}

View file

@ -1,282 +0,0 @@
package com.lagradost.cloudstream3.ui.settings.logcat
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.IntrinsicSize
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.material3.AlertDialog
import androidx.compose.material3.LinearProgressIndicator
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.focus.FocusRequester
import androidx.compose.ui.focus.FocusRequester.Companion.FocusRequesterFactory.component1
import androidx.compose.ui.focus.FocusRequester.Companion.FocusRequesterFactory.component2
import androidx.compose.ui.focus.focusProperties
import androidx.compose.ui.focus.focusRequester
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import androidx.compose.ui.window.DialogProperties
import com.lagradost.cloudstream3.CommonActivity.showToast
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.mvvm.logError
import com.lagradost.cloudstream3.utils.UIHelper.clipboardHelper
import com.lagradost.cloudstream3.utils.downloader.VideoDownloadManager
import com.lagradost.cloudstream3.utils.txt
import com.lagradost.cloudstream4.compose.BlackButton
import com.lagradost.cloudstream4.compose.WhiteButton
import com.lagradost.cloudstream4.compose.circle
import com.lagradost.cloudstream4.compose.rounded
import kotlinx.collections.immutable.persistentListOf
import kotlinx.collections.immutable.toPersistentList
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import java.io.OutputStream
import java.lang.System.currentTimeMillis
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
@Composable
fun LogcatDialog(dismiss: () -> Unit) {
val list = remember { mutableStateOf(persistentListOf<LogcatItem>()) }
var isLoading by remember { mutableStateOf(true) }
LaunchedEffect(dismiss) {
try {
isLoading = true
// https://developer.android.com/studio/command-line/logcat
val process = Runtime.getRuntime().exec("logcat --binary -d")
val items = arrayListOf<LogcatItem>()
LogcatBinaryParser(process.inputStream).use { parser ->
while (true) {
val item = parser.parseItem() ?: break
items.add(item)
}
}
list.value = items.toPersistentList()
} catch (e: Exception) {
logError(e) // kinda ironic
} finally {
isLoading = false
}
}
val (dismissFocus, confirmFocus) = remember { FocusRequester.createRefs() }
val context = LocalContext.current
val scope = rememberCoroutineScope()
AlertDialog(
containerColor = MaterialTheme.colorScheme.background,
onDismissRequest = dismiss,
title = {
Text(text = stringResource(R.string.log_cat))
},
text = {
if (isLoading) {
LinearProgressIndicator(
modifier = Modifier.fillMaxWidth(),
color = MaterialTheme.colorScheme.onBackground,
trackColor = MaterialTheme.colorScheme.surfaceVariant,
)
}
LazyColumn(
modifier = Modifier.focusProperties {
start = dismissFocus
end = confirmFocus
}
) {
items(items = list.value) { item ->
LogcatItem(item, modifier = Modifier.focusProperties {
start = dismissFocus
end = confirmFocus
})
}
}
},
confirmButton = {
WhiteButton(
text = stringResource(R.string.sort_save),
modifier = Modifier.focusRequester(confirmFocus)
) {
scope.launch {
withContext(Dispatchers.IO) {
val date = SimpleDateFormat("yyyy_MM_dd_HH_mm", Locale.getDefault()).format(
Date(currentTimeMillis())
)
var fileStream: OutputStream?
try {
fileStream = VideoDownloadManager.setupStream(
context,
"logcat_${date}",
null,
"txt",
false
).openNew()
fileStream.bufferedWriter()
.use { writer ->
list.value.forEach {
writer.write(it.toString())
writer.write("\n\n")
}
}
dismiss()
} catch (t: Throwable) {
logError(t)
showToast(t.message)
}
/*try {
val date = SimpleDateFormat(
"yyyy_MM_dd_HH_mm",
Locale.getDefault()
).format(
Date(System.currentTimeMillis())
)
val file = FileHelper.logcat.createFile(context, "logcat_${date}")
?: throw ErrorLoadingException("Unable to create file")
val stream = file.openOutputStream(append = false)
?: throw ErrorLoadingException("Unable to create stream")
stream.bufferedWriter()
.use { writer ->
list.value.forEach {
writer.write(it.toString())
writer.write("\n\n")
}
}
dismiss()
showToast(
txt(
R.string.logcat_success,
file.absolutePath ?: file.uri.toString()
),
Toast.LENGTH_LONG
)
} catch (t: Throwable) {
logError(t)
showToast(t.message)
}*/
}
}
}
WhiteButton(text = stringResource(R.string.sort_copy)) {
clipboardHelper(
txt("Logcat"),
list.value.joinToString(separator = "\n\n") { it.toString() }
)
}
WhiteButton(text = stringResource(R.string.sort_clear)) {
try {
Runtime.getRuntime().exec("logcat -c")
} catch (t: Throwable) {
logError(t)
}
dismiss()
}
},
dismissButton = {
BlackButton(
text = stringResource(R.string.sort_close),
onClick = dismiss,
modifier = Modifier.focusRequester(dismissFocus)
)
},
properties = DialogProperties(usePlatformDefaultWidth = false)
)
}
@Composable
fun LogcatItem(item: LogcatItem, modifier: Modifier = Modifier) {
val color = when (item.level) {
LogcatLevel.Fatal -> Color.Magenta
LogcatLevel.Error -> Color.Red
LogcatLevel.Warning -> Color.Yellow
LogcatLevel.Info -> Color.White
LogcatLevel.Debug -> Color.Green
LogcatLevel.Verbose -> Color.Gray
null -> Color.Transparent
}
Row(modifier = Modifier.fillMaxWidth()) {
item.level?.identifier?.let { value ->
Text(
value,
modifier = Modifier
.padding(2.dp)
.rounded()
.background(MaterialTheme.colorScheme.onBackground)
.padding(4.dp),
color = MaterialTheme.colorScheme.surfaceVariant
)
}
Text(
item.date.toHumanReadable(),
modifier = Modifier
.padding(2.dp)
.rounded()
.background(MaterialTheme.colorScheme.surfaceVariant)
.padding(4.dp),
color = MaterialTheme.colorScheme.onBackground
)
Text(
item.tag,
modifier = Modifier
.padding(2.dp)
.rounded()
.background(MaterialTheme.colorScheme.surfaceVariant)
.padding(4.dp),
color = MaterialTheme.colorScheme.onBackground
)
}
Row(
modifier = modifier
.height(IntrinsicSize.Min)
.fillMaxWidth()
.rounded()
.clickable(
onClick = {
clipboardHelper(txt("Logcat"), item.toString())
})
.padding(5.dp)
) {
Box(
modifier = Modifier
.fillMaxHeight()
.width(4.dp)
.circle()
.background(color)
)
Spacer(modifier = Modifier.width(5.dp))
Text(
item.message,
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
lineHeight = 15.sp,
)
}
}

View file

@ -1,140 +0,0 @@
package com.lagradost.cloudstream3.ui.settings.logcat
import androidx.compose.runtime.Immutable
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import java.io.Closeable
import java.io.InputStream
import kotlin.time.Instant
import kotlinx.io.Buffer
import kotlinx.io.asSource
import kotlinx.io.readByteArray
import kotlinx.io.readIntLe
import kotlinx.io.readString
import kotlinx.io.readUShortLe
import java.text.SimpleDateFormat
import java.util.Date
import java.util.Locale
import java.util.TimeZone
fun Instant.toHumanReadable(): String {
val formatter = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()).apply {
timeZone = TimeZone.getDefault()
}
return formatter.format(Date(this.toEpochMilliseconds()))
}
@Immutable
data class LogcatItem(
val date: Instant,
val pid: Int,
val tid: Int,
val level: LogcatLevel?,
val tag: String,
val message: String,
) {
override fun toString(): String {
return "${date.toHumanReadable()} $pid-$tid $tag ${level?.identifier ?: "?"} $message"
}
}
enum class LogcatLevel(val identifier: String) {
Fatal("WTF"),
Error("E"),
Warning("W"),
Info("I"),
Debug("D"),
Verbose("V"),
}
/**https://github.com/brudaswen/android-logcat/blob/main/library/logcat-core/src/main/kotlin/de/brudaswen/android/logcat/core/parser/LogcatBinaryParser.kt */
class LogcatBinaryParser(
private val input: InputStream,
) : Closeable by input {
val source = input.asSource()
private val buffer = Buffer()
/**
* Parse one [LogcatItem] from the current [input] stream.
*
* @return The parsed [LogcatItem] or `null` if stream reached EOF.
*/
suspend fun parseItem(): LogcatItem? = withContext(Dispatchers.IO) {
val firstByte = input.read()
if (firstByte == -1) return@withContext null
// Read v1 header
buffer.writeByte(firstByte.toByte())
buffer.write(source = source, byteCount = 19)
val len = buffer.readUShortLe().toInt()
val headerSize = buffer.readUShortLe().toInt()
val pid = buffer.readIntLe()
val tid = buffer.readIntLe()
val sec = buffer.readIntLe()
val nsec = buffer.readIntLe()
// Read additional header fields
buffer.write(source = source, byteCount = headerSize - 20L)
val additionalHeaderBytes = (headerSize - 20).coerceAtLeast(0)
buffer.readByteArray(byteCount = additionalHeaderBytes)
// Read payload
buffer.write(source = source, byteCount = len.toLong())
val priority = buffer.readByte()
val payload = buffer.readString()
val texts = payload.split('\u0000', limit = 2)
val tag = texts.getOrNull(0).orEmpty()
val message = texts.getOrNull(1).orEmpty().removeSuffix("\u0000").trim()
// Clear buffer
buffer.clear()
// Convert raw values to item
LogcatItem(
sec = sec,
nsec = nsec,
priority = priority,
pid = pid,
tid = tid,
tag = tag,
message = message,
)
}
private fun LogcatItem(
sec: Int,
nsec: Int,
priority: Byte,
pid: Int,
tid: Int,
tag: String,
message: String,
): LogcatItem {
val date = Instant.fromEpochSeconds(
epochSeconds = sec.toLong(),
nanosecondAdjustment = nsec,
)
val level = when (priority) {
2.toByte() -> LogcatLevel.Verbose
3.toByte() -> LogcatLevel.Debug
4.toByte() -> LogcatLevel.Info
5.toByte() -> LogcatLevel.Warning
6.toByte() -> LogcatLevel.Error
7.toByte() -> LogcatLevel.Fatal
else -> null
}
return LogcatItem(
date = date,
pid = pid,
tid = tid,
level = level,
tag = tag,
message = message,
)
}
}

View file

@ -101,7 +101,7 @@ class ChromecastSubtitlesFragment : BaseFragment<ChromecastSubtitleSettingsBindi
}
fun getCurrentSavedStyle(): SaveChromeCaptionStyle {
return getKey<SaveChromeCaptionStyle>(CHROME_SUBTITLE_KEY) ?: defaultState
return getKey(CHROME_SUBTITLE_KEY) ?: defaultState
}
private val defaultState = SaveChromeCaptionStyle()

View file

@ -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
val size = data.fixedTextSize ?: 25.0f
view.setFixedTextSize(TypedValue.COMPLEX_UNIT_SP, size)
@ -264,7 +261,7 @@ class SubtitlesFragment : BaseDialogFragment<SubtitleSettingsBinding>(
}
fun getCurrentSavedStyle(): SaveCaptionStyle {
return cachedSubtitleStyle ?: (getKey<SaveCaptionStyle>(SUBTITLE_KEY) ?: SaveCaptionStyle(
return cachedSubtitleStyle ?: (getKey(SUBTITLE_KEY) ?: SaveCaptionStyle(
foregroundColor = getDefColor(0),
backgroundColor = getDefColor(2),
windowColor = getDefColor(3),
@ -296,11 +293,11 @@ class SubtitlesFragment : BaseDialogFragment<SubtitleSettingsBinding>(
}
fun getDownloadSubsLanguageTagIETF(): List<String> {
return getKey<List<String>>(SUBTITLE_DOWNLOAD_KEY) ?: listOf("en")
return getKey(SUBTITLE_DOWNLOAD_KEY) ?: listOf("en")
}
fun getAutoSelectLanguageTagIETF(): String {
return getKey<String>(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
return getKey(SUBTITLE_AUTO_SELECT_KEY) ?: "en"
}
}

View file

@ -86,14 +86,16 @@ import com.lagradost.cloudstream3.utils.FillerEpisodeCheck.toClassDir
import com.lagradost.cloudstream3.utils.JsUnpacker.Companion.load
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
import com.lagradost.cloudstream4.AppSettings
import kotlinx.coroutines.sync.Mutex
import kotlinx.coroutines.sync.withLock
import okhttp3.Cache
import java.io.File
import java.net.URL
import java.net.URLDecoder
import java.util.concurrent.Executor
import java.util.concurrent.Executors
object AppContextUtils {
fun RecyclerView.isRecyclerScrollable(): Boolean {
val layoutManager =
@ -363,14 +365,8 @@ object AppContextUtils {
}
}
/** Sort subtitles by names */
fun sortSubs(subs: Set<SubtitleData>): List<SubtitleData> {
// Be aware, sorting by "$originalName $nameSuffix" causes "a (b) 1" < "a 1",
// 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 })
return subs.sortedBy { it.name }
}
fun Context.getApiSettings(): HashSet<String> {
@ -482,14 +478,14 @@ object AppContextUtils {
fun Context.filterSearchResultByFilmQuality(data: List<SearchResponse>): List<SearchResponse> {
// Filter results omitting entries with certain quality
if (data.isNotEmpty()) {
val filteredSearchQuality = AppSettings(this).ui.filterQuality.get() /*PreferenceManager.getDefaultSharedPreferences(this)
val filteredSearchQuality = PreferenceManager.getDefaultSharedPreferences(this)
?.getStringSet(getString(R.string.pref_filter_search_quality_key), setOf())
?.mapNotNull { entry ->
entry.toIntOrNull() ?: return@mapNotNull null
} ?: listOf()*/
} ?: listOf()
if (filteredSearchQuality.isNotEmpty()) {
return data.filter { item ->
val searchQualVal = item.quality //?.ordinal ?: -1
val searchQualVal = item.quality?.ordinal ?: -1
//Log.i("filterSearch", "QuickSearch item => ${item.toJson()}")
!filteredSearchQuality.contains(searchQualVal)
}
@ -501,17 +497,17 @@ object AppContextUtils {
fun Context.filterHomePageListByFilmQuality(data: HomePageList): HomePageList {
// Filter results omitting entries with certain quality
if (data.list.isNotEmpty()) {
val filteredSearchQuality = AppSettings(this).ui.filterQuality.get() /*PreferenceManager.getDefaultSharedPreferences(this)
val filteredSearchQuality = PreferenceManager.getDefaultSharedPreferences(this)
?.getStringSet(getString(R.string.pref_filter_search_quality_key), setOf())
?.mapNotNull { entry ->
entry.toIntOrNull() ?: return@mapNotNull null
} ?: listOf()*/
} ?: listOf()
if (filteredSearchQuality.isNotEmpty()) {
return HomePageList(
name = data.name,
isHorizontalImages = data.isHorizontalImages,
list = data.list.filter { item ->
val searchQualVal = item.quality //?.ordinal ?: -1
val searchQualVal = item.quality?.ordinal ?: -1
//Log.i("filterSearch", "QuickSearch item => ${item.toJson()}")
!filteredSearchQuality.contains(searchQualVal)
}
@ -633,17 +629,16 @@ object AppContextUtils {
}
}
// Deprecate after next stable
/* @Deprecated(
message = "Use splitUrlParameters instead.",
replaceWith = ReplaceWith(
expression = "splitUrlParameters(url.toString())",
imports = ["com.lagradost.cloudstream3.splitUrlParameters"],
),
level = DeprecationLevel.WARNING,
) */
fun splitQuery(url: java.net.URL): Map<String, String> {
return com.lagradost.cloudstream3.splitUrlParameters(url.toString())
fun splitQuery(url: URL): Map<String, String> {
val queryPairs: MutableMap<String, String> = LinkedHashMap()
val query: String = url.query
val pairs = query.split("&").toTypedArray()
for (pair in pairs) {
val idx = pair.indexOf("=")
queryPairs[URLDecoder.decode(pair.substring(0, idx), "UTF-8")] =
URLDecoder.decode(pair.substring(idx + 1), "UTF-8")
}
return queryPairs
}
/**| S1:E2 Hello World
@ -901,4 +896,4 @@ object AppContextUtils {
} else null
return currentAudioFocusRequest
}
}
}

View file

@ -1,6 +1,5 @@
package com.lagradost.cloudstream3.utils
import android.app.Activity
import android.content.Context
import android.net.Uri
import android.widget.Toast
@ -283,7 +282,7 @@ object BackupUtils {
}
}
fun Activity.restorePrompt() {
fun FragmentActivity.restorePrompt() {
runOnUiThread {
try {
restoreFileSelector?.launch(

View file

@ -1,43 +0,0 @@
package com.lagradost.cloudstream3.utils
import android.content.res.Configuration
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import com.lagradost.cloudstream3.ui.settings.Globals.EMULATOR
import com.lagradost.cloudstream3.ui.settings.Globals.TV
import com.lagradost.cloudstream3.ui.settings.Globals.isLandscape
import com.lagradost.cloudstream3.ui.settings.Globals.isLayout
import com.lagradost.cloudstream3.utils.UIHelper.fixSystemBarsPadding
import com.lagradost.cloudstream4.compose.Screen
import com.lagradost.cloudstream4.compose.createComposeView
abstract class BaseComposeFragment : Fragment(), Screen {
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View = createComposeView(inflater, container, savedInstanceState)
override fun onConfigurationChanged(newConfig: Configuration) {
super.onConfigurationChanged(newConfig)
this.view?.let { view ->
fixSystemBarsPadding(
view,
padLeft = isLayout(TV or EMULATOR),
padBottom = isLandscape()
)
}
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
fixSystemBarsPadding(
view,
padLeft = isLayout(TV or EMULATOR),
padBottom = isLandscape()
)
}
}

View file

@ -181,11 +181,11 @@ object DataStore {
}
fun <T : Any> Context.getKey(path: String, valueType: Class<T>): T? {
return try {
try {
val json: String = getSharedPrefs().getString(path, null) ?: return null
parseJson(json, valueType.kotlin)
} catch (_: Exception) {
null
return parseJson(json, valueType.kotlin)
} catch (e: Exception) {
return null
}
}
@ -193,37 +193,21 @@ object DataStore {
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 {
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 {
return parseJson(this, valueType.kotlin)
}
// GET KEY GIVEN PATH AND DEFAULT VALUE, NULL IF ERROR
inline fun <reified T : Any> Context.getKey(path: String, defVal: T?): T? {
return try {
try {
val json: String = getSharedPrefs().getString(path, null) ?: return defVal
parseJson<T>(json)
} catch (_: Exception) {
null
return json.toKotlinObject()
} catch (e: Exception) {
return null
}
}

View file

@ -1,7 +1,6 @@
package com.lagradost.cloudstream3.utils
import android.content.Context
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.APIHolder.unixTimeMS
import com.lagradost.cloudstream3.CloudStreamApp.Companion.context
@ -32,14 +31,6 @@ import com.lagradost.cloudstream3.ui.result.ResultEpisode
import com.lagradost.cloudstream3.ui.result.VideoWatchState
import com.lagradost.cloudstream3.utils.AppContextUtils.filterProviderByPreferredMedia
import com.lagradost.cloudstream3.utils.downloader.DownloadObjects
import com.lagradost.cloudstream3.utils.serializers.WriteOnlySerializer
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
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.Date
import java.util.GregorianCalendar
@ -52,18 +43,17 @@ const val RESULT_WATCH_STATE = "result_watch_state"
const val RESULT_WATCH_STATE_DATA = "result_watch_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_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_HAS_MIGRATED = "result_resume_watching_migrated"
const val RESULT_EPISODE = "result_episode"
const val RESULT_SEASON = "result_season"
const val RESULT_DUB = "result_dub"
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>(
private val key: String,
private val default: T,
private val key: String, private val default: T //, private val klass: KClass<T>
) {
private val klass: KClass<out T> = default::class
private val realKey get() = "${DataStoreHelper.currentAccount}/$key"
@ -73,7 +63,7 @@ class UserPreferenceDelegate<T : Any>(
operator fun setValue(
self: Any?,
property: KProperty<*>,
t: T?,
t: T?
) {
if (t == null) {
removeKey(realKey)
@ -92,7 +82,7 @@ object DataStoreHelper {
R.drawable.profile_bg_pink,
R.drawable.profile_bg_purple,
R.drawable.profile_bg_red,
R.drawable.profile_bg_teal,
R.drawable.profile_bg_teal
)
private var searchPreferenceProvidersStrings: List<String> by UserPreferenceDelegate(
@ -122,17 +112,16 @@ object DataStoreHelper {
private var searchPreferenceTagsStrings: List<String> by UserPreferenceDelegate(
"search_pref_tags",
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
var searchPreferenceTags: List<TvType>
get() = deserializeTv(searchPreferenceTagsStrings)
set(value) {
searchPreferenceTagsStrings = serializeTv(value)
}
private var homePreferenceStrings: List<String> by UserPreferenceDelegate(
"home_pref_homepage",
listOf(TvType.Movie, TvType.TvSeries).map { it.name })
var homePreference: List<TvType>
get() = deserializeTv(homePreferenceStrings)
set(value) {
@ -143,38 +132,38 @@ object DataStoreHelper {
"home_bookmarked_last_list",
IntArray(0)
)
var playBackSpeed: Float by UserPreferenceDelegate("playback_speed", 1.0f)
var resizeMode: Int by UserPreferenceDelegate("resize_mode", 0)
var librarySortingMode: Int by UserPreferenceDelegate(
"library_sorting_mode",
ListSorting.AlphabeticalA.ordinal
)
private var _resultsSortingMode: Int by UserPreferenceDelegate(
"results_sorting_mode",
EpisodeSortType.NUMBER_ASC.ordinal
)
var resultsSortingMode: EpisodeSortType
get() = EpisodeSortType.entries.getOrNull(_resultsSortingMode) ?: EpisodeSortType.NUMBER_ASC
set(value) {
_resultsSortingMode = value.ordinal
}
@Serializable
data class Account(
@JsonProperty("keyIndex") @SerialName("keyIndex") val keyIndex: Int,
@JsonProperty("name") @SerialName("name") val name: String,
@JsonProperty("customImage") @SerialName("customImage") val customImage: String? = null,
@JsonProperty("defaultImageIndex") @SerialName("defaultImageIndex") val defaultImageIndex: Int,
@JsonProperty("lockPin") @SerialName("lockPin") val lockPin: String? = null,
@JsonProperty("keyIndex")
val keyIndex: Int,
@JsonProperty("name")
val name: String,
@JsonProperty("customImage")
val customImage: String? = null,
@JsonProperty("defaultImageIndex")
val defaultImageIndex: Int,
@JsonProperty("lockPin")
val lockPin: String? = null,
) {
@get:JsonIgnore
val image get() = customImage?.let { UiImage.Image(it) } ?:
profileImages.getOrNull(defaultImageIndex)?.let {
UiImage.Drawable(it)
} ?: UiImage.Drawable(profileImages.first())
val image
get() = customImage?.let { UiImage.Image(it) } ?: profileImages.getOrNull(
defaultImageIndex
)?.let { UiImage.Drawable(it) } ?: UiImage.Drawable(profileImages.first())
}
const val TAG = "data_store_helper"
@ -182,16 +171,12 @@ object DataStoreHelper {
var selectedKeyIndex by PreferenceDelegate("$TAG/account_key_index", 0)
val currentAccount: String get() = selectedKeyIndex.toString()
private val _selectedAccountNumberFlow = MutableStateFlow(0)
/** What account instance we are on, this number changes whenever anything about local accounts changes */
val selectedAccountNumberFlow : StateFlow<Int> = _selectedAccountNumberFlow
/**
* Get or set the current account homepage.
* Setting this does not automatically reload the homepage.
*/
var currentHomePage: String?
get() = getKey<String>("$currentAccount/$USER_SELECTED_HOMEPAGE_API")
get() = getKey("$currentAccount/$USER_SELECTED_HOMEPAGE_API")
set(value) {
val key = "$currentAccount/$USER_SELECTED_HOMEPAGE_API"
if (value == null) {
@ -203,6 +188,7 @@ object DataStoreHelper {
fun setAccount(account: Account) {
val homepage = currentHomePage
selectedKeyIndex = account.keyIndex
AccountManager.updateAccountIds()
showToast(context?.getString(R.string.logged_account, account.name) ?: account.name)
@ -213,7 +199,6 @@ object DataStoreHelper {
// This is not a new account, and the homepage has changed, reload it
MainActivity.reloadHomeEvent(true)
}
_selectedAccountNumberFlow.value += 1
}
fun getDefaultAccount(context: Context): Account {
@ -221,7 +206,7 @@ object DataStoreHelper {
currentAccounts.getOrNull(currentAccounts.indexOfFirst { it.keyIndex == 0 }) ?: Account(
keyIndex = 0,
name = context.getString(R.string.default_account),
defaultImageIndex = 0,
defaultImageIndex = 0
)
}
}
@ -247,21 +232,18 @@ object DataStoreHelper {
}
}
@Serializable
data class PosDur(
@JsonProperty("position") @SerialName("position") val position: Long,
@JsonProperty("duration") @SerialName("duration") val duration: Long,
@JsonProperty("position") val position: Long,
@JsonProperty("duration") val duration: Long
)
fun PosDur.fixVisual(): PosDur {
if (duration <= 0) return PosDur(0, duration)
val percentage = position * 100 / duration
return when {
percentage <= 1 -> PosDur(0, duration)
percentage <= 5 -> PosDur(5 * duration / 100, duration)
percentage >= 95 -> PosDur(duration, duration)
else -> this
}
if (percentage <= 1) return PosDur(0, duration)
if (percentage <= 5) return PosDur(5 * duration / 100, duration)
if (percentage >= 95) return PosDur(duration, duration)
return this
}
fun Int.toYear(): Date =
@ -269,38 +251,28 @@ object DataStoreHelper {
/**
* Used to display notifications on new episodes and posters in library.
*/
@Serializable
**/
abstract class LibrarySearchResponse(
/**
* These fields are marked @Transient because this class is only ever serialized through
* through its subclasses, which redeclare each property with their own @SerialName
* annotations. Without @Transient here, kotlinx.serialization would try to
* generate a serializer for the abstract base class itself (or double-serialize
* these fields), which fails/conflicts since these are meant to be overridden,
* not serialized directly from the parent.
*/
@Transient override var id: Int? = null,
@Transient open val latestUpdatedTime: Long = 0L,
@Transient override val name: String = "",
@Transient override val url: String = "",
@Transient override val apiName: String = "",
@Transient override var type: TvType? = 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,
@JsonProperty("id") override var id: Int?,
@JsonProperty("latestUpdatedTime") open val latestUpdatedTime: Long,
@JsonProperty("name") override val name: String,
@JsonProperty("url") override val url: String,
@JsonProperty("apiName") override val apiName: String,
@JsonProperty("type") override var type: TvType?,
@JsonProperty("posterUrl") override var posterUrl: String?,
@JsonProperty("year") open val year: Int?,
@JsonProperty("syncData") open val syncData: Map<String, String>?,
@JsonProperty("quality") override var quality: SearchQuality?,
@JsonProperty("posterHeaders") override var posterHeaders: Map<String, String>?,
@JsonProperty("plot") open val plot: String? = null,
@JsonProperty("score") override var score: Score? = null,
@JsonProperty("tags") open val tags: List<String>? = null,
) : SearchResponse {
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
@SerialName("rating")
@Deprecated(
"`rating` is the old scoring system, use score instead",
replaceWith = ReplaceWith("score"),
level = DeprecationLevel.ERROR,
level = DeprecationLevel.ERROR
)
var rating: Int? = null
set(value) {
@ -311,26 +283,23 @@ object DataStoreHelper {
}
}
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
@KeepGeneratedSerializer
@Serializable(with = SubscribedData.Serializer::class)
data class SubscribedData(
@JsonProperty("subscribedTime") @SerialName("subscribedTime") val subscribedTime: Long,
@JsonProperty("lastSeenEpisodeCount") @SerialName("lastSeenEpisodeCount") val lastSeenEpisodeCount: Map<DubStatus, Int?>,
@JsonProperty("id") @SerialName("id") override var id: Int?,
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
@JsonProperty("name") @SerialName("name") override val name: String,
@JsonProperty("url") @SerialName("url") override val url: String,
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
@JsonProperty("type") @SerialName("type") override var type: TvType?,
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
@JsonProperty("year") @SerialName("year") override val year: Int?,
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
@JsonProperty("subscribedTime") val subscribedTime: Long,
@JsonProperty("lastSeenEpisodeCount") val lastSeenEpisodeCount: Map<DubStatus, Int?>,
override var id: Int?,
override val latestUpdatedTime: Long,
override val name: String,
override val url: String,
override val apiName: String,
override var type: TvType?,
override var posterUrl: String?,
override val year: Int?,
override val syncData: Map<String, String>? = null,
override var quality: SearchQuality? = null,
override var posterHeaders: Map<String, String>? = null,
override val plot: String? = null,
override var score: Score? = null,
override val tags: List<String>? = null,
) : LibrarySearchResponse(
id,
latestUpdatedTime,
@ -345,13 +314,8 @@ object DataStoreHelper {
posterHeaders,
plot,
score,
tags,
tags
) {
object Serializer : WriteOnlySerializer<SubscribedData>(
SubscribedData.generatedSerializer(),
setOf("rating"),
)
fun toLibraryItem(): SyncAPI.LibraryItem? {
return SyncAPI.LibraryItem(
name,
@ -370,30 +334,27 @@ object DataStoreHelper {
this.id,
plot = this.plot,
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(
@JsonProperty("bookmarkedTime") @SerialName("bookmarkedTime") val bookmarkedTime: Long,
@JsonProperty("id") @SerialName("id") override var id: Int?,
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
@JsonProperty("name") @SerialName("name") override val name: String,
@JsonProperty("url") @SerialName("url") override val url: String,
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
@JsonProperty("type") @SerialName("type") override var type: TvType?,
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
@JsonProperty("year") @SerialName("year") override val year: Int?,
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
@JsonProperty("bookmarkedTime") val bookmarkedTime: Long,
override var id: Int?,
override val latestUpdatedTime: Long,
override val name: String,
override val url: String,
override val apiName: String,
override var type: TvType?,
override var posterUrl: String?,
override val year: Int?,
override val syncData: Map<String, String>? = null,
override var quality: SearchQuality? = null,
override var posterHeaders: Map<String, String>? = null,
override val plot: String? = null,
override var score: Score? = null,
override val tags: List<String>? = null,
) : LibrarySearchResponse(
id,
latestUpdatedTime,
@ -406,13 +367,8 @@ object DataStoreHelper {
syncData,
quality,
posterHeaders,
plot,
plot
) {
object Serializer : WriteOnlySerializer<BookmarkedData>(
BookmarkedData.generatedSerializer(),
setOf("rating"),
)
fun toLibraryItem(id: String): SyncAPI.LibraryItem {
return SyncAPI.LibraryItem(
name,
@ -431,30 +387,27 @@ object DataStoreHelper {
this.id,
plot = this.plot,
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(
@JsonProperty("favoritesTime") @SerialName("favoritesTime") val favoritesTime: Long,
@JsonProperty("id") @SerialName("id") override var id: Int?,
@JsonProperty("latestUpdatedTime") @SerialName("latestUpdatedTime") override val latestUpdatedTime: Long,
@JsonProperty("name") @SerialName("name") override val name: String,
@JsonProperty("url") @SerialName("url") override val url: String,
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
@JsonProperty("type") @SerialName("type") override var type: TvType?,
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
@JsonProperty("year") @SerialName("year") override val year: Int?,
@JsonProperty("syncData") @SerialName("syncData") override val syncData: Map<String, String>? = null,
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
@JsonProperty("plot") @SerialName("plot") override val plot: String? = null,
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
@JsonProperty("tags") @SerialName("tags") override val tags: List<String>? = null,
@JsonProperty("favoritesTime") val favoritesTime: Long,
override var id: Int?,
override val latestUpdatedTime: Long,
override val name: String,
override val url: String,
override val apiName: String,
override var type: TvType?,
override var posterUrl: String?,
override val year: Int?,
override val syncData: Map<String, String>? = null,
override var quality: SearchQuality? = null,
override var posterHeaders: Map<String, String>? = null,
override val plot: String? = null,
override var score: Score? = null,
override val tags: List<String>? = null,
) : LibrarySearchResponse(
id,
latestUpdatedTime,
@ -467,13 +420,8 @@ object DataStoreHelper {
syncData,
quality,
posterHeaders,
plot,
plot
) {
object Serializer : WriteOnlySerializer<FavoritesData>(
FavoritesData.generatedSerializer(),
setOf("rating"),
)
fun toLibraryItem(): SyncAPI.LibraryItem? {
return SyncAPI.LibraryItem(
name,
@ -492,32 +440,31 @@ object DataStoreHelper {
this.id,
plot = this.plot,
score = this.score,
tags = this.tags,
tags = this.tags
)
}
}
@Serializable
data class ResumeWatchingResult(
@JsonProperty("name") @SerialName("name") override val name: String,
@JsonProperty("url") @SerialName("url") override val url: String,
@JsonProperty("apiName") @SerialName("apiName") override val apiName: String,
@JsonProperty("type") @SerialName("type") override var type: TvType? = null,
@JsonProperty("posterUrl") @SerialName("posterUrl") override var posterUrl: String?,
@JsonProperty("watchPos") @SerialName("watchPos") val watchPos: PosDur?,
@JsonProperty("id") @SerialName("id") override var id: Int?,
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int?,
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
@JsonProperty("season") @SerialName("season") val season: Int?,
@JsonProperty("isFromDownload") @SerialName("isFromDownload") val isFromDownload: Boolean,
@JsonProperty("quality") @SerialName("quality") override var quality: SearchQuality? = null,
@JsonProperty("posterHeaders") @SerialName("posterHeaders") override var posterHeaders: Map<String, String>? = null,
@JsonProperty("score") @SerialName("score") override var score: Score? = null,
@JsonProperty("name") override val name: String,
@JsonProperty("url") override val url: String,
@JsonProperty("apiName") override val apiName: String,
@JsonProperty("type") override var type: TvType? = null,
@JsonProperty("posterUrl") override var posterUrl: String?,
@JsonProperty("watchPos") val watchPos: PosDur?,
@JsonProperty("id") override var id: Int?,
@JsonProperty("parentId") val parentId: Int?,
@JsonProperty("episode") val episode: Int?,
@JsonProperty("season") val season: Int?,
@JsonProperty("isFromDownload") val isFromDownload: Boolean,
@JsonProperty("quality") override var quality: SearchQuality? = null,
@JsonProperty("posterHeaders") override var posterHeaders: Map<String, String>? = null,
@JsonProperty("score") override var score: Score? = null,
) : SearchResponse
/**
* A datastore wide account for future implementations of a multiple account system
*/
**/
fun getAllWatchStateIds(): List<Int>? {
val folder = "$currentAccount/$RESULT_WATCH_STATE"
@ -553,7 +500,7 @@ object DataStoreHelper {
}
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)
getAllResumeStateIdsOld()?.forEach { id ->
getLastWatchedOld(id)?.let {
@ -563,12 +510,12 @@ object DataStoreHelper {
it.episode,
it.season,
it.isFromDownload,
it.updateTime,
it.updateTime
)
removeLastWatchedOld(it.parentId)
}
}
// }
//}
}
fun setLastWatched(
@ -589,7 +536,7 @@ object DataStoreHelper {
episode,
season,
updateTime ?: System.currentTimeMillis(),
isFromDownload,
isFromDownload
)
)
}
@ -606,7 +553,7 @@ object DataStoreHelper {
fun getLastWatched(id: Int?): DownloadObjects.ResumeWatching? {
if (id == null) return null
return getKey<DownloadObjects.ResumeWatching>(
return getKey(
"$currentAccount/$RESULT_RESUME_WATCHING",
id.toString(),
)
@ -614,7 +561,7 @@ object DataStoreHelper {
private fun getLastWatchedOld(id: Int?): DownloadObjects.ResumeWatching? {
if (id == null) return null
return getKey<DownloadObjects.ResumeWatching>(
return getKey(
"$currentAccount/$RESULT_RESUME_WATCHING_OLD",
id.toString(),
)
@ -628,18 +575,18 @@ object DataStoreHelper {
fun getBookmarkedData(id: Int?): BookmarkedData? {
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> {
return getKeys("$currentAccount/$RESULT_WATCH_STATE_DATA")?.mapNotNull {
getKey<BookmarkedData>(it)
getKey(it)
} ?: emptyList()
}
fun getAllSubscriptions(): List<SubscribedData> {
return getKeys("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA")?.mapNotNull {
getKey<SubscribedData>(it)
getKey(it)
} ?: emptyList()
}
@ -651,12 +598,12 @@ object DataStoreHelper {
/**
* Set new seen episodes and update time
*/
**/
fun updateSubscribedData(id: Int?, data: SubscribedData?, episodeResponse: EpisodeResponse?) {
if (id == null || data == null || episodeResponse == null) return
val newData = data.copy(
latestUpdatedTime = unixTimeMS,
lastSeenEpisodeCount = episodeResponse.getLatestEpisodes(),
lastSeenEpisodeCount = episodeResponse.getLatestEpisodes()
)
setKey("$currentAccount/$RESULT_SUBSCRIBED_STATE_DATA", id.toString(), newData)
}
@ -669,12 +616,12 @@ object DataStoreHelper {
fun getSubscribedData(id: Int?): SubscribedData? {
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> {
return getKeys("$currentAccount/$RESULT_FAVORITES_STATE_DATA")?.mapNotNull {
getKey<FavoritesData>(it)
getKey(it)
} ?: emptyList()
}
@ -692,7 +639,7 @@ object DataStoreHelper {
fun getFavoritesData(id: Int?): FavoritesData? {
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) {
@ -701,10 +648,10 @@ object DataStoreHelper {
setKey("$currentAccount/$VIDEO_POS_DUR", id.toString(), PosDur(pos, dur))
}
/**
* 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
*/
/** 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
* */
fun setViewPosAndResume(id: Int?, position: Long, duration: Long, currentEpisode: Any?, nextEpisode: Any?) {
setViewPos(id, position, duration)
if (id != null) {
@ -740,7 +687,7 @@ object DataStoreHelper {
resumeMeta.id,
resumeMeta.episode,
resumeMeta.season,
isFromDownload = false,
isFromDownload = false
)
}
@ -750,7 +697,7 @@ object DataStoreHelper {
resumeMeta.id,
resumeMeta.episode,
resumeMeta.season,
isFromDownload = true,
isFromDownload = true
)
}
}
@ -759,16 +706,17 @@ object DataStoreHelper {
fun getViewPos(id: Int?): PosDur? {
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? {
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) {
if (id == null) return
// None == No key
if (watchState == VideoWatchState.None) {
removeKey("$currentAccount/$VIDEO_WATCH_STATE", id.toString())
@ -779,7 +727,7 @@ object DataStoreHelper {
fun getDub(id: Int): DubStatus? {
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) {
@ -800,13 +748,13 @@ object DataStoreHelper {
getKey<Int>(
"$currentAccount/$RESULT_WATCH_STATE",
id.toString(),
null,
null
)
)
}
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?) {
@ -814,7 +762,7 @@ object DataStoreHelper {
}
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?) {
@ -827,11 +775,12 @@ object DataStoreHelper {
fun getSync(id: Int, idPrefixes: List<String>): List<String?> {
return idPrefixes.map { idPrefix ->
getKey<String>("${idPrefix}_sync", id.toString())
getKey("${idPrefix}_sync", id.toString())
}
}
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)
}

View file

@ -63,7 +63,7 @@ object BatteryOptimizationChecker {
return isRestricted && isOptimizedNotShown && isLayout(PHONE)
}
fun Context.showRequestIgnoreBatteryOptDialog() {
private fun Context.showRequestIgnoreBatteryOptDialog() {
try {
val intent = Intent().apply {
action = Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS

View file

@ -72,7 +72,7 @@ object SyncUtil {
// Gogoanime, Twistmoe and 9anime
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 mapped = tryParseJson<MalSyncPage>(response)
val mapped = tryParseJson<MalSyncPage?>(response)
val overrideMal = mapped?.malId ?: mapped?.mal?.id ?: mapped?.anilist?.malId
val overrideAnilist = mapped?.aniId ?: mapped?.anilist?.id

View file

@ -23,15 +23,15 @@ const val PROGRAM_ID_LIST_KEY = "persistent_program_ids"
object TvChannelUtils {
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()
setKey(PROGRAM_ID_LIST_KEY, updated)
}
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) {
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 }
setKey(PROGRAM_ID_LIST_KEY, updated)
}
@ -149,12 +149,10 @@ object TvChannelUtils {
.setInputId(inputId)
.build()
val channelUri = runCatching {
context.contentResolver.insert(
TvContractCompat.Channels.CONTENT_URI,
channel.toContentValues()
)
}.getOrNull()
val channelUri = context.contentResolver.insert(
TvContractCompat.Channels.CONTENT_URI,
channel.toContentValues()
)
channelUri?.let {
val channelId = ContentUris.parseId(it)
@ -163,4 +161,4 @@ object TvChannelUtils {
}
}
}
}

View file

@ -65,12 +65,9 @@ import androidx.navigation.fragment.NavHostFragment
import androidx.palette.graphics.Palette
import androidx.preference.PreferenceManager
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.ChipDrawable
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.CommonActivity.activity
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 */
@SuppressLint("RestrictedApi")
fun View.popupMenuNoIcons(

View file

@ -1640,11 +1640,11 @@ object VideoDownloadManager {
}
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? {
return context.getKey<DownloadQueueWrapper>(KEY_RESUME_IN_QUEUE, id.toString())
return context.getKey(KEY_RESUME_IN_QUEUE, id.toString())
}
fun getDownloadEpisodeMetadata(

View file

@ -1,32 +1,23 @@
package com.lagradost.cloudstream3.utils.downloader
import android.net.Uri
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.Score
import com.lagradost.cloudstream3.SkipSerializationTest
import com.lagradost.cloudstream3.TvType
import com.lagradost.cloudstream3.services.DownloadQueueService
import com.lagradost.cloudstream3.ui.player.SubtitleData
import com.lagradost.cloudstream3.ui.result.ResultEpisode
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 kotlinx.serialization.ExperimentalSerializationApi
import kotlinx.serialization.KeepGeneratedSerializer
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import java.io.IOException
import java.io.OutputStream
import java.util.Objects
object DownloadObjects {
/** An item can either be something to resume or something new to start */
@Serializable
data class DownloadQueueWrapper(
@JsonProperty("resumePackage") @SerialName("resumePackage") val resumePackage: DownloadResumePackage?,
@JsonProperty("downloadItem") @SerialName("downloadItem") val downloadItem: DownloadQueueItem?,
@JsonProperty("resumePackage") val resumePackage: DownloadResumePackage?,
@JsonProperty("downloadItem") val downloadItem: DownloadQueueItem?,
) {
init {
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. */
@JsonIgnore
fun isCurrentlyDownloading(): Boolean {
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
@JsonProperty("parentId") @SerialName("parentId")
@JsonProperty("parentId")
val parentId = resumePackage?.item?.ep?.parentId ?: downloadItem!!.episode.parentId
}
/** General data about the episode and show to start a download from. */
@Serializable
data class DownloadQueueItem(
@JsonProperty("episode") @SerialName("episode") val episode: ResultEpisode,
@JsonProperty("isMovie") @SerialName("isMovie") val isMovie: Boolean,
@JsonProperty("resultName") @SerialName("resultName") val resultName: String,
@JsonProperty("resultType") @SerialName("resultType") val resultType: TvType,
@JsonProperty("resultPoster") @SerialName("resultPoster") val resultPoster: String?,
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
@JsonProperty("resultId") @SerialName("resultId") val resultId: Int,
@JsonProperty("resultUrl") @SerialName("resultUrl") val resultUrl: String,
@JsonProperty("links") @SerialName("links") val links: List<ExtractorLink>? = null,
@JsonProperty("subs") @SerialName("subs") val subs: List<SubtitleData>? = null,
@JsonProperty("episode") val episode: ResultEpisode,
@JsonProperty("isMovie") val isMovie: Boolean,
@JsonProperty("resultName") val resultName: String,
@JsonProperty("resultType") val resultType: TvType,
@JsonProperty("resultPoster") val resultPoster: String?,
@JsonProperty("apiName") val apiName: String,
@JsonProperty("resultId") val resultId: Int,
@JsonProperty("resultUrl") val resultUrl: String,
@JsonProperty("links") val links: List<ExtractorLink>? = null,
@JsonProperty("subs") val subs: List<SubtitleData>? = null,
) {
fun toWrapper(): DownloadQueueWrapper {
return DownloadQueueWrapper(null, this)
}
}
interface DownloadCached {
val id: Int
}
@OptIn(ExperimentalSerializationApi::class) // KeepGeneratedSerializer is an experimental annotation for now
@KeepGeneratedSerializer
@Serializable(with = DownloadEpisodeCached.Serializer::class)
abstract class DownloadCached(
@JsonProperty("id") open val id: Int,
)
data class DownloadEpisodeCached(
@JsonProperty("name") @SerialName("name") val name: String?,
@JsonProperty("poster") @SerialName("poster") val poster: String?,
@JsonProperty("episode") @SerialName("episode") val episode: Int,
@JsonProperty("season") @SerialName("season") val season: Int?,
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
@JsonProperty("score") @SerialName("score") var score: Score? = null,
@JsonProperty("description") @SerialName("description") val description: String?,
@JsonProperty("cacheTime") @SerialName("cacheTime") val cacheTime: Long,
@JsonProperty("id") @SerialName("id") override val id: Int,
) : DownloadCached {
object Serializer : WriteOnlySerializer<DownloadEpisodeCached>(
DownloadEpisodeCached.generatedSerializer(),
setOf("rating"),
)
@JsonProperty("name") val name: String?,
@JsonProperty("poster") val poster: String?,
@JsonProperty("episode") val episode: Int,
@JsonProperty("season") val season: Int?,
@JsonProperty("parentId") val parentId: Int,
@JsonProperty("score") var score: Score? = null,
@JsonProperty("description") val description: String?,
@JsonProperty("cacheTime") val cacheTime: Long,
override val id: Int,
) : DownloadCached(id) {
@JsonProperty("rating", access = JsonProperty.Access.WRITE_ONLY)
@SerialName("rating")
@Deprecated(
"`rating` is the old scoring system, use score instead",
replaceWith = ReplaceWith("score"),
level = DeprecationLevel.ERROR,
level = DeprecationLevel.ERROR
)
var rating: Int? = null
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 */
@Serializable
data class DownloadHeaderCached(
@JsonProperty("apiName") @SerialName("apiName") val apiName: String,
@JsonProperty("url") @SerialName("url") val url: String,
@JsonProperty("type") @SerialName("type") val type: TvType,
@JsonProperty("name") @SerialName("name") val name: String,
@JsonProperty("poster") @SerialName("poster") val poster: String?,
@JsonProperty("cacheTime") @SerialName("cacheTime") val cacheTime: Long,
@JsonProperty("id") @SerialName("id") override val id: Int,
) : DownloadCached
@JsonProperty("apiName") val apiName: String,
@JsonProperty("url") val url: String,
@JsonProperty("type") val type: TvType,
@JsonProperty("name") val name: String,
@JsonProperty("poster") val poster: String?,
@JsonProperty("cacheTime") val cacheTime: Long,
override val id: Int,
) : DownloadCached(id)
@Serializable
data class DownloadResumePackage(
@JsonProperty("item") @SerialName("item") val item: DownloadItem,
@JsonProperty("item") val item: DownloadItem,
/** Tills which link should get resumed */
@JsonProperty("linkIndex") @SerialName("linkIndex") val linkIndex: Int?,
@JsonProperty("linkIndex") val linkIndex: Int?,
) {
fun toWrapper(): DownloadQueueWrapper {
return DownloadQueueWrapper(this, null)
}
}
@Serializable
data class DownloadItem(
@JsonProperty("source") @SerialName("source") val source: String?,
@JsonProperty("folder") @SerialName("folder") val folder: String?,
@JsonProperty("ep") @SerialName("ep") val ep: DownloadEpisodeMetadata,
@JsonProperty("links") @SerialName("links") val links: List<ExtractorLink>,
@JsonProperty("source") val source: String?,
@JsonProperty("folder") val folder: String?,
@JsonProperty("ep") val ep: DownloadEpisodeMetadata,
@JsonProperty("links") val links: List<ExtractorLink>,
)
/** Metadata for a specific episode and how to display it. */
@Serializable
data class DownloadEpisodeMetadata(
@JsonProperty("id") @SerialName("id") val id: Int,
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
@JsonProperty("mainName") @SerialName("mainName") val mainName: String,
@JsonProperty("sourceApiName") @SerialName("sourceApiName") val sourceApiName: String?,
@JsonProperty("poster") @SerialName("poster") val poster: String?,
@JsonProperty("name") @SerialName("name") val name: String?,
@JsonProperty("season") @SerialName("season") val season: Int?,
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
@JsonProperty("type") @SerialName("type") val type: TvType?,
@JsonProperty("id") val id: Int,
@JsonProperty("parentId") val parentId: Int,
@JsonProperty("mainName") val mainName: String,
@JsonProperty("sourceApiName") val sourceApiName: String?,
@JsonProperty("poster") val poster: String?,
@JsonProperty("name") val name: String?,
@JsonProperty("season") val season: Int?,
@JsonProperty("episode") val episode: Int?,
@JsonProperty("type") val type: TvType?,
)
@Serializable
data class DownloadedFileInfo(
@JsonProperty("totalBytes") @SerialName("totalBytes") val totalBytes: Long,
@JsonProperty("relativePath") @SerialName("relativePath") val relativePath: String,
@JsonProperty("displayName") @SerialName("displayName") val displayName: String,
@JsonProperty("extraInfo") @SerialName("extraInfo") val extraInfo: String? = null,
@JsonProperty("basePath") @SerialName("basePath") val basePath: String? = null, // null is for legacy downloads. See getBasePath()
@JsonProperty("totalBytes") val totalBytes: Long,
@JsonProperty("relativePath") val relativePath: String,
@JsonProperty("displayName") val displayName: String,
@JsonProperty("extraInfo") val extraInfo: String? = null,
@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
@JsonProperty("linkHash") @SerialName("linkHash") val linkHash: Int? = null,
@JsonProperty("linkHash") val linkHash : Int? = null
)
@Serializable
@SkipSerializationTest // Uri has issues with Jackson
data class DownloadedFileInfoResult(
@JsonProperty("fileLength") @SerialName("fileLength") val fileLength: Long,
@JsonProperty("totalBytes") @SerialName("totalBytes") val totalBytes: Long,
@JsonProperty("path") @SerialName("path")
@Serializable(with = UriSerializer::class)
val path: Uri,
@JsonProperty("fileLength") val fileLength: Long,
@JsonProperty("totalBytes") val totalBytes: Long,
@JsonProperty("path") val path: Uri,
)
@Serializable
data class ResumeWatching(
@JsonProperty("parentId") @SerialName("parentId") val parentId: Int,
@JsonProperty("episodeId") @SerialName("episodeId") val episodeId: Int?,
@JsonProperty("episode") @SerialName("episode") val episode: Int?,
@JsonProperty("season") @SerialName("season") val season: Int?,
@JsonProperty("updateTime") @SerialName("updateTime") val updateTime: Long,
@JsonProperty("isFromDownload") @SerialName("isFromDownload") val isFromDownload: Boolean,
@JsonProperty("parentId") val parentId: Int,
@JsonProperty("episodeId") val episodeId: Int?,
@JsonProperty("episode") val episode: Int?,
@JsonProperty("season") val season: Int?,
@JsonProperty("updateTime") val updateTime: Long,
@JsonProperty("isFromDownload") val isFromDownload: Boolean,
)
data class DownloadStatus(
/** if you should retry with the same args and hope for a better result */
val retrySame: Boolean,
@ -190,19 +164,20 @@ object DownloadObjects {
val success: Boolean,
)
data class CreateNotificationMetadata(
val type: VideoDownloadManager.DownloadType,
val bytesDownloaded: Long,
val bytesTotal: Long,
val hlsProgress: Long? = null,
val hlsTotal: Long? = null,
val bytesPerSecond: Long,
val bytesPerSecond: Long
)
data class StreamData(
private val fileLength: Long,
val file: SafeFile,
// val fileStream: OutputStream,
//val fileStream: OutputStream,
) {
@Throws(IOException::class)
fun open(): OutputStream {
@ -223,11 +198,9 @@ object DownloadObjects {
val exists: Boolean get() = file.exists() == true
}
/**
* 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
* without cloning it.
*/
/** bytes have the size end-start where the byte range is [start,end)
* note that ByteArray is a pointer and therefore cant be stored without cloning it */
data class LazyStreamDownloadResponse(
val bytes: ByteArray,
val startByte: Long,
@ -248,4 +221,4 @@ object DownloadObjects {
return Objects.hash(startByte, endByte)
}
}
}
}

View file

@ -1,7 +1,6 @@
package com.lagradost.cloudstream3.utils.serializers
import android.net.Uri
import com.lagradost.cloudstream3.InternalAPI
import kotlinx.serialization.KSerializer
import kotlinx.serialization.descriptors.PrimitiveKind
import kotlinx.serialization.descriptors.PrimitiveSerialDescriptor
@ -27,7 +26,6 @@ import kotlinx.serialization.encoding.Encoder
* val uri: Uri,
* )
*/
@InternalAPI
object UriSerializer : KSerializer<Uri> {
override val descriptor: SerialDescriptor =
PrimitiveSerialDescriptor("Uri", PrimitiveKind.STRING)

View file

@ -4,7 +4,6 @@ import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.AnimeLoadResponse
import com.lagradost.cloudstream3.ErrorLoadingException
import com.lagradost.cloudstream3.LoadResponse
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.TvSeriesLoadResponse
import com.lagradost.cloudstream3.TvType
import com.lagradost.cloudstream3.app
@ -26,7 +25,6 @@ import java.security.MessageDigest
class AnimeSkipAuth : AuthAPI() {
override val name = "AnimeSkip"
override val icon: Int = R.drawable.animeskip
override val inAppLoginRequirement: AuthLoginRequirement =
AuthLoginRequirement(password = true, username = true)
override val idPrefix = "anime-skip"

View file

@ -1,11 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal"
android:autoMirrored="true">
<path
android:fillColor="@android:color/white"
android:pathData="M200,840Q167,840 143.5,816.5Q120,793 120,760L120,200Q120,167 143.5,143.5Q167,120 200,120L760,120Q793,120 816.5,143.5Q840,167 840,200L840,760Q840,793 816.5,816.5Q793,840 760,840L200,840ZM200,760L760,760Q760,760 760,760Q760,760 760,760L760,200Q760,200 760,200Q760,200 760,200L200,200Q200,200 200,200Q200,200 200,200L200,760Q200,760 200,760Q200,760 200,760ZM200,200L200,200Q200,200 200,200Q200,200 200,200L200,760Q200,760 200,760Q200,760 200,760L200,760Q200,760 200,760Q200,760 200,760L200,200Q200,200 200,200Q200,200 200,200ZM320,680L520,680Q537,680 548.5,668.5Q560,657 560,640Q560,623 548.5,611.5Q537,600 520,600L320,600Q303,600 291.5,611.5Q280,623 280,640Q280,657 291.5,668.5Q303,680 320,680ZM320,520L640,520Q657,520 668.5,508.5Q680,497 680,480Q680,463 668.5,451.5Q657,440 640,440L320,440Q303,440 291.5,451.5Q280,463 280,480Q280,497 291.5,508.5Q303,520 320,520ZM320,360L640,360Q657,360 668.5,348.5Q680,337 680,320Q680,303 668.5,291.5Q657,280 640,280L320,280Q303,280 291.5,291.5Q280,303 280,320Q280,337 291.5,348.5Q303,360 320,360Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M680,600L600,600Q583,600 571.5,611.5Q560,623 560,640Q560,657 571.5,668.5Q583,680 600,680L720,680Q737,680 748.5,668.5Q760,657 760,640L760,520Q760,503 748.5,491.5Q737,480 720,480Q703,480 691.5,491.5Q680,503 680,520L680,600ZM280,360L360,360Q377,360 388.5,348.5Q400,337 400,320Q400,303 388.5,291.5Q377,280 360,280L240,280Q223,280 211.5,291.5Q200,303 200,320L200,440Q200,457 211.5,468.5Q223,480 240,480Q257,480 268.5,468.5Q280,457 280,440L280,360ZM160,800Q127,800 103.5,776.5Q80,753 80,720L80,240Q80,207 103.5,183.5Q127,160 160,160L800,160Q833,160 856.5,183.5Q880,207 880,240L880,720Q880,753 856.5,776.5Q833,800 800,800L160,800ZM160,720L800,720Q800,720 800,720Q800,720 800,720L800,240Q800,240 800,240Q800,240 800,240L160,240Q160,240 160,240Q160,240 160,240L160,720Q160,720 160,720Q160,720 160,720ZM160,720Q160,720 160,720Q160,720 160,720L160,240Q160,240 160,240Q160,240 160,240L160,240Q160,240 160,240Q160,240 160,240L160,720Q160,720 160,720Q160,720 160,720Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M148,812Q129,831 104.5,820.5Q80,810 80,783L80,520Q80,503 91.5,491.5Q103,480 120,480Q137,480 148.5,491.5Q160,503 160,520L160,685L194,651Q199,646 206.5,643Q214,640 222,640L280,640Q297,640 308.5,651.5Q320,663 320,680Q320,697 308.5,708.5Q297,720 280,720L240,720L148,812ZM680,720Q663,720 651.5,708.5Q640,697 640,680Q640,663 651.5,651.5Q663,640 680,640L800,640Q800,640 800,640Q800,640 800,640L800,519Q800,502 811.5,491Q823,480 840,480Q857,480 868.5,491.5Q880,503 880,520L880,640Q880,673 856.5,696.5Q833,720 800,720L680,720ZM451.5,588.5Q440,577 440,560L440,240Q440,223 451.5,211.5Q463,200 480,200Q497,200 508.5,211.5Q520,223 520,240L520,560Q520,577 508.5,588.5Q497,600 480,600Q463,600 451.5,588.5ZM291.5,508.5Q280,497 280,480L280,320Q280,303 291.5,291.5Q303,280 320,280Q337,280 348.5,291.5Q360,303 360,320L360,480Q360,497 348.5,508.5Q337,520 320,520Q303,520 291.5,508.5ZM611.5,468.5Q600,457 600,440L600,360Q600,343 611.5,331.5Q623,320 640,320Q657,320 668.5,331.5Q680,343 680,360L680,440Q680,457 668.5,468.5Q657,480 640,480Q623,480 611.5,468.5ZM120,320Q103,320 91.5,308.5Q80,297 80,280L80,160Q80,127 103.5,103.5Q127,80 160,80L280,80Q297,80 308.5,91.5Q320,103 320,120Q320,137 308.5,148.5Q297,160 280,160L160,160Q160,160 160,160Q160,160 160,160L160,281Q160,298 148.5,309Q137,320 120,320ZM811.5,308.5Q800,297 800,280L800,160Q800,160 800,160Q800,160 800,160L680,160Q663,160 651.5,148.5Q640,137 640,120Q640,103 651.5,91.5Q663,80 680,80L800,80Q833,80 856.5,103.5Q880,127 880,160L880,281Q880,298 868.5,309Q857,320 840,320Q823,320 811.5,308.5Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M240,482Q240,498 242,513.5Q244,529 249,544Q254,561 248,576.5Q242,592 227,599Q211,607 195.5,600.5Q180,594 175,577Q167,554 163.5,530Q160,506 160,482Q160,348 253,254Q346,160 480,160L487,160L451,124Q440,113 440,96Q440,79 451,68Q462,57 479,57Q496,57 507,68L611,172Q623,184 623,200Q623,216 611,228L507,332Q496,343 479,343Q462,343 451,332Q440,321 440,304Q440,287 451,276L487,240L480,240Q380,240 310,310.5Q240,381 240,482ZM720,478Q720,462 718,446.5Q716,431 711,416Q706,399 712,383.5Q718,368 733,361Q749,353 764.5,359.5Q780,366 785,383Q793,406 796.5,430Q800,454 800,478Q800,612 707,706Q614,800 480,800L473,800L509,836Q520,847 520,864Q520,881 509,892Q498,903 481,903Q464,903 453,892L349,788Q337,776 337,760Q337,744 349,732L453,628Q464,617 481,617Q498,617 509,628Q520,639 520,656Q520,673 509,684L473,720L480,720Q580,720 650,649.5Q720,579 720,478Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M320,880Q303,880 291.5,868.5Q280,857 280,840L280,200Q280,183 291.5,171.5Q303,160 320,160L400,160L400,120Q400,103 411.5,91.5Q423,80 440,80L520,80Q537,80 548.5,91.5Q560,103 560,120L560,160L640,160Q657,160 668.5,171.5Q680,183 680,200L680,840Q680,857 668.5,868.5Q657,880 640,880L320,880ZM360,800L600,800L600,240L360,240L360,800ZM360,800L360,800L600,800L600,800L360,800ZM508.5,548.5Q520,537 520,520L520,360Q520,343 508.5,331.5Q497,320 480,320Q463,320 451.5,331.5Q440,343 440,360L440,520Q440,537 451.5,548.5Q463,560 480,560Q497,560 508.5,548.5ZM480,720Q497,720 508.5,708.5Q520,697 520,680Q520,663 508.5,651.5Q497,640 480,640Q463,640 451.5,651.5Q440,663 440,680Q440,697 451.5,708.5Q463,720 480,720Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M360,600Q260,600 190,530Q120,460 120,360Q120,340 123,320Q126,300 134,282Q139,272 146.5,267Q154,262 163,260Q172,258 181.5,260.5Q191,263 199,271L304,376L376,304L271,199Q263,191 260.5,181.5Q258,172 260,163Q262,154 267,146.5Q272,139 282,134Q300,126 320,123Q340,120 360,120Q460,120 530,190Q600,260 600,360Q600,383 596,403.5Q592,424 584,444L786,644Q815,673 815,715Q815,757 786,786Q757,815 715,815Q673,815 644,785L444,584Q424,592 403.5,596Q383,600 360,600ZM360,520Q386,520 412,512Q438,504 459,487L702,730Q707,735 715.5,734.5Q724,734 729,729Q734,724 734,715.5Q734,707 729,702L486,460Q504,440 512,413.5Q520,387 520,360Q520,300 481.5,255.5Q443,211 386,202L460,276Q472,288 472,304Q472,320 460,332L332,460Q320,472 304,472Q288,472 276,460L202,386Q211,443 255.5,481.5Q300,520 360,520ZM469,469Q469,469 469,469Q469,469 469,469L469,469Q469,469 469,469Q469,469 469,469L469,469Q469,469 469,469Q469,469 469,469L469,469Q469,469 469,469Q469,469 469,469Q469,469 469,469Q469,469 469,469L469,469Q469,469 469,469Q469,469 469,469Q469,469 469,469Q469,469 469,469L469,469Q469,469 469,469Q469,469 469,469Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480ZM880,240L880,720Q880,753 856.5,776.5Q833,800 800,800L638,800Q621,800 609.5,788.5Q598,777 598,760Q598,743 609.5,731.5Q621,720 638,720L800,720Q800,720 800,720Q800,720 800,720L800,240Q800,240 800,240Q800,240 800,240L160,240Q160,240 160,240Q160,240 160,240L160,246Q160,263 148.5,274.5Q137,286 120,286Q103,286 91.5,274.5Q80,263 80,246L80,240Q80,207 103.5,183.5Q127,160 160,160L800,160Q833,160 856.5,183.5Q880,207 880,240ZM320,800Q304,800 292,790.5Q280,781 277,765Q266,702 220.5,658Q175,614 112,603Q97,601 88.5,588.5Q80,576 80,560Q80,543 91,531.5Q102,520 117,522Q211,534 277.5,601Q344,668 357,762Q359,778 348,789Q337,800 320,800ZM480,800Q463,800 451.5,789Q440,778 438,761Q424,633 333.5,544Q243,455 115,442Q99,440 89.5,428Q80,416 80,400Q80,383 90.5,371Q101,359 116,361Q277,374 390,486Q503,598 518,759Q520,776 508.5,788Q497,800 480,800ZM130,800Q109,800 94.5,785.5Q80,771 80,750Q80,729 94.5,714.5Q109,700 130,700Q151,700 165.5,714.5Q180,729 180,750Q180,771 165.5,785.5Q151,800 130,800Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M480,536L284,732Q273,743 256,743Q239,743 228,732Q217,721 217,704Q217,687 228,676L424,480L228,284Q217,273 217,256Q217,239 228,228Q239,217 256,217Q273,217 284,228L480,424L676,228Q687,217 704,217Q721,217 732,228Q743,239 743,256Q743,273 732,284L536,480L732,676Q743,687 743,704Q743,721 732,732Q721,743 704,743Q687,743 676,732L480,536Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M346,820L100,574Q90,564 85,552Q80,540 80,527Q80,514 85,502Q90,490 100,480L330,251L255,176Q242,163 241.5,145Q241,127 254,113Q267,99 286,99Q305,99 319,113L686,480Q696,490 700.5,502Q705,514 705,527Q705,540 700.5,552Q696,564 686,574L440,820Q430,830 418,835Q406,840 393,840Q380,840 368,835Q356,830 346,820ZM393,314L179,528Q179,528 179,528Q179,528 179,528L607,528Q607,528 607,528Q607,528 607,528L393,314ZM792,840Q756,840 731,814.5Q706,789 706,752Q706,725 719.5,701Q733,677 750,654L769,630Q778,619 792.5,618.5Q807,618 816,629L836,654Q852,677 866,701Q880,725 880,752Q880,789 854,814.5Q828,840 792,840Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M714,798L537,621L621,537L798,714Q815,731 815,756Q815,781 798,798Q781,815 756,815Q731,815 714,798ZM145,756Q145,731 162,714L396,480L328,412L328,412Q317,423 300,423Q283,423 272,412L249,389L249,479Q249,493 237,498Q225,503 215,493L106,384Q96,374 101,362Q106,350 120,350L210,350L188,328Q176,316 176,300Q176,284 188,272L302,158Q322,138 345,129Q368,120 392,120Q412,120 429.5,126Q447,132 464,144Q472,149 472.5,158Q473,167 466,174L390,250L412,272Q423,283 423,300Q423,317 412,328L412,328L480,396L570,306Q566,295 563.5,283Q561,271 561,259Q561,200 601.5,159.5Q642,119 701,119Q709,119 716,119.5Q723,120 730,122Q739,125 741.5,134.5Q744,144 737,151L672,216Q666,222 666,230Q666,238 672,244L716,288Q722,294 730,294Q738,294 744,288L809,223Q816,216 825.5,218Q835,220 838,230Q840,237 840.5,244Q841,251 841,259Q841,318 800.5,358.5Q760,399 701,399Q689,399 677,397Q665,395 654,390L246,798Q229,815 204,815Q179,815 162,798Q145,781 145,756Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M360,720Q327,720 303.5,696.5Q280,673 280,640L280,160Q280,127 303.5,103.5Q327,80 360,80L720,80Q753,80 776.5,103.5Q800,127 800,160L800,640Q800,673 776.5,696.5Q753,720 720,720L360,720ZM360,640L720,640Q720,640 720,640Q720,640 720,640L720,160Q720,160 720,160Q720,160 720,160L360,160Q360,160 360,160Q360,160 360,160L360,640Q360,640 360,640Q360,640 360,640ZM540,400Q540,400 540,400Q540,400 540,400L540,400Q540,400 540,400Q540,400 540,400L540,400Q540,400 540,400Q540,400 540,400L540,400Q540,400 540,400Q540,400 540,400ZM131.5,308.5Q120,297 120,280Q120,263 131.5,251.5Q143,240 160,240Q177,240 188.5,251.5Q200,263 200,280Q200,297 188.5,308.5Q177,320 160,320Q143,320 131.5,308.5ZM131.5,448.5Q120,437 120,420Q120,403 131.5,391.5Q143,380 160,380Q177,380 188.5,391.5Q200,403 200,420Q200,437 188.5,448.5Q177,460 160,460Q143,460 131.5,448.5ZM131.5,588.5Q120,577 120,560Q120,543 131.5,531.5Q143,520 160,520Q177,520 188.5,531.5Q200,543 200,560Q200,577 188.5,588.5Q177,600 160,600Q143,600 131.5,588.5ZM131.5,728.5Q120,717 120,700Q120,683 131.5,671.5Q143,660 160,660Q177,660 188.5,671.5Q200,683 200,700Q200,717 188.5,728.5Q177,740 160,740Q143,740 131.5,728.5ZM131.5,868.5Q120,857 120,840Q120,823 131.5,811.5Q143,800 160,800Q177,800 188.5,811.5Q200,823 200,840Q200,857 188.5,868.5Q177,880 160,880Q143,880 131.5,868.5ZM271.5,868.5Q260,857 260,840Q260,823 271.5,811.5Q283,800 300,800Q317,800 328.5,811.5Q340,823 340,840Q340,857 328.5,868.5Q317,880 300,880Q283,880 271.5,868.5ZM411.5,868.5Q400,857 400,840Q400,823 411.5,811.5Q423,800 440,800Q457,800 468.5,811.5Q480,823 480,840Q480,857 468.5,868.5Q457,880 440,880Q423,880 411.5,868.5ZM551.5,868.5Q540,857 540,840Q540,823 551.5,811.5Q563,800 580,800Q597,800 608.5,811.5Q620,823 620,840Q620,857 608.5,868.5Q597,880 580,880Q563,880 551.5,868.5Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M360,720L600,720Q617,720 628.5,708.5Q640,697 640,680Q640,663 628.5,651.5Q617,640 600,640L360,640Q343,640 331.5,651.5Q320,663 320,680Q320,697 331.5,708.5Q343,720 360,720ZM360,560L600,560Q617,560 628.5,548.5Q640,537 640,520Q640,503 628.5,491.5Q617,480 600,480L360,480Q343,480 331.5,491.5Q320,503 320,520Q320,537 331.5,548.5Q343,560 360,560ZM240,880Q207,880 183.5,856.5Q160,833 160,800L160,160Q160,127 183.5,103.5Q207,80 240,80L527,80Q543,80 557.5,86Q572,92 583,103L777,297Q788,308 794,322.5Q800,337 800,353L800,800Q800,833 776.5,856.5Q753,880 720,880L240,880ZM520,320L520,160L240,160Q240,160 240,160Q240,160 240,160L240,800Q240,800 240,800Q240,800 240,800L720,800Q720,800 720,800Q720,800 720,800L720,360L560,360Q543,360 531.5,348.5Q520,337 520,320ZM240,160L240,160L240,320Q240,337 240,348.5Q240,360 240,360L240,360L240,160L240,320Q240,337 240,348.5Q240,360 240,360L240,360L240,800Q240,800 240,800Q240,800 240,800L240,800Q240,800 240,800Q240,800 240,800L240,160Q240,160 240,160Q240,160 240,160Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M300,240Q275,240 257.5,257.5Q240,275 240,300Q240,325 257.5,342.5Q275,360 300,360Q325,360 342.5,342.5Q360,325 360,300Q360,275 342.5,257.5Q325,240 300,240ZM300,640Q275,640 257.5,657.5Q240,675 240,700Q240,725 257.5,742.5Q275,760 300,760Q325,760 342.5,742.5Q360,725 360,700Q360,675 342.5,657.5Q325,640 300,640ZM160,120L800,120Q817,120 828.5,131.5Q840,143 840,160L840,440Q840,457 828.5,468.5Q817,480 800,480L160,480Q143,480 131.5,468.5Q120,457 120,440L120,160Q120,143 131.5,131.5Q143,120 160,120ZM200,200L200,400L760,400L760,200L200,200ZM160,520L800,520Q817,520 828.5,531.5Q840,543 840,560L840,840Q840,857 828.5,868.5Q817,880 800,880L160,880Q143,880 131.5,868.5Q120,857 120,840L120,560Q120,543 131.5,531.5Q143,520 160,520ZM200,600L200,800L760,800L760,600L200,600ZM200,200L200,200L200,400L200,400L200,200ZM200,600L200,600L200,800L200,800L200,600Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M444,600L516,600Q525,600 531.5,592.5Q538,585 536,576L517,471Q537,461 548.5,442Q560,423 560,400Q560,367 536.5,343.5Q513,320 480,320Q447,320 423.5,343.5Q400,367 400,400Q400,423 411.5,442Q423,461 443,471L424,576Q422,585 428.5,592.5Q435,600 444,600ZM467,875Q461,874 455,872Q320,827 240,705.5Q160,584 160,444L160,255Q160,230 174.5,210Q189,190 212,181L452,91Q466,86 480,86Q494,86 508,91L748,181Q771,190 785.5,210Q800,230 800,255L800,444Q800,584 720,705.5Q640,827 505,872Q499,874 493,875Q487,876 480,876Q473,876 467,875ZM480,796Q584,763 652,664Q720,565 720,444L720,255Q720,255 720,255Q720,255 720,255L480,165Q480,165 480,165Q480,165 480,165L240,255Q240,255 240,255Q240,255 240,255L240,444Q240,565 308,664Q376,763 480,796ZM480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480L480,480Q480,480 480,480Q480,480 480,480Z"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M200,760L720,760Q720,760 720,760Q720,760 720,760L720,601Q720,590 725.5,580Q731,570 742,565L765,554Q781,546 790.5,532Q800,518 800,500Q800,483 790.5,468.5Q781,454 765,446L743,436Q732,431 726,421.5Q720,412 720,400L720,240Q720,240 720,240Q720,240 720,240L563,240Q548,240 536.5,230.5Q525,221 523,206L518,172Q515,150 498.5,135Q482,120 460,120Q437,120 420.5,135Q404,150 401,172L396,206Q394,221 382.5,230.5Q371,240 356,240L200,240Q200,240 200,240Q200,240 200,240L200,326Q256,347 288,394Q320,441 320,500Q320,560 288,607Q256,654 200,675L200,760Q200,760 200,760Q200,760 200,760ZM200,840Q166,840 143,817Q120,794 120,760L120,635Q120,624 128,615.5Q136,607 147,605Q186,597 213,568.5Q240,540 240,500Q240,461 213,433Q186,405 147,396Q136,393 128,384.5Q120,376 120,365L120,240Q120,207 143.5,183.5Q167,160 200,160L322,160Q329,109 368,74.5Q407,40 460,40Q512,40 551,74.5Q590,109 598,160L720,160Q753,160 776.5,183.5Q800,207 800,240L800,374Q836,392 858,426Q880,460 880,500Q880,541 858,575Q836,609 800,626L800,760Q800,794 776.5,817Q753,840 720,840L200,840ZM500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500L500,500Q500,500 500,500Q500,500 500,500Z"/>
</vector>

View file

@ -1,14 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512dp"
android:height="512dp"
android:viewportWidth="512"
android:viewportHeight="512">
<path
android:fillColor="#FF000000"
android:pathData="M334.49,359.62L334.49,217.46C334.49,211.35 336.74,206.11 341.24,201.76C345.74,197.41 351.15,195.24 357.48,195.24C363.8,195.24 369.22,197.41 373.72,201.76C378.22,206.11 380.47,211.35 380.47,217.46L380.47,359.62L437.77,304.24C442.38,299.77 447.86,297.54 454.18,297.54C460.51,297.54 465.98,299.77 470.61,304.24C474.98,308.71 477.17,314 477.17,320.11C477.17,326.23 474.86,331.52 470.24,335.99L373.9,429.11C371.71,431.23 369.16,432.88 366.24,434.05C363.32,435.23 360.4,435.82 357.48,435.82C354.56,435.82 351.64,435.23 348.73,434.05C345.8,432.88 343.25,431.23 341.06,429.11L244.36,335.63C239.73,331.17 237.42,325.93 237.42,319.94C237.42,313.94 239.73,308.71 244.36,304.24C248.98,299.77 254.45,297.54 260.78,297.54C267.1,297.54 272.58,299.77 277.2,304.24L334.49,359.62Z"
android:strokeWidth="1"/>
<path
android:fillColor="#FF000000"
android:pathData="M93.09,357.71L210.69,357.71L249.64,395.37L93.09,395.37C82.47,395.37 73.46,391.76 66.3,384.54C59.02,377.33 55.44,368.38 55.44,357.71L55.44,298.88C55.44,295.43 56.67,292.37 59.26,289.7C61.73,287.03 64.69,285.39 68.15,284.76C80.37,282.25 90.74,276.52 99.26,267.58C107.78,258.64 111.97,247.89 111.97,235.34C111.97,223.1 107.78,212.59 99.26,203.8C90.74,195.01 80.37,189.22 68.15,186.39C64.69,185.44 61.73,183.64 59.26,180.98C56.67,178.3 55.44,175.25 55.44,171.79L55.44,112.97C55.44,102.61 59.14,93.75 66.55,86.37C73.83,79 82.72,75.31 93.09,75.31L150.61,75.31C152.83,59.3 159.99,45.9 172.21,35.07C184.55,24.24 199,18.83 215.66,18.83C231.96,18.83 246.27,24.24 258.49,35.07C270.72,45.9 278.12,59.3 280.59,75.31L338.11,75.31C348.48,75.31 357.37,79 364.73,86.37C372.1,93.75 375.79,102.61 375.79,112.97L375.79,160.48C370.9,156.68 364.95,154.59 358.81,154.59C351.21,154.59 343.92,157.78 338.55,163.45C338.4,163.61 338.26,163.76 338.11,163.92L338.11,112.97L264.17,112.97C259.48,112.97 255.29,111.48 251.71,108.49C248,105.51 245.9,101.66 245.29,96.96L242.94,80.96C241.95,74.05 238.87,68.26 233.68,63.54C228.62,58.83 222.45,56.48 215.66,56.48C208.38,56.48 202.21,58.83 197.02,63.54C191.84,68.26 188.75,74.05 187.76,80.96L185.42,96.96C184.8,101.66 182.7,105.51 179.12,108.49C175.42,111.48 171.35,112.97 166.66,112.97L93.09,112.97L93.09,153.44C110.74,160.03 124.56,170.7 134.56,185.44C144.68,200.2 149.62,216.83 149.62,235.34C149.62,254.17 144.68,270.95 134.56,285.7C124.56,300.45 110.74,311.12 93.09,317.71Z"
android:strokeWidth="1"/>
</vector>

View file

@ -1,21 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="24dp"
android:height="24dp"
android:viewportWidth="512"
android:viewportHeight="512">
<path
android:fillColor="#000000"
android:pathData="M828.649 786.425C828.649 789.514 828.814 792.438 829.145 795.196C829.477 797.953 829.973 800.766 830.634 803.635C832.181 809.372 832.181 814.997 830.634 820.514C829.089 826.03 825.78 830.332 820.707 833.421C815.633 836.509 810.337 837.172 804.82 835.407C799.304 833.641 795.553 830.111 793.568 824.816C791.36 818.638 789.706 812.35 788.603 805.952C787.501 799.553 786.949 793.044 786.949 786.425C786.949 755.536 797.761 728.894 819.382 706.5C841.003 684.105 866.93 672.91 897.157 672.91L899.804 672.91L894.509 667.614C891.421 664.523 889.932 660.883 890.042 656.692C890.15 652.499 891.752 648.859 894.84 645.771C897.927 642.679 901.568 641.138 905.762 641.138C909.955 641.138 913.596 642.679 916.683 645.771L949.779 678.865C953.972 683.057 956.067 688.021 956.067 693.758C956.067 699.495 953.972 704.459 949.779 708.651L916.683 741.746C913.596 744.835 909.955 746.38 905.762 746.38C901.568 746.38 897.927 744.835 894.84 741.746C891.752 738.657 890.207 734.962 890.207 730.66C890.207 726.357 891.752 722.661 894.84 719.572L899.804 714.608L898.149 714.608C878.954 714.608 862.572 721.613 849.003 735.624C835.433 749.634 828.649 766.568 828.649 786.425ZM972.283 786.425C972.283 783.336 972.118 780.413 971.787 777.655C971.456 774.897 970.96 772.083 970.298 769.215C968.752 763.479 968.752 757.852 970.298 752.337C971.843 746.821 975.153 742.519 980.227 739.43C985.3 736.34 990.542 735.624 995.947 737.279C1001.35 738.933 1005.05 742.298 1007.03 747.373C1009.46 753.771 1011.23 760.169 1012.33 766.568C1013.43 772.966 1013.98 779.585 1013.98 786.425C1013.98 817.314 1003.17 844.011 981.55 866.517C959.929 889.021 934.001 900.274 903.776 900.274L901.128 900.274L906.093 905.238C909.18 908.327 910.726 911.968 910.726 916.16C910.726 920.351 909.18 923.992 906.093 927.081C903.005 930.17 899.308 931.714 895.005 931.714C890.703 931.714 887.006 930.17 883.918 927.081L850.823 893.985C846.63 889.793 844.592 884.884 844.701 879.258C844.81 873.632 846.852 868.723 850.823 864.531L884.249 831.435C887.337 828.346 891.034 826.746 895.336 826.636C899.639 826.525 903.336 828.015 906.424 831.104C909.511 834.193 911.057 837.889 911.057 842.191C911.057 846.493 909.511 850.189 906.424 853.278L901.128 858.573L902.783 858.573C921.978 858.573 938.36 851.513 951.93 837.392C965.499 823.272 972.283 806.283 972.283 786.425Z" />
<path
android:fillColor="#000000"
android:pathData="M130.425 375.105L242.731 375.105C244.138 386.796 246.964 398.225 251.107 409.155L130.425 409.155C120.778 409.155 112.692 405.892 106.164 399.366C99.639 392.839 96.375 384.752 96.375 375.105L96.375 321.903C96.375 318.781 97.511 316.015 99.78 313.604C102.053 311.192 104.747 309.701 107.867 309.135C118.934 306.864 128.297 301.686 135.958 293.599C143.62 285.513 147.451 275.794 147.451 264.444C147.451 253.378 143.62 243.873 135.958 235.928C128.297 227.983 118.934 222.734 107.867 220.18C104.747 219.329 102.053 217.697 99.78 215.285C97.511 212.874 96.375 210.107 96.375 206.986L96.375 153.783C96.375 144.419 99.712 136.404 106.377 129.738C113.046 123.07 121.061 119.732 130.425 119.732L182.35 119.732C184.337 105.267 190.863 93.133 201.93 83.344C212.996 73.555 226.05 68.661 241.087 68.661C255.845 68.661 268.753 73.555 279.82 83.344C290.887 93.133 297.556 105.267 299.82 119.732L351.747 119.732C361.107 119.732 369.129 123.07 375.798 129.738C382.466 136.404 385.797 144.419 385.797 153.783L385.797 207.371C375.371 204.086 363.868 202.111 351.747 201.76L351.747 153.783L284.926 153.783C280.67 153.783 276.911 152.436 273.648 149.74C270.385 147.044 268.468 143.569 267.904 139.313L265.77 124.844C264.92 118.597 262.153 113.35 257.469 109.094C252.792 104.838 247.334 102.711 241.087 102.711C234.562 102.711 228.956 104.838 224.274 109.094C219.593 113.35 216.827 118.597 215.976 124.844L213.847 139.313C213.281 143.569 211.366 147.044 208.101 149.74C204.837 152.436 201.078 153.783 196.822 153.783L130.425 153.783L130.425 190.387C146.316 196.345 158.8 205.993 167.88 219.329C176.96 232.665 181.499 247.703 181.499 264.444C181.499 281.47 176.96 296.649 167.88 309.986C158.8 323.321 146.316 332.968 130.425 338.928L130.425 375.105Z" />
<path
android:fillColor="#D8D8D8"
android:pathData="M362.193 643.11A0.726 2.177 0 0 1 360.741 643.11A0.726 2.177 0 0 1 362.193 643.11Z"
android:strokeWidth="1"
android:strokeColor="#000000" />
<path
android:fillColor="#000000"
android:pathData="M285.208 364.511C285.208 368.086 285.429 371.577 285.861 374.985C286.293 378.39 287.03 381.766 288.073 385.111C289.337 389.523 289.243 393.776 287.81 397.87C286.377 401.967 283.702 405.013 279.814 407.011C275.738 409.183 271.65 409.48 267.563 407.903C263.465 406.322 260.737 403.379 259.357 399.076C257.408 393.502 255.986 387.814 255.101 382.007C254.205 376.204 253.763 370.371 253.763 364.511C253.763 333.308 264.613 306.671 286.314 284.601C308.015 262.531 334.393 251.497 365.427 251.497L367.923 251.497L357.136 240.707C354.439 238.01 353.102 234.647 353.133 230.62C353.154 226.593 354.524 223.229 357.22 220.529C359.917 217.828 363.288 216.479 367.312 216.479C371.336 216.479 374.697 217.828 377.404 220.529L413.01 256.138C416.16 259.29 417.74 262.984 417.74 267.221C417.74 271.458 416.16 275.152 413.01 278.303L377.404 313.914C374.697 316.614 371.336 317.963 367.312 317.963C363.288 317.963 359.917 316.614 357.22 313.914C354.524 311.213 353.175 307.835 353.175 303.781C353.175 299.728 354.524 296.352 357.22 293.651L367.923 282.945L365.669 282.945C343.347 282.945 324.364 290.874 308.699 306.731C293.045 322.588 285.208 341.846 285.208 364.511ZM447.289 363.46C447.289 359.884 447.078 356.392 446.646 352.985C446.204 349.58 445.466 346.204 444.434 342.86C443.17 338.447 443.254 334.194 444.697 330.101C446.13 326.004 448.795 322.957 452.693 320.96C456.759 318.787 460.836 318.476 464.902 320.027C468.968 321.579 471.686 324.48 473.066 328.728C475.068 334.356 476.522 340.074 477.406 345.88C478.291 351.683 478.744 357.544 478.744 363.46C478.744 394.661 467.894 421.312 446.183 443.412C424.482 465.509 398.115 476.557 367.081 476.557L364.573 476.557L375.276 487.263C377.984 489.961 379.332 493.323 379.332 497.351C379.332 501.378 377.984 504.742 375.276 507.442C372.58 510.141 369.209 511.492 365.153 511.492C361.097 511.492 357.716 510.141 355.019 507.442L319.413 471.832C316.263 468.681 314.693 465 314.725 460.791C314.757 456.582 316.316 452.901 319.413 449.749L355.103 414.14C357.8 411.44 361.181 410.076 365.227 410.049C369.282 410.021 372.664 411.357 375.361 414.057C378.068 416.757 379.416 420.135 379.416 424.19C379.416 428.242 378.068 431.619 375.361 434.319L364.573 445.108L366.828 445.108C389.15 445.108 408.143 437.165 423.808 421.28C439.462 405.397 447.289 386.123 447.289 363.46Z" />
</vector>

View file

@ -1,11 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:viewportHeight="512" android:viewportWidth="512" android:width="24dp">
<path android:fillColor="#FF000000" android:pathData="M828.65,786.42C828.65,789.51 828.81,792.44 829.15,795.2C829.48,797.95 829.97,800.77 830.63,803.64C832.18,809.37 832.18,815 830.63,820.51C829.09,826.03 825.78,830.33 820.71,833.42C815.63,836.51 810.34,837.17 804.82,835.41C799.3,833.64 795.55,830.11 793.57,824.82C791.36,818.64 789.71,812.35 788.6,805.95C787.5,799.55 786.95,793.04 786.95,786.42C786.95,755.54 797.76,728.89 819.38,706.5C841,684.1 866.93,672.91 897.16,672.91L899.8,672.91L894.51,667.61C891.42,664.52 889.93,660.88 890.04,656.69C890.15,652.5 891.75,648.86 894.84,645.77C897.93,642.68 901.57,641.14 905.76,641.14C909.96,641.14 913.6,642.68 916.68,645.77L949.78,678.86C953.97,683.06 956.07,688.02 956.07,693.76C956.07,699.49 953.97,704.46 949.78,708.65L916.68,741.75C913.6,744.84 909.96,746.38 905.76,746.38C901.57,746.38 897.93,744.84 894.84,741.75C891.75,738.66 890.21,734.96 890.21,730.66C890.21,726.36 891.75,722.66 894.84,719.57L899.8,714.61L898.15,714.61C878.95,714.61 862.57,721.61 849,735.62C835.43,749.63 828.65,766.57 828.65,786.42ZM972.28,786.42C972.28,783.34 972.12,780.41 971.79,777.66C971.46,774.9 970.96,772.08 970.3,769.22C968.75,763.48 968.75,757.85 970.3,752.34C971.84,746.82 975.15,742.52 980.23,739.43C985.3,736.34 990.54,735.62 995.95,737.28C1001.35,738.93 1005.05,742.3 1007.03,747.37C1009.46,753.77 1011.23,760.17 1012.33,766.57C1013.43,772.97 1013.98,779.59 1013.98,786.42C1013.98,817.31 1003.17,844.01 981.55,866.52C959.93,889.02 934,900.27 903.78,900.27L901.13,900.27L906.09,905.24C909.18,908.33 910.73,911.97 910.73,916.16C910.73,920.35 909.18,923.99 906.09,927.08C903.01,930.17 899.31,931.71 895.01,931.71C890.7,931.71 887.01,930.17 883.92,927.08L850.82,893.98C846.63,889.79 844.59,884.88 844.7,879.26C844.81,873.63 846.85,868.72 850.82,864.53L884.25,831.43C887.34,828.35 891.03,826.75 895.34,826.64C899.64,826.53 903.34,828.02 906.42,831.1C909.51,834.19 911.06,837.89 911.06,842.19C911.06,846.49 909.51,850.19 906.42,853.28L901.13,858.57L902.78,858.57C921.98,858.57 938.36,851.51 951.93,837.39C965.5,823.27 972.28,806.28 972.28,786.42Z" android:strokeWidth="1"/>
<path android:fillColor="#FF000000" android:pathData="M93.03,360.46L191.68,360.46C191.41,364.54 191.28,368.65 191.28,372.8C191.28,381.4 191.86,389.87 192.99,398.17L93.03,398.17C82.34,398.17 73.39,394.55 66.16,387.33C58.93,380.1 55.32,371.14 55.32,360.46L55.32,301.55C55.32,298.09 56.58,295.03 59.09,292.36C61.61,289.69 64.59,288.04 68.05,287.41C80.3,284.89 90.67,279.16 99.15,270.2C107.64,261.25 111.88,250.49 111.88,237.92C111.88,225.66 107.64,215.14 99.15,206.34C90.67,197.54 80.3,191.73 68.05,188.9C64.59,187.96 61.61,186.15 59.09,183.48C56.58,180.81 55.32,177.75 55.32,174.29L55.32,115.38C55.32,105.01 59.01,96.13 66.4,88.75C73.78,81.36 82.66,77.67 93.03,77.67L150.53,77.67C152.73,61.65 159.95,48.21 172.21,37.37C184.46,26.53 198.92,21.11 215.57,21.11C231.91,21.11 246.21,26.53 258.46,37.37C270.72,48.21 278.1,61.65 280.61,77.67L338.11,77.67C348.48,77.67 357.36,81.36 364.74,88.75C372.13,96.13 375.82,105.01 375.82,115.38L375.82,151.01C364.09,147.13 351.61,145.03 338.67,145.03C338.49,145.03 338.3,145.03 338.11,145.03L338.11,115.38L264.12,115.38C259.4,115.38 255.24,113.88 251.63,110.9C248.01,107.91 245.89,104.07 245.27,99.35L242.9,83.33C241.96,76.41 238.9,70.6 233.71,65.89C228.53,61.17 222.49,58.82 215.57,58.82C208.34,58.82 202.14,61.17 196.95,65.89C191.77,70.6 188.71,76.41 187.76,83.33L185.4,99.35C184.78,104.07 182.66,107.91 179.04,110.9C175.43,113.88 171.26,115.38 166.55,115.38L93.03,115.38L93.03,155.91C110.62,162.51 124.45,173.19 134.5,187.96C144.56,202.73 149.58,219.38 149.58,237.92C149.58,256.77 144.56,273.58 134.5,288.35C124.45,303.12 110.62,313.8 93.03,320.4Z" android:strokeWidth="1"/>
<path android:fillColor="#D8D8D8" android:pathData="M360.74,643.11a0.73,2.18 0,1 0,1.45 0a0.73,2.18 0,1 0,-1.45 0z" android:strokeColor="#000000" android:strokeWidth="1"/>
<path android:fillColor="#FF000000" android:pathData="M264.43,348.73C264.43,352.69 264.67,356.55 265.15,360.33C265.63,364.1 266.45,367.84 267.6,371.54C269,376.43 268.9,381.14 267.31,385.67C265.72,390.21 262.76,393.58 258.45,395.79C253.94,398.2 249.41,398.53 244.89,396.78C240.35,395.03 237.33,391.77 235.8,387.01C233.64,380.83 232.07,374.54 231.09,368.1C230.1,361.68 229.61,355.22 229.61,348.73C229.61,314.18 241.62,284.68 265.65,260.24C289.68,235.8 318.89,223.58 353.26,223.58L356.02,223.58L344.08,211.63C341.09,208.65 339.61,204.92 339.65,200.46C339.67,196 341.19,192.28 344.17,189.29C347.16,186.3 350.89,184.8 355.35,184.8C359.8,184.8 363.52,186.3 366.52,189.29L405.95,228.72C409.44,232.21 411.19,236.3 411.19,240.99C411.19,245.68 409.44,249.78 405.95,253.26L366.52,292.7C363.52,295.69 359.8,297.18 355.35,297.18C350.89,297.18 347.16,295.69 344.17,292.7C341.19,289.71 339.69,285.97 339.69,281.48C339.69,276.99 341.19,273.25 344.17,270.26L356.02,258.41L353.53,258.41C328.81,258.41 307.79,267.19 290.44,284.75C273.11,302.3 264.43,323.63 264.43,348.73ZM443.91,347.57C443.91,343.61 443.68,339.74 443.2,335.97C442.71,332.2 441.89,328.46 440.75,324.75C439.35,319.87 439.44,315.16 441.04,310.63C442.63,306.09 445.58,302.71 449.9,300.5C454.4,298.1 458.91,297.75 463.42,299.47C467.92,301.19 470.93,304.4 472.46,309.1C474.67,315.34 476.28,321.67 477.26,328.1C478.24,334.52 478.74,341.01 478.74,347.57C478.74,382.12 466.73,411.63 442.69,436.1C418.66,460.57 389.46,472.81 355.09,472.81L352.31,472.81L364.17,484.66C367.17,487.65 368.66,491.37 368.66,495.83C368.66,500.29 367.17,504.02 364.17,507.01C361.18,510 357.45,511.49 352.96,511.49C348.46,511.49 344.72,510 341.73,507.01L302.3,467.57C298.82,464.08 297.08,460.01 297.11,455.35C297.15,450.69 298.88,446.61 302.3,443.12L341.83,403.69C344.81,400.7 348.56,399.19 353.04,399.16C357.53,399.13 361.27,400.61 364.26,403.6C367.26,406.58 368.75,410.33 368.75,414.82C368.75,419.3 367.26,423.04 364.26,426.03L352.31,437.98L354.81,437.98C379.53,437.98 400.56,429.18 417.91,411.59C435.24,394.01 443.91,372.66 443.91,347.57Z" android:strokeWidth="1"/>
</vector>

View file

@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="960"
android:viewportHeight="960"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M324.5,555.5Q310,541 310,520Q310,499 324.5,484.5Q339,470 360,470Q381,470 395.5,484.5Q410,499 410,520Q410,541 395.5,555.5Q381,570 360,570Q339,570 324.5,555.5ZM564.5,555.5Q550,541 550,520Q550,499 564.5,484.5Q579,470 600,470Q621,470 635.5,484.5Q650,499 650,520Q650,541 635.5,555.5Q621,570 600,570Q579,570 564.5,555.5ZM480,800Q614,800 707,707Q800,614 800,480Q800,456 797,433.5Q794,411 786,390Q765,395 744,397.5Q723,400 700,400Q609,400 528,361Q447,322 390,252Q358,330 298.5,387.5Q239,445 160,474Q160,476 160,477Q160,478 160,480Q160,614 253,707Q346,800 480,800ZM480,880Q397,880 324,848.5Q251,817 197,763Q143,709 111.5,636Q80,563 80,480Q80,397 111.5,324Q143,251 197,197Q251,143 324,111.5Q397,80 480,80Q563,80 636,111.5Q709,143 763,197Q817,251 848.5,324Q880,397 880,480Q880,563 848.5,636Q817,709 763,763Q709,817 636,848.5Q563,880 480,880ZM426,165Q468,235 540,277.5Q612,320 700,320Q714,320 727,318.5Q740,317 754,315Q712,245 640,202.5Q568,160 480,160Q466,160 453,161.5Q440,163 426,165ZM177,379Q228,350 266,304Q304,258 323,201Q272,230 234,276Q196,322 177,379ZM426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165Q426,165 426,165ZM323,201Q323,201 323,201Q323,201 323,201Q323,201 323,201Q323,201 323,201Z"/>
</vector>

Some files were not shown because too many files have changed in this diff Show more