mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
Daniel Mason
2f8aa2e502
- Only allow ItemType:Audio from Jellyfin - Fix NavBar for Mobile (Ugly hack but.. TO REWORK) - Fixed registration page issues - Add functionality to pull recent scrobbles to Dashboard - Add MX record lookup validation for emails - Add username validation for a-Z 0-9 _ and . - Dashboard shows basic table of last 500 scrobbles.
66 lines
1.6 KiB
Go
66 lines
1.6 KiB
Go
package goscrobble
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"fmt"
|
|
"log"
|
|
"net"
|
|
)
|
|
|
|
// ParseJellyfinInput - Transform API data into a common struct
|
|
func ParseJellyfinInput(userUUID string, data map[string]interface{}, ip net.IP, tx *sql.Tx) error {
|
|
if data["ItemType"] != "Audio" {
|
|
return errors.New("Media type not audio")
|
|
}
|
|
|
|
// Safety Checks
|
|
if data["Artist"] == nil {
|
|
return errors.New("Missing artist data")
|
|
}
|
|
|
|
if data["Album"] == nil {
|
|
return errors.New("Missing album data")
|
|
}
|
|
|
|
if data["Name"] == nil {
|
|
return errors.New("Missing track data")
|
|
}
|
|
|
|
// Insert artist if not exist
|
|
artist, err := insertArtist(fmt.Sprintf("%s", data["Artist"]), fmt.Sprintf("%s", data["Provider_musicbrainzartist"]), tx)
|
|
if err != nil {
|
|
log.Printf("%+v", err)
|
|
return errors.New("Failed to map artist")
|
|
}
|
|
|
|
// Insert album if not exist
|
|
artists := []string{artist.Uuid}
|
|
album, err := insertAlbum(fmt.Sprintf("%s", data["Album"]), fmt.Sprintf("%s", data["Provider_musicbrainzalbum"]), artists, tx)
|
|
if err != nil {
|
|
log.Printf("%+v", err)
|
|
return errors.New("Failed to map album")
|
|
}
|
|
|
|
// Insert album if not exist
|
|
track, err := insertTrack(fmt.Sprintf("%s", data["Name"]), fmt.Sprintf("%s", data["Provider_musicbrainztrack"]), album.Uuid, artists, tx)
|
|
if err != nil {
|
|
log.Printf("%+v", err)
|
|
return errors.New("Failed to map track")
|
|
}
|
|
|
|
// Insert album if not exist
|
|
err = insertScrobble(userUUID, track.Uuid, ip, tx)
|
|
if err != nil {
|
|
log.Printf("%+v", err)
|
|
return errors.New("Failed to map track")
|
|
}
|
|
|
|
_ = album
|
|
_ = artist
|
|
_ = track
|
|
|
|
// Insert track if not exist
|
|
return nil
|
|
}
|