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/scrobble.js
Cory Dransfeldt 94d29f0174
chore: debug
2024-03-29 10:05:24 -07:00

40 lines
No EOL
996 B
JavaScript

import { getStore } from '@netlify/blobs'
export default async (request, context) => {
const ACCOUNT_ID_PLEX = Netlify.env.get("ACCOUNT_ID_PLEX");
const params = new URL(request['url']).searchParams
const id = params.get('id')
const data = await request.formData()
const payload = data['payload']
console.log(payload)
const debug = getStore('debug')
await debug.setJSON('debug', JSON.stringify(payload))
if (!id) return new Response(JSON.stringify({
status: 'Bad request',
}),
{ headers: { "Content-Type": "application/json" } }
)
if (id !== ACCOUNT_ID_PLEX) return new Response(JSON.stringify({
status: 'Forbidden',
}),
{ headers: { "Content-Type": "application/json" } }
)
if (payload?.event === 'media.scrobble') {
console.log('scrobble')
}
return new Response(JSON.stringify({
status: 'success',
}),
{ headers: { "Content-Type": "application/json" } }
)
}
export const config = {
path: "/api/scrobble",
}