1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.controllers.ApiController; | |
4 | import edu.ucsb.cs156.example.entities.UCSBOrganization; | |
5 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
6 | import edu.ucsb.cs156.example.repositories.UCSBOrganizationRepository; | |
7 | ||
8 | import io.swagger.v3.oas.annotations.Operation; | |
9 | import io.swagger.v3.oas.annotations.Parameter; | |
10 | import io.swagger.v3.oas.annotations.tags.Tag; | |
11 | import lombok.extern.slf4j.Slf4j; | |
12 | ||
13 | import org.springframework.beans.factory.annotation.Autowired; | |
14 | import org.springframework.security.access.prepost.PreAuthorize; | |
15 | import org.springframework.web.bind.annotation.DeleteMapping; | |
16 | import org.springframework.web.bind.annotation.GetMapping; | |
17 | import org.springframework.web.bind.annotation.PostMapping; | |
18 | import org.springframework.web.bind.annotation.PutMapping; | |
19 | import org.springframework.web.bind.annotation.RequestBody; | |
20 | import org.springframework.web.bind.annotation.RequestMapping; | |
21 | import org.springframework.web.bind.annotation.RequestParam; | |
22 | import org.springframework.web.bind.annotation.RestController; | |
23 | ||
24 | import javax.validation.Valid; | |
25 | ||
26 | @Tag(name = "UCSBOrganization") | |
27 | @RequestMapping("/api/ucsborganization") | |
28 | @RestController | |
29 | @Slf4j | |
30 | public class UCSBOrganizationController extends ApiController { | |
31 | ||
32 | @Autowired | |
33 | UCSBOrganizationRepository ucsbOrganizationRepository; | |
34 | ||
35 | @Operation(summary = "List all ucsb organizations") | |
36 | @PreAuthorize("hasRole('ROLE_USER')") | |
37 | @GetMapping("/all") | |
38 | public Iterable<UCSBOrganization> allOrganizations() { | |
39 | Iterable<UCSBOrganization> orgs = ucsbOrganizationRepository.findAll(); | |
40 |
1
1. allOrganizations : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::allOrganizations → KILLED |
return orgs; |
41 | } | |
42 | ||
43 | @Operation(summary = "Create a new organization") | |
44 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
45 | @PostMapping("/post") | |
46 | public UCSBOrganization postOrganization( | |
47 | @Parameter(name = "orgCode") @RequestParam String orgCode, | |
48 | @Parameter(name = "orgTranslationShort") @RequestParam String orgTranslationShort, | |
49 | @Parameter(name = "orgTranslation") @RequestParam String orgTranslation, | |
50 | @Parameter(name = "inactive") @RequestParam boolean inactive) { | |
51 | UCSBOrganization organization = new UCSBOrganization(); | |
52 |
1
1. postOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgCode → KILLED |
organization.setOrgCode(orgCode); |
53 |
1
1. postOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslationShort → KILLED |
organization.setOrgTranslationShort(orgTranslationShort); |
54 |
1
1. postOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslation → KILLED |
organization.setOrgTranslation(orgTranslation); |
55 |
1
1. postOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setInactive → KILLED |
organization.setInactive(inactive); |
56 | ||
57 | UCSBOrganization savedOrganization = ucsbOrganizationRepository.save(organization); | |
58 | ||
59 |
1
1. postOrganization : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::postOrganization → KILLED |
return savedOrganization; |
60 | } | |
61 | ||
62 | @Operation(summary = "Get a single organization") | |
63 | @PreAuthorize("hasRole('ROLE_USER')") | |
64 | @GetMapping("") | |
65 | public UCSBOrganization getOrganization( | |
66 | @Parameter(name = "orgCode") @RequestParam String orgCode) { | |
67 | UCSBOrganization organization = ucsbOrganizationRepository.findById(orgCode) | |
68 |
1
1. lambda$getOrganization$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::lambda$getOrganization$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBOrganization.class, orgCode)); |
69 |
1
1. getOrganization : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::getOrganization → KILLED |
return organization; |
70 | ||
71 | } | |
72 | ||
73 | @Operation(summary = "Update a single organization") | |
74 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
75 | @PutMapping("") | |
76 | public UCSBOrganization updateOrganization( | |
77 | @Parameter(name = "orgCode") @RequestParam String orgCode, | |
78 | @RequestBody @Valid UCSBOrganization incoming) { | |
79 | | |
80 | UCSBOrganization organization = ucsbOrganizationRepository.findById(orgCode) | |
81 |
1
1. lambda$updateOrganization$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::lambda$updateOrganization$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBOrganization.class, orgCode)); |
82 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslationShort → KILLED |
organization.setOrgTranslationShort(incoming.getOrgTranslationShort()); |
83 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslation → KILLED |
organization.setOrgTranslation(incoming.getOrgTranslation()); |
84 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setInactive → KILLED |
organization.setInactive(incoming.getInactive()); |
85 | ||
86 | ucsbOrganizationRepository.save(organization); | |
87 | ||
88 |
1
1. updateOrganization : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::updateOrganization → KILLED |
return organization; |
89 | } | |
90 | ||
91 | @Operation(summary = "Delete a UCSBOrganization") | |
92 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
93 | @DeleteMapping("") | |
94 | public Object deleteOrganization( | |
95 | @Parameter(name = "orgCode") @RequestParam String orgCode) { | |
96 | UCSBOrganization organization = ucsbOrganizationRepository.findById(orgCode) | |
97 |
1
1. lambda$deleteOrganization$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::lambda$deleteOrganization$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBOrganization.class, orgCode)); |
98 | ||
99 |
1
1. deleteOrganization : removed call to edu/ucsb/cs156/example/repositories/UCSBOrganizationRepository::delete → KILLED |
ucsbOrganizationRepository.delete(organization); |
100 |
1
1. deleteOrganization : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::deleteOrganization → KILLED |
return genericMessage("UCSBOrganization with id %s deleted".formatted(orgCode)); |
101 | } | |
102 | | |
103 | } | |
Mutations | ||
40 |
1.1 |
|
52 |
1.1 |
|
53 |
1.1 |
|
54 |
1.1 |
|
55 |
1.1 |
|
59 |
1.1 |
|
68 |
1.1 |
|
69 |
1.1 |
|
81 |
1.1 |
|
82 |
1.1 |
|
83 |
1.1 |
|
84 |
1.1 |
|
88 |
1.1 |
|
97 |
1.1 |
|
99 |
1.1 |
|
100 |
1.1 |