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

31 lines
1.0 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.utils.Artist
import audio.funkwhale.ffa.utils.ArtistsCache
import audio.funkwhale.ffa.utils.ArtistsResponse
2021-07-30 10:57:49 +02:00
import audio.funkwhale.ffa.utils.OAuthFactory
import audio.funkwhale.ffa.utils.OtterResponse
2019-08-19 16:50:33 +02:00
import com.github.kittinunf.fuel.gson.gsonDeserializerOf
import com.google.gson.reflect.TypeToken
import java.io.BufferedReader
class ArtistsRepository(override val context: Context?) : Repository<Artist, ArtistsCache>() {
2021-07-23 14:10:13 +02:00
2021-07-30 10:57:49 +02:00
private val oAuth = OAuthFactory.instance()
2019-08-19 16:50:33 +02:00
override val cacheId = "artists"
2021-07-23 14:10:13 +02:00
override val upstream = HttpUpstream<Artist, OtterResponse<Artist>>(
context,
HttpUpstream.Behavior.Progressive,
"/api/v1/artists/?playable=true&ordering=name",
2021-07-30 10:57:49 +02:00
object : TypeToken<ArtistsResponse>() {}.type,
oAuth
2021-07-23 14:10:13 +02:00
)
2019-08-19 16:50:33 +02:00
override fun cache(data: List<Artist>) = ArtistsCache(data)
2021-07-23 14:10:13 +02:00
override fun uncache(reader: BufferedReader) =
gsonDeserializerOf(ArtistsCache::class.java).deserialize(reader)
2021-07-02 13:55:49 +02:00
}