2018-07-12 23:07:03 +02:00
|
|
|
package models
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// CanDelete checks if the user can delete an task
|
|
|
|
func (i *ListTask) CanDelete(doer *User) bool {
|
|
|
|
// Get the task
|
2018-10-06 13:25:37 +02:00
|
|
|
lI, err := GetListTaskByID(i.ID)
|
|
|
|
if err != nil {
|
|
|
|
Log.Error("Error occurred during CanDelete for ListTask: %s", err)
|
|
|
|
return false
|
|
|
|
}
|
2018-07-12 23:33:21 +02:00
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// A user can delete an task if he has write acces to its list
|
2018-10-06 13:05:29 +02:00
|
|
|
list := &List{ID: lI.ListID}
|
|
|
|
list.ReadOne()
|
2018-07-12 23:07:03 +02:00
|
|
|
return list.CanWrite(doer)
|
|
|
|
}
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// CanUpdate determines if a user has the right to update a list task
|
|
|
|
func (i *ListTask) CanUpdate(doer *User) bool {
|
|
|
|
// Get the task
|
2018-10-06 13:25:37 +02:00
|
|
|
lI, err := GetListTaskByID(i.ID)
|
|
|
|
if err != nil {
|
|
|
|
Log.Error("Error occurred during CanDelete for ListTask: %s", err)
|
|
|
|
return false
|
|
|
|
}
|
2018-07-12 23:07:03 +02:00
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// A user can update an task if he has write acces to its list
|
2018-10-06 13:05:29 +02:00
|
|
|
list := &List{ID: lI.ListID}
|
|
|
|
list.ReadOne()
|
2018-07-12 23:07:03 +02:00
|
|
|
return list.CanWrite(doer)
|
|
|
|
}
|
2018-07-12 23:16:32 +02:00
|
|
|
|
2018-08-30 08:09:17 +02: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-06 13:05:29 +02:00
|
|
|
list := &List{ID: i.ListID}
|
|
|
|
list.ReadOne()
|
2018-07-12 23:16:32 +02:00
|
|
|
return list.CanWrite(doer)
|
|
|
|
}
|