LibreTube/app/src/main/java/com/github/libretube/util/BackupHelper.kt

122 lines
4.2 KiB
Kotlin
Raw Normal View History

2022-08-13 18:42:09 +05:30
package com.github.libretube.util
import android.content.Context
import android.net.Uri
import androidx.core.content.edit
2022-08-13 18:42:09 +05:30
import androidx.preference.PreferenceManager
2022-09-18 16:11:35 +05:30
import com.fasterxml.jackson.databind.ObjectMapper
2022-09-18 22:54:31 +05:30
import com.github.libretube.db.DatabaseHolder.Companion.Database
2022-09-18 16:11:35 +05:30
import com.github.libretube.extensions.query
import com.github.libretube.obj.BackupFile
2022-08-13 18:42:09 +05:30
import java.io.FileInputStream
import java.io.FileOutputStream
import java.io.ObjectInputStream
import java.io.ObjectOutputStream
/**
* Backup and restore the preferences
*/
class BackupHelper(private val context: Context) {
2022-08-13 18:42:09 +05:30
/**
* Backup the default shared preferences to a file
*/
fun backupSharedPreferences(uri: Uri?) {
if (uri == null) return
try {
context.contentResolver.openFileDescriptor(uri, "w")?.use {
ObjectOutputStream(FileOutputStream(it.fileDescriptor)).use { output ->
val pref = PreferenceManager.getDefaultSharedPreferences(context)
// write all preference objects to the output file
output.writeObject(pref.all)
2022-08-13 18:42:09 +05:30
}
}
} catch (e: Exception) {
e.printStackTrace()
2022-08-13 18:42:09 +05:30
}
}
/**
* restore the default shared preferences from a file
*/
@Suppress("UNCHECKED_CAST")
fun restoreSharedPreferences(uri: Uri?) {
if (uri == null) return
try {
context.contentResolver.openFileDescriptor(uri, "r")?.use {
ObjectInputStream(FileInputStream(it.fileDescriptor)).use { input ->
// map all the preference keys and their values
val entries = input.readObject() as Map<String, *>
PreferenceManager.getDefaultSharedPreferences(context).edit(commit = true) {
// clear the previous settings
clear()
2022-08-13 18:42:09 +05:30
// decide for each preference which type it is and save it to the
// preferences
for ((key, value) in entries) {
when (value) {
is Boolean -> putBoolean(key, value)
is Float -> putFloat(key, value)
is Int -> putInt(key, value)
is Long -> putLong(key, value)
is String -> putString(key, value)
}
}
}
}
2022-08-13 18:42:09 +05:30
}
} catch (e: Exception) {
e.printStackTrace()
}
}
2022-09-18 16:11:35 +05:30
/**
* Backup the database
*/
fun advancedBackup(uri: Uri?, backupFile: BackupFile) {
if (uri == null) return
try {
context.contentResolver.openFileDescriptor(uri, "w")?.use {
FileOutputStream(it.fileDescriptor).use { fileOutputStream ->
fileOutputStream.write(
ObjectMapper().writeValueAsBytes(backupFile)
)
}
}
} catch (e: Exception) {
e.printStackTrace()
}
}
/**
* Restore a database backup
*/
fun restoreAdvancedBackup(uri: Uri?) {
if (uri == null) return
val mapper = ObjectMapper()
val json = context.contentResolver.openInputStream(uri)?.use {
it.bufferedReader().use { reader -> reader.readText() }
}.orEmpty()
val backupFile = mapper.readValue(json, BackupFile::class.java)
query {
2022-09-18 22:54:31 +05:30
Database.watchHistoryDao().insertAll(
2022-09-18 16:11:35 +05:30
*backupFile.watchHistory?.toTypedArray().orEmpty()
)
2022-09-18 22:54:31 +05:30
Database.searchHistoryDao().insertAll(
2022-09-18 16:11:35 +05:30
*backupFile.searchHistory?.toTypedArray().orEmpty()
)
2022-09-18 22:54:31 +05:30
Database.watchPositionDao().insertAll(
2022-09-18 16:11:35 +05:30
*backupFile.watchPositions?.toTypedArray().orEmpty()
)
2022-09-18 22:54:31 +05:30
Database.localSubscriptionDao().insertAll(
2022-09-18 16:11:35 +05:30
*backupFile.localSubscriptions?.toTypedArray().orEmpty()
)
2022-09-18 22:54:31 +05:30
Database.customInstanceDao().insertAll(
2022-09-18 16:11:35 +05:30
*backupFile.customInstances?.toTypedArray().orEmpty()
)
}
}
2022-08-13 18:42:09 +05:30
}