- Return related data on artist/album/track endpoints
- Scrobble table now links to tracks
This commit is contained in:
Daniel Mason 2021-04-05 17:11:37 +12:00
parent 99f9e7cfb3
commit 7c3b98a828
Signed by: idanoo
GPG Key ID: 387387CDBC02F132
8 changed files with 33 additions and 19 deletions

View File

@ -3,7 +3,7 @@ stages:
- bundle
variables:
VERSION: 0.0.19
VERSION: 0.0.20
build-go:
image: golang:1.16.2

View File

@ -1,3 +1,7 @@
# 0.0.20
- Return related data on artist/album/track endpoints
- Scrobble table now links to tracks
# 0.0.19
- Tidy init/goscrobble.service
- Add routers for Artist/Album/Track endpoints + basic pages

View File

@ -33,10 +33,15 @@ type ScrobbleResponseItem struct {
Timestamp time.Time `json:"time"`
Artist string `json:"artist"`
Album string `json:"album"`
Track string `json:"track"`
Track ScrobbleTrackItem `json:"track"`
Source string `json:"source"`
}
type ScrobbleTrackItem struct {
UUID string `json:"uuid"`
Name string `json:"name"`
}
// insertScrobble - This will return if it exists or create it based on MBID > Name
func insertScrobble(user string, track string, source string, timestamp time.Time, ip net.IP, tx *sql.Tx) error {
err := insertNewScrobble(user, track, source, timestamp, ip, tx)
@ -62,7 +67,7 @@ func getScrobblesForUser(userUuid string, limit int, page int) (ScrobbleResponse
}
rows, err := db.Query(
"SELECT BIN_TO_UUID(`scrobbles`.`uuid`, true), `scrobbles`.`created_at`, GROUP_CONCAT(`artists`.`name` separator ','), `albums`.`name`, `tracks`.`name`, `scrobbles`.`source` FROM `scrobbles` "+
"SELECT BIN_TO_UUID(`scrobbles`.`uuid`, true), `scrobbles`.`created_at`, GROUP_CONCAT(`artists`.`name` separator ','), `albums`.`name`, BIN_TO_UUID(`tracks`.`uuid`, true), `tracks`.`name`, `scrobbles`.`source` FROM `scrobbles` "+
"JOIN tracks ON scrobbles.track = tracks.uuid "+
"JOIN track_artist ON track_artist.track = tracks.uuid "+
"JOIN track_album ON track_album.track = tracks.uuid "+
@ -82,7 +87,7 @@ func getScrobblesForUser(userUuid string, limit int, page int) (ScrobbleResponse
for rows.Next() {
item := ScrobbleResponseItem{}
err := rows.Scan(&item.UUID, &item.Timestamp, &item.Artist, &item.Album, &item.Track, &item.Source)
err := rows.Scan(&item.UUID, &item.Timestamp, &item.Artist, &item.Album, &item.Track.UUID, &item.Track.Name, &item.Source)
if err != nil {
log.Printf("Failed to fetch scrobbles: %+v", err)
return scrobbleReq, errors.New("Failed to fetch scrobbles")

View File

@ -556,7 +556,7 @@ func getServerInfo(w http.ResponseWriter, r *http.Request) {
}
info := ServerInfo{
Version: "0.0.19",
Version: "0.0.20",
RegistrationEnabled: cachedRegistrationEnabled,
}

View File

@ -1,4 +1,5 @@
import React from "react";
import { Link } from 'react-router-dom';
const ScrobbleTable = (props) => {
return (
@ -20,7 +21,13 @@ const ScrobbleTable = (props) => {
let localTime = new Date(element.time);
return <tr key={element.uuid}>
<td>{localTime.toLocaleString()}</td>
<td>{element.track}</td>
<td>
<Link
key={element.track.uuid}
to={"/track/"+element.track.uuid}
>{element.track.name}
</Link>
</td>
<td>{element.artist}</td>
<td>{element.album}</td>
<td>{element.source}</td>

View File

@ -24,7 +24,6 @@ const Profile = (route) => {
getProfile(username)
.then(data => {
setProfile(data);
console.log(data)
setLoading(false);
})
}, [username])

View File

@ -35,7 +35,6 @@ const Reset = (route) => {
validateResetPassword(reqToken)
.then(data => {
setReset(data);
console.log(data)
setLoading(false);
})
}, [reqToken])

View File

@ -44,7 +44,7 @@ const Track = (route) => {
}
let length = "0";
if (track.length !== '') {
if (track.length && track.length !== '') {
length = new Date(track.length * 1000).toISOString().substr(11, 8)
}
@ -57,7 +57,7 @@ const Track = (route) => {
<div className="pageBody">
MusicBrainzId: {track.mbid}<br/>
SpotifyID: {track.spotify_id}<br/>
Track Length: {length}
Track Length: {length && length}
</div>
</div>
);