2017-01-29 20:48:55 +01:00
|
|
|
package eu.kanade.tachiyomi.source
|
|
|
|
|
|
|
|
import android.content.Context
|
2020-01-11 21:59:43 +01:00
|
|
|
import com.google.gson.Gson
|
|
|
|
import com.google.gson.JsonObject
|
2017-01-29 20:48:55 +01:00
|
|
|
import eu.kanade.tachiyomi.R
|
2019-12-27 13:18:30 +01:00
|
|
|
import eu.kanade.tachiyomi.source.model.Filter
|
|
|
|
import eu.kanade.tachiyomi.source.model.FilterList
|
|
|
|
import eu.kanade.tachiyomi.source.model.MangasPage
|
|
|
|
import eu.kanade.tachiyomi.source.model.Page
|
|
|
|
import eu.kanade.tachiyomi.source.model.SChapter
|
|
|
|
import eu.kanade.tachiyomi.source.model.SManga
|
2017-01-29 20:48:55 +01:00
|
|
|
import eu.kanade.tachiyomi.util.ChapterRecognition
|
2019-12-27 13:18:30 +01:00
|
|
|
import eu.kanade.tachiyomi.util.ComparatorUtil.CaseInsensitiveNaturalComparator
|
2017-01-29 20:48:55 +01:00
|
|
|
import eu.kanade.tachiyomi.util.DiskUtil
|
2018-09-01 17:12:59 +02:00
|
|
|
import eu.kanade.tachiyomi.util.EpubFile
|
|
|
|
import eu.kanade.tachiyomi.util.ImageUtil
|
2017-02-08 22:12:00 +01:00
|
|
|
import junrar.Archive
|
|
|
|
import junrar.rarfile.FileHeader
|
2017-01-29 20:48:55 +01:00
|
|
|
import rx.Observable
|
|
|
|
import timber.log.Timber
|
|
|
|
import java.io.File
|
|
|
|
import java.io.FileInputStream
|
|
|
|
import java.io.InputStream
|
2018-09-01 17:12:59 +02:00
|
|
|
import java.util.Locale
|
2020-01-11 21:59:43 +01:00
|
|
|
import java.util.Scanner
|
2017-01-29 20:48:55 +01:00
|
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
import java.util.zip.ZipEntry
|
|
|
|
import java.util.zip.ZipFile
|
|
|
|
|
|
|
|
class LocalSource(private val context: Context) : CatalogueSource {
|
|
|
|
companion object {
|
|
|
|
private val COVER_NAME = "cover.jpg"
|
|
|
|
private val POPULAR_FILTERS = FilterList(OrderBy())
|
|
|
|
private val LATEST_FILTERS = FilterList(OrderBy().apply { state = Filter.Sort.Selection(1, false) })
|
|
|
|
private val LATEST_THRESHOLD = TimeUnit.MILLISECONDS.convert(7, TimeUnit.DAYS)
|
|
|
|
val ID = 0L
|
|
|
|
|
|
|
|
fun updateCover(context: Context, manga: SManga, input: InputStream): File? {
|
|
|
|
val dir = getBaseDirectories(context).firstOrNull()
|
|
|
|
if (dir == null) {
|
|
|
|
input.close()
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
val cover = File("${dir.absolutePath}/${manga.url}", COVER_NAME)
|
|
|
|
|
|
|
|
// It might not exist if using the external SD card
|
|
|
|
cover.parentFile.mkdirs()
|
|
|
|
input.use {
|
|
|
|
cover.outputStream().use {
|
|
|
|
input.copyTo(it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cover
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun getBaseDirectories(context: Context): List<File> {
|
2017-01-29 20:51:11 +01:00
|
|
|
val c = context.getString(R.string.app_name) + File.separator + "local"
|
|
|
|
return DiskUtil.getExternalStorages(context).map { File(it.absolutePath, c) }
|
2017-01-29 20:48:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override val id = ID
|
2017-11-18 14:09:28 +01:00
|
|
|
override val name = context.getString(R.string.local_source)
|
2017-06-17 12:46:34 +02:00
|
|
|
override val lang = ""
|
2017-01-29 20:48:55 +01:00
|
|
|
override val supportsLatest = true
|
|
|
|
|
|
|
|
override fun toString() = context.getString(R.string.local_source)
|
|
|
|
|
|
|
|
override fun fetchPopularManga(page: Int) = fetchSearchManga(page, "", POPULAR_FILTERS)
|
|
|
|
|
|
|
|
override fun fetchSearchManga(page: Int, query: String, filters: FilterList): Observable<MangasPage> {
|
|
|
|
val baseDirs = getBaseDirectories(context)
|
|
|
|
|
|
|
|
val time = if (filters === LATEST_FILTERS) System.currentTimeMillis() - LATEST_THRESHOLD else 0L
|
|
|
|
var mangaDirs = baseDirs.mapNotNull { it.listFiles()?.toList() }
|
|
|
|
.flatten()
|
|
|
|
.filter { it.isDirectory && if (time == 0L) it.name.contains(query, ignoreCase = true) else it.lastModified() >= time }
|
|
|
|
.distinctBy { it.name }
|
|
|
|
|
|
|
|
val state = ((if (filters.isEmpty()) POPULAR_FILTERS else filters)[0] as OrderBy).state
|
|
|
|
when (state?.index) {
|
|
|
|
0 -> {
|
2017-10-28 19:12:17 +02:00
|
|
|
if (state.ascending)
|
2017-01-29 20:48:55 +01:00
|
|
|
mangaDirs = mangaDirs.sortedBy { it.name.toLowerCase(Locale.ENGLISH) }
|
|
|
|
else
|
|
|
|
mangaDirs = mangaDirs.sortedByDescending { it.name.toLowerCase(Locale.ENGLISH) }
|
|
|
|
}
|
|
|
|
1 -> {
|
2017-10-28 19:12:17 +02:00
|
|
|
if (state.ascending)
|
2017-01-29 20:48:55 +01:00
|
|
|
mangaDirs = mangaDirs.sortedBy(File::lastModified)
|
|
|
|
else
|
|
|
|
mangaDirs = mangaDirs.sortedByDescending(File::lastModified)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val mangas = mangaDirs.map { mangaDir ->
|
|
|
|
SManga.create().apply {
|
|
|
|
title = mangaDir.name
|
|
|
|
url = mangaDir.name
|
|
|
|
|
|
|
|
// Try to find the cover
|
|
|
|
for (dir in baseDirs) {
|
|
|
|
val cover = File("${dir.absolutePath}/$url", COVER_NAME)
|
|
|
|
if (cover.exists()) {
|
2017-01-29 20:51:11 +01:00
|
|
|
thumbnail_url = cover.absolutePath
|
2017-01-29 20:48:55 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the cover from the first chapter found.
|
|
|
|
if (thumbnail_url == null) {
|
|
|
|
val chapters = fetchChapterList(this).toBlocking().first()
|
|
|
|
if (chapters.isNotEmpty()) {
|
2018-09-01 17:12:59 +02:00
|
|
|
try {
|
|
|
|
val dest = updateCover(chapters.last(), this)
|
|
|
|
thumbnail_url = dest?.absolutePath
|
|
|
|
} catch (e: Exception) {
|
|
|
|
Timber.e(e)
|
2017-01-29 20:48:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Observable.just(MangasPage(mangas, false))
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun fetchLatestUpdates(page: Int) = fetchSearchManga(page, "", LATEST_FILTERS)
|
|
|
|
|
2020-01-11 21:59:43 +01:00
|
|
|
override fun fetchMangaDetails(manga: SManga): Observable<SManga> {
|
|
|
|
getBaseDirectories(context)
|
|
|
|
.mapNotNull { File(it, manga.url).listFiles()?.toList() }
|
|
|
|
.flatten()
|
|
|
|
.filter { it.extension.equals("json") }
|
|
|
|
.firstOrNull()
|
|
|
|
?.apply {
|
|
|
|
val json = Gson().fromJson(Scanner(this).useDelimiter("\\Z").next(), JsonObject::class.java)
|
|
|
|
manga.title = json["title"]?.asString ?: manga.title
|
|
|
|
manga.author = json["author"]?.asString ?: manga.author
|
|
|
|
manga.artist = json["artist"]?.asString ?: manga.artist
|
|
|
|
manga.description = json["description"]?.asString ?: manga.description
|
|
|
|
manga.genre = json["genre"]?.asJsonArray
|
|
|
|
?.map { it.asString }
|
|
|
|
?.joinToString(", ")
|
|
|
|
?: manga.genre
|
|
|
|
manga.status = json["status"]?.asInt ?: manga.status
|
|
|
|
}
|
|
|
|
return Observable.just(manga)
|
|
|
|
}
|
2017-02-05 12:01:58 +01:00
|
|
|
|
|
|
|
override fun fetchChapterList(manga: SManga): Observable<List<SChapter>> {
|
|
|
|
val chapters = getBaseDirectories(context)
|
|
|
|
.mapNotNull { File(it, manga.url).listFiles()?.toList() }
|
|
|
|
.flatten()
|
2018-09-01 17:12:59 +02:00
|
|
|
.filter { it.isDirectory || isSupportedFile(it.extension) }
|
2017-02-05 12:01:58 +01:00
|
|
|
.map { chapterFile ->
|
|
|
|
SChapter.create().apply {
|
|
|
|
url = "${manga.url}/${chapterFile.name}"
|
|
|
|
val chapName = if (chapterFile.isDirectory) {
|
|
|
|
chapterFile.name
|
|
|
|
} else {
|
|
|
|
chapterFile.nameWithoutExtension
|
|
|
|
}
|
2017-09-18 11:20:34 +02:00
|
|
|
val chapNameCut = chapName.replace(manga.title, "", true).trim(' ', '-', '_')
|
2017-02-05 12:01:58 +01:00
|
|
|
name = if (chapNameCut.isEmpty()) chapName else chapNameCut
|
|
|
|
date_upload = chapterFile.lastModified()
|
|
|
|
ChapterRecognition.parseChapterNumber(this, manga)
|
|
|
|
}
|
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
.sortedWith(Comparator { c1, c2 ->
|
2017-02-05 12:01:58 +01:00
|
|
|
val c = c2.chapter_number.compareTo(c1.chapter_number)
|
2019-12-27 13:18:30 +01:00
|
|
|
if (c == 0) CaseInsensitiveNaturalComparator.compare(c2.name, c1.name) else c
|
2017-02-05 12:01:58 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
return Observable.just(chapters)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun fetchPageList(chapter: SChapter): Observable<List<Page>> {
|
2018-09-01 17:12:59 +02:00
|
|
|
return Observable.error(Exception("Unused"))
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun isSupportedFile(extension: String): Boolean {
|
|
|
|
return extension.toLowerCase() in setOf("zip", "rar", "cbr", "cbz", "epub")
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getFormat(chapter: SChapter): Format {
|
2017-02-05 12:01:58 +01:00
|
|
|
val baseDirs = getBaseDirectories(context)
|
|
|
|
|
|
|
|
for (dir in baseDirs) {
|
|
|
|
val chapFile = File(dir, chapter.url)
|
|
|
|
if (!chapFile.exists()) continue
|
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
return getFormat(chapFile)
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
throw Exception("Chapter not found")
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
private fun getFormat(file: File): Format {
|
2017-02-05 12:01:58 +01:00
|
|
|
val extension = file.extension
|
|
|
|
return if (file.isDirectory) {
|
2018-09-01 17:12:59 +02:00
|
|
|
Format.Directory(file)
|
2017-02-05 12:01:58 +01:00
|
|
|
} else if (extension.equals("zip", true) || extension.equals("cbz", true)) {
|
2018-09-01 17:12:59 +02:00
|
|
|
Format.Zip(file)
|
2017-02-08 22:12:00 +01:00
|
|
|
} else if (extension.equals("rar", true) || extension.equals("cbr", true)) {
|
2018-09-01 17:12:59 +02:00
|
|
|
Format.Rar(file)
|
|
|
|
} else if (extension.equals("epub", true)) {
|
|
|
|
Format.Epub(file)
|
2017-02-05 12:01:58 +01:00
|
|
|
} else {
|
|
|
|
throw Exception("Invalid chapter format")
|
|
|
|
}
|
2017-01-29 20:48:55 +01:00
|
|
|
}
|
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
private fun updateCover(chapter: SChapter, manga: SManga): File? {
|
|
|
|
val format = getFormat(chapter)
|
|
|
|
return when (format) {
|
|
|
|
is Format.Directory -> {
|
|
|
|
val entry = format.file.listFiles()
|
2019-12-27 13:18:30 +01:00
|
|
|
.sortedWith(Comparator<File> { f1, f2 -> CaseInsensitiveNaturalComparator.compare(f1.name, f2.name) })
|
|
|
|
.find { !it.isDirectory && ImageUtil.isImage(it.name) { FileInputStream(it) } }
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
entry?.let { updateCover(context, manga, it.inputStream())}
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
is Format.Zip -> {
|
|
|
|
ZipFile(format.file).use { zip ->
|
|
|
|
val entry = zip.entries().toList()
|
2019-12-27 13:18:30 +01:00
|
|
|
.sortedWith(Comparator<ZipEntry> { f1, f2 -> CaseInsensitiveNaturalComparator.compare(f1.name, f2.name) })
|
|
|
|
.find { !it.isDirectory && ImageUtil.isImage(it.name) { zip.getInputStream(it) } }
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
entry?.let { updateCover(context, manga, zip.getInputStream(it) )}
|
|
|
|
}
|
2017-02-08 22:12:00 +01:00
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
is Format.Rar -> {
|
|
|
|
Archive(format.file).use { archive ->
|
|
|
|
val entry = archive.fileHeaders
|
2019-12-27 13:18:30 +01:00
|
|
|
.sortedWith(Comparator<FileHeader> { f1, f2 -> CaseInsensitiveNaturalComparator.compare(f1.fileNameString, f2.fileNameString) })
|
|
|
|
.find { !it.isDirectory && ImageUtil.isImage(it.fileNameString) { archive.getInputStream(it) } }
|
2017-02-08 22:12:00 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
entry?.let { updateCover(context, manga, archive.getInputStream(it) )}
|
|
|
|
}
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
is Format.Epub -> {
|
|
|
|
EpubFile(format.file).use { epub ->
|
|
|
|
val entry = epub.getImagesFromPages()
|
|
|
|
.firstOrNull()
|
|
|
|
?.let { epub.getEntry(it) }
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
entry?.let { updateCover(context, manga, epub.getInputStream(it)) }
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
}
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
private class OrderBy : Filter.Sort("Order by", arrayOf("Title", "Date"), Filter.Sort.Selection(0, true))
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
override fun getFilterList() = FilterList(OrderBy())
|
2017-02-05 12:01:58 +01:00
|
|
|
|
2018-09-01 17:12:59 +02:00
|
|
|
sealed class Format {
|
|
|
|
data class Directory(val file: File) : Format()
|
|
|
|
data class Zip(val file: File) : Format()
|
|
|
|
data class Rar(val file: File): Format()
|
|
|
|
data class Epub(val file: File) : Format()
|
2017-02-05 12:01:58 +01:00
|
|
|
}
|
2018-09-01 17:12:59 +02:00
|
|
|
|
|
|
|
}
|