|
@@ -50,7 +50,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
// Create root object
|
|
// Create root object
|
|
var backup: Backup? = null
|
|
var backup: Backup? = null
|
|
|
|
|
|
- databaseHelper.inTransaction {
|
|
|
|
|
|
+ db.inTransaction {
|
|
val databaseManga = getFavoriteManga()
|
|
val databaseManga = getFavoriteManga()
|
|
|
|
|
|
backup = Backup(
|
|
backup = Backup(
|
|
@@ -136,7 +136,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
private fun backupCategories(options: Int): List<BackupCategory> {
|
|
private fun backupCategories(options: Int): List<BackupCategory> {
|
|
// Check if user wants category information in backup
|
|
// Check if user wants category information in backup
|
|
return if (options and BACKUP_CATEGORY_MASK == BACKUP_CATEGORY) {
|
|
return if (options and BACKUP_CATEGORY_MASK == BACKUP_CATEGORY) {
|
|
- databaseHelper.getCategories()
|
|
|
|
|
|
+ db.getCategories()
|
|
.executeAsBlocking()
|
|
.executeAsBlocking()
|
|
.map { BackupCategory.copyFrom(it) }
|
|
.map { BackupCategory.copyFrom(it) }
|
|
} else {
|
|
} else {
|
|
@@ -158,7 +158,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
// Check if user wants chapter information in backup
|
|
// Check if user wants chapter information in backup
|
|
if (options and BACKUP_CHAPTER_MASK == BACKUP_CHAPTER) {
|
|
if (options and BACKUP_CHAPTER_MASK == BACKUP_CHAPTER) {
|
|
// Backup all the chapters
|
|
// Backup all the chapters
|
|
- val chapters = databaseHelper.getChapters(manga).executeAsBlocking()
|
|
|
|
|
|
+ val chapters = db.getChapters(manga).executeAsBlocking()
|
|
if (chapters.isNotEmpty()) {
|
|
if (chapters.isNotEmpty()) {
|
|
mangaObject.chapters = chapters.map { BackupChapter.copyFrom(it) }
|
|
mangaObject.chapters = chapters.map { BackupChapter.copyFrom(it) }
|
|
}
|
|
}
|
|
@@ -167,7 +167,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
// Check if user wants category information in backup
|
|
// Check if user wants category information in backup
|
|
if (options and BACKUP_CATEGORY_MASK == BACKUP_CATEGORY) {
|
|
if (options and BACKUP_CATEGORY_MASK == BACKUP_CATEGORY) {
|
|
// Backup categories for this manga
|
|
// Backup categories for this manga
|
|
- val categoriesForManga = databaseHelper.getCategoriesForManga(manga).executeAsBlocking()
|
|
|
|
|
|
+ val categoriesForManga = db.getCategoriesForManga(manga).executeAsBlocking()
|
|
if (categoriesForManga.isNotEmpty()) {
|
|
if (categoriesForManga.isNotEmpty()) {
|
|
mangaObject.categories = categoriesForManga.mapNotNull { it.order }
|
|
mangaObject.categories = categoriesForManga.mapNotNull { it.order }
|
|
}
|
|
}
|
|
@@ -175,7 +175,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
|
|
|
|
// Check if user wants track information in backup
|
|
// Check if user wants track information in backup
|
|
if (options and BACKUP_TRACK_MASK == BACKUP_TRACK) {
|
|
if (options and BACKUP_TRACK_MASK == BACKUP_TRACK) {
|
|
- val tracks = databaseHelper.getTracks(manga).executeAsBlocking()
|
|
|
|
|
|
+ val tracks = db.getTracks(manga).executeAsBlocking()
|
|
if (tracks.isNotEmpty()) {
|
|
if (tracks.isNotEmpty()) {
|
|
mangaObject.tracking = tracks.map { BackupTracking.copyFrom(it) }
|
|
mangaObject.tracking = tracks.map { BackupTracking.copyFrom(it) }
|
|
}
|
|
}
|
|
@@ -183,10 +183,10 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
|
|
|
|
// Check if user wants history information in backup
|
|
// Check if user wants history information in backup
|
|
if (options and BACKUP_HISTORY_MASK == BACKUP_HISTORY) {
|
|
if (options and BACKUP_HISTORY_MASK == BACKUP_HISTORY) {
|
|
- val historyForManga = databaseHelper.getHistoryByMangaId(manga.id!!).executeAsBlocking()
|
|
|
|
|
|
+ val historyForManga = db.getHistoryByMangaId(manga.id!!).executeAsBlocking()
|
|
if (historyForManga.isNotEmpty()) {
|
|
if (historyForManga.isNotEmpty()) {
|
|
val history = historyForManga.mapNotNull { history ->
|
|
val history = historyForManga.mapNotNull { history ->
|
|
- val url = databaseHelper.getChapter(history.chapter_id).executeAsBlocking()?.url
|
|
|
|
|
|
+ val url = db.getChapter(history.chapter_id).executeAsBlocking()?.url
|
|
url?.let { BackupHistory(url, history.last_read) }
|
|
url?.let { BackupHistory(url, history.last_read) }
|
|
}
|
|
}
|
|
if (history.isNotEmpty()) {
|
|
if (history.isNotEmpty()) {
|
|
@@ -224,7 +224,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
*/
|
|
*/
|
|
internal fun restoreCategories(backupCategories: List<BackupCategory>) {
|
|
internal fun restoreCategories(backupCategories: List<BackupCategory>) {
|
|
// Get categories from file and from db
|
|
// Get categories from file and from db
|
|
- val dbCategories = databaseHelper.getCategories().executeAsBlocking()
|
|
|
|
|
|
+ val dbCategories = db.getCategories().executeAsBlocking()
|
|
|
|
|
|
// Iterate over them
|
|
// Iterate over them
|
|
backupCategories.map { it.getCategoryImpl() }.forEach { category ->
|
|
backupCategories.map { it.getCategoryImpl() }.forEach { category ->
|
|
@@ -244,7 +244,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
if (!found) {
|
|
if (!found) {
|
|
// Let the db assign the id
|
|
// Let the db assign the id
|
|
category.id = null
|
|
category.id = null
|
|
- val result = databaseHelper.insertCategory(category).executeAsBlocking()
|
|
|
|
|
|
+ val result = db.insertCategory(category).executeAsBlocking()
|
|
category.id = result.insertedId()?.toInt()
|
|
category.id = result.insertedId()?.toInt()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -257,7 +257,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
* @param categories the categories to restore.
|
|
* @param categories the categories to restore.
|
|
*/
|
|
*/
|
|
internal fun restoreCategoriesForManga(manga: Manga, categories: List<Int>, backupCategories: List<BackupCategory>) {
|
|
internal fun restoreCategoriesForManga(manga: Manga, categories: List<Int>, backupCategories: List<BackupCategory>) {
|
|
- val dbCategories = databaseHelper.getCategories().executeAsBlocking()
|
|
|
|
|
|
+ val dbCategories = db.getCategories().executeAsBlocking()
|
|
val mangaCategoriesToUpdate = ArrayList<MangaCategory>(categories.size)
|
|
val mangaCategoriesToUpdate = ArrayList<MangaCategory>(categories.size)
|
|
categories.forEach { backupCategoryOrder ->
|
|
categories.forEach { backupCategoryOrder ->
|
|
backupCategories.firstOrNull {
|
|
backupCategories.firstOrNull {
|
|
@@ -273,8 +273,8 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
|
|
|
|
// Update database
|
|
// Update database
|
|
if (mangaCategoriesToUpdate.isNotEmpty()) {
|
|
if (mangaCategoriesToUpdate.isNotEmpty()) {
|
|
- databaseHelper.deleteOldMangasCategories(listOf(manga)).executeAsBlocking()
|
|
|
|
- databaseHelper.insertMangasCategories(mangaCategoriesToUpdate).executeAsBlocking()
|
|
|
|
|
|
+ db.deleteOldMangasCategories(listOf(manga)).executeAsBlocking()
|
|
|
|
+ db.insertMangasCategories(mangaCategoriesToUpdate).executeAsBlocking()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -287,7 +287,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
// List containing history to be updated
|
|
// List containing history to be updated
|
|
val historyToBeUpdated = ArrayList<History>(history.size)
|
|
val historyToBeUpdated = ArrayList<History>(history.size)
|
|
for ((url, lastRead) in history) {
|
|
for ((url, lastRead) in history) {
|
|
- val dbHistory = databaseHelper.getHistoryByChapterUrl(url).executeAsBlocking()
|
|
|
|
|
|
+ val dbHistory = db.getHistoryByChapterUrl(url).executeAsBlocking()
|
|
// Check if history already in database and update
|
|
// Check if history already in database and update
|
|
if (dbHistory != null) {
|
|
if (dbHistory != null) {
|
|
dbHistory.apply {
|
|
dbHistory.apply {
|
|
@@ -296,7 +296,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
historyToBeUpdated.add(dbHistory)
|
|
historyToBeUpdated.add(dbHistory)
|
|
} else {
|
|
} else {
|
|
// If not in database create
|
|
// If not in database create
|
|
- databaseHelper.getChapter(url).executeAsBlocking()?.let {
|
|
|
|
|
|
+ db.getChapter(url).executeAsBlocking()?.let {
|
|
val historyToAdd = History.create(it).apply {
|
|
val historyToAdd = History.create(it).apply {
|
|
last_read = lastRead
|
|
last_read = lastRead
|
|
}
|
|
}
|
|
@@ -304,7 +304,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- databaseHelper.upsertHistoryLastRead(historyToBeUpdated).executeAsBlocking()
|
|
|
|
|
|
+ db.upsertHistoryLastRead(historyToBeUpdated).executeAsBlocking()
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -318,7 +318,7 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
tracks.map { it.manga_id = manga.id!! }
|
|
tracks.map { it.manga_id = manga.id!! }
|
|
|
|
|
|
// Get tracks from database
|
|
// Get tracks from database
|
|
- val dbTracks = databaseHelper.getTracks(manga).executeAsBlocking()
|
|
|
|
|
|
+ val dbTracks = db.getTracks(manga).executeAsBlocking()
|
|
val trackToUpdate = mutableListOf<Track>()
|
|
val trackToUpdate = mutableListOf<Track>()
|
|
|
|
|
|
tracks.forEach { track ->
|
|
tracks.forEach { track ->
|
|
@@ -346,12 +346,12 @@ class FullBackupManager(context: Context) : AbstractBackupManager(context) {
|
|
}
|
|
}
|
|
// Update database
|
|
// Update database
|
|
if (trackToUpdate.isNotEmpty()) {
|
|
if (trackToUpdate.isNotEmpty()) {
|
|
- databaseHelper.insertTracks(trackToUpdate).executeAsBlocking()
|
|
|
|
|
|
+ db.insertTracks(trackToUpdate).executeAsBlocking()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
internal fun restoreChaptersForManga(manga: Manga, chapters: List<Chapter>) {
|
|
internal fun restoreChaptersForManga(manga: Manga, chapters: List<Chapter>) {
|
|
- val dbChapters = databaseHelper.getChapters(manga).executeAsBlocking()
|
|
|
|
|
|
+ val dbChapters = db.getChapters(manga).executeAsBlocking()
|
|
|
|
|
|
chapters.forEach { chapter ->
|
|
chapters.forEach { chapter ->
|
|
val dbChapter = dbChapters.find { it.url == chapter.url }
|
|
val dbChapter = dbChapters.find { it.url == chapter.url }
|