2020-05-10 11:15:25 -04:00
|
|
|
package eu.kanade.tachiyomi.util
|
|
|
|
|
|
|
|
import eu.kanade.tachiyomi.data.cache.CoverCache
|
|
|
|
import eu.kanade.tachiyomi.data.database.DatabaseHelper
|
|
|
|
import eu.kanade.tachiyomi.data.database.models.Manga
|
|
|
|
import eu.kanade.tachiyomi.source.LocalSource
|
2020-05-10 23:10:31 -04:00
|
|
|
import eu.kanade.tachiyomi.source.model.SManga
|
2020-05-10 11:15:25 -04:00
|
|
|
import java.util.Date
|
|
|
|
|
|
|
|
fun Manga.isLocal() = source == LocalSource.ID
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call before updating [Manga.thumbnail_url] to ensure old cover can be cleared from cache
|
|
|
|
*/
|
2020-05-10 23:10:31 -04:00
|
|
|
fun Manga.prepUpdateCover(coverCache: CoverCache, remoteManga: SManga, refreshSameUrl: Boolean) {
|
|
|
|
// Never refresh covers if the new url is null, as the current url has possibly become invalid
|
|
|
|
val newUrl = remoteManga.thumbnail_url ?: return
|
|
|
|
|
|
|
|
if (!refreshSameUrl && thumbnail_url == newUrl) return
|
2020-05-10 11:15:25 -04:00
|
|
|
|
2020-05-10 23:10:31 -04:00
|
|
|
when {
|
|
|
|
isLocal() -> {
|
|
|
|
cover_last_modified = Date().time
|
|
|
|
}
|
|
|
|
hasCustomCover(coverCache) -> {
|
|
|
|
coverCache.deleteFromCache(this, false)
|
|
|
|
}
|
|
|
|
else -> {
|
|
|
|
cover_last_modified = Date().time
|
|
|
|
coverCache.deleteFromCache(this, false)
|
|
|
|
}
|
2020-05-10 11:15:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 23:10:31 -04:00
|
|
|
fun Manga.hasCustomCover(coverCache: CoverCache): Boolean {
|
|
|
|
return coverCache.getCustomCoverFile(this).exists()
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:15:25 -04:00
|
|
|
fun Manga.removeCovers(coverCache: CoverCache) {
|
|
|
|
if (isLocal()) return
|
|
|
|
|
|
|
|
cover_last_modified = Date().time
|
|
|
|
coverCache.deleteFromCache(this, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun Manga.updateCoverLastModified(db: DatabaseHelper) {
|
|
|
|
cover_last_modified = Date().time
|
|
|
|
db.updateMangaCoverLastModified(this).executeAsBlocking()
|
|
|
|
}
|