64 lines
2.3 KiB
Go
64 lines
2.3 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-present 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 Affero 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// ListBuckets returns the buckets configured on a Kanban view.
|
|
func (c *Client) ListBuckets(ctx context.Context, projectID, viewID int64) ([]*Bucket, error) {
|
|
var out []*Bucket
|
|
path := fmt.Sprintf("/projects/%d/views/%d/buckets", projectID, viewID)
|
|
if err := c.Do(ctx, "GET", path, nil, nil, &out); err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// CreateBucket inserts a new bucket into a Kanban view.
|
|
func (c *Client) CreateBucket(ctx context.Context, projectID, viewID int64, b *Bucket) (*Bucket, error) {
|
|
var out Bucket
|
|
path := fmt.Sprintf("/projects/%d/views/%d/buckets", projectID, viewID)
|
|
if b == nil {
|
|
b = &Bucket{}
|
|
}
|
|
b.ProjectViewID = viewID
|
|
if err := c.Do(ctx, "PUT", path, nil, b, &out); err != nil {
|
|
return nil, err
|
|
}
|
|
return &out, nil
|
|
}
|
|
|
|
// MoveTaskToBucket positions an existing task in `bucketID` on the
|
|
// project's view. Vikunja stores task↔bucket relations in a separate
|
|
// table (`task_buckets`), so POST /tasks/{id} with bucket_id does not
|
|
// reliably move tasks — this dedicated endpoint is the one the Kanban
|
|
// UI's drag-and-drop uses.
|
|
func (c *Client) MoveTaskToBucket(ctx context.Context, projectID, viewID, bucketID, taskID int64) error {
|
|
path := fmt.Sprintf("/projects/%d/views/%d/buckets/%d/tasks",
|
|
projectID, viewID, bucketID)
|
|
body := map[string]int64{
|
|
"task_id": taskID,
|
|
"project_view_id": viewID,
|
|
"bucket_id": bucketID,
|
|
"project_id": projectID,
|
|
}
|
|
return c.Do(ctx, "POST", path, nil, body, nil)
|
|
}
|