WIP: Persisting tracks and tags to DB

This commit is contained in:
Deluan 2023-12-26 17:11:02 -05:00
parent 682baafd6c
commit 451d81cdee
25 changed files with 404 additions and 104 deletions

View file

@ -42,7 +42,7 @@ func (r *transcodingRepository) FindByFormat(format string) (*model.Transcoding,
}
func (r *transcodingRepository) Put(t *model.Transcoding) error {
_, err := r.put(t.ID, t)
_, err := r.put("id", t.ID, t)
return err
}
@ -71,7 +71,7 @@ func (r *transcodingRepository) NewInstance() interface{} {
func (r *transcodingRepository) Save(entity interface{}) (string, error) {
t := entity.(*model.Transcoding)
id, err := r.put(t.ID, t)
id, err := r.put("id", t.ID, t)
if errors.Is(err, model.ErrNotFound) {
return "", rest.ErrNotFound
}
@ -81,7 +81,7 @@ func (r *transcodingRepository) Save(entity interface{}) (string, error) {
func (r *transcodingRepository) Update(id string, entity interface{}, cols ...string) error {
t := entity.(*model.Transcoding)
t.ID = id
_, err := r.put(id, t)
_, err := r.put("id", id, t)
if errors.Is(err, model.ErrNotFound) {
return rest.ErrNotFound
}