chore: scrobbling
This commit is contained in:
parent
0018a8f124
commit
df9dcde235
1 changed files with 10 additions and 6 deletions
|
@ -56,11 +56,13 @@ export default async (request) => {
|
|||
const timestamp = DateTime.now()
|
||||
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
||||
const albumKey = `${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(album).replace(/\s+/g, '-').toLowerCase()}`
|
||||
let artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob
|
||||
let albumInfo = await albums.get(albumKey, { type: 'json'}) // get the album blob
|
||||
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
||||
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
||||
let artistInfo = {}
|
||||
let albumInfo = {}
|
||||
|
||||
// if there is no artist blob, populate one
|
||||
if (!artistInfo) {
|
||||
if (!artistsMap[artist]) {
|
||||
const artistRes = await fetch(
|
||||
`https://ws.audioscrobbler.com/2.0/?method=artist.getInfo&api_key=${MUSIC_KEY}&artist=${sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase()}&format=json`,
|
||||
{
|
||||
|
@ -106,11 +108,12 @@ export default async (request) => {
|
|||
image: `https://cdn.coryd.dev/artists/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}.jpg`
|
||||
}
|
||||
artistInfo = artistObj
|
||||
await artists.setJSON(artistKey, artistObj)
|
||||
artistsMap[artist] = artistObj
|
||||
await artists.setJSON('artists-map', artistsMap)
|
||||
}
|
||||
|
||||
// if there is no album blob, populate one
|
||||
if (!albumInfo) {
|
||||
if (!albumsMap[album]) {
|
||||
const albumRes = await fetch(
|
||||
`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase()}&album=${sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase()}&format=json`,
|
||||
{
|
||||
|
@ -129,7 +132,8 @@ export default async (request) => {
|
|||
image: `https://cdn.coryd.dev/albums/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}-${sanitizeMediaString(album.replace(/[:\/\\,'']+/g
|
||||
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`
|
||||
}
|
||||
await albums.setJSON(albumKey, albumObj)
|
||||
albumsMap[album] = albumObj
|
||||
await albums.setJSON('albums-map', albumsMap)
|
||||
}
|
||||
|
||||
// scrobble logic
|
||||
|
|
Reference in a new issue