Initial commit

This commit is contained in:
Aryan 2026-02-24 17:37:40 +05:30
commit 6072b2ba29
844 changed files with 220532 additions and 0 deletions

View file

@ -0,0 +1,98 @@
// BookImporter.kt
package com.aryan.reader
import android.content.Context
import android.net.Uri
import timber.log.Timber
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import java.io.File
import java.io.FileOutputStream
import java.io.InputStream
import java.util.UUID
import androidx.core.net.toUri
private const val BOOKS_DIR = "books"
class BookImporter(private val context: Context) {
private val booksDir = File(context.filesDir, BOOKS_DIR)
init {
if (!booksDir.exists()) {
booksDir.mkdirs()
}
}
/**
* Imports a book from a source URI into the app's private storage.
* @param sourceUri The content or file URI of the book to import.
* @return The [File] object for the imported book, or null if the import failed.
*/
suspend fun importBook(sourceUri: Uri): File? = withContext(Dispatchers.IO) {
var inputStream: InputStream? = null
var outputStream: FileOutputStream? = null
try {
val fileExtension = getFileExtension(sourceUri)
val destinationFileName = "${UUID.randomUUID()}.$fileExtension"
val destinationFile = File(booksDir, destinationFileName)
inputStream = context.contentResolver.openInputStream(sourceUri)
?: throw Exception("Could not open input stream for URI: $sourceUri")
outputStream = FileOutputStream(destinationFile)
inputStream.copyTo(outputStream)
Timber.i("Successfully imported book to: ${destinationFile.absolutePath}")
return@withContext destinationFile
} catch (e: Exception) {
Timber.e(e, "Failed to import book from URI: $sourceUri")
return@withContext null
} finally {
inputStream?.close()
outputStream?.close()
}
}
/**
* Deletes a book file from the app's private storage using its URI string.
* @param uriString The string representation of the file's URI.
* @return True if the file was successfully deleted, false otherwise.
*/
suspend fun deleteBookByUriString(uriString: String): Boolean = withContext(Dispatchers.IO) {
try {
val file = File(uriString.toUri().path ?: return@withContext false)
if (file.exists() && file.parentFile?.name == BOOKS_DIR) {
val deleted = file.delete()
if (deleted) {
Timber.i("Successfully deleted book file: ${file.path}")
} else {
Timber.w("Failed to delete book file: ${file.path}")
}
return@withContext deleted
}
} catch (e: Exception) {
Timber.e(e, "Error deleting book file for URI string: $uriString")
}
return@withContext false
}
fun createBookFile(fileNameWithExtension: String): File {
if (!booksDir.exists()) booksDir.mkdirs()
return File(booksDir, fileNameWithExtension)
}
private fun getFileExtension(uri: Uri): String {
val path = uri.path ?: return "tmp"
return File(path).extension.lowercase().ifEmpty {
// Fallback for URIs that don't have a clear extension in the path
when (context.contentResolver.getType(uri)) {
"application/pdf" -> "pdf"
"application/epub+zip" -> "epub"
else -> "tmp"
}
}
}
}