SettingsAboutController.kt 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package eu.kanade.tachiyomi.ui.setting
  2. import android.app.Dialog
  3. import android.content.Intent
  4. import android.net.Uri
  5. import android.os.Bundle
  6. import android.support.v7.preference.PreferenceScreen
  7. import android.view.View
  8. import com.afollestad.materialdialogs.MaterialDialog
  9. import eu.kanade.tachiyomi.BuildConfig
  10. import eu.kanade.tachiyomi.R
  11. import eu.kanade.tachiyomi.data.updater.GithubUpdateChecker
  12. import eu.kanade.tachiyomi.data.updater.GithubUpdateResult
  13. import eu.kanade.tachiyomi.data.updater.UpdaterJob
  14. import eu.kanade.tachiyomi.data.updater.UpdaterService
  15. import eu.kanade.tachiyomi.ui.base.controller.DialogController
  16. import eu.kanade.tachiyomi.util.toast
  17. import rx.Subscription
  18. import rx.android.schedulers.AndroidSchedulers
  19. import rx.schedulers.Schedulers
  20. import timber.log.Timber
  21. import java.text.DateFormat
  22. import java.text.ParseException
  23. import java.text.SimpleDateFormat
  24. import java.util.*
  25. import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
  26. class SettingsAboutController : SettingsController() {
  27. /**
  28. * Checks for new releases
  29. */
  30. private val updateChecker by lazy { GithubUpdateChecker() }
  31. /**
  32. * The subscribtion service of the obtained release object
  33. */
  34. private var releaseSubscription: Subscription? = null
  35. private val isUpdaterEnabled = !BuildConfig.DEBUG && BuildConfig.INCLUDE_UPDATER
  36. override fun setupPreferenceScreen(screen: PreferenceScreen) = with(screen) {
  37. titleRes = R.string.pref_category_about
  38. switchPreference {
  39. key = "acra.enable"
  40. titleRes = R.string.pref_enable_acra
  41. summaryRes = R.string.pref_acra_summary
  42. defaultValue = true
  43. }
  44. switchPreference {
  45. key = Keys.automaticUpdates
  46. titleRes = R.string.pref_enable_automatic_updates
  47. summaryRes = R.string.pref_enable_automatic_updates_summary
  48. defaultValue = false
  49. if (isUpdaterEnabled) {
  50. onChange { newValue ->
  51. val checked = newValue as Boolean
  52. if (checked) {
  53. UpdaterJob.setupTask()
  54. } else {
  55. UpdaterJob.cancelTask()
  56. }
  57. true
  58. }
  59. } else {
  60. isVisible = false
  61. }
  62. }
  63. preference {
  64. title = "Discord"
  65. val url = "https://discord.gg/2dDQBv2"
  66. summary = url
  67. onClick {
  68. val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
  69. startActivity(intent)
  70. }
  71. }
  72. preference {
  73. titleRes = R.string.version
  74. summary = if (BuildConfig.DEBUG)
  75. "r" + BuildConfig.COMMIT_COUNT
  76. else
  77. BuildConfig.VERSION_NAME
  78. if (isUpdaterEnabled) {
  79. onClick { checkVersion() }
  80. }
  81. }
  82. preference {
  83. titleRes = R.string.build_time
  84. summary = getFormattedBuildTime()
  85. }
  86. preference {
  87. title = "Github"
  88. val url = "https://github.com/inorichi/tachiyomi"
  89. summary = url
  90. onClick {
  91. val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
  92. startActivity(intent)
  93. }
  94. }
  95. }
  96. override fun onDestroyView(view: View) {
  97. super.onDestroyView(view)
  98. releaseSubscription?.unsubscribe()
  99. releaseSubscription = null
  100. }
  101. /**
  102. * Checks version and shows a user prompt if an update is available.
  103. */
  104. private fun checkVersion() {
  105. if (activity == null) return
  106. activity?.toast(R.string.update_check_look_for_updates)
  107. releaseSubscription?.unsubscribe()
  108. releaseSubscription = updateChecker.checkForUpdate()
  109. .subscribeOn(Schedulers.io())
  110. .observeOn(AndroidSchedulers.mainThread())
  111. .subscribe({ result ->
  112. when (result) {
  113. is GithubUpdateResult.NewUpdate -> {
  114. val body = result.release.changeLog
  115. val url = result.release.downloadLink
  116. // Create confirmation window
  117. NewUpdateDialogController(body, url).showDialog(router)
  118. }
  119. is GithubUpdateResult.NoNewUpdate -> {
  120. activity?.toast(R.string.update_check_no_new_updates)
  121. }
  122. }
  123. }, { error ->
  124. activity?.toast(error.message)
  125. Timber.e(error)
  126. })
  127. }
  128. class NewUpdateDialogController(bundle: Bundle? = null) : DialogController(bundle) {
  129. constructor(body: String, url: String) : this(Bundle().apply {
  130. putString(BODY_KEY, body)
  131. putString(URL_KEY, url)
  132. })
  133. override fun onCreateDialog(savedViewState: Bundle?): Dialog {
  134. return MaterialDialog.Builder(activity!!)
  135. .title(R.string.update_check_title)
  136. .content(args.getString(BODY_KEY))
  137. .positiveText(R.string.update_check_confirm)
  138. .negativeText(R.string.update_check_ignore)
  139. .onPositive { _, _ ->
  140. val appContext = applicationContext
  141. if (appContext != null) {
  142. // Start download
  143. val url = args.getString(URL_KEY)
  144. UpdaterService.downloadUpdate(appContext, url)
  145. }
  146. }
  147. .build()
  148. }
  149. private companion object {
  150. const val BODY_KEY = "NewUpdateDialogController.body"
  151. const val URL_KEY = "NewUpdateDialogController.key"
  152. }
  153. }
  154. private fun getFormattedBuildTime(): String {
  155. try {
  156. val inputDf = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'", Locale.US)
  157. inputDf.timeZone = TimeZone.getTimeZone("UTC")
  158. val date = inputDf.parse(BuildConfig.BUILD_TIME)
  159. val outputDf = DateFormat.getDateTimeInstance(
  160. DateFormat.MEDIUM, DateFormat.SHORT, Locale.getDefault())
  161. outputDf.timeZone = TimeZone.getDefault()
  162. return outputDf.format(date)
  163. } catch (e: ParseException) {
  164. return BuildConfig.BUILD_TIME
  165. }
  166. }
  167. }