2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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-12-31 02:18:41 +01:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2020-02-08 13:48:49 +01:00
|
|
|
"code.vikunja.io/api/pkg/timeutil"
|
2020-01-26 18:08:06 +01:00
|
|
|
"code.vikunja.io/api/pkg/user"
|
2018-12-31 02:18:41 +01:00
|
|
|
"code.vikunja.io/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Label represents a label
|
|
|
|
type Label struct {
|
2019-01-03 23:22:06 +01:00
|
|
|
// The unique, numeric id of this label.
|
|
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id" param:"label"`
|
|
|
|
// The title of the lable. You'll see this one on tasks associated with it.
|
2020-06-17 18:52:23 +02:00
|
|
|
Title string `xorm:"varchar(250) not null" json:"title" valid:"runelength(1|250)" minLength:"3" maxLength:"250"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The label description.
|
2019-07-21 23:57:19 +02:00
|
|
|
Description string `xorm:"longtext null" json:"description"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The color this label has
|
2019-03-29 18:54:35 +01:00
|
|
|
HexColor string `xorm:"varchar(6) null" json:"hex_color" valid:"runelength(0|6)" maxLength:"6"`
|
2018-12-31 02:18:41 +01:00
|
|
|
|
|
|
|
CreatedByID int64 `xorm:"int(11) not null" json:"-"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The user who created this label
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User `xorm:"-" json:"created_by"`
|
2018-12-31 02:18:41 +01:00
|
|
|
|
2020-02-08 13:48:49 +01:00
|
|
|
// A timestamp when this label was created. You cannot change this value.
|
|
|
|
Created timeutil.TimeStamp `xorm:"created not null" json:"created"`
|
|
|
|
// A timestamp when this label was last updated. You cannot change this value.
|
|
|
|
Updated timeutil.TimeStamp `xorm:"updated not null" json:"updated"`
|
2018-12-31 02:18:41 +01:00
|
|
|
|
|
|
|
web.CRUDable `xorm:"-" json:"-"`
|
|
|
|
web.Rights `xorm:"-" json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TableName makes a pretty table name
|
|
|
|
func (Label) TableName() string {
|
|
|
|
return "labels"
|
|
|
|
}
|
2019-07-16 16:15:40 +02:00
|
|
|
|
|
|
|
// Create creates a new label
|
|
|
|
// @Summary Create a label
|
|
|
|
// @Description Creates a new label.
|
|
|
|
// @tags labels
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Param label body models.Label true "The label object"
|
|
|
|
// @Success 200 {object} models.Label "The created label object."
|
|
|
|
// @Failure 400 {object} code.vikunja.io/web.HTTPError "Invalid label object provided."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /labels [put]
|
|
|
|
func (l *Label) Create(a web.Auth) (err error) {
|
2020-01-26 18:08:06 +01:00
|
|
|
u, err := user.GetFromAuth(a)
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
l.CreatedBy = u
|
|
|
|
l.CreatedByID = u.ID
|
|
|
|
|
|
|
|
_, err = x.Insert(l)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates a label
|
|
|
|
// @Summary Update a label
|
|
|
|
// @Description Update an existing label. The user needs to be the creator of the label to be able to do this.
|
|
|
|
// @tags labels
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Param id path int true "Label ID"
|
|
|
|
// @Param label body models.Label true "The label object"
|
|
|
|
// @Success 200 {object} models.Label "The created label object."
|
|
|
|
// @Failure 400 {object} code.vikunja.io/web.HTTPError "Invalid label object provided."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "Not allowed to update the label."
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "Label not found."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /labels/{id} [put]
|
|
|
|
func (l *Label) Update() (err error) {
|
2020-06-15 11:32:07 +02:00
|
|
|
_, err = x.
|
|
|
|
ID(l.ID).
|
|
|
|
Cols(
|
|
|
|
"title",
|
|
|
|
"description",
|
|
|
|
"hex_color",
|
|
|
|
).
|
|
|
|
Update(l)
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = l.ReadOne()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes a label
|
|
|
|
// @Summary Delete a label
|
|
|
|
// @Description Delete an existing label. The user needs to be the creator of the label to be able to do this.
|
|
|
|
// @tags labels
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Param id path int true "Label ID"
|
|
|
|
// @Success 200 {object} models.Label "The label was successfully deleted."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "Not allowed to delete the label."
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "Label not found."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /labels/{id} [delete]
|
|
|
|
func (l *Label) Delete() (err error) {
|
|
|
|
_, err = x.ID(l.ID).Delete(&Label{})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadAll gets all labels a user can use
|
|
|
|
// @Summary Get all labels a user has access to
|
|
|
|
// @Description Returns all labels which are either created by the user or associated with a task the user has at least read-access to.
|
|
|
|
// @tags labels
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2019-10-23 23:11:40 +02:00
|
|
|
// @Param page query int false "The page number. Used for pagination. If not provided, the first page of results is returned."
|
|
|
|
// @Param per_page query int false "The maximum number of items per page. Note this parameter is limited by the configured maximum of items per page."
|
2019-07-16 16:15:40 +02:00
|
|
|
// @Param s query string false "Search labels by label text."
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {array} models.Label "The labels"
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /labels [get]
|
2019-10-23 23:11:40 +02:00
|
|
|
func (l *Label) ReadAll(a web.Auth, search string, page int, perPage int) (ls interface{}, resultCount int, numberOfEntries int64, err error) {
|
2019-08-31 22:56:41 +02:00
|
|
|
if _, is := a.(*LinkSharing); is {
|
2019-10-23 23:11:40 +02:00
|
|
|
return nil, 0, 0, ErrGenericForbidden{}
|
2019-08-31 22:56:41 +02:00
|
|
|
}
|
2019-07-16 16:15:40 +02:00
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
u := &user.User{ID: a.GetID()}
|
2019-07-16 16:15:40 +02:00
|
|
|
|
|
|
|
// Get all tasks
|
|
|
|
taskIDs, err := getUserTaskIDs(u)
|
|
|
|
if err != nil {
|
2019-10-23 23:11:40 +02:00
|
|
|
return nil, 0, 0, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return getLabelsByTaskIDs(&LabelByTaskIDsOptions{
|
2019-09-20 17:52:09 +02:00
|
|
|
Search: search,
|
|
|
|
User: u,
|
|
|
|
TaskIDs: taskIDs,
|
2019-10-23 23:11:40 +02:00
|
|
|
Page: page,
|
|
|
|
PerPage: perPage,
|
2019-09-20 17:52:09 +02:00
|
|
|
GetUnusedLabels: true,
|
|
|
|
GroupByLabelIDsOnly: true,
|
2019-07-16 16:15:40 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadOne gets one label
|
|
|
|
// @Summary Gets one label
|
|
|
|
// @Description Returns one label by its ID.
|
|
|
|
// @tags labels
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param id path int true "Label ID"
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {object} models.Label "The label"
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "The user does not have access to the label"
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "Label not found"
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /labels/{id} [get]
|
|
|
|
func (l *Label) ReadOne() (err error) {
|
|
|
|
label, err := getLabelByIDSimple(l.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*l = *label
|
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
user, err := user.GetUserByID(l.CreatedByID)
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-14 21:59:31 +02:00
|
|
|
l.CreatedBy = user
|
2019-07-16 16:15:40 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func getLabelByIDSimple(labelID int64) (*Label, error) {
|
|
|
|
label := Label{}
|
|
|
|
exists, err := x.ID(labelID).Get(&label)
|
|
|
|
if err != nil {
|
|
|
|
return &label, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !exists {
|
|
|
|
return &Label{}, ErrLabelDoesNotExist{labelID}
|
|
|
|
}
|
|
|
|
return &label, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper method to get all task ids a user has
|
2020-01-26 18:08:06 +01:00
|
|
|
func getUserTaskIDs(u *user.User) (taskIDs []int64, err error) {
|
2019-08-31 22:56:41 +02:00
|
|
|
|
|
|
|
// Get all lists
|
2020-03-15 22:50:39 +01:00
|
|
|
lists, _, _, err := getRawListsForUser(&listOptions{
|
|
|
|
user: u,
|
|
|
|
page: -1,
|
|
|
|
})
|
2019-08-31 22:56:41 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-10-23 23:11:40 +02:00
|
|
|
tasks, _, _, err := getRawTasksForLists(lists, &taskOptions{
|
2020-04-11 16:20:33 +02:00
|
|
|
page: -1,
|
|
|
|
perPage: 0,
|
2019-08-31 22:56:41 +02:00
|
|
|
})
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// make a slice of task ids
|
|
|
|
for _, t := range tasks {
|
|
|
|
taskIDs = append(taskIDs, t.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|