chore: scrobbling
This commit is contained in:
parent
67d62e5b41
commit
36dd33bbd9
1 changed files with 3 additions and 5 deletions
|
@ -14,10 +14,6 @@ export default async (request, context) => {
|
||||||
const payload = JSON.parse(data.get('payload'))
|
const payload = JSON.parse(data.get('payload'))
|
||||||
const artists = getStore('artists')
|
const artists = getStore('artists')
|
||||||
|
|
||||||
|
|
||||||
const debug = getStore('debug')
|
|
||||||
await debug.setJSON('debug', JSON.stringify(payload))
|
|
||||||
|
|
||||||
if (!id) return new Response(JSON.stringify({
|
if (!id) return new Response(JSON.stringify({
|
||||||
status: 'Bad request',
|
status: 'Bad request',
|
||||||
}),
|
}),
|
||||||
|
@ -36,7 +32,9 @@ export default async (request, context) => {
|
||||||
const album = payload['Metadata']['parentTitle']
|
const album = payload['Metadata']['parentTitle']
|
||||||
const track = payload['Metadata']['title']
|
const track = payload['Metadata']['title']
|
||||||
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
||||||
const artistInfo = await artists.getJSON(artistKey)
|
const artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob
|
||||||
|
|
||||||
|
// if there is no artist blob, populate one
|
||||||
if (!artistInfo) {
|
if (!artistInfo) {
|
||||||
const trackRes = await fetch(
|
const trackRes = await fetch(
|
||||||
`https://ws.audioscrobbler.com/2.0/?method=track.getInfo&api_key=${MUSIC_KEY}&artist=${artist}&track=${track}&format=json`,
|
`https://ws.audioscrobbler.com/2.0/?method=track.getInfo&api_key=${MUSIC_KEY}&artist=${artist}&track=${track}&format=json`,
|
||||||
|
|
Reference in a new issue