|
@@ -7,9 +7,14 @@ import android.content.Intent
|
|
|
import android.net.Uri
|
|
|
import android.os.Build
|
|
|
import androidx.core.content.ContextCompat
|
|
|
+import eu.kanade.domain.chapter.interactor.GetChapter
|
|
|
+import eu.kanade.domain.chapter.interactor.UpdateChapter
|
|
|
+import eu.kanade.domain.chapter.model.toChapterUpdate
|
|
|
+import eu.kanade.domain.chapter.model.toDbChapter
|
|
|
+import eu.kanade.domain.manga.interactor.GetMangaById
|
|
|
+import eu.kanade.domain.manga.model.toDbManga
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
import eu.kanade.tachiyomi.data.backup.BackupRestoreService
|
|
|
-import eu.kanade.tachiyomi.data.database.DatabaseHelper
|
|
|
import eu.kanade.tachiyomi.data.database.models.Chapter
|
|
|
import eu.kanade.tachiyomi.data.database.models.Manga
|
|
|
import eu.kanade.tachiyomi.data.download.DownloadManager
|
|
@@ -27,6 +32,7 @@ import eu.kanade.tachiyomi.util.storage.getUriCompat
|
|
|
import eu.kanade.tachiyomi.util.system.notificationManager
|
|
|
import eu.kanade.tachiyomi.util.system.toShareIntent
|
|
|
import eu.kanade.tachiyomi.util.system.toast
|
|
|
+import kotlinx.coroutines.runBlocking
|
|
|
import uy.kohesive.injekt.Injekt
|
|
|
import uy.kohesive.injekt.api.get
|
|
|
import uy.kohesive.injekt.injectLazy
|
|
@@ -40,6 +46,9 @@ import eu.kanade.tachiyomi.BuildConfig.APPLICATION_ID as ID
|
|
|
*/
|
|
|
class NotificationReceiver : BroadcastReceiver() {
|
|
|
|
|
|
+ private val getMangaById: GetMangaById by injectLazy()
|
|
|
+ private val getChapter: GetChapter by injectLazy()
|
|
|
+ private val updateChapter: UpdateChapter by injectLazy()
|
|
|
private val downloadManager: DownloadManager by injectLazy()
|
|
|
|
|
|
override fun onReceive(context: Context, intent: Intent) {
|
|
@@ -169,9 +178,8 @@ class NotificationReceiver : BroadcastReceiver() {
|
|
|
* @param chapterId id of chapter
|
|
|
*/
|
|
|
private fun openChapter(context: Context, mangaId: Long, chapterId: Long) {
|
|
|
- val db = Injekt.get<DatabaseHelper>()
|
|
|
- val manga = db.getManga(mangaId).executeAsBlocking()
|
|
|
- val chapter = db.getChapter(chapterId).executeAsBlocking()
|
|
|
+ val manga = runBlocking { getMangaById.await(mangaId) }
|
|
|
+ val chapter = runBlocking { getChapter.await(chapterId) }
|
|
|
if (manga != null && chapter != null) {
|
|
|
val intent = ReaderActivity.newIntent(context, manga.id, chapter.id).apply {
|
|
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP
|
|
@@ -232,25 +240,25 @@ class NotificationReceiver : BroadcastReceiver() {
|
|
|
* @param mangaId id of manga
|
|
|
*/
|
|
|
private fun markAsRead(chapterUrls: Array<String>, mangaId: Long) {
|
|
|
- val db: DatabaseHelper = Injekt.get()
|
|
|
val preferences: PreferencesHelper = Injekt.get()
|
|
|
val sourceManager: SourceManager = Injekt.get()
|
|
|
|
|
|
launchIO {
|
|
|
- chapterUrls.mapNotNull { db.getChapter(it, mangaId).executeAsBlocking() }
|
|
|
- .forEach {
|
|
|
- it.read = true
|
|
|
- db.updateChapterProgress(it).executeAsBlocking()
|
|
|
+ val toUpdate = chapterUrls.mapNotNull { getChapter.await(it, mangaId) }
|
|
|
+ .map {
|
|
|
+ val chapter = it.copy(read = true)
|
|
|
if (preferences.removeAfterMarkedAsRead()) {
|
|
|
- val manga = db.getManga(mangaId).executeAsBlocking()
|
|
|
+ val manga = getMangaById.await(mangaId)
|
|
|
if (manga != null) {
|
|
|
val source = sourceManager.get(manga.source)
|
|
|
if (source != null) {
|
|
|
- downloadManager.deleteChapters(listOf(it), manga, source)
|
|
|
+ downloadManager.deleteChapters(listOf(it.toDbChapter()), manga.toDbManga(), source)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ chapter.toChapterUpdate()
|
|
|
}
|
|
|
+ updateChapter.awaitAll(toUpdate)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -261,12 +269,10 @@ class NotificationReceiver : BroadcastReceiver() {
|
|
|
* @param mangaId id of manga
|
|
|
*/
|
|
|
private fun downloadChapters(chapterUrls: Array<String>, mangaId: Long) {
|
|
|
- val db: DatabaseHelper = Injekt.get()
|
|
|
-
|
|
|
launchIO {
|
|
|
- val chapters = chapterUrls.mapNotNull { db.getChapter(it, mangaId).executeAsBlocking() }
|
|
|
- val manga = db.getManga(mangaId).executeAsBlocking()
|
|
|
- if (chapters.isNotEmpty() && manga != null) {
|
|
|
+ val manga = getMangaById.await(mangaId)?.toDbManga()
|
|
|
+ val chapters = chapterUrls.mapNotNull { getChapter.await(it, mangaId)?.toDbChapter() }
|
|
|
+ if (manga != null && chapters.isNotEmpty()) {
|
|
|
downloadManager.downloadChapters(manga, chapters)
|
|
|
}
|
|
|
}
|