feat: better casing edge case handling when scrobbling
This commit is contained in:
parent
5279671e05
commit
695524697c
3 changed files with 24 additions and 12 deletions
|
@ -35,10 +35,10 @@ export default async (request) => {
|
||||||
const artistKey = sanitizeMediaString(artist)
|
const artistKey = sanitizeMediaString(artist)
|
||||||
const albumKey = `${artistKey}-${sanitizeMediaString(album)}`
|
const albumKey = `${artistKey}-${sanitizeMediaString(album)}`
|
||||||
|
|
||||||
const { error: artistError } = await supabase
|
let { data: artistData, error: artistError } = await supabase
|
||||||
.from('artists')
|
.from('artists')
|
||||||
.select('*')
|
.select('*')
|
||||||
.eq('name_string', artist)
|
.ilike('name_string', artist)
|
||||||
.single()
|
.single()
|
||||||
|
|
||||||
if (artistError && artistError.code === 'PGRST116') {
|
if (artistError && artistError.code === 'PGRST116') {
|
||||||
|
@ -56,15 +56,21 @@ export default async (request) => {
|
||||||
console.error('Error inserting artist into Supabase:', insertArtistError.message)
|
console.error('Error inserting artist into Supabase:', insertArtistError.message)
|
||||||
return new Response(JSON.stringify({ status: 'error', message: insertArtistError.message }), { headers: { "Content-Type": "application/json" } })
|
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) {
|
} else if (artistError) {
|
||||||
console.error('Error querying artist from Supabase:', artistError.message)
|
console.error('Error querying artist from Supabase:', artistError.message)
|
||||||
return new Response(JSON.stringify({ status: 'error', message: artistError.message }), { headers: { "Content-Type": "application/json" } })
|
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')
|
.from('albums')
|
||||||
.select('*')
|
.select('*')
|
||||||
.eq('key', albumKey)
|
.ilike('key', albumKey)
|
||||||
.single()
|
.single()
|
||||||
|
|
||||||
if (albumError && albumError.code === 'PGRST116') {
|
if (albumError && albumError.code === 'PGRST116') {
|
||||||
|
@ -82,6 +88,12 @@ export default async (request) => {
|
||||||
console.error('Error inserting album into Supabase:', insertAlbumError.message)
|
console.error('Error inserting album into Supabase:', insertAlbumError.message)
|
||||||
return new Response(JSON.stringify({ status: 'error', message: insertAlbumError.message }), { headers: { "Content-Type": "application/json" } })
|
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) {
|
} else if (albumError) {
|
||||||
console.error('Error querying album from Supabase:', albumError.message)
|
console.error('Error querying album from Supabase:', albumError.message)
|
||||||
return new Response(JSON.stringify({ status: 'error', message: albumError.message }), { headers: { "Content-Type": "application/json" } })
|
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([
|
const { error: listenError } = await supabase.from('listens').insert([
|
||||||
{
|
{
|
||||||
artist_name: artist,
|
artist_name: artistData.name_string,
|
||||||
album_name: album,
|
album_name: albumData.name,
|
||||||
track_name: track,
|
track_name: track,
|
||||||
listened_at: listenedAt,
|
listened_at: listenedAt,
|
||||||
album_key: albumKey
|
album_key: albumKey
|
||||||
|
@ -100,8 +112,8 @@ export default async (request) => {
|
||||||
if (listenError) {
|
if (listenError) {
|
||||||
console.error('Error inserting data into Supabase:', listenError.message)
|
console.error('Error inserting data into Supabase:', listenError.message)
|
||||||
console.log('Track with the error:', {
|
console.log('Track with the error:', {
|
||||||
artist_name: artist,
|
artist_name: artistData.name_string,
|
||||||
album_name: album,
|
album_name: albumData.name,
|
||||||
track_name: track,
|
track_name: track,
|
||||||
listened_at: listenedAt,
|
listened_at: listenedAt,
|
||||||
album_key: albumKey
|
album_key: albumKey
|
||||||
|
@ -115,4 +127,4 @@ export default async (request) => {
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
path: '/api/scrobble',
|
path: '/api/scrobble',
|
||||||
}
|
}
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "17.1.5",
|
"version": "17.2.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "17.1.5",
|
"version": "17.2.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.2.3",
|
"@cdransf/api-text": "^1.2.3",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "17.1.5",
|
"version": "17.2.5",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue