mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
feat: expose album, song and artist annotations in the RESTful API
This commit is contained in:
parent
0e36ed35a3
commit
777231ea79
7 changed files with 47 additions and 16 deletions
|
@ -22,11 +22,11 @@ type Album struct {
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
|
||||||
// Annotations
|
// Annotations
|
||||||
PlayCount int `json:"-" orm:"-"`
|
PlayCount int `json:"playCount" orm:"-"`
|
||||||
PlayDate time.Time `json:"-" orm:"-"`
|
PlayDate time.Time `json:"playDate" orm:"-"`
|
||||||
Rating int `json:"-" orm:"-"`
|
Rating int `json:"rating" orm:"-"`
|
||||||
Starred bool `json:"-" orm:"-"`
|
Starred bool `json:"starred" orm:"-"`
|
||||||
StarredAt time.Time `json:"-" orm:"-"`
|
StarredAt time.Time `json:"starredAt" orm:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Albums []Album
|
type Albums []Album
|
||||||
|
|
|
@ -7,3 +7,7 @@ type AnnotatedRepository interface {
|
||||||
SetStar(starred bool, itemIDs ...string) error
|
SetStar(starred bool, itemIDs ...string) error
|
||||||
SetRating(rating int, itemID string) error
|
SetRating(rating int, itemID string) error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// While I can't find a better way to make these fields optional in the models, I keep this list here
|
||||||
|
// to be used in other packages
|
||||||
|
var AnnotationFields = []string{"playCount", "playDate", "rating", "starred", "starredAt"}
|
||||||
|
|
|
@ -9,11 +9,11 @@ type Artist struct {
|
||||||
FullText string `json:"fullText"`
|
FullText string `json:"fullText"`
|
||||||
|
|
||||||
// Annotations
|
// Annotations
|
||||||
PlayCount int `json:"-" orm:"-"`
|
PlayCount int `json:"playCount" orm:"-"`
|
||||||
PlayDate time.Time `json:"-" orm:"-"`
|
PlayDate time.Time `json:"playDate" orm:"-"`
|
||||||
Rating int `json:"-" orm:"-"`
|
Rating int `json:"rating" orm:"-"`
|
||||||
Starred bool `json:"-" orm:"-"`
|
Starred bool `json:"starred" orm:"-"`
|
||||||
StarredAt time.Time `json:"-" orm:"-"`
|
StarredAt time.Time `json:"starredAt" orm:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Artists []Artist
|
type Artists []Artist
|
||||||
|
|
|
@ -30,11 +30,11 @@ type MediaFile struct {
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
|
||||||
// Annotations
|
// Annotations
|
||||||
PlayCount int `json:"-" orm:"-"`
|
PlayCount int `json:"playCount" orm:"-"`
|
||||||
PlayDate time.Time `json:"-" orm:"-"`
|
PlayDate time.Time `json:"playDate" orm:"-"`
|
||||||
Rating int `json:"-" orm:"-"`
|
Rating int `json:"rating" orm:"-"`
|
||||||
Starred bool `json:"-" orm:"-"`
|
Starred bool `json:"starred" orm:"-"`
|
||||||
StarredAt time.Time `json:"-" orm:"-"`
|
StarredAt time.Time `json:"starredAt" orm:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mf *MediaFile) ContentType() string {
|
func (mf *MediaFile) ContentType() string {
|
||||||
|
|
|
@ -7,6 +7,8 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/Masterminds/squirrel"
|
"github.com/Masterminds/squirrel"
|
||||||
|
"github.com/deluan/navidrome/model"
|
||||||
|
"github.com/deluan/navidrome/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
func toSqlArgs(rec interface{}) (map[string]interface{}, error) {
|
func toSqlArgs(rec interface{}) (map[string]interface{}, error) {
|
||||||
|
@ -21,8 +23,10 @@ func toSqlArgs(rec interface{}) (map[string]interface{}, error) {
|
||||||
err = json.Unmarshal(b, &m)
|
err = json.Unmarshal(b, &m)
|
||||||
r := make(map[string]interface{}, len(m))
|
r := make(map[string]interface{}, len(m))
|
||||||
for f, v := range m {
|
for f, v := range m {
|
||||||
|
if !utils.StringInSlice(f, model.AnnotationFields) {
|
||||||
r[toSnakeCase(f)] = v
|
r[toSnakeCase(f)] = v
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return r, err
|
return r, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,3 +16,12 @@ func NoArticle(name string) string {
|
||||||
}
|
}
|
||||||
return name
|
return name
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func StringInSlice(a string, list []string) bool {
|
||||||
|
for _, b := range list {
|
||||||
|
if b == a {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
|
@ -34,4 +34,18 @@ var _ = Describe("Strings", func() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Describe("StringInSlice", func() {
|
||||||
|
It("returns false if slice is empty", func() {
|
||||||
|
Expect(StringInSlice("test", nil)).To(BeFalse())
|
||||||
|
})
|
||||||
|
|
||||||
|
It("returns false if string is not found in slice", func() {
|
||||||
|
Expect(StringInSlice("aaa", []string{"bbb", "ccc"})).To(BeFalse())
|
||||||
|
})
|
||||||
|
|
||||||
|
It("returns true if string is found in slice", func() {
|
||||||
|
Expect(StringInSlice("bbb", []string{"bbb", "aaa", "ccc"})).To(BeTrue())
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue