chore: update music api
This commit is contained in:
parent
75d2b7f693
commit
178546935c
1 changed files with 3 additions and 16 deletions
19
api/music.js
19
api/music.js
|
@ -4,15 +4,7 @@ export default async (request) => {
|
||||||
const API_KEY_MUSIC = Netlify.env.get('API_KEY_MUSIC');
|
const API_KEY_MUSIC = Netlify.env.get('API_KEY_MUSIC');
|
||||||
const params = new URL(request['url']).searchParams
|
const params = new URL(request['url']).searchParams
|
||||||
const key = params.get('key')
|
const key = params.get('key')
|
||||||
const weeks = params.get('weeks')
|
const week = params.get('week')
|
||||||
let weeksArr = []
|
|
||||||
let weeksString
|
|
||||||
|
|
||||||
if (weeks?.includes(',')) {
|
|
||||||
weeksArr = weeks.split(',')
|
|
||||||
} else {
|
|
||||||
weeksString = weeks
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!key) return new Response(JSON.stringify({
|
if (!key) return new Response(JSON.stringify({
|
||||||
status: 'Bad request',
|
status: 'Bad request',
|
||||||
|
@ -33,13 +25,8 @@ export default async (request) => {
|
||||||
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
||||||
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
||||||
|
|
||||||
if (weeksArr.length > 0) {
|
if (week) {
|
||||||
weeksArr.forEach(async (week) => {
|
const weekData = await scrobbles.get(week, { type: 'json'})
|
||||||
const weekData = await scrobbles.get(week, { type: 'json'})
|
|
||||||
scrobbleData.push(...weekData['data'])
|
|
||||||
})
|
|
||||||
} else if (weeksString) {
|
|
||||||
const weekData = await scrobbles.get(weeksString, { type: 'json'})
|
|
||||||
scrobbleData.push(...weekData['data'])
|
scrobbleData.push(...weekData['data'])
|
||||||
} else {
|
} else {
|
||||||
const windowData = await scrobbles.get('window', { type: 'json'})
|
const windowData = await scrobbles.get('window', { type: 'json'})
|
||||||
|
|
Reference in a new issue