api/pkg/models/namespace_update.go

29 lines
608 B
Go
Raw Normal View History

package models
2018-07-04 06:15:47 +00:00
// Update implements the update method via the interface
func (n *Namespace) Update() (err error) {
// Check if we have at least a name
if n.Name == "" {
return ErrNamespaceNameCannotBeEmpty{NamespaceID: n.ID}
2018-07-04 06:15:47 +00:00
}
// Check if the namespace exists
currentNamespace, err := GetNamespaceByID(n.ID)
2018-07-04 06:15:47 +00:00
if err != nil {
return
}
// Check if the (new) owner exists
2018-10-06 16:55:14 +00:00
n.OwnerID = n.Owner.ID
if currentNamespace.OwnerID != n.OwnerID {
2018-08-30 17:14:02 +00:00
n.Owner, err = GetUserByID(n.OwnerID)
if err != nil {
return
}
}
// Do the actual update
_, err = x.ID(currentNamespace.ID).Update(n)
return
2018-07-11 22:37:31 +00:00
}