123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- package eu.kanade.tachiyomi.ui.setting
- import android.app.Dialog
- import android.content.Intent
- import android.net.Uri
- import android.os.Bundle
- import android.support.v7.preference.PreferenceScreen
- import android.view.View
- import com.afollestad.materialdialogs.MaterialDialog
- import eu.kanade.tachiyomi.BuildConfig
- import eu.kanade.tachiyomi.R
- import eu.kanade.tachiyomi.data.updater.GithubUpdateChecker
- import eu.kanade.tachiyomi.data.updater.GithubUpdateResult
- import eu.kanade.tachiyomi.data.updater.UpdaterJob
- import eu.kanade.tachiyomi.data.updater.UpdaterService
- import eu.kanade.tachiyomi.ui.base.controller.DialogController
- import eu.kanade.tachiyomi.util.toast
- import rx.Subscription
- import rx.android.schedulers.AndroidSchedulers
- import rx.schedulers.Schedulers
- import timber.log.Timber
- import java.text.DateFormat
- import java.text.ParseException
- import java.text.SimpleDateFormat
- import java.util.*
- import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
- class SettingsAboutController : SettingsController() {
- /**
- * Checks for new releases
- */
- private val updateChecker by lazy { GithubUpdateChecker() }
- /**
- * The subscribtion service of the obtained release object
- */
- private var releaseSubscription: Subscription? = null
- private val isUpdaterEnabled = !BuildConfig.DEBUG && BuildConfig.INCLUDE_UPDATER
- override fun setupPreferenceScreen(screen: PreferenceScreen) = with(screen) {
- titleRes = R.string.pref_category_about
- switchPreference {
- key = "acra.enable"
- titleRes = R.string.pref_enable_acra
- summaryRes = R.string.pref_acra_summary
- defaultValue = true
- }
- switchPreference {
- key = Keys.automaticUpdates
- titleRes = R.string.pref_enable_automatic_updates
- summaryRes = R.string.pref_enable_automatic_updates_summary
- defaultValue = false
- if (isUpdaterEnabled) {
- onChange { newValue ->
- val checked = newValue as Boolean
- if (checked) {
- UpdaterJob.setupTask()
- } else {
- UpdaterJob.cancelTask()
- }
- true
- }
- } else {
- isVisible = false
- }
- }
- preference {
- title = "Discord"
- val url = "https://discord.gg/2dDQBv2"
- summary = url
- onClick {
- val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
- startActivity(intent)
- }
- }
- preference {
- titleRes = R.string.version
- summary = if (BuildConfig.DEBUG)
- "r" + BuildConfig.COMMIT_COUNT
- else
- BuildConfig.VERSION_NAME
- if (isUpdaterEnabled) {
- onClick { checkVersion() }
- }
- }
- preference {
- titleRes = R.string.build_time
- summary = getFormattedBuildTime()
- }
- preference {
- title = "Github"
- val url = "https://github.com/inorichi/tachiyomi"
- summary = url
- onClick {
- val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
- startActivity(intent)
- }
- }
- }
- override fun onDestroyView(view: View) {
- super.onDestroyView(view)
- releaseSubscription?.unsubscribe()
- releaseSubscription = null
- }
- /**
- * Checks version and shows a user prompt if an update is available.
- */
- private fun checkVersion() {
- if (activity == null) return
- activity?.toast(R.string.update_check_look_for_updates)
- releaseSubscription?.unsubscribe()
- releaseSubscription = updateChecker.checkForUpdate()
- .subscribeOn(Schedulers.io())
- .observeOn(AndroidSchedulers.mainThread())
- .subscribe({ result ->
- when (result) {
- is GithubUpdateResult.NewUpdate -> {
- val body = result.release.changeLog
- val url = result.release.downloadLink
- // Create confirmation window
- NewUpdateDialogController(body, url).showDialog(router)
- }
- is GithubUpdateResult.NoNewUpdate -> {
- activity?.toast(R.string.update_check_no_new_updates)
- }
- }
- }, { error ->
- activity?.toast(error.message)
- Timber.e(error)
- })
- }
- class NewUpdateDialogController(bundle: Bundle? = null) : DialogController(bundle) {
- constructor(body: String, url: String) : this(Bundle().apply {
- putString(BODY_KEY, body)
- putString(URL_KEY, url)
- })
- override fun onCreateDialog(savedViewState: Bundle?): Dialog {
- return MaterialDialog.Builder(activity!!)
- .title(R.string.update_check_title)
- .content(args.getString(BODY_KEY))
- .positiveText(R.string.update_check_confirm)
- .negativeText(R.string.update_check_ignore)
- .onPositive { _, _ ->
- val appContext = applicationContext
- if (appContext != null) {
- // Start download
- val url = args.getString(URL_KEY)
- UpdaterService.downloadUpdate(appContext, url)
- }
- }
- .build()
- }
- private companion object {
- const val BODY_KEY = "NewUpdateDialogController.body"
- const val URL_KEY = "NewUpdateDialogController.key"
- }
- }
- private fun getFormattedBuildTime(): String {
- try {
- val inputDf = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'", Locale.US)
- inputDf.timeZone = TimeZone.getTimeZone("UTC")
- val date = inputDf.parse(BuildConfig.BUILD_TIME)
- val outputDf = DateFormat.getDateTimeInstance(
- DateFormat.MEDIUM, DateFormat.SHORT, Locale.getDefault())
- outputDf.timeZone = TimeZone.getDefault()
- return outputDf.format(date)
- } catch (e: ParseException) {
- return BuildConfig.BUILD_TIME
- }
- }
- }
|