refactor: remove legacy folder sync migration and enhance and add cache maintenance tools to release builds (#83)

This commit is contained in:
Aryan 2026-03-17 11:53:52 +05:30 committed by GitHub
parent 93f03941b2
commit 3509059d1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 88 additions and 66 deletions

View file

@ -114,7 +114,6 @@ import java.util.concurrent.TimeUnit
private const val KEY_RENDER_MODE = "render_mode"
private const val KEY_FOLDER_SYNC_ENABLED = "folder_sync_enabled"
private const val KEY_FOLDER_MIGRATION_COMPLETED = "folder_migration_completed_v2"
private const val KEY_FILTER_FILE_TYPES = "filter_file_types"
private const val KEY_FILTER_FOLDERS = "filter_folders"
@ -221,7 +220,6 @@ data class ReaderScreenState(
val hasUnreadFeedback: Boolean = false,
val searchQuery: String = "",
val isSearchActive: Boolean = false,
val showFolderMigrationDialog: Boolean = false,
val isRefreshing: Boolean = false,
val reflowProgress: Float? = null,
val recentFiles: List<RecentFileItem> = emptyList(),
@ -597,14 +595,8 @@ open class MainViewModel(application: Application) : AndroidViewModel(applicatio
remoteConfigRepository.init()
val isMigrationCompleted = prefs.getBoolean(KEY_FOLDER_MIGRATION_COMPLETED, false)
if (_internalState.value.syncedFolders.isNotEmpty()) {
if (isMigrationCompleted) {
syncFolderMetadata()
} else {
Timber.d("App Start: Skipping sync. Waiting for migration/detachment logic.")
}
syncFolderMetadata()
}
viewModelScope.launch { billingClientWrapper.initializeConnection() }
@ -656,27 +648,6 @@ open class MainViewModel(application: Application) : AndroidViewModel(applicatio
}
}
}
val migrationCompleted = prefs.getBoolean(KEY_FOLDER_MIGRATION_COMPLETED, false)
val hasFolders = _internalState.value.syncedFolders.isNotEmpty()
if (hasFolders && !migrationCompleted) {
Timber.tag("FolderSync").d("First time after refactor: Showing migration dialog.")
_internalState.update { it.copy(showFolderMigrationDialog = true) }
}
}
fun completeFolderMigration() {
Timber.tag("FolderSync")
.d("User acknowledged update. Detaching old books and starting fresh scan.")
viewModelScope.launch {
recentFilesRepository.detachAllFolderBooks()
prefs.edit { putBoolean(KEY_FOLDER_MIGRATION_COMPLETED, true) }
_internalState.update { it.copy(showFolderMigrationDialog = false) }
scanSyncedFolder()
}
}
private fun getDisplayPathFromUri(context: Context, uriString: String): String {
@ -1482,7 +1453,7 @@ open class MainViewModel(application: Application) : AndroidViewModel(applicatio
_internalState.update {
it.copy(
syncedFolders = newStats, showFolderMigrationDialog = false
syncedFolders = newStats
)
}
@ -2623,7 +2594,6 @@ open class MainViewModel(application: Application) : AndroidViewModel(applicatio
viewModelScope.launch {
val existing = recentFilesRepository.getFileByBookId(reflowBookId)
if (existing != null) {
showBanner("Opening existing text view...")
if (autoOpenPage != null) {
switchToFileSeamlessly(existing, autoOpenPage)
} else {
@ -3809,8 +3779,22 @@ open class MainViewModel(application: Application) : AndroidViewModel(applicatio
imagesDir.deleteRecursively()
}
val allFiles = recentFilesRepository.getAllFilesForSync()
val reflowBooks = allFiles.filter { it.bookId.endsWith("_reflow") }
if (reflowBooks.isNotEmpty()) {
val reflowBookIds = reflowBooks.map { it.bookId }
reflowBookIds.forEach { bookId ->
clearImportedFileCache(bookId)
pdfTextRepository.clearBookText(bookId)
}
recentFilesRepository.deleteFilePermanently(reflowBookIds)
}
withContext(Dispatchers.Main) {
showBanner("Reflow cache & images cleared.")
showBanner("Reflow cache & generated text views cleared.")
}
}
}