2018-11-26 21:17:33 +01:00
|
|
|
// Vikunja is a todo-list application to facilitate your life.
|
|
|
|
// Copyright 2018 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2018-07-12 23:07:03 +02:00
|
|
|
package models
|
|
|
|
|
2018-10-31 13:42:38 +01:00
|
|
|
import (
|
|
|
|
"code.vikunja.io/api/pkg/log"
|
2018-12-01 00:26:56 +01:00
|
|
|
"code.vikunja.io/web"
|
2018-10-31 13:42:38 +01:00
|
|
|
)
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// CanDelete checks if the user can delete an task
|
2018-12-29 15:29:50 +01:00
|
|
|
func (t *ListTask) CanDelete(a web.Auth) bool {
|
2018-12-01 00:26:56 +01:00
|
|
|
doer := getUserForRights(a)
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// Get the task
|
2018-12-29 15:29:50 +01:00
|
|
|
lI, err := GetListTaskByID(t.ID)
|
2018-10-06 13:25:37 +02:00
|
|
|
if err != nil {
|
2018-10-31 13:42:38 +01:00
|
|
|
log.Log.Error("Error occurred during CanDelete for ListTask: %s", err)
|
2018-10-06 13:25:37 +02:00
|
|
|
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-31 13:42:38 +01:00
|
|
|
l := &List{ID: lI.ListID}
|
|
|
|
l.ReadOne()
|
|
|
|
return l.CanWrite(doer)
|
2018-07-12 23:07:03 +02:00
|
|
|
}
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// CanUpdate determines if a user has the right to update a list task
|
2018-12-29 15:29:50 +01:00
|
|
|
func (t *ListTask) CanUpdate(a web.Auth) bool {
|
2018-12-01 00:26:56 +01:00
|
|
|
doer := getUserForRights(a)
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// Get the task
|
2018-12-29 15:29:50 +01:00
|
|
|
lI, err := GetListTaskByID(t.ID)
|
2018-10-06 13:25:37 +02:00
|
|
|
if err != nil {
|
2018-10-31 13:42:38 +01:00
|
|
|
log.Log.Error("Error occurred during CanDelete for ListTask: %s", err)
|
2018-10-06 13:25:37 +02:00
|
|
|
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-31 13:42:38 +01:00
|
|
|
l := &List{ID: lI.ListID}
|
|
|
|
l.ReadOne()
|
|
|
|
return l.CanWrite(doer)
|
2018-07-12 23:07:03 +02:00
|
|
|
}
|
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
|
2018-12-29 15:29:50 +01:00
|
|
|
func (t *ListTask) CanCreate(a web.Auth) bool {
|
2018-12-01 00:26:56 +01:00
|
|
|
doer := getUserForRights(a)
|
|
|
|
|
2018-08-30 08:09:17 +02:00
|
|
|
// A user can create an task if he has write acces to its list
|
2018-12-29 15:29:50 +01:00
|
|
|
l := &List{ID: t.ListID}
|
2018-10-31 13:42:38 +01:00
|
|
|
l.ReadOne()
|
|
|
|
return l.CanWrite(doer)
|
2018-07-12 23:16:32 +02:00
|
|
|
}
|