forked from kradalby/govcloudair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.go
83 lines (67 loc) · 1.79 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
/*
* Copyright 2014 VMware, Inc. All rights reserved. Licensed under the Apache v2 License.
*/
package govcloudair
import (
"net/url"
"time"
"github.com/kublr/govcloudair/types/v56"
"github.com/pkg/errors"
)
type Task struct {
Task *types.Task
c *Client
}
func NewTask(c *Client) *Task {
return &Task{
Task: new(types.Task),
c: c,
}
}
func (t *Task) Refresh() error {
u, err := url.ParseRequestURI(t.Task.HREF)
if err != nil {
return errors.Wrapf(err, "cannot parse url: %s", t.Task.HREF)
}
req := t.c.NewRequest(map[string]string{}, "GET", *u, nil)
resp, err := checkResp(t.c.Http.Do(req))
if err != nil {
return errors.Wrapf(err, "cannot execute request: %s", t.Task.HREF)
}
defer resp.Body.Close()
newTask := &types.Task{}
if err = decodeBody(resp, newTask); err != nil {
return errors.Wrapf(err, "cannot unmarshal response: %s", t.Task.HREF)
}
t.Task = newTask
return nil
}
func (t *Task) WaitTaskCompletion() error {
for {
err := t.Refresh()
if err != nil {
return err
}
// If task is not in a waiting status we're done, check if there's an error and return it.
if t.Task.Status != "queued" && t.Task.Status != "preRunning" && t.Task.Status != "running" {
if t.Task.Status != "success" {
return errors.Errorf("task %s did not completed successfully: %s", t.Task.Name, t.Task.Description)
}
return nil
}
time.Sleep(1 * time.Second)
}
}
func (t *Task) Cancel() error {
u, err := url.ParseRequestURI(t.Task.Link.HREF)
if err != nil {
return errors.Wrapf(err, "cannot parse url: %s", t.Task.Link.HREF)
}
req := t.c.NewRequest(map[string]string{}, "POST", *u, nil)
resp, err := checkResp(t.c.Http.Do(req))
if err != nil {
return errors.Wrapf(err, "cannot execute request: %s", t.Task.Link.HREF)
}
defer resp.Body.Close()
return nil
}