|
|
|
@ -6,116 +6,81 @@ import androidx.documentfile.provider.DocumentFile |
|
|
|
|
import io.legado.app.App |
|
|
|
|
import io.legado.app.data.entities.BookSource |
|
|
|
|
import io.legado.app.data.entities.ReplaceRule |
|
|
|
|
import io.legado.app.help.coroutine.Coroutine |
|
|
|
|
import io.legado.app.utils.DocumentUtils |
|
|
|
|
import io.legado.app.utils.FileUtils |
|
|
|
|
import kotlinx.coroutines.Dispatchers |
|
|
|
|
import kotlinx.coroutines.GlobalScope |
|
|
|
|
import kotlinx.coroutines.launch |
|
|
|
|
import kotlinx.coroutines.withContext |
|
|
|
|
import org.jetbrains.anko.toast |
|
|
|
|
import java.io.File |
|
|
|
|
|
|
|
|
|
object ImportOldData { |
|
|
|
|
|
|
|
|
|
fun import(context: Context, file: File) { |
|
|
|
|
GlobalScope.launch(Dispatchers.IO) { |
|
|
|
|
try {// 导入书架 |
|
|
|
|
val shelfFile = |
|
|
|
|
FileUtils.createFileIfNotExist(file, "myBookShelf.json") |
|
|
|
|
val json = shelfFile.readText() |
|
|
|
|
val importCount = importOldBookshelf(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("成功导入书籍${importCount}") |
|
|
|
|
} |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("导入书籍失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try {// Book source |
|
|
|
|
val sourceFile = |
|
|
|
|
FileUtils.getFile(file, "myBookSource.json") |
|
|
|
|
val json = sourceFile.readText() |
|
|
|
|
val importCount = importOldSource(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("成功导入书源${importCount}") |
|
|
|
|
} |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("导入源失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try {// Replace rules |
|
|
|
|
val ruleFile = FileUtils.getFile(file, "myBookReplaceRule.json") |
|
|
|
|
if (ruleFile.exists()) { |
|
|
|
|
val json = ruleFile.readText() |
|
|
|
|
val importCount = importOldReplaceRule(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("成功导入替换规则${importCount}") |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("未找到替换规则") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
context.toast("导入替换规则失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
fun importUri(uri: Uri) { |
|
|
|
|
Coroutine.async { |
|
|
|
|
DocumentFile.fromTreeUri(App.INSTANCE, uri)?.listFiles()?.forEach { |
|
|
|
|
when (it.name) { |
|
|
|
|
"myBookShelf.json" -> |
|
|
|
|
try { |
|
|
|
|
DocumentUtils.readText(App.INSTANCE, it.uri)?.let { json -> |
|
|
|
|
val importCount = importOldBookshelf(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("成功导入书籍${importCount}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (e: java.lang.Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("导入书籍失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
"myBookSource.json" -> |
|
|
|
|
try { |
|
|
|
|
DocumentUtils.readText(App.INSTANCE, it.uri)?.let { json -> |
|
|
|
|
val importCount = importOldSource(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("成功导入书源${importCount}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("导入源失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
"myBookReplaceRule.json" -> |
|
|
|
|
try { |
|
|
|
|
DocumentUtils.readText(App.INSTANCE, it.uri)?.let { json -> |
|
|
|
|
val importCount = importOldReplaceRule(json) |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("成功导入替换规则${importCount}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
withContext(Dispatchers.Main) { |
|
|
|
|
App.INSTANCE.toast("导入替换规则失败\n${e.localizedMessage}") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private fun importOldBookshelf(json: String): Int { |
|
|
|
|
val books = OldBook.toNewBook(json) |
|
|
|
|