funkwhale-app-android/app/src/main/java/audio/funkwhale/ffa/repositories/FavoritesRepository.kt

126 lines
3.9 KiB
Kotlin
Raw Normal View History

package audio.funkwhale.ffa.repositories
2019-08-19 16:50:33 +02:00
import android.content.Context
import audio.funkwhale.ffa.model.*
import audio.funkwhale.ffa.utils.*
2019-08-19 16:50:33 +02:00
import com.github.kittinunf.fuel.Fuel
import com.github.kittinunf.fuel.coroutines.awaitByteArrayResponseResult
import com.google.android.exoplayer2.offline.DownloadManager
import com.google.android.exoplayer2.upstream.cache.Cache
2019-08-19 16:50:33 +02:00
import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import kotlinx.coroutines.CoroutineScope
2019-08-19 16:50:33 +02:00
import kotlinx.coroutines.Dispatchers.IO
import kotlinx.coroutines.launch
import kotlinx.coroutines.runBlocking
import org.koin.core.qualifier.named
import org.koin.java.KoinJavaComponent.inject
2019-08-19 16:50:33 +02:00
class FavoritesRepository(override val context: Context?) : Repository<Track, TracksCache>() {
2021-07-23 14:10:13 +02:00
private val exoDownloadManager: DownloadManager by inject(DownloadManager::class.java)
private val exoCache: Cache by inject(Cache::class.java, named("exoCache"))
private val oAuth: OAuth by inject(OAuth::class.java)
2021-07-30 10:57:49 +02:00
override val cacheId = "favorites.v2"
2021-07-23 14:10:13 +02:00
override val upstream = HttpUpstream<Track, FFAResponse<Track>>(
2021-07-23 14:10:13 +02:00
context!!,
HttpUpstream.Behavior.AtOnce,
"/api/v1/tracks/?favorites=true&playable=true&ordering=title",
2021-07-30 10:57:49 +02:00
object : TypeToken<TracksResponse>() {}.type,
oAuth
2021-07-23 14:10:13 +02:00
)
2019-08-19 16:50:33 +02:00
override fun cache(data: List<Track>) = TracksCache(data)
override fun uncache(json: String) =
gsonDeserializerOf(TracksCache::class.java).deserialize(json.reader())
2019-08-19 16:50:33 +02:00
2021-07-23 14:10:13 +02:00
private val favoritedRepository = FavoritedRepository(context!!)
override fun onDataFetched(data: List<Track>): List<Track> = runBlocking {
val downloaded = TracksRepository.getDownloadedIds(exoDownloadManager) ?: listOf()
data.map { track ->
track.favorite = true
track.downloaded = downloaded.contains(track.id)
track.bestUpload()?.let { upload ->
maybeNormalizeUrl(upload.listen_url)?.let { url ->
track.cached = exoCache.isCached(url, 0, upload.duration * 1000L)
}
}
track
}
2019-08-19 16:50:33 +02:00
}
fun addFavorite(id: Int) {
2021-07-23 14:10:13 +02:00
context?.let {
val body = mapOf("track" to id)
2019-08-19 16:50:33 +02:00
2021-07-23 14:10:13 +02:00
val request = Fuel.post(mustNormalizeUrl("/api/v1/favorites/tracks/")).apply {
if (!Settings.isAnonymous()) {
authorize(context, oAuth)
2021-07-30 10:57:49 +02:00
header("Authorization", "Bearer ${oAuth.state().accessToken}")
2021-07-23 14:10:13 +02:00
}
}
2021-07-23 14:10:13 +02:00
scope.launch(IO) {
request
.header("Content-Type", "application/json")
.body(Gson().toJson(body))
.awaitByteArrayResponseResult()
2021-07-23 14:10:13 +02:00
favoritedRepository.update(context, scope)
}
2019-08-19 16:50:33 +02:00
}
}
fun deleteFavorite(id: Int) {
2021-07-23 14:10:13 +02:00
context?.let {
val body = mapOf("track" to id)
2019-08-19 16:50:33 +02:00
2021-07-23 14:10:13 +02:00
val request = Fuel.post(mustNormalizeUrl("/api/v1/favorites/tracks/remove/")).apply {
if (!Settings.isAnonymous()) {
authorize(context, oAuth)
2021-07-30 10:57:49 +02:00
request.header("Authorization", "Bearer ${oAuth.state().accessToken}")
2021-07-23 14:10:13 +02:00
}
}
2021-07-23 14:10:13 +02:00
scope.launch(IO) {
request
.header("Content-Type", "application/json")
.body(Gson().toJson(body))
.awaitByteArrayResponseResult()
2021-07-23 14:10:13 +02:00
favoritedRepository.update(context, scope)
}
2019-08-19 16:50:33 +02:00
}
}
}
class FavoritedRepository(override val context: Context?) : Repository<Int, FavoritedCache>() {
2021-07-30 10:57:49 +02:00
private val oAuth: OAuth by inject(OAuth::class.java)
2021-07-30 10:57:49 +02:00
override val cacheId = "favorited"
override val upstream = HttpUpstream<Int, FFAResponse<Int>>(
2021-07-23 14:10:13 +02:00
context,
HttpUpstream.Behavior.Single,
"/api/v1/favorites/tracks/all/?playable=true",
2021-07-30 10:57:49 +02:00
object : TypeToken<FavoritedResponse>() {}.type,
oAuth
2021-07-23 14:10:13 +02:00
)
override fun cache(data: List<Int>) = FavoritedCache(data)
override fun uncache(json: String) =
gsonDeserializerOf(FavoritedCache::class.java).deserialize(json.reader())
fun update(context: Context?, scope: CoroutineScope) {
fetch(Origin.Network.origin).untilNetwork(scope, IO) { favorites, _, _, _ ->
FFACache.set(context, cacheId, Gson().toJson(cache(favorites)).toString())
}
}
}