package audio.funkwhale.ffa.repositories import android.content.Context import audio.funkwhale.ffa.FFA import audio.funkwhale.ffa.utils.* import com.github.kittinunf.fuel.gson.gsonDeserializerOf import com.google.android.exoplayer2.offline.Download import com.google.gson.reflect.TypeToken import kotlinx.coroutines.flow.map import kotlinx.coroutines.flow.toList import kotlinx.coroutines.runBlocking import java.io.BufferedReader class TracksRepository(override val context: Context?, albumId: Int) : Repository() { override val cacheId = "tracks-album-$albumId" override val upstream = HttpUpstream>(HttpUpstream.Behavior.AtOnce, "/api/v1/tracks/?playable=true&album=$albumId&ordering=disc_number,position", object : TypeToken() {}.type) override fun cache(data: List) = TracksCache(data) override fun uncache(reader: BufferedReader) = gsonDeserializerOf(TracksCache::class.java).deserialize(reader) companion object { fun getDownloadedIds(): List? { val cursor = audio.funkwhale.ffa.FFA.get().exoDownloadManager.downloadIndex.getDownloads() val ids: MutableList = mutableListOf() while (cursor.moveToNext()) { val download = cursor.download download.getMetadata()?.let { if (download.state == Download.STATE_COMPLETED) { ids.add(it.id) } } } return ids } } override fun onDataFetched(data: List): List = runBlocking { val favorites = FavoritedRepository(context).fetch(Origin.Cache.origin) .map { it.data } .toList() .flatten() val downloaded = getDownloadedIds() ?: listOf() data.map { track -> track.favorite = favorites.contains(track.id) track.downloaded = downloaded.contains(track.id) track.bestUpload()?.let { upload -> val url = mustNormalizeUrl(upload.listen_url) track.cached = audio.funkwhale.ffa.FFA.get().exoCache.isCached(url, 0, upload.duration * 1000L) } track }.sortedWith(compareBy({ it.disc_number }, { it.position })) } }