-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathtask.go
158 lines (137 loc) · 5.6 KB
/
task.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package client
import (
"context"
"net/url"
"github.com/cloudfoundry/go-cfclient/v3/internal/path"
"github.com/cloudfoundry/go-cfclient/v3/resource"
)
type TaskClient commonClient
// TaskListOptions list filters
type TaskListOptions struct {
*ListOptions
GUIDs Filter `qs:"guids"`
Names Filter `qs:"names"`
States Filter `qs:"states"`
AppGUIDs Filter `qs:"app_guids"`
SpaceGUIDs Filter `qs:"space_guids"`
OrganizationGUIDs Filter `qs:"organization_guids"`
}
// NewTaskListOptions creates new options to pass to list
func NewTaskListOptions() *TaskListOptions {
return &TaskListOptions{
ListOptions: NewListOptions(),
}
}
func (o TaskListOptions) ToQueryString() (url.Values, error) {
return o.ListOptions.ToQueryString(o)
}
// Cancel the specified task
//
// Canceled tasks will initially be in state CANCELING and will move to state FAILED once the cancel request
// has been processed. Cancel requests are idempotent and will be processed according to the state of the
// task when the request is executed. Canceling a task that is in SUCCEEDED or FAILED state will return an error.
func (c *TaskClient) Cancel(ctx context.Context, guid string) (*resource.Task, error) {
var task resource.Task
_, err := c.client.post(ctx, path.Format("/v3/tasks/%s/actions/cancel", guid), nil, &task)
if err != nil {
return nil, err
}
return &task, nil
}
// Create a new task for the specified app
func (c *TaskClient) Create(ctx context.Context, appGUID string, r *resource.TaskCreate) (*resource.Task, error) {
var task resource.Task
_, err := c.client.post(ctx, path.Format("/v3/apps/%s/tasks", appGUID), r, &task)
if err != nil {
return nil, err
}
return &task, nil
}
// First returns the first task matching the options or an error when less than 1 match
func (c *TaskClient) First(ctx context.Context, opts *TaskListOptions) (*resource.Task, error) {
return First[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.List(ctx, opts)
})
}
// FirstForApp returns the first task matching the options and app or an error when less than 1 match
func (c *TaskClient) FirstForApp(ctx context.Context, appGUID string, opts *TaskListOptions) (*resource.Task, error) {
return First[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.ListForApp(ctx, appGUID, opts)
})
}
// Get the specified task
func (c *TaskClient) Get(ctx context.Context, guid string) (*resource.Task, error) {
var task resource.Task
err := c.client.get(ctx, path.Format("/v3/tasks/%s", guid), &task)
if err != nil {
return nil, err
}
return &task, nil
}
// List pages all the tasks the user has access to. The command field is excluded in the response.
func (c *TaskClient) List(ctx context.Context, opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
if opts == nil {
opts = NewTaskListOptions()
}
var res resource.TaskList
err := c.client.list(ctx, "/v3/tasks", opts.ToQueryString, &res)
if err != nil {
return nil, nil, err
}
pager := NewPager(res.Pagination)
return res.Resources, pager, nil
}
// ListAll retrieves all tasks the user has access to. The command field is excluded in the response.
func (c *TaskClient) ListAll(ctx context.Context, opts *TaskListOptions) ([]*resource.Task, error) {
if opts == nil {
opts = NewTaskListOptions()
}
return AutoPage[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.List(ctx, opts)
})
}
// ListForApp pages all the tasks for the specified app that the user has access to. The command field
// may be excluded in the response based on the user’s role.
func (c *TaskClient) ListForApp(ctx context.Context, appGUID string, opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
if opts == nil {
opts = NewTaskListOptions()
}
var res resource.TaskList
err := c.client.list(ctx, "/v3/apps/"+appGUID+"/tasks", opts.ToQueryString, &res)
if err != nil {
return nil, nil, err
}
pager := NewPager(res.Pagination)
return res.Resources, pager, nil
}
// ListForAppAll retrieves all the tasks for the specified app that the user has access to. The command field
// may be excluded in the response based on the user’s role.
func (c *TaskClient) ListForAppAll(ctx context.Context, appGUID string, opts *TaskListOptions) ([]*resource.Task, error) {
if opts == nil {
opts = NewTaskListOptions()
}
return AutoPage[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.ListForApp(ctx, appGUID, opts)
})
}
// Single returns a single task matching the options or an error if not exactly 1 match
func (c *TaskClient) Single(ctx context.Context, opts *TaskListOptions) (*resource.Task, error) {
return Single[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.List(ctx, opts)
})
}
// SingleForApp returns a single task matching the options or an error if not exactly 1 match
func (c *TaskClient) SingleForApp(ctx context.Context, appGUID string, opts *TaskListOptions) (*resource.Task, error) {
return Single[*TaskListOptions, *resource.Task](opts, func(opts *TaskListOptions) ([]*resource.Task, *Pager, error) {
return c.ListForApp(ctx, appGUID, opts)
})
}
// Update the specified attributes of the task
func (c *TaskClient) Update(ctx context.Context, guid string, r *resource.TaskUpdate) (*resource.Task, error) {
var task resource.Task
_, err := c.client.patch(ctx, path.Format("/v3/tasks/%s", guid), r, &task)
if err != nil {
return nil, err
}
return &task, nil
}