2020-01-09 18:33:22 +01:00
// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved.
2019-11-29 23:59:20 +01:00
//
// This file is part of Vikunja.
//
// Vikunja 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.
//
// Vikunja 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 Vikunja. If not, see <https://www.gnu.org/licenses/>.
package models
import (
2020-01-26 18:08:06 +01:00
"code.vikunja.io/api/pkg/user"
2019-11-29 23:59:20 +01:00
"code.vikunja.io/web"
)
// TaskCollection is a struct used to hold filter details and not clutter the Task struct with information not related to actual tasks.
type TaskCollection struct {
2020-04-11 16:20:33 +02:00
ListID int64 ` param:"list" `
Lists [ ] * List
2019-11-29 23:59:20 +01:00
2019-12-07 15:30:51 +01:00
// The query parameter to sort by. This is for ex. done, priority, etc.
2019-12-07 16:57:19 +01:00
SortBy [ ] string ` query:"sort_by" `
SortByArr [ ] string ` query:"sort_by[]" `
2019-12-07 15:30:51 +01:00
// The query parameter to order the items by. This can be either asc or desc, with asc being the default.
2019-12-07 16:57:19 +01:00
OrderBy [ ] string ` query:"order_by" `
OrderByArr [ ] string ` query:"order_by[]" `
2019-12-07 15:30:51 +01:00
2020-04-11 16:20:33 +02:00
// The field name of the field to filter by
FilterBy [ ] string ` query:"filter_by" `
FilterByArr [ ] string ` query:"filter_by[]" `
// The value of the field name to filter by
FilterValue [ ] string ` query:"filter_value" `
FilterValueArr [ ] string ` query:"filter_value[]" `
// The comparator for field and value
FilterComparator [ ] string ` query:"filter_comparator" `
FilterComparatorArr [ ] string ` query:"filter_comparator[]" `
2020-05-09 17:48:56 +02:00
// The way all filter conditions are concatenated together, can be either "and" or "or".,
FilterConcat string ` query:"filter_concat" `
2020-04-11 16:20:33 +02:00
2019-11-29 23:59:20 +01:00
web . CRUDable ` xorm:"-" json:"-" `
web . Rights ` xorm:"-" json:"-" `
}
2020-04-11 16:20:33 +02:00
func validateTaskField ( fieldName string ) error {
switch fieldName {
case
taskPropertyID ,
2020-05-16 12:17:44 +02:00
taskPropertyTitle ,
2020-04-11 16:20:33 +02:00
taskPropertyDescription ,
taskPropertyDone ,
taskPropertyDoneAtUnix ,
taskPropertyDueDateUnix ,
taskPropertyCreatedByID ,
taskPropertyListID ,
taskPropertyRepeatAfter ,
taskPropertyPriority ,
taskPropertyStartDateUnix ,
taskPropertyEndDateUnix ,
taskPropertyHexColor ,
taskPropertyPercentDone ,
taskPropertyUID ,
taskPropertyCreated ,
2020-04-24 17:23:03 +02:00
taskPropertyUpdated ,
taskPropertyPosition :
2020-04-11 16:20:33 +02:00
return nil
}
return ErrInvalidTaskField { TaskField : fieldName }
}
2019-11-29 23:59:20 +01:00
// ReadAll gets all tasks for a collection
2019-12-07 15:30:51 +01:00
// @Summary Get tasks in a list
2019-11-29 23:59:20 +01:00
// @Description Returns all tasks for the current list.
// @tags task
// @Accept json
// @Produce json
// @Param listID path int true "The list ID."
// @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."
// @Param s query string false "Search tasks by task text."
2020-05-16 12:17:44 +02:00
// @Param sort_by query string false "The sorting parameter. You can pass this multiple times to get the tasks ordered by multiple different parametes, along with `order_by`. Possible values to sort by are `id`, `title`, `description`, `done`, `done_at_unix`, `due_date_unix`, `created_by_id`, `list_id`, `repeat_after`, `priority`, `start_date_unix`, `end_date_unix`, `hex_color`, `percent_done`, `uid`, `created`, `updated`. Default is `id`."
2019-12-07 15:30:51 +01:00
// @Param order_by query string false "The ordering parameter. Possible values to order by are `asc` or `desc`. Default is `asc`."
2020-04-11 16:20:33 +02:00
// @Param filter_by query string false "The name of the field to filter by. Accepts an array for multiple filters which will be chanied together, all supplied filter must match."
// @Param filter_value query string false "The value to filter for."
// @Param filter_comparator query string false "The comparator to use for a filter. Available values are `equals`, `greater`, `greater_equals`, `less` and `less_equals`. Defaults to `equals`"
2020-05-09 17:48:56 +02:00
// @Param filter_concat query string false "The concatinator to use for filters. Available values are `and` or `or`. Defaults to `or`."
2019-11-29 23:59:20 +01:00
// @Security JWTKeyAuth
// @Success 200 {array} models.Task "The tasks"
// @Failure 500 {object} models.Message "Internal error"
// @Router /lists/{listID}/tasks [get]
func ( tf * TaskCollection ) ReadAll ( a web . Auth , search string , page int , perPage int ) ( result interface { } , resultCount int , totalItems int64 , err error ) {
2019-12-07 15:30:51 +01:00
2019-12-07 16:57:19 +01:00
if len ( tf . SortByArr ) > 0 {
tf . SortBy = append ( tf . SortBy , tf . SortByArr ... )
}
if len ( tf . OrderByArr ) > 0 {
tf . OrderBy = append ( tf . OrderBy , tf . OrderByArr ... )
}
2019-12-07 15:30:51 +01:00
var sort = make ( [ ] * sortParam , 0 , len ( tf . SortBy ) )
for i , s := range tf . SortBy {
param := & sortParam {
2020-04-24 17:23:03 +02:00
sortBy : s ,
2019-12-07 15:30:51 +01:00
orderBy : orderAscending ,
}
// This checks if tf.OrderBy has an entry with the same index as the current entry from tf.SortBy
// Taken from https://stackoverflow.com/a/27252199/10924593
if len ( tf . OrderBy ) > i {
param . orderBy = getSortOrderFromString ( tf . OrderBy [ i ] )
}
2020-05-15 16:07:36 +02:00
// Special case for pseudo date fields
// FIXME: This is really dirty, to fix this properly the db fields should be renamed
switch param . sortBy {
case "done_at" :
param . sortBy = taskPropertyDoneAtUnix
case "due_date" :
param . sortBy = taskPropertyDueDateUnix
case "start_date" :
param . sortBy = taskPropertyStartDateUnix
case "end_date" :
param . sortBy = taskPropertyEndDateUnix
}
2019-12-07 15:30:51 +01:00
// Param validation
if err := param . validate ( ) ; err != nil {
return nil , 0 , 0 , err
}
sort = append ( sort , param )
2019-11-29 23:59:20 +01:00
}
taskopts := & taskOptions {
2020-05-09 17:48:56 +02:00
search : search ,
page : page ,
perPage : perPage ,
sortby : sort ,
filterConcat : taskFilterConcatinator ( tf . FilterConcat ) ,
2020-04-11 16:20:33 +02:00
}
taskopts . filters , err = getTaskFiltersByCollections ( tf )
if err != nil {
return
2019-11-29 23:59:20 +01:00
}
shareAuth , is := a . ( * LinkSharing )
if is {
list := & List { ID : shareAuth . ListID }
err := list . GetSimpleByID ( )
if err != nil {
return nil , 0 , 0 , err
}
return getTasksForLists ( [ ] * List { list } , taskopts )
}
// If the list ID is not set, we get all tasks for the user.
// This allows to use this function in Task.ReadAll with a possibility to deprecate the latter at some point.
if tf . ListID == 0 {
2020-03-15 22:50:39 +01:00
tf . Lists , _ , _ , err = getRawListsForUser ( & listOptions {
user : & user . User { ID : a . GetID ( ) } ,
page : - 1 ,
} )
2019-11-29 23:59:20 +01:00
if err != nil {
return nil , 0 , 0 , err
}
} else {
// Check the list exists and the user has acess on it
list := & List { ID : tf . ListID }
canRead , err := list . CanRead ( a )
if err != nil {
return nil , 0 , 0 , err
}
if ! canRead {
return nil , 0 , 0 , ErrUserDoesNotHaveAccessToList { ListID : tf . ListID }
}
tf . Lists = [ ] * List { { ID : tf . ListID } }
}
return getTasksForLists ( tf . Lists , taskopts )
}