Magisk/app/src/main/java/com/topjohnwu/magisk/dialog/ManagerInstallDialog.kt

41 lines
1.3 KiB
Kotlin
Raw Normal View History

2023-04-03 17:46:49 -07:00
package com.topjohnwu.magisk.dialog
2019-10-08 20:29:11 +02:00
import com.topjohnwu.magisk.R
2020-01-29 01:49:59 +08:00
import com.topjohnwu.magisk.core.Info
2022-05-25 05:48:02 -07:00
import com.topjohnwu.magisk.core.di.AppContext
import com.topjohnwu.magisk.core.di.ServiceLocator
import com.topjohnwu.magisk.core.download.DownloadManager
2020-08-21 06:45:40 -07:00
import com.topjohnwu.magisk.core.download.Subject
2019-10-08 20:29:11 +02:00
import com.topjohnwu.magisk.view.MagiskDialog
2021-01-24 06:55:43 -08:00
import java.io.File
2019-10-08 20:29:11 +02:00
class ManagerInstallDialog : MarkDownDialog() {
2019-10-08 20:29:11 +02:00
2021-04-18 04:46:11 -07:00
private val svc get() = ServiceLocator.networkService
2019-10-08 20:29:11 +02:00
2021-01-24 06:55:43 -08:00
override suspend fun getMarkdownText(): String {
val text = svc.fetchString(Info.remote.magisk.note)
// Cache the changelog
2021-04-18 04:46:11 -07:00
AppContext.cacheDir.listFiles { _, name -> name.endsWith(".md") }.orEmpty().forEach {
2021-01-24 06:55:43 -08:00
it.delete()
}
2021-04-18 04:46:11 -07:00
File(AppContext.cacheDir, "${Info.remote.magisk.versionCode}.md").writeText(text)
2021-01-24 06:55:43 -08:00
return text
}
2019-10-08 20:29:11 +02:00
override fun build(dialog: MagiskDialog) {
super.build(dialog)
2022-01-21 00:50:02 -08:00
dialog.apply {
2019-10-08 20:29:11 +02:00
setCancelable(true)
2022-01-21 00:50:02 -08:00
setButton(MagiskDialog.ButtonType.POSITIVE) {
text = R.string.install
onClick { DownloadManager.start(activity, Subject.App()) }
2019-10-08 20:29:11 +02:00
}
2022-01-21 00:50:02 -08:00
setButton(MagiskDialog.ButtonType.NEGATIVE) {
text = android.R.string.cancel
2019-10-08 20:29:11 +02:00
}
}
}
2020-01-13 22:01:46 +08:00
}