mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
Fix Download All to pick failed again and Notif Removal Fix
This commit is contained in:
parent
4dda5037dd
commit
e4b47d871a
@ -44,7 +44,6 @@ import com.shabinder.common.models.event.coroutines.failure
|
|||||||
import com.shabinder.common.providers.FetchPlatformQueryResult
|
import com.shabinder.common.providers.FetchPlatformQueryResult
|
||||||
import com.shabinder.common.translations.Strings
|
import com.shabinder.common.translations.Strings
|
||||||
import com.shabinder.spotiflyer.R
|
import com.shabinder.spotiflyer.R
|
||||||
import com.shabinder.spotiflyer.utils.autoclear.AutoClear
|
|
||||||
import com.shabinder.spotiflyer.utils.autoclear.autoClear
|
import com.shabinder.spotiflyer.utils.autoclear.autoClear
|
||||||
import kotlinx.coroutines.CancellationException
|
import kotlinx.coroutines.CancellationException
|
||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
@ -57,13 +56,19 @@ import java.io.File
|
|||||||
|
|
||||||
class ForegroundService : LifecycleService() {
|
class ForegroundService : LifecycleService() {
|
||||||
|
|
||||||
private var downloadService: AutoClear<ParallelExecutor> = autoClear { ParallelExecutor(Dispatchers.IO) }
|
private lateinit var downloadService: ParallelExecutor
|
||||||
val trackStatusFlowMap by autoClear { TrackStatusFlowMap(MutableSharedFlow(replay = 1), lifecycleScope) }
|
val trackStatusFlowMap by autoClear {
|
||||||
|
TrackStatusFlowMap(
|
||||||
|
MutableSharedFlow(replay = 1),
|
||||||
|
lifecycleScope
|
||||||
|
)
|
||||||
|
}
|
||||||
private val fetcher: FetchPlatformQueryResult by inject()
|
private val fetcher: FetchPlatformQueryResult by inject()
|
||||||
private val logger: Kermit by inject()
|
private val logger: Kermit by inject()
|
||||||
private val dir: FileManager by inject()
|
private val dir: FileManager by inject()
|
||||||
|
|
||||||
private var messageList = java.util.Collections.synchronizedList(MutableList(5) { emptyMessage })
|
private var messageList =
|
||||||
|
java.util.Collections.synchronizedList(MutableList(5) { emptyMessage })
|
||||||
private var wakeLock: PowerManager.WakeLock? = null
|
private var wakeLock: PowerManager.WakeLock? = null
|
||||||
private var isServiceStarted = false
|
private var isServiceStarted = false
|
||||||
private val cancelIntent: PendingIntent by lazy {
|
private val cancelIntent: PendingIntent by lazy {
|
||||||
@ -92,6 +97,7 @@ class ForegroundService : LifecycleService() {
|
|||||||
|
|
||||||
override fun onCreate() {
|
override fun onCreate() {
|
||||||
super.onCreate()
|
super.onCreate()
|
||||||
|
downloadService = ParallelExecutor(Dispatchers.IO)
|
||||||
createNotificationChannel(CHANNEL_ID, "Downloader Service")
|
createNotificationChannel(CHANNEL_ID, "Downloader Service")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -138,7 +144,7 @@ class ForegroundService : LifecycleService() {
|
|||||||
for (track in trackList) {
|
for (track in trackList) {
|
||||||
trackStatusFlowMap[track.title] = DownloadStatus.Queued
|
trackStatusFlowMap[track.title] = DownloadStatus.Queued
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
downloadService.value.executeSuspending {
|
downloadService.executeSuspending {
|
||||||
fetcher.findBestDownloadLink(track).fold(
|
fetcher.findBestDownloadLink(track).fold(
|
||||||
success = { res ->
|
success = { res ->
|
||||||
enqueueDownload(res.first, track.apply { audioQuality = res.second })
|
enqueueDownload(res.first, track.apply { audioQuality = res.second })
|
||||||
@ -165,7 +171,8 @@ class ForegroundService : LifecycleService() {
|
|||||||
is DownloadResult.Error -> {
|
is DownloadResult.Error -> {
|
||||||
logger.d(TAG) { it.message }
|
logger.d(TAG) { it.message }
|
||||||
failed++
|
failed++
|
||||||
trackStatusFlowMap[track.title] = DownloadStatus.Failed(it.cause ?: Exception(it.message))
|
trackStatusFlowMap[track.title] =
|
||||||
|
DownloadStatus.Failed(it.cause ?: Exception(it.message))
|
||||||
removeFromNotification(Message(track.title, DownloadStatus.Downloading()))
|
removeFromNotification(Message(track.title, DownloadStatus.Downloading()))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,7 +185,12 @@ class ForegroundService : LifecycleService() {
|
|||||||
coroutineScope {
|
coroutineScope {
|
||||||
SuspendableEvent {
|
SuspendableEvent {
|
||||||
// Save File and Embed Metadata
|
// Save File and Embed Metadata
|
||||||
val job = launch(Dispatchers.Default) { dir.saveFileWithMetadata(it.byteArray, track) {} }
|
val job = launch(Dispatchers.Default) {
|
||||||
|
dir.saveFileWithMetadata(
|
||||||
|
it.byteArray,
|
||||||
|
track
|
||||||
|
) {}
|
||||||
|
}
|
||||||
|
|
||||||
// Send Converting Status
|
// Send Converting Status
|
||||||
trackStatusFlowMap[track.title] = DownloadStatus.Converting
|
trackStatusFlowMap[track.title] = DownloadStatus.Converting
|
||||||
@ -189,13 +201,24 @@ class ForegroundService : LifecycleService() {
|
|||||||
if (throwable != null && throwable !is CancellationException) {
|
if (throwable != null && throwable !is CancellationException) {
|
||||||
// handle error
|
// handle error
|
||||||
failed++
|
failed++
|
||||||
trackStatusFlowMap[track.title] = DownloadStatus.Failed(throwable)
|
trackStatusFlowMap[track.title] =
|
||||||
removeFromNotification(Message(track.title, DownloadStatus.Converting))
|
DownloadStatus.Failed(throwable)
|
||||||
|
removeFromNotification(
|
||||||
|
Message(
|
||||||
|
track.title,
|
||||||
|
DownloadStatus.Converting
|
||||||
|
)
|
||||||
|
)
|
||||||
return@invokeOnCompletion
|
return@invokeOnCompletion
|
||||||
}
|
}
|
||||||
converted++
|
converted++
|
||||||
trackStatusFlowMap[track.title] = DownloadStatus.Downloaded
|
trackStatusFlowMap[track.title] = DownloadStatus.Downloaded
|
||||||
removeFromNotification(Message(track.title, DownloadStatus.Converting))
|
removeFromNotification(
|
||||||
|
Message(
|
||||||
|
track.title,
|
||||||
|
DownloadStatus.Converting
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
logger.d(TAG) { "${track.title} Download Completed" }
|
logger.d(TAG) { "${track.title} Download Completed" }
|
||||||
downloaded++
|
downloaded++
|
||||||
@ -249,8 +272,7 @@ class ForegroundService : LifecycleService() {
|
|||||||
messageList = messageList.getEmpty().apply {
|
messageList = messageList.getEmpty().apply {
|
||||||
set(index = 0, Message(Strings.cleaningAndExiting(), DownloadStatus.NotDownloaded))
|
set(index = 0, Message(Strings.cleaningAndExiting(), DownloadStatus.NotDownloaded))
|
||||||
}
|
}
|
||||||
downloadService.getOrNull()?.close()
|
downloadService.close()
|
||||||
downloadService.reset()
|
|
||||||
updateNotification()
|
updateNotification()
|
||||||
cleanFiles(File(dir.defaultDir()))
|
cleanFiles(File(dir.defaultDir()))
|
||||||
// cleanFiles(File(dir.imageCacheDir()))
|
// cleanFiles(File(dir.imageCacheDir()))
|
||||||
@ -265,7 +287,8 @@ class ForegroundService : LifecycleService() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun createNotification(): Notification = NotificationCompat.Builder(this, CHANNEL_ID).run {
|
private fun createNotification(): Notification =
|
||||||
|
NotificationCompat.Builder(this, CHANNEL_ID).run {
|
||||||
setSmallIcon(R.drawable.ic_download_arrow)
|
setSmallIcon(R.drawable.ic_download_arrow)
|
||||||
setContentTitle("${Strings.total()}: $total ${Strings.completed()}:$converted ${Strings.failed()}:$failed")
|
setContentTitle("${Strings.total()}: $total ${Strings.completed()}:$converted ${Strings.failed()}:$failed")
|
||||||
setSilent(true)
|
setSilent(true)
|
||||||
|
@ -98,7 +98,7 @@ internal class SpotiFlyerListStoreProvider(dependencies: SpotiFlyerList.Dependen
|
|||||||
|
|
||||||
is Intent.StartDownloadAll -> {
|
is Intent.StartDownloadAll -> {
|
||||||
val list = intent.trackList.map {
|
val list = intent.trackList.map {
|
||||||
if (it.downloaded == DownloadStatus.NotDownloaded)
|
if (it.downloaded is DownloadStatus.NotDownloaded || it.downloaded is DownloadStatus.Failed)
|
||||||
return@map it.copy(downloaded = DownloadStatus.Queued)
|
return@map it.copy(downloaded = DownloadStatus.Queued)
|
||||||
it
|
it
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user