feat: better casing edge case handling when scrobbling

This commit is contained in:
Cory Dransfeldt 2024-05-24 12:42:07 -07:00
parent 5279671e05
commit 695524697c
No known key found for this signature in database
3 changed files with 24 additions and 12 deletions

View file

@ -35,10 +35,10 @@ export default async (request) => {
const artistKey = sanitizeMediaString(artist)
const albumKey = `${artistKey}-${sanitizeMediaString(album)}`
const { error: artistError } = await supabase
let { data: artistData, error: artistError } = await supabase
.from('artists')
.select('*')
.eq('name_string', artist)
.ilike('name_string', artist)
.single()
if (artistError && artistError.code === 'PGRST116') {
@ -56,15 +56,21 @@ export default async (request) => {
console.error('Error inserting artist into Supabase:', insertArtistError.message)
return new Response(JSON.stringify({ status: 'error', message: insertArtistError.message }), { headers: { "Content-Type": "application/json" } })
}
({ data: artistData, error: artistError } = await supabase
.from('artists')
.select('*')
.ilike('name_string', artist)
.single())
} else if (artistError) {
console.error('Error querying artist from Supabase:', artistError.message)
return new Response(JSON.stringify({ status: 'error', message: artistError.message }), { headers: { "Content-Type": "application/json" } })
}
const { error: albumError } = await supabase
let { data: albumData, error: albumError } = await supabase
.from('albums')
.select('*')
.eq('key', albumKey)
.ilike('key', albumKey)
.single()
if (albumError && albumError.code === 'PGRST116') {
@ -82,6 +88,12 @@ export default async (request) => {
console.error('Error inserting album into Supabase:', insertAlbumError.message)
return new Response(JSON.stringify({ status: 'error', message: insertAlbumError.message }), { headers: { "Content-Type": "application/json" } })
}
({ data: albumData, error: albumError } = await supabase
.from('albums')
.select('*')
.ilike('key', albumKey)
.single())
} else if (albumError) {
console.error('Error querying album from Supabase:', albumError.message)
return new Response(JSON.stringify({ status: 'error', message: albumError.message }), { headers: { "Content-Type": "application/json" } })
@ -89,8 +101,8 @@ export default async (request) => {
const { error: listenError } = await supabase.from('listens').insert([
{
artist_name: artist,
album_name: album,
artist_name: artistData.name_string,
album_name: albumData.name,
track_name: track,
listened_at: listenedAt,
album_key: albumKey
@ -100,8 +112,8 @@ export default async (request) => {
if (listenError) {
console.error('Error inserting data into Supabase:', listenError.message)
console.log('Track with the error:', {
artist_name: artist,
album_name: album,
artist_name: artistData.name_string,
album_name: albumData.name,
track_name: track,
listened_at: listenedAt,
album_key: albumKey
@ -115,4 +127,4 @@ export default async (request) => {
export const config = {
path: '/api/scrobble',
}
}

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "17.1.5",
"version": "17.2.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "17.1.5",
"version": "17.2.5",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.2.3",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "17.1.5",
"version": "17.2.5",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {