mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
import { cache, httpService } from '@/services'
|
|
import { albumStore, artistStore, songStore } from '@/stores'
|
|
|
|
export const mediaInfoService = {
|
|
async fetchForArtist (artist: Artist) {
|
|
artist = artistStore.syncWithVault(artist)[0]
|
|
const cacheKey = ['artist.info', artist.id]
|
|
if (cache.has(cacheKey)) return cache.get<ArtistInfo>(cacheKey)
|
|
|
|
const info = await httpService.get<ArtistInfo | null>(`artists/${artist.id}/information`)
|
|
|
|
info && cache.set(cacheKey, info)
|
|
info?.image && (artist.image = info.image)
|
|
|
|
return info
|
|
},
|
|
|
|
async fetchForAlbum (album: Album) {
|
|
album = albumStore.syncWithVault(album)[0]
|
|
const cacheKey = ['album.info', album.id]
|
|
if (cache.has(cacheKey)) return cache.get<AlbumInfo>(cacheKey)
|
|
|
|
const info = await httpService.get<AlbumInfo | null>(`albums/${album.id}/information`)
|
|
info && cache.set(cacheKey, info)
|
|
|
|
if (info?.cover) {
|
|
album.cover = info.cover
|
|
songStore.byAlbum(album).forEach(song => (song.album_cover = info.cover!))
|
|
}
|
|
|
|
return info
|
|
}
|
|
}
|