mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-16 13:41:25 +00:00
75 lines
2.6 KiB
Kotlin
75 lines
2.6 KiB
Kotlin
package com.topjohnwu.magisk.utils
|
|
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import android.content.res.Resources
|
|
import android.net.Uri
|
|
import android.os.Environment
|
|
import android.widget.Toast
|
|
import androidx.work.*
|
|
import com.topjohnwu.magisk.*
|
|
import com.topjohnwu.magisk.R
|
|
import com.topjohnwu.magisk.extensions.get
|
|
import com.topjohnwu.magisk.model.update.UpdateCheckService
|
|
import com.topjohnwu.superuser.internal.UiThreadHandler
|
|
import java.io.File
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
object Utils {
|
|
|
|
val isCanary: Boolean = BuildConfig.VERSION_NAME.contains("-")
|
|
|
|
fun toast(msg: CharSequence, duration: Int) {
|
|
UiThreadHandler.run { Toast.makeText(get(), msg, duration).show() }
|
|
}
|
|
|
|
fun toast(resId: Int, duration: Int) {
|
|
UiThreadHandler.run { Toast.makeText(get(), resId, duration).show() }
|
|
}
|
|
|
|
fun dpInPx(dp: Int): Int {
|
|
val scale = get<Resources>().displayMetrics.density
|
|
return (dp * scale + 0.5).toInt()
|
|
}
|
|
|
|
fun showSuperUser(): Boolean {
|
|
return Info.env.isActive && (Const.USER_ID == 0
|
|
|| Config.suMultiuserMode != Config.Value.MULTIUSER_MODE_OWNER_MANAGED)
|
|
}
|
|
|
|
fun scheduleUpdateCheck(context: Context) {
|
|
if (Config.checkUpdate) {
|
|
val constraints = Constraints.Builder()
|
|
.setRequiredNetworkType(NetworkType.CONNECTED)
|
|
.setRequiresDeviceIdle(true)
|
|
.build()
|
|
val request = PeriodicWorkRequest
|
|
.Builder(ClassMap[UpdateCheckService::class.java] as Class<Worker>, 12, TimeUnit.HOURS)
|
|
.setConstraints(constraints)
|
|
.build()
|
|
WorkManager.getInstance(context).enqueueUniquePeriodicWork(
|
|
Const.ID.CHECK_MAGISK_UPDATE_WORKER_ID,
|
|
ExistingPeriodicWorkPolicy.REPLACE, request)
|
|
} else {
|
|
WorkManager.getInstance(context)
|
|
.cancelUniqueWork(Const.ID.CHECK_MAGISK_UPDATE_WORKER_ID)
|
|
}
|
|
}
|
|
|
|
fun openLink(context: Context, link: Uri) {
|
|
val intent = Intent(Intent.ACTION_VIEW, link)
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
|
if (intent.resolveActivity(context.packageManager) != null) {
|
|
context.startActivity(intent)
|
|
} else {
|
|
toast(R.string.open_link_failed_toast, Toast.LENGTH_SHORT)
|
|
}
|
|
}
|
|
|
|
fun ensureDownloadPath(path : String) =
|
|
File(Environment.getExternalStorageDirectory(), path).run {
|
|
if ((exists() && isDirectory) || mkdirs()) this else null
|
|
}
|
|
|
|
}
|