This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/api/music.js
2024-03-30 16:36:52 -07:00

51 lines
No EOL
1.4 KiB
JavaScript

import { getStore } from '@netlify/blobs'
export default async (request) => {
const API_KEY_MUSIC = Netlify.env.get('API_KEY_MUSIC');
const params = new URL(request['url']).searchParams
const key = params.get('key')
const weeks = params.get('weeks')
let weeksArr = []
let weeksString
if (weeks?.includes(',')) {
weeksArr = weeks.split(',')
} else {
weeksString = weeks
}
if (!key) return new Response(JSON.stringify({
status: 'Bad request',
}),
{ headers: { "Content-Type": "application/json" } }
)
if (key !== API_KEY_MUSIC) return new Response(JSON.stringify({
status: 'Forbidden',
}),
{ headers: { "Content-Type": "application/json" } }
)
const scrobbles = getStore('scrobbles')
const scrobbleData = []
if (weeksArr.length > 0) {
weeksArr.forEach(async (week) => {
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'])
} else {
const windowData = await scrobbles.get('window', { type: 'json'})
scrobbleData.push(...windowData['data'])
}
return new Response(JSON.stringify({ data: scrobbleData }),
{ headers: { "Content-Type": "application/json" } }
)
}
export const config = {
path: '/api/music',
}