mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-15 23:35:06 +00:00
76 lines
2.8 KiB
Kotlin
76 lines
2.8 KiB
Kotlin
|
package com.vanced.manager.model
|
||
|
|
||
|
import android.content.Context
|
||
|
import android.graphics.drawable.Drawable
|
||
|
import androidx.preference.PreferenceManager.getDefaultSharedPreferences
|
||
|
import com.vanced.manager.utils.InternetTools.getJsonInt
|
||
|
import com.vanced.manager.utils.InternetTools.getJsonString
|
||
|
import com.vanced.manager.utils.PackageHelper.isPackageInstalled
|
||
|
|
||
|
open class DataModel(
|
||
|
private val jsonName: String,
|
||
|
private val context: Context
|
||
|
) {
|
||
|
|
||
|
private val variant = getDefaultSharedPreferences(context).getString("vanced_variant")
|
||
|
|
||
|
private val appPkg =
|
||
|
when (jsonName) {
|
||
|
"vanced" -> if (variant == "root") "com.google.android.youtube" else "com.vanced.android.youtube"
|
||
|
"microg" -> "com.mgoogle.android.gms"
|
||
|
"music" -> "com.vanced.android.youtube.music"
|
||
|
}
|
||
|
|
||
|
open fun isAppInstalled(): Boolean = isPackageInstalled(appPkg, context.packageManager)
|
||
|
|
||
|
open fun getVersionName(): String = getJsonString("$jsonName.json", "version")
|
||
|
|
||
|
open fun getVersionCode(): Int = getJsonInt("$jsonName.json", "versionCode")
|
||
|
|
||
|
open fun getInstalledVersionName(): String = getPkgVersion(isAppInstalled(), pkgPkg)
|
||
|
|
||
|
open fun getInstalledVersionCode(): Int = getJsonInt("$jsonName.json", "versionCode")
|
||
|
|
||
|
open fun getButtonTxt(): String = compareInt(getInstalledVersionCode(), getVersionCode())
|
||
|
|
||
|
open fun getButtonIcon(): Drawable = compareIntDrawable(getInstalledVersionCode(), getVersionCode())
|
||
|
|
||
|
private fun getPkgVersion(toCheck: Boolean, pkg: String): String {
|
||
|
return if (toCheck) {
|
||
|
pm.getPackageInfo(pkg, 0).versionName
|
||
|
} else {
|
||
|
context.getString(R.string.unavailable)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Suppress("DEPRECATION")
|
||
|
private fun getPkgVerCode(toCheck: Boolean, pkg: String): Int {
|
||
|
return if (toCheck) {
|
||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P)
|
||
|
pm.getPackageInfo(pkg, 0).longVersionCode.and(0xFFFFFFFF).toInt()
|
||
|
else
|
||
|
pm.getPackageInfo(pkg, 0).versionCode
|
||
|
} else 0
|
||
|
}
|
||
|
|
||
|
private fun compareInt(int1: Int, int2: Int): String {
|
||
|
return when {
|
||
|
int1 == 0 -> context.getString(R.string.install)
|
||
|
int2 > int1 -> context.getString(R.string.update)
|
||
|
int2 == int1 || int1 > int2 -> context.getString(R.string.button_reinstall)
|
||
|
else -> context.getString(R.string.install)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
private fun compareIntDrawable(int1: Int, int2: Int): Drawable? {
|
||
|
return when {
|
||
|
int1 == 0 -> context.getDrawable(R.drawable.ic_download)
|
||
|
int2 > int1 -> context.getDrawable(R.drawable.ic_update)
|
||
|
int2 == int1 -> context.getDrawable(R.drawable.ic_done)
|
||
|
else -> context.getDrawable(R.drawable.ic_download)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|