api/pkg/models/namespace_users_rights.go

39 lines
1.2 KiB
Go
Raw Normal View History

2018-09-04 18:15:24 +00:00
package models
2018-10-31 12:42:38 +00:00
import (
"code.vikunja.io/api/pkg/log"
)
2018-09-04 18:15:24 +00:00
// CanCreate checks if the user can create a new user <-> namespace relation
func (nu *NamespaceUser) CanCreate(doer *User) bool {
// Get the namespace and check if the user has write access on it
n, err := GetNamespaceByID(nu.NamespaceID)
if err != nil {
2018-10-31 12:42:38 +00:00
log.Log.Error("Error occurred during CanCreate for NamespaceUser: %s", err)
return false
}
2018-09-04 18:15:24 +00:00
return n.CanWrite(doer)
}
// CanDelete checks if the user can delete a user <-> namespace relation
func (nu *NamespaceUser) CanDelete(doer *User) bool {
// Get the namespace and check if the user has write access on it
n, err := GetNamespaceByID(nu.NamespaceID)
if err != nil {
2018-10-31 12:42:38 +00:00
log.Log.Error("Error occurred during CanDelete for NamespaceUser: %s", err)
return false
}
2018-09-04 18:15:24 +00:00
return n.CanWrite(doer)
}
// CanUpdate checks if the user can update a user <-> namespace relation
func (nu *NamespaceUser) CanUpdate(doer *User) bool {
// Get the namespace and check if the user has write access on it
n, err := GetNamespaceByID(nu.NamespaceID)
if err != nil {
2018-10-31 12:42:38 +00:00
log.Log.Error("Error occurred during CanUpdate for NamespaceUser: %s", err)
return false
}
return n.CanWrite(doer)
}