Run go fmt, fix pagination bug, clean up code
This commit is contained in:
parent
0c123c415b
commit
dc3820d6f4
4 changed files with 37 additions and 30 deletions
|
@ -1,9 +1,9 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"gorm.io/driver/sqlite"
|
"gorm.io/driver/sqlite"
|
||||||
"encoding/json"
|
|
||||||
"gorm.io/gorm"
|
"gorm.io/gorm"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
"time"
|
"time"
|
||||||
|
|
2
main.go
2
main.go
|
@ -27,6 +27,8 @@ func setupRouter(env *Env, spotifyID string, spotifySecret string) *gin.Engine {
|
||||||
r.GET("/artists/:artistID", env.getArtistByID)
|
r.GET("/artists/:artistID", env.getArtistByID)
|
||||||
r.GET("/artists", env.getArtistByName)
|
r.GET("/artists", env.getArtistByName)
|
||||||
r.GET("/genres", env.getGenres)
|
r.GET("/genres", env.getGenres)
|
||||||
|
|
||||||
|
// POST create endpoint
|
||||||
r.POST("/genres", env.createGenre)
|
r.POST("/genres", env.createGenre)
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
11
routes.go
11
routes.go
|
@ -38,8 +38,12 @@ func paginator() gin.HandlerFunc {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if page < 1 || pageSize < 1 {
|
if page < 1 {
|
||||||
page, pageSize = 1, 10
|
page = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if pageSize < 10 {
|
||||||
|
pageSize = 10
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate the correct SQL offset for this page
|
// Calculate the correct SQL offset for this page
|
||||||
|
@ -123,7 +127,8 @@ func (env *Env) getArtistByName(c *gin.Context) {
|
||||||
// NOTE: However unicode is treated case sensitive due to very difficult conversions for some languages/characters
|
// NOTE: However unicode is treated case sensitive due to very difficult conversions for some languages/characters
|
||||||
// NOTE: In future better DBs with unicode support such as postgres should be used
|
// NOTE: In future better DBs with unicode support such as postgres should be used
|
||||||
var artistProfiles []ArtistProfile
|
var artistProfiles []ArtistProfile
|
||||||
dbResult := env.db.Where("name LIKE ?", fmt.Sprintf("%%%s%%", artistName)).Preload("Genres").Offset(pageOffset).Limit(pageSize).Find(&artistProfiles)
|
searchString := fmt.Sprintf("%%%s%%"), artistName)
|
||||||
|
dbResult := env.db.Where("name LIKE ?", searchString).Preload("Genres").Offset(pageOffset).Limit(pageSize).Find(&artistProfiles)
|
||||||
if dbResult.Error != nil {
|
if dbResult.Error != nil {
|
||||||
slog.Error("[GOMUSIC] Failed to query local database for artist name", "Name", artistName)
|
slog.Error("[GOMUSIC] Failed to query local database for artist name", "Name", artistName)
|
||||||
c.JSON(http.StatusInternalServerError, gin.H{"Error": "Failed to lookup name"})
|
c.JSON(http.StatusInternalServerError, gin.H{"Error": "Failed to lookup name"})
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"testing"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Define some custom types to make response parsing easier
|
// Define some custom types to make response parsing easier
|
||||||
|
|
Loading…
Add table
Reference in a new issue