-
-
Notifications
You must be signed in to change notification settings - Fork 778
Expand file tree
/
Copy pathPolicyResource.java
More file actions
415 lines (399 loc) · 19.1 KB
/
Copy pathPolicyResource.java
File metadata and controls
415 lines (399 loc) · 19.1 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
* This file is part of Dependency-Track.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) OWASP Foundation. All Rights Reserved.
*/
package org.dependencytrack.resources.v1;
import alpine.persistence.PaginatedResult;
import alpine.server.auth.PermissionRequired;
import alpine.server.resources.AlpineResource;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.headers.Header;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.security.SecurityRequirements;
import org.apache.commons.lang3.StringUtils;
import org.dependencytrack.auth.Permissions;
import org.dependencytrack.model.Policy;
import org.dependencytrack.model.Project;
import org.dependencytrack.model.Tag;
import org.dependencytrack.model.validation.ValidUuid;
import org.dependencytrack.persistence.QueryManager;
import org.dependencytrack.resources.v1.openapi.PaginatedApi;
import jakarta.validation.Validator;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.DELETE;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import java.util.List;
import java.util.Set;
/**
* JAX-RS resources for processing policies.
*
* @author Steve Springett
* @since 4.0.0
*/
@Path("/v1/policy")
@io.swagger.v3.oas.annotations.tags.Tag(name = "policy")
@SecurityRequirements({
@SecurityRequirement(name = "ApiKeyAuth"),
@SecurityRequirement(name = "BearerAuth")
})
public class PolicyResource extends AlpineResource {
@GET
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Returns a list of all policies",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@PaginatedApi
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "A list of all policies",
headers = @Header(name = TOTAL_COUNT_HEADER, description = "The total number of policies", schema = @Schema(format = "integer")),
content = @Content(array = @ArraySchema(schema = @Schema(implementation = Policy.class)))
),
@ApiResponse(responseCode = "401", description = "Unauthorized")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response getPolicies() {
try (QueryManager qm = new QueryManager(getAlpineRequest())) {
final PaginatedResult result = qm.getPolicies();
return Response.ok(result.getObjects()).header(TOTAL_COUNT_HEADER, result.getTotal()).build();
}
}
@GET
@Path("/{uuid}")
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Returns a specific policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "A specific policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response getPolicy(
@Parameter(description = "The UUID of the policy to retrieve", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("uuid") @ValidUuid String uuid) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, uuid);
if (policy != null) {
return Response.ok(policy).build();
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
}
}
@PUT
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Creates a new policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "201",
description = "The created policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "409", description = "A policy with the specified name already exists")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response createPolicy(Policy jsonPolicy) {
final Validator validator = super.getValidator();
failOnValidationError(
validator.validateProperty(jsonPolicy, "name")
);
try (QueryManager qm = new QueryManager()) {
Policy policy = qm.getPolicy(StringUtils.trimToNull(jsonPolicy.getName()));
if (policy == null) {
Policy.Operator operator = jsonPolicy.getOperator();
if (operator == null) {
operator = Policy.Operator.ANY;
}
Policy.ViolationState violationState = jsonPolicy.getViolationState();
if (violationState == null) {
violationState = Policy.ViolationState.INFO;
}
policy = qm.createPolicy(
StringUtils.trimToNull(jsonPolicy.getName()),
operator, violationState, jsonPolicy.isOnlyLatestProjectVersion());
return Response.status(Response.Status.CREATED).entity(policy).build();
} else {
return Response.status(Response.Status.CONFLICT).entity("A policy with the specified name already exists.").build();
}
}
}
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Updates a policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The updated policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response updatePolicy(Policy jsonPolicy) {
final Validator validator = super.getValidator();
failOnValidationError(
validator.validateProperty(jsonPolicy, "name")
);
try (QueryManager qm = new QueryManager()) {
Policy policy = qm.getObjectByUuid(Policy.class, jsonPolicy.getUuid());
if (policy != null) {
policy.setName(StringUtils.trimToNull(jsonPolicy.getName()));
policy.setOperator(jsonPolicy.getOperator());
policy.setViolationState(jsonPolicy.getViolationState());
policy.setIncludeChildren(jsonPolicy.isIncludeChildren());
policy.setOnlyLatestProjectVersion(jsonPolicy.isOnlyLatestProjectVersion());
policy.setInvertTagMatch(jsonPolicy.isInvertTagMatch());
policy = qm.persist(policy);
return Response.ok(policy).build();
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
}
}
@DELETE
@Path("/{uuid}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Deletes a policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(responseCode = "204", description = "Policy removed successfully"),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The UUID of the policy could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response deletePolicy(
@Parameter(description = "The UUID of the policy to delete", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("uuid") @ValidUuid String uuid) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, uuid);
if (policy != null) {
qm.deletePolicy(policy);
return Response.status(Response.Status.NO_CONTENT).build();
} else {
return Response.status(Response.Status.NOT_FOUND).entity("The UUID of the policy could not be found.").build();
}
}
}
@POST
@Path("/{policyUuid}/project/{projectUuid}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Adds a project to a policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The updated policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "304", description = "The policy already has the specified project assigned"),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy or project could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response addProjectToPolicy(
@Parameter(description = "The UUID of the policy to add a project to", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("policyUuid") @ValidUuid String policyUuid,
@Parameter(description = "The UUID of the project to add to the rule", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("projectUuid") @ValidUuid String projectUuid) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, policyUuid);
if (policy == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
final Project project = qm.getObjectByUuid(Project.class, projectUuid);
if (project == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The project could not be found.").build();
}
final List<Project> projects = policy.getProjects();
if (projects != null && !projects.contains(project)) {
policy.getProjects().add(project);
qm.persist(policy);
return Response.ok(policy).build();
}
return Response.status(Response.Status.NOT_MODIFIED).build();
}
}
@DELETE
@Path("/{policyUuid}/project/{projectUuid}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Removes a project from a policy",
description = "<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>"
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The updated policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "304", description = "The policy does not have the specified project assigned"),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy or project could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
public Response removeProjectFromPolicy(
@Parameter(description = "The UUID of the policy to remove the project from", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("policyUuid") @ValidUuid String policyUuid,
@Parameter(description = "The UUID of the project to remove from the policy", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("projectUuid") @ValidUuid String projectUuid) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, policyUuid);
if (policy == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
final Project project = qm.getObjectByUuid(Project.class, projectUuid);
if (project == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The project could not be found.").build();
}
final List<Project> projects = policy.getProjects();
if (projects != null && projects.contains(project)) {
policy.getProjects().remove(project);
qm.persist(policy);
return Response.ok(policy).build();
}
return Response.status(Response.Status.NOT_MODIFIED).build();
}
}
@POST
@Path("/{policyUuid}/tag/{tagName}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Adds a tag to a policy",
description = """
<p><strong>Deprecated</strong>. Use <code>POST /api/v1/tag/{name}/policy</code> instead.</p>
<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>
"""
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The updated policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "304", description = "The policy already has the specified tag assigned"),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy or tag could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
@Deprecated(forRemoval = true)
public Response addTagToPolicy(
@Parameter(description = "The UUID of the policy to add a project to", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("policyUuid") @ValidUuid String policyUuid,
@Parameter(description = "The name of the tag to add to the rule", required = true)
@PathParam("tagName")String tagName) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, policyUuid);
if (policy == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
final Tag tag = qm.getTagByName(tagName);
if (tag == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The tag could not be found.").build();
}
if (qm.bind(policy, List.of(tag))) {
return Response.ok(policy).build();
}
return Response.status(Response.Status.NOT_MODIFIED).build();
}
}
@DELETE
@Path("/{policyUuid}/tag/{tagName}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Removes a tag from a policy",
description = """
<p><strong>Deprecated</strong>. Use <code>DELETE /api/v1/tag/{name}/policy</code> instead.</p>
<p>Requires permission <strong>POLICY_MANAGEMENT</strong></p>
"""
)
@ApiResponses(value = {
@ApiResponse(
responseCode = "200",
description = "The updated policy",
content = @Content(schema = @Schema(implementation = Policy.class))
),
@ApiResponse(responseCode = "304", description = "The policy does not have the specified tag assigned"),
@ApiResponse(responseCode = "401", description = "Unauthorized"),
@ApiResponse(responseCode = "404", description = "The policy or tag could not be found")
})
@PermissionRequired(Permissions.Constants.POLICY_MANAGEMENT)
@Deprecated(forRemoval = true)
public Response removeTagFromPolicy(
@Parameter(description = "The UUID of the policy to remove the tag from", schema = @Schema(type = "string", format = "uuid"), required = true)
@PathParam("policyUuid") @ValidUuid String policyUuid,
@Parameter(description = "The name of the tag to remove from the policy", required = true)
@PathParam("tagName") String tagName) {
try (QueryManager qm = new QueryManager()) {
final Policy policy = qm.getObjectByUuid(Policy.class, policyUuid);
if (policy == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The policy could not be found.").build();
}
final Tag tag = qm.getTagByName(tagName);
if (tag == null) {
return Response.status(Response.Status.NOT_FOUND).entity("The tag could not be found.").build();
}
final Set<Tag> tags = policy.getTags();
if (tags != null && tags.contains(tag)) {
policy.getTags().remove(tag);
qm.persist(policy);
return Response.ok(policy).build();
}
return Response.status(Response.Status.NOT_MODIFIED).build();
}
}
}