mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
package persistence
|
|
|
|
import (
|
|
"context"
|
|
|
|
. "github.com/Masterminds/squirrel"
|
|
"github.com/beego/beego/v2/client/orm"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type propertyRepository struct {
|
|
sqlRepository
|
|
}
|
|
|
|
func NewPropertyRepository(ctx context.Context, o orm.QueryExecutor) model.PropertyRepository {
|
|
r := &propertyRepository{}
|
|
r.ctx = ctx
|
|
r.ormer = o
|
|
r.tableName = "property"
|
|
return r
|
|
}
|
|
|
|
func (r propertyRepository) Put(id string, value string) error {
|
|
update := Update(r.tableName).Set("value", value).Where(Eq{"id": id})
|
|
count, err := r.executeSQL(update)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
if count > 0 {
|
|
return nil
|
|
}
|
|
insert := Insert(r.tableName).Columns("id", "value").Values(id, value)
|
|
_, err = r.executeSQL(insert)
|
|
return err
|
|
}
|
|
|
|
func (r propertyRepository) Get(id string) (string, error) {
|
|
sel := Select("value").From(r.tableName).Where(Eq{"id": id})
|
|
resp := struct {
|
|
Value string
|
|
}{}
|
|
err := r.queryOne(sel, &resp)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return resp.Value, nil
|
|
}
|
|
|
|
func (r propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
|
value, err := r.Get(id)
|
|
if err == model.ErrNotFound {
|
|
return defaultValue, nil
|
|
}
|
|
if err != nil {
|
|
return defaultValue, err
|
|
}
|
|
return value, nil
|
|
}
|
|
|
|
func (r propertyRepository) Delete(id string) error {
|
|
return r.delete(Eq{"id": id})
|
|
}
|