mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
89a6966726
In file `api/types/client.go`, some of the "*Options{}" structs own a `Filters` field while some else have the name of `Filter`, this commit will rename all `Filter` to `Filters` for consistency. Also `Filters` is consistent with API with format `/xxx?filters=xxx`, that's why `Filters` is the right name. Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
35 lines
755 B
Go
35 lines
755 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// TaskList returns the list of tasks.
|
|
func (cli *Client) TaskList(ctx context.Context, options types.TaskListOptions) ([]swarm.Task, error) {
|
|
query := url.Values{}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
filterJSON, err := filters.ToParam(options.Filters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/tasks", query, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var tasks []swarm.Task
|
|
err = json.NewDecoder(resp.body).Decode(&tasks)
|
|
ensureReaderClosed(resp)
|
|
return tasks, err
|
|
}
|