mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
43 lines
861 B
Go
43 lines
861 B
Go
package persistence
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/deluan/gosonic/engine"
|
|
)
|
|
|
|
type propertyRepository struct {
|
|
ledisRepository
|
|
}
|
|
|
|
func NewPropertyRepository() engine.PropertyRepository {
|
|
r := &propertyRepository{}
|
|
r.init("property", &engine.Property{})
|
|
return r
|
|
}
|
|
|
|
func (r *propertyRepository) Put(id string, value string) error {
|
|
m := &engine.Property{Id: id, Value: value}
|
|
if m.Id == "" {
|
|
return errors.New("Id is required")
|
|
}
|
|
return r.saveOrUpdate(m.Id, m)
|
|
}
|
|
|
|
func (r *propertyRepository) Get(id string) (string, error) {
|
|
var rec interface{}
|
|
rec, err := r.readEntity(id)
|
|
return rec.(*engine.Property).Value, err
|
|
}
|
|
|
|
func (r *propertyRepository) DefaultGet(id string, defaultValue string) (string, error) {
|
|
v, err := r.Get(id)
|
|
|
|
if v == "" {
|
|
v = defaultValue
|
|
}
|
|
|
|
return v, err
|
|
}
|
|
|
|
var _ engine.PropertyRepository = (*propertyRepository)(nil)
|