This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
project.go
133 lines (110 loc) · 3.96 KB
/
project.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
package dtrack
import (
"context"
"fmt"
"net/http"
"github.com/google/uuid"
)
type Project struct {
UUID uuid.UUID `json:"uuid,omitempty"`
Author string `json:"author,omitempty"`
Publisher string `json:"publisher,omitempty"`
Group string `json:"group,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Version string `json:"version,omitempty"`
Classifier string `json:"classifier,omitempty"`
CPE string `json:"cpe,omitempty"`
PURL string `json:"purl,omitempty"`
SWIDTagID string `json:"swidTagId,omitempty"`
DirectDependencies string `json:"directDependencies,omitempty"`
Properties []ProjectProperty `json:"properties,omitempty"`
Tags []Tag `json:"tags,omitempty"`
Active bool `json:"active"`
Metrics ProjectMetrics `json:"metrics"`
LastBOMImport int `json:"lastBomImport"`
}
type ProjectService struct {
client *Client
}
func (ps ProjectService) Get(ctx context.Context, projectUUID uuid.UUID) (p Project, err error) {
req, err := ps.client.newRequest(ctx, http.MethodGet, fmt.Sprintf("/api/v1/project/%s", projectUUID))
if err != nil {
return
}
_, err = ps.client.doRequest(req, &p)
return
}
func (ps ProjectService) GetAll(ctx context.Context, po PageOptions) (p Page[Project], err error) {
req, err := ps.client.newRequest(ctx, http.MethodGet, "/api/v1/project", withPageOptions(po))
if err != nil {
return
}
res, err := ps.client.doRequest(req, &p.Items)
if err != nil {
return
}
p.TotalCount = res.TotalCount
return
}
func (ps ProjectService) Create(ctx context.Context, project Project) (p Project, err error) {
req, err := ps.client.newRequest(ctx, http.MethodPut, "/api/v1/project", withBody(project))
if err != nil {
return
}
_, err = ps.client.doRequest(req, &p)
return
}
func (ps ProjectService) Patch(ctx context.Context, projectUUID uuid.UUID, project Project) (p Project, err error) {
req, err := ps.client.newRequest(ctx, http.MethodPatch, fmt.Sprintf("/api/v1/project/%s", projectUUID), withBody(project))
if err != nil {
return
}
_, err = ps.client.doRequest(req, &p)
return
}
func (ps ProjectService) Update(ctx context.Context, project Project) (p Project, err error) {
req, err := ps.client.newRequest(ctx, http.MethodPost, "/api/v1/project", withBody(project))
if err != nil {
return
}
_, err = ps.client.doRequest(req, &p)
return
}
func (ps ProjectService) Delete(ctx context.Context, projectUUID uuid.UUID) (err error) {
req, err := ps.client.newRequest(ctx, http.MethodDelete, fmt.Sprintf("/api/v1/project/%s", projectUUID))
if err != nil {
return
}
_, err = ps.client.doRequest(req, nil)
return
}
func (ps ProjectService) Lookup(ctx context.Context, name, version string) (p Project, err error) {
params := map[string]string{
"name": name,
"version": version,
}
req, err := ps.client.newRequest(ctx, http.MethodGet, "/api/v1/project/lookup", withParams(params))
if err != nil {
return
}
_, err = ps.client.doRequest(req, &p)
return
}
type ProjectCloneRequest struct {
ProjectUUID uuid.UUID `json:"project"`
Version string `json:"version"`
IncludeAuditHistory bool `json:"includeAuditHistory"`
IncludeComponents bool `json:"includeComponents"`
IncludeProperties bool `json:"includeProperties"`
IncludeServices bool `json:"includeServices"`
IncludeTags bool `json:"includeTags"`
}
func (ps ProjectService) Clone(ctx context.Context, cloneReq ProjectCloneRequest) (err error) {
req, err := ps.client.newRequest(ctx, http.MethodPut, "/api/v1/project/clone", withBody(cloneReq))
if err != nil {
return
}
_, err = ps.client.doRequest(req, nil)
return
}