-
Notifications
You must be signed in to change notification settings - Fork 11
/
jobs.go
154 lines (138 loc) · 3.92 KB
/
jobs.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
package morpheus
import (
"fmt"
"time"
)
var (
// JobsPath is the API endpoint for jobs
JobsPath = "/api/jobs"
)
// Job structures for use in request and response payloads
type Job struct {
ID int64 `json:"id"`
Name string `json:"name"`
Labels []string `json:"labels"`
Enabled bool `json:"enabled"`
TargetType string `json:"targetType"`
Task struct {
ID int64 `json:"id"`
} `json:"task"`
Workflow struct {
ID int64 `json:"id"`
} `json:"workflow"`
Category string `json:"category"`
CreatedBy struct {
DisplayName string `json:"displayName"`
ID int64 `json:"id"`
Username string `json:"username"`
} `json:"createdBy"`
CustomConfig string `json:"customConfig"`
CustomOptions interface{} `json:"customOptions"`
DateCreated time.Time `json:"dateCreated"`
DateTime interface{} `json:"dateTime"`
Description string `json:"description"`
JobSummary string `json:"jobSummary"`
LastResult string `json:"lastResult"`
LastRun time.Time `json:"lastRun"`
LastUpdated time.Time `json:"lastUpdated"`
Namespace interface{} `json:"namespace"`
ScheduleMode string `json:"scheduleMode"`
Status string `json:"status"`
Targets []struct {
ID int64 `json:"id"`
Name string `json:"name"`
RefId int64 `json:"refId"`
TargetType string `json:"targetType"`
} `json:"targets"`
Type struct {
Code string `json:"code"`
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"type"`
SecurityProfile string `json:"securityProfile"`
ScanPath string `json:"scanPath"`
}
// ListJobsResult structure parses the list jobs response payload
type ListJobsResult struct {
Jobs *[]Job `json:"jobs"`
Meta *MetaResult `json:"meta"`
}
type GetJobResult struct {
Job *Job `json:"job"`
}
type CreateJobResult struct {
Success bool `json:"success"`
Message string `json:"msg"`
Errors map[string]string `json:"errors"`
Job *Job `json:"job"`
}
type UpdateJobResult struct {
CreateJobResult
}
type DeleteJobResult struct {
DeleteResult
}
// Client request methods
func (client *Client) ListJobs(req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "GET",
Path: JobsPath,
QueryParams: req.QueryParams,
Result: &ListJobsResult{},
})
}
func (client *Client) GetJob(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "GET",
Path: fmt.Sprintf("%s/%d", JobsPath, id),
QueryParams: req.QueryParams,
Result: &GetJobResult{},
})
}
func (client *Client) CreateJob(req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "POST",
Path: JobsPath,
QueryParams: req.QueryParams,
Body: req.Body,
Result: &CreateJobResult{},
})
}
func (client *Client) UpdateJob(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "PUT",
Path: fmt.Sprintf("%s/%d", JobsPath, id),
QueryParams: req.QueryParams,
Body: req.Body,
Result: &UpdateJobResult{},
})
}
func (client *Client) DeleteJob(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "DELETE",
Path: fmt.Sprintf("%s/%d", JobsPath, id),
QueryParams: req.QueryParams,
Body: req.Body,
Result: &DeleteJobResult{},
})
}
// helper functions
func (client *Client) FindJobByName(name string) (*Response, error) {
// Find by name, then get by ID
resp, err := client.ListJobs(&Request{
QueryParams: map[string]string{
"name": name,
},
})
if err != nil {
return resp, err
}
listResult := resp.Result.(*ListJobsResult)
jobCount := len(*listResult.Jobs)
if jobCount != 1 {
return resp, fmt.Errorf("found %d Jobs named %v", jobCount, name)
}
firstRecord := (*listResult.Jobs)[0]
jobID := firstRecord.ID
return client.GetJob(jobID, &Request{})
}