2017-05-21 07:42:06 -04:00
|
|
|
package eu.kanade.tachiyomi
|
|
|
|
|
2020-09-14 17:52:00 -04:00
|
|
|
import androidx.core.content.edit
|
|
|
|
import androidx.preference.PreferenceManager
|
2020-03-13 17:29:51 -04:00
|
|
|
import eu.kanade.tachiyomi.data.backup.BackupCreatorJob
|
2017-05-21 07:42:06 -04:00
|
|
|
import eu.kanade.tachiyomi.data.library.LibraryUpdateJob
|
2020-09-15 17:53:01 -04:00
|
|
|
import eu.kanade.tachiyomi.data.preference.PreferenceKeys
|
2017-05-21 07:42:06 -04:00
|
|
|
import eu.kanade.tachiyomi.data.preference.PreferencesHelper
|
2017-12-11 14:01:28 -05:00
|
|
|
import eu.kanade.tachiyomi.data.updater.UpdaterJob
|
2020-03-20 22:53:24 -04:00
|
|
|
import eu.kanade.tachiyomi.extension.ExtensionUpdateJob
|
2020-05-01 19:59:08 -04:00
|
|
|
import eu.kanade.tachiyomi.ui.library.LibrarySort
|
2020-09-14 17:52:00 -04:00
|
|
|
import eu.kanade.tachiyomi.widget.ExtendedNavigationView
|
2017-05-21 07:42:06 -04:00
|
|
|
import java.io.File
|
|
|
|
|
|
|
|
object Migrations {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a migration when the application is updated.
|
|
|
|
*
|
|
|
|
* @param preferences Preferences of the application.
|
|
|
|
* @return true if a migration is performed, false otherwise.
|
|
|
|
*/
|
|
|
|
fun upgrade(preferences: PreferencesHelper): Boolean {
|
|
|
|
val context = preferences.context
|
2020-04-17 20:12:43 -04:00
|
|
|
val oldVersion = preferences.lastVersionCode().get()
|
2020-04-24 10:39:55 -04:00
|
|
|
|
|
|
|
// Cancel app updater job for debug builds that don't include it
|
|
|
|
if (BuildConfig.DEBUG && !BuildConfig.INCLUDE_UPDATER) {
|
|
|
|
UpdaterJob.cancelTask(context)
|
|
|
|
}
|
|
|
|
|
2017-05-21 07:42:06 -04:00
|
|
|
if (oldVersion < BuildConfig.VERSION_CODE) {
|
|
|
|
preferences.lastVersionCode().set(BuildConfig.VERSION_CODE)
|
|
|
|
|
2020-03-07 13:11:02 -05:00
|
|
|
// Fresh install
|
|
|
|
if (oldVersion == 0) {
|
2020-04-30 20:27:02 -04:00
|
|
|
// Set up default background tasks
|
2020-04-24 10:39:55 -04:00
|
|
|
if (BuildConfig.INCLUDE_UPDATER) {
|
2020-03-07 13:11:02 -05:00
|
|
|
UpdaterJob.setupTask(context)
|
|
|
|
}
|
2020-04-29 09:42:56 -04:00
|
|
|
ExtensionUpdateJob.setupTask(context)
|
2020-04-30 20:27:02 -04:00
|
|
|
LibraryUpdateJob.setupTask(context)
|
2020-03-07 13:11:02 -05:00
|
|
|
return false
|
|
|
|
}
|
2017-05-21 07:42:06 -04:00
|
|
|
|
|
|
|
if (oldVersion < 14) {
|
2020-03-07 13:00:58 -05:00
|
|
|
// Restore jobs after upgrading to Evernote's job scheduler.
|
2020-04-24 10:39:55 -04:00
|
|
|
if (BuildConfig.INCLUDE_UPDATER) {
|
2020-03-07 13:00:58 -05:00
|
|
|
UpdaterJob.setupTask(context)
|
2017-05-21 07:42:06 -04:00
|
|
|
}
|
2020-03-07 13:00:58 -05:00
|
|
|
LibraryUpdateJob.setupTask(context)
|
2017-05-21 07:42:06 -04:00
|
|
|
}
|
|
|
|
if (oldVersion < 15) {
|
|
|
|
// Delete internal chapter cache dir.
|
|
|
|
File(context.cacheDir, "chapter_disk_cache").deleteRecursively()
|
|
|
|
}
|
|
|
|
if (oldVersion < 19) {
|
|
|
|
// Move covers to external files dir.
|
|
|
|
val oldDir = File(context.externalCacheDir, "cover_disk_cache")
|
|
|
|
if (oldDir.exists()) {
|
|
|
|
val destDir = context.getExternalFilesDir("covers")
|
|
|
|
if (destDir != null) {
|
2020-03-07 13:00:58 -05:00
|
|
|
oldDir.listFiles()?.forEach {
|
2017-05-21 07:42:06 -04:00
|
|
|
it.renameTo(File(destDir, it.name))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-10 06:29:04 -04:00
|
|
|
if (oldVersion < 26) {
|
|
|
|
// Delete external chapter cache dir.
|
|
|
|
val extCache = context.externalCacheDir
|
|
|
|
if (extCache != null) {
|
|
|
|
val chapterCache = File(extCache, "chapter_disk_cache")
|
|
|
|
if (chapterCache.exists()) {
|
|
|
|
chapterCache.deleteRecursively()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-13 17:29:51 -04:00
|
|
|
if (oldVersion < 43) {
|
|
|
|
// Restore jobs after migrating from Evernote's job scheduler to WorkManager.
|
2020-04-24 10:39:55 -04:00
|
|
|
if (BuildConfig.INCLUDE_UPDATER) {
|
2020-03-13 17:29:51 -04:00
|
|
|
UpdaterJob.setupTask(context)
|
|
|
|
}
|
|
|
|
LibraryUpdateJob.setupTask(context)
|
|
|
|
BackupCreatorJob.setupTask(context)
|
2020-04-29 09:09:18 -04:00
|
|
|
|
|
|
|
// New extension update check job
|
2020-04-29 09:42:56 -04:00
|
|
|
ExtensionUpdateJob.setupTask(context)
|
2020-03-13 17:29:51 -04:00
|
|
|
}
|
2020-05-01 19:59:08 -04:00
|
|
|
if (oldVersion < 44) {
|
|
|
|
// Reset sorting preference if using removed sort by source
|
|
|
|
if (preferences.librarySortingMode().get() == LibrarySort.SOURCE) {
|
|
|
|
preferences.librarySortingMode().set(LibrarySort.ALPHA)
|
|
|
|
}
|
|
|
|
}
|
2020-09-14 17:52:00 -04:00
|
|
|
if (oldVersion < 52) {
|
|
|
|
// Migrate library filters to tri-state versions
|
|
|
|
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
|
|
|
|
fun convertBooleanPrefToTriState(key: String): Int {
|
|
|
|
val oldPrefValue = prefs.getBoolean(key, false)
|
2020-09-27 18:13:20 -04:00
|
|
|
return if (oldPrefValue) ExtendedNavigationView.Item.TriStateGroup.State.INCLUDE.value
|
|
|
|
else ExtendedNavigationView.Item.TriStateGroup.State.IGNORE.value
|
2020-09-14 17:52:00 -04:00
|
|
|
}
|
|
|
|
prefs.edit {
|
2020-09-15 17:53:01 -04:00
|
|
|
putInt(PreferenceKeys.filterDownloaded, convertBooleanPrefToTriState("pref_filter_downloaded_key"))
|
2020-09-14 17:52:00 -04:00
|
|
|
remove("pref_filter_downloaded_key")
|
2020-09-15 17:53:01 -04:00
|
|
|
|
|
|
|
putInt(PreferenceKeys.filterUnread, convertBooleanPrefToTriState("pref_filter_unread_key"))
|
2020-09-14 17:52:00 -04:00
|
|
|
remove("pref_filter_unread_key")
|
2020-09-15 17:53:01 -04:00
|
|
|
|
|
|
|
putInt(PreferenceKeys.filterCompleted, convertBooleanPrefToTriState("pref_filter_completed_key"))
|
2020-09-14 17:52:00 -04:00
|
|
|
remove("pref_filter_completed_key")
|
|
|
|
}
|
|
|
|
}
|
2020-07-04 14:36:56 -04:00
|
|
|
return true
|
2017-05-21 07:42:06 -04:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2020-02-26 18:03:34 -05:00
|
|
|
}
|