2022-08-13 18:42:09 +05:30
|
|
|
package com.github.libretube.util
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import android.net.Uri
|
2022-09-17 14:59:07 +05:30
|
|
|
import androidx.core.content.edit
|
2022-08-13 18:42:09 +05:30
|
|
|
import androidx.preference.PreferenceManager
|
|
|
|
import java.io.FileInputStream
|
|
|
|
import java.io.FileOutputStream
|
|
|
|
import java.io.ObjectInputStream
|
|
|
|
import java.io.ObjectOutputStream
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Backup and restore the preferences
|
|
|
|
*/
|
2022-09-17 14:59:07 +05:30
|
|
|
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 {
|
2022-09-17 14:59:07 +05:30
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2022-09-17 14:59:07 +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 {
|
2022-09-17 14:59:07 +05:30
|
|
|
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
|
|
|
|
2022-09-17 14:59:07 +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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|