Compare commits

...

4 Commits

Author SHA1 Message Date
Cloudburst 78bf779136
fix merge issue 2022-10-16 09:47:03 +02:00
Cloudburst b458baa06f
Merge branch 'master' into resource-api 2022-10-08 22:51:36 +02:00
Cloudburst c80a8e863e some fixes 2022-09-16 20:16:32 +02:00
Cloudburst 6baeadf55e let extensions patch all resources 2022-09-16 17:01:16 +02:00
12 changed files with 268 additions and 2 deletions

View File

@ -20,6 +20,7 @@ import com.lagradost.cloudstream3.utils.DataStore.getKeys
import com.lagradost.cloudstream3.utils.DataStore.removeKey
import com.lagradost.cloudstream3.utils.DataStore.removeKeys
import com.lagradost.cloudstream3.utils.DataStore.setKey
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import kotlinx.coroutines.runBlocking
import org.acra.ACRA
import org.acra.ReportField
@ -82,6 +83,7 @@ class ExceptionHandler(val errorFile: File, val onError: (() -> Unit)) :
ACRA.errorReporter.handleException(error)
try {
PrintStream(errorFile).use { ps ->
ps.println(String.format("Enabled resource pack: ${ResourcePackManager.activePackId ?: "none"}"))
ps.println(String.format("Currently loading extension: ${PluginManager.currentlyLoading ?: "none"}"))
ps.println(
String.format(

View File

@ -4,6 +4,7 @@ import android.content.ComponentName
import android.content.Intent
import android.content.res.ColorStateList
import android.content.res.Configuration
import android.content.res.Resources
import android.os.Bundle
import android.util.Log
import android.view.KeyEvent
@ -61,6 +62,9 @@ import com.lagradost.cloudstream3.ui.settings.SettingsFragment.Companion.isTvSet
import com.lagradost.cloudstream3.ui.settings.SettingsGeneral
import com.lagradost.cloudstream3.ui.setup.HAS_DONE_SETUP_KEY
import com.lagradost.cloudstream3.ui.setup.SetupFragmentExtensions
import com.lagradost.cloudstream3.utils.Event
import com.lagradost.cloudstream3.utils.IOnBackPressed
import com.lagradost.cloudstream3.utils.resources.ResourcePatch
import com.lagradost.cloudstream3.utils.AppUtils.isCastApiAvailable
import com.lagradost.cloudstream3.utils.AppUtils.loadCache
import com.lagradost.cloudstream3.utils.AppUtils.loadRepository
@ -70,8 +74,7 @@ import com.lagradost.cloudstream3.utils.Coroutines.ioSafe
import com.lagradost.cloudstream3.utils.DataStore.getKey
import com.lagradost.cloudstream3.utils.DataStore.setKey
import com.lagradost.cloudstream3.utils.DataStoreHelper.migrateResumeWatching
import com.lagradost.cloudstream3.utils.Event
import com.lagradost.cloudstream3.utils.IOnBackPressed
import com.lagradost.cloudstream3.utils.DataStoreHelper.setViewPos
import com.lagradost.cloudstream3.utils.InAppUpdater.Companion.runAutoUpdate
import com.lagradost.cloudstream3.utils.UIHelper.changeStatusBarState
import com.lagradost.cloudstream3.utils.UIHelper.checkWrite
@ -82,6 +85,7 @@ import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream3.utils.UIHelper.requestRW
import com.lagradost.cloudstream3.utils.USER_PROVIDER_API
import com.lagradost.cloudstream3.utils.USER_SELECTED_HOMEPAGE_API
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import com.lagradost.nicehttp.Requests
import com.lagradost.nicehttp.ResponseParser
import kotlinx.android.synthetic.main.activity_main.*
@ -182,6 +186,12 @@ var app = Requests(responseParser = object : ResponseParser {
}
class MainActivity : AppCompatActivity(), ColorPickerDialogListener {
private var resourcePatch: ResourcePatch? = null
override fun getResources(): Resources {
return resourcePatch ?: super.getResources()
}
companion object {
const val TAG = "MAINACT"
@ -499,6 +509,11 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener {
override fun onCreate(savedInstanceState: Bundle?) {
app.initClient(this)
val settingsManager = PreferenceManager.getDefaultSharedPreferences(this)
resourcePatch = try {
ResourcePackManager.activePack?.invoke(super.getResources())
} catch (e: Throwable) {
null
}
val errorFile = filesDir.resolve("last_error")
var lastError: String? = null

View File

@ -9,6 +9,8 @@ import com.lagradost.cloudstream3.utils.ExtractorApi
import com.lagradost.cloudstream3.utils.extractorApis
import android.util.Log
import com.fasterxml.jackson.annotation.JsonProperty
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import com.lagradost.cloudstream3.utils.resources.ResourcePatch
const val PLUGIN_TAG = "PluginInstance"
@ -50,6 +52,16 @@ abstract class Plugin {
extractorApis.add(element)
}
/**
* Used to register a new resource pack
* @param factory The function that provided the original resources will generate a ResourcePatch instance
* You should probably use MapResourcePatch
* @see com.lagradost.cloudstream3.utils.resources.MapResourcePatch
*/
fun registerResourcePack(name: String, factory: (Resources) -> ResourcePatch) {
ResourcePackManager.registerPack(name, factory, this.__filename)
}
class Manifest {
@JsonProperty("name") var name: String? = null
@JsonProperty("pluginClassName") var pluginClassName: String? = null

View File

@ -35,6 +35,7 @@ import com.lagradost.cloudstream3.utils.Coroutines.main
import com.lagradost.cloudstream3.utils.ExtractorApi
import com.lagradost.cloudstream3.utils.UIHelper.colorFromAttribute
import com.lagradost.cloudstream3.utils.extractorApis
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import kotlinx.coroutines.sync.Mutex
import kotlinx.coroutines.sync.withLock
import java.io.File
@ -413,6 +414,7 @@ object PluginManager {
}
APIHolder.allProviders.removeIf { provider: MainAPI -> provider.sourcePlugin == plugin.__filename }
extractorApis.removeIf { provider: ExtractorApi -> provider.sourcePlugin == plugin.__filename }
ResourcePackManager.unregisterPlugin(plugin.__filename)
classLoaders.values.removeIf { v -> v == plugin }

View File

@ -1,6 +1,7 @@
package com.lagradost.cloudstream3.ui.player
import android.content.Intent
import android.content.res.Resources
import android.net.Uri
import android.os.Bundle
import android.util.Log
@ -11,6 +12,9 @@ import com.lagradost.cloudstream3.CommonActivity
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.utils.ExtractorUri
import com.lagradost.cloudstream3.utils.UIHelper.navigate
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import com.lagradost.cloudstream3.utils.resources.ResourcePatch
import com.lagradost.cloudstream3.utils.resources.ResourcePatchActivity
const val DTAG = "PlayerActivity"
@ -67,6 +71,11 @@ class DownloadedPlayerActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
Log.i(DTAG, "onCreate")
resourcePatch = try {
ResourcePackManager.activePack?.invoke(super.getResources())
} catch (e: Throwable) {
null
}
CommonActivity.loadThemes(this)
super.onCreate(savedInstanceState)
@ -106,4 +115,7 @@ class DownloadedPlayerActivity : AppCompatActivity() {
return
}
}
private var resourcePatch: ResourcePatch? = null
override fun getResources(): Resources = resourcePatch ?: super.getResources()
}

View File

@ -5,6 +5,7 @@ import android.os.Bundle
import android.view.View
import androidx.preference.PreferenceFragmentCompat
import androidx.preference.PreferenceManager
import com.lagradost.cloudstream3.MainActivity
import com.lagradost.cloudstream3.R
import com.lagradost.cloudstream3.SearchQuality
import com.lagradost.cloudstream3.mvvm.logError
@ -17,6 +18,8 @@ import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showBottomDialog
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showDialog
import com.lagradost.cloudstream3.utils.SingleSelectionHelper.showMultiDialog
import com.lagradost.cloudstream3.utils.UIHelper.hideKeyboard
import com.lagradost.cloudstream3.utils.resources.ResourcePackManager
import kotlin.streams.toList
class SettingsUI : PreferenceFragmentCompat() {
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
@ -155,6 +158,27 @@ class SettingsUI : PreferenceFragmentCompat() {
}
return@setOnPreferenceClickListener true
}
getPref(R.string.active_resource_pack_key)?.setOnPreferenceClickListener {
val prefNames = ResourcePackManager.packs.keys.toMutableList()
prefNames.add(0, getString(R.string.none))
val prefValues: MutableList<String?> = ResourcePackManager.packs.keys.toMutableList()
prefValues.add(0, null)
activity?.showDialog(
prefNames.toList(),
prefValues.indexOf(ResourcePackManager.activePackId),
getString(R.string.resource_pack),
true,
{}) {
try {
ResourcePackManager.selectPack(prefValues[it])
activity?.recreate()
} catch (e: Exception) {
logError(e)
}
}
return@setOnPreferenceClickListener true
}
getPref(R.string.pref_filter_search_quality_key)?.setOnPreferenceClickListener {
val names = enumValues<SearchQuality>().sorted().map { it.name }

View File

@ -0,0 +1,47 @@
package com.lagradost.cloudstream3.utils.resources
import android.content.res.ColorStateList
import android.content.res.Resources
import android.content.res.XmlResourceParser
import android.graphics.drawable.Drawable
import android.os.Build
import android.util.Log
import androidx.annotation.RequiresApi
typealias Generator<T> = () -> T?
typealias GeneratorWithTheme<T> = (Resources.Theme?) -> T?
open class MapResourcePatch(private val original: Resources): ResourcePatch(original) {
val mapping: HashMap<Int, Any> = hashMapOf()
val idMapping: HashMap<Int, Int> = hashMapOf()
override fun mapId(id: Int): Int =
idMapping[id] ?: super.mapId(id)
override fun getLayout(id: Int): XmlResourceParser =
mapping.getMappingKA(id, null) ?: super.getLayout(id)
override fun getDrawable(id: Int, theme: Theme?): Drawable =
mapping.getMappingKA<Int, Drawable>(id, theme) ?: super.getDrawable(id, theme)
@RequiresApi(Build.VERSION_CODES.M)
override fun getColorStateList(id: Int, theme: Theme?): ColorStateList =
mapping.getMappingKA(id, theme) ?: super.getColorStateList(id, theme)
override fun getXml(id: Int): XmlResourceParser =
mapping.getMappingKA(id, null) ?: super.getXml(id)
@RequiresApi(Build.VERSION_CODES.M)
override fun getColor(id: Int, theme: Theme?): Int =
mapping.getMappingKA(id, theme) ?: super.getColor(id, theme)
}
private inline fun <K, reified V> HashMap<K, Any>.getMappingKA(id: K?, theme: Resources.Theme?): V? {
return when (val res = this[id]) {
equals(null) -> null
is V -> res
is Function0<*> -> (res as? Generator<V>)?.invoke()
is Function1<*, *> -> (res as? GeneratorWithTheme<V>)?.invoke(theme)
else -> null
}
}

View File

@ -0,0 +1,61 @@
package com.lagradost.cloudstream3.utils.resources
import android.content.res.Resources
import android.util.Log
import com.lagradost.cloudstream3.AcraApplication
import com.lagradost.cloudstream3.AcraApplication.Companion.getActivity
import com.lagradost.cloudstream3.AcraApplication.Companion.getKey
import com.lagradost.cloudstream3.AcraApplication.Companion.setKey
import com.lagradost.cloudstream3.MainActivity.Companion.afterPluginsLoadedEvent
typealias PatchFactory = (Resources) -> ResourcePatch
object ResourcePackManager {
private const val KEY = "ResourcePackManager"
const val SETTINGS_KEY = "active_resource_pack_key" // TODO
val packs: HashMap<String, PatchFactory> = hashMapOf()
private val pluginMapping: HashMap<String, ArrayList<String>> = hashMapOf()
var activePackId: String? = null
internal set
val activePack: PatchFactory?
get() = if (activePackId == null) null else packs[activePackId]
init {
afterPluginsLoadedEvent += ::onExtensionsLoaded
}
fun registerPack(name: String, factory: PatchFactory, pluginId: String?) {
packs[name] = factory
if (pluginId != null) {
if (!pluginMapping.containsKey(pluginId))
pluginMapping[pluginId] = arrayListOf()
pluginMapping[pluginId]?.add(name)
}
}
fun unregisterPlugin(pluginId: String?) {
pluginMapping[pluginId]?.forEach {
packs.remove(it)
if (activePackId == it) // if pack is being removed make sure its not set
selectPack(null)
}
pluginMapping.remove(pluginId)
}
fun selectPack(packId: String?) {
activePackId = if (packId == null) null
else if (packs.containsKey(packId)) packId
else null
Log.d(KEY, "Selecting: ${activePackId ?: "none"}")
setKey(SETTINGS_KEY, activePackId)
}
private fun onExtensionsLoaded(successful: Boolean = false) {
if (!successful) return
activePackId = getKey(SETTINGS_KEY)
Log.d(KEY, "Selecting saved: ${activePackId ?: "none"}")
}
}

View File

@ -0,0 +1,80 @@
package com.lagradost.cloudstream3.utils.resources
import android.annotation.SuppressLint
import android.content.res.*
import android.content.res.loader.ResourcesLoader
import android.graphics.Typeface
import android.graphics.drawable.Drawable
import android.os.Build
import android.os.Bundle
import android.util.AttributeSet
import android.util.DisplayMetrics
import android.util.TypedValue
import androidx.annotation.RequiresApi
import java.io.InputStream
open class ResourcePatch(private val original: Resources) :
Resources(original.assets, original.displayMetrics, original.configuration) {
open fun mapId(id: Int): Int = id
@RequiresApi(Build.VERSION_CODES.R)
override fun addLoaders(vararg loaders: ResourcesLoader?) = original.addLoaders(*loaders)
override fun getAnimation(id: Int): XmlResourceParser = original.getAnimation(mapId(id))
override fun getBoolean(id: Int): Boolean = original.getBoolean(mapId(id))
@RequiresApi(Build.VERSION_CODES.M)
override fun getColor(id: Int, theme: Theme?): Int = original.getColor(mapId(id), theme)
override fun getConfiguration(): Configuration = original.configuration
override fun getDisplayMetrics(): DisplayMetrics = original.displayMetrics
@RequiresApi(Build.VERSION_CODES.M)
override fun getColorStateList(id: Int, theme: Theme?): ColorStateList = original.getColorStateList(mapId(id), theme)
override fun getLayout(id: Int): XmlResourceParser = original.getLayout(mapId(id))
override fun getDimension(id: Int): Float = original.getDimension(mapId(id))
override fun getIdentifier(name: String?, defType: String?, defPackage: String?): Int = original.getIdentifier(name, defType, defPackage)
override fun getDimensionPixelOffset(id: Int): Int = original.getDimensionPixelOffset(mapId(id))
override fun getDimensionPixelSize(id: Int): Int = original.getDimensionPixelSize(mapId(id))
@SuppressLint("UseCompatLoadingForDrawables")
override fun getDrawable(id: Int, theme: Theme?): Drawable = original.getDrawable(mapId(id), theme)
override fun getDrawableForDensity(id: Int, density: Int, theme: Theme?): Drawable? = original.getDrawableForDensity(mapId(id), density, theme)
@RequiresApi(Build.VERSION_CODES.Q)
override fun getFloat(id: Int): Float = original.getFloat(mapId(id))
@RequiresApi(Build.VERSION_CODES.O)
override fun getFont(id: Int): Typeface = original.getFont(mapId(id))
override fun getIntArray(id: Int): IntArray = original.getIntArray(mapId(id))
override fun getFraction(id: Int, base: Int, pbase: Int): Float = original.getFraction(mapId(id), base, pbase)
override fun getInteger(id: Int): Int = original.getInteger(mapId(id))
override fun getQuantityString(id: Int, quantity: Int): String = original.getQuantityString(mapId(id), quantity)
override fun getQuantityString(id: Int, quantity: Int, vararg formatArgs: Any?): String = original.getQuantityString(mapId(id), quantity, *formatArgs)
override fun getQuantityText(id: Int, quantity: Int): CharSequence = original.getQuantityText(mapId(id), quantity)
override fun getResourceEntryName(id: Int): String = original.getResourceEntryName(mapId(id))
override fun getResourceName(id: Int): String = original.getResourceName(mapId(id))
override fun getResourcePackageName(id: Int): String = original.getResourcePackageName(mapId(id))
override fun getResourceTypeName(id: Int): String = original.getResourceTypeName(mapId(id))
override fun getString(id: Int): String = original.getString(mapId(id))
override fun getString(id: Int, vararg formatArgs: Any?): String = original.getString(mapId(id), *formatArgs)
override fun getStringArray(id: Int): Array<String> = original.getStringArray(mapId(id))
override fun getText(id: Int): CharSequence = original.getText(mapId(id))
override fun getText(id: Int, def: CharSequence?): CharSequence = original.getText(mapId(id), def)
override fun getTextArray(id: Int): Array<CharSequence> = original.getTextArray(mapId(id))
override fun getValue(id: Int, outValue: TypedValue?, resolveRefs: Boolean) = original.getValue(mapId(id), outValue, resolveRefs)
override fun getValue(name: String?, outValue: TypedValue?, resolveRefs: Boolean) = original.getValue(name, outValue, resolveRefs)
override fun getValueForDensity(id: Int, density: Int, outValue: TypedValue?, resolveRefs: Boolean) = original.getValueForDensity(mapId(id), density, outValue, resolveRefs)
override fun getXml(id: Int): XmlResourceParser = original.getXml(mapId(id))
override fun obtainTypedArray(id: Int): TypedArray = original.obtainTypedArray(mapId(id))
override fun openRawResource(id: Int): InputStream = original.openRawResource(mapId(id))
override fun openRawResource(id: Int, value: TypedValue?): InputStream = original.openRawResource(mapId(id), value)
override fun openRawResourceFd(id: Int): AssetFileDescriptor = original.openRawResourceFd(mapId(id))
override fun obtainAttributes(set: AttributeSet?, attrs: IntArray?): TypedArray = original.obtainAttributes(set, attrs)
override fun parseBundleExtra(tagName: String?, attrs: AttributeSet?, outBundle: Bundle?) = original.parseBundleExtra(tagName, attrs, outBundle)
override fun parseBundleExtras(parser: XmlResourceParser?, outBundle: Bundle?) = original.parseBundleExtras(parser, outBundle)
@RequiresApi(Build.VERSION_CODES.R)
override fun removeLoaders(vararg loaders: ResourcesLoader?) = original.removeLoaders(*loaders)
override fun equals(other: Any?): Boolean = original == other
override fun hashCode(): Int = original.hashCode()
override fun getColor(id: Int): Int = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) getColor(mapId(id), null) else original.getColor(mapId(id))
@SuppressLint("UseCompatLoadingForColorStateLists")
override fun getColorStateList(id: Int): ColorStateList = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) getColorStateList(mapId(id), null) else original.getColorStateList(mapId(id))
@SuppressLint("UseCompatLoadingForDrawables")
override fun getDrawable(id: Int): Drawable = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) getDrawable(mapId(id), null) else original.getDrawable(mapId(id))
}

View File

@ -0,0 +1,5 @@
package com.lagradost.cloudstream3.utils.resources
interface ResourcePatchActivity {
fun reloadResourcePatch()
}

View File

@ -42,6 +42,7 @@
<string name="app_name_download_path" translatable="false">Cloudstream</string>
<string name="app_layout_key" translatable="false">app_layout_key</string>
<string name="primary_color_key" translatable="false">primary_color_key</string>
<string name="active_resource_pack_key" translatable="false">active_resource_pack_key</string>
<string name="restore_key" translatable="false">restore_key</string>
<string name="backup_key" translatable="false">backup_key</string>
<string name="prefer_media_type_key" translatable="false">prefer_media_type_key_2</string>
@ -458,6 +459,7 @@
<string name="primary_color_settings">Primary color</string>
<string name="app_theme_settings">App theme</string>
<string name="resource_pack">Resource pack</string>
<string name="bottom_title_settings">Poster title location</string>
<string name="bottom_title_settings_des">Put the title under the poster</string>

View File

@ -9,6 +9,10 @@
android:icon="@drawable/ic_baseline_color_lens_24"
android:key="@string/app_theme_key"
android:title="@string/app_theme_settings" />
<Preference
android:icon="@drawable/ic_baseline_extension_24"
android:key="@string/active_resource_pack_key"
android:title="@string/resource_pack" />
<Preference
android:icon="@drawable/ic_baseline_tv_24"
android:key="@string/app_layout_key"