api/pkg/models/list_tasks_rights.go

44 lines
1.1 KiB
Go
Raw Normal View History

2018-07-12 21:07:03 +00:00
package models
2018-10-31 12:42:38 +00:00
import (
"code.vikunja.io/api/pkg/log"
)
2018-08-30 06:09:17 +00:00
// CanDelete checks if the user can delete an task
func (i *ListTask) CanDelete(doer *User) bool {
// Get the task
lI, err := GetListTaskByID(i.ID)
if err != nil {
2018-10-31 12:42:38 +00:00
log.Log.Error("Error occurred during CanDelete for ListTask: %s", err)
return false
}
2018-07-12 21:33:21 +00:00
2018-08-30 06:09:17 +00:00
// A user can delete an task if he has write acces to its list
2018-10-31 12:42:38 +00:00
l := &List{ID: lI.ListID}
l.ReadOne()
return l.CanWrite(doer)
2018-07-12 21:07:03 +00:00
}
2018-08-30 06:09:17 +00:00
// CanUpdate determines if a user has the right to update a list task
func (i *ListTask) CanUpdate(doer *User) bool {
// Get the task
lI, err := GetListTaskByID(i.ID)
if err != nil {
2018-10-31 12:42:38 +00:00
log.Log.Error("Error occurred during CanDelete for ListTask: %s", err)
return false
}
2018-07-12 21:07:03 +00:00
2018-08-30 06:09:17 +00:00
// A user can update an task if he has write acces to its list
2018-10-31 12:42:38 +00:00
l := &List{ID: lI.ListID}
l.ReadOne()
return l.CanWrite(doer)
2018-07-12 21:07:03 +00:00
}
2018-07-12 21:16:32 +00:00
2018-08-30 06:09:17 +00:00
// CanCreate determines if a user has the right to create a list task
func (i *ListTask) CanCreate(doer *User) bool {
// A user can create an task if he has write acces to its list
2018-10-31 12:42:38 +00:00
l := &List{ID: i.ListID}
l.ReadOne()
return l.CanWrite(doer)
2018-07-12 21:16:32 +00:00
}