29 lines
763 B
Go
29 lines
763 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
|
||
|
"github.com/mattn/go-sqlite3"
|
||
|
"github.com/tigorlazuardi/redmage/models"
|
||
|
"github.com/tigorlazuardi/redmage/pkg/errs"
|
||
|
)
|
||
|
|
||
|
func (api *API) DevicesUpdate(ctx context.Context, id int, update *models.DeviceSetter) (err error) {
|
||
|
ctx, span := tracer.Start(ctx, "*API.DevicesUpdate")
|
||
|
defer span.End()
|
||
|
|
||
|
err = models.Devices.Update(ctx, api.exec, update, &models.Device{ID: int32(id)})
|
||
|
if err != nil {
|
||
|
var sqliteErr sqlite3.Error
|
||
|
if errors.As(err, &sqliteErr) {
|
||
|
if sqliteErr.Code == sqlite3.ErrNo(sqlite3.ErrConstraintUnique) {
|
||
|
return errs.Wrapw(err, "a device with the same slug id already exists").Code(409)
|
||
|
}
|
||
|
}
|
||
|
return errs.Wrapw(err, "failed to update device", "id", id, "values", update)
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|