mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
* Start migration to dbx package * Fix annotations and bookmarks bindings * Fix tests * Fix more tests * Remove remaining references to beego/orm * Add PostScanner/PostMapper interfaces * Fix importing SmartPlaylists * Renaming * More renaming * Fix artist DB mapping * Fix playlist updates * Remove bookmarks at the end of the test * Remove remaining `orm` struct tags * Fix user timestamps DB access * Fix smart playlist evaluated_at DB access * Fix search3
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
package persistence
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
. "github.com/Masterminds/squirrel"
|
|
"github.com/navidrome/navidrome/model"
|
|
"github.com/pocketbase/dbx"
|
|
)
|
|
|
|
type userPropsRepository struct {
|
|
sqlRepository
|
|
}
|
|
|
|
func NewUserPropsRepository(ctx context.Context, db dbx.Builder) model.UserPropsRepository {
|
|
r := &userPropsRepository{}
|
|
r.ctx = ctx
|
|
r.db = db
|
|
r.tableName = "user_props"
|
|
return r
|
|
}
|
|
|
|
func (r userPropsRepository) Put(userId, key string, value string) error {
|
|
update := Update(r.tableName).Set("value", value).Where(And{Eq{"user_id": userId}, Eq{"key": key}})
|
|
count, err := r.executeSQL(update)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if count > 0 {
|
|
return nil
|
|
}
|
|
insert := Insert(r.tableName).Columns("user_id", "key", "value").Values(userId, key, value)
|
|
_, err = r.executeSQL(insert)
|
|
return err
|
|
}
|
|
|
|
func (r userPropsRepository) Get(userId, key string) (string, error) {
|
|
sel := Select("value").From(r.tableName).Where(And{Eq{"user_id": userId}, Eq{"key": key}})
|
|
resp := struct {
|
|
Value string
|
|
}{}
|
|
err := r.queryOne(sel, &resp)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return resp.Value, nil
|
|
}
|
|
|
|
func (r userPropsRepository) DefaultGet(userId, key string, defaultValue string) (string, error) {
|
|
value, err := r.Get(userId, key)
|
|
if errors.Is(err, model.ErrNotFound) {
|
|
return defaultValue, nil
|
|
}
|
|
if err != nil {
|
|
return defaultValue, err
|
|
}
|
|
return value, nil
|
|
}
|
|
|
|
func (r userPropsRepository) Delete(userId, key string) error {
|
|
return r.delete(And{Eq{"user_id": userId}, Eq{"key": key}})
|
|
}
|