1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.entities.UCSBDiningCommons; | |
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 jakarta.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> allOrgs() | |
39 | { | |
40 | Iterable<UCSBOrganization> org = ucsbOrganizationRepository.findAll(); | |
41 |
1
1. allOrgs : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::allOrgs → KILLED |
return org; |
42 | } | |
43 | ||
44 | @Operation(summary= "Create a new organization") | |
45 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
46 | @PostMapping("/post") | |
47 | public UCSBOrganization postOrgs( | |
48 | @Parameter(name = "orgCode") @RequestParam String orgCode, | |
49 | @Parameter(name = "orgTranslationShort") @RequestParam String orgTranslationShort, | |
50 | @Parameter(name = "orgTranslation") @RequestParam String orgTranslation, | |
51 | @Parameter(name = "inactive") @RequestParam boolean inactive | |
52 | ) { | |
53 | UCSBOrganization org = new UCSBOrganization(); | |
54 |
1
1. postOrgs : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgCode → KILLED |
org.setOrgCode(orgCode); |
55 |
1
1. postOrgs : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslationShort → KILLED |
org.setOrgTranslationShort(orgTranslationShort); |
56 |
1
1. postOrgs : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslation → KILLED |
org.setOrgTranslation(orgTranslation); |
57 |
1
1. postOrgs : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setInactive → KILLED |
org.setInactive(inactive); |
58 | ||
59 | UCSBOrganization savedOrgs = ucsbOrganizationRepository.save(org); | |
60 |
1
1. postOrgs : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::postOrgs → KILLED |
return savedOrgs; |
61 | } | |
62 | ||
63 | @Operation(summary= "Get a single organization") | |
64 | @PreAuthorize("hasRole('ROLE_USER')") | |
65 | @GetMapping("") | |
66 | public UCSBOrganization getById( | |
67 | @Parameter(name="orgCode") @RequestParam String orgCode) { | |
68 | UCSBOrganization org = ucsbOrganizationRepository.findById(orgCode) | |
69 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBOrganization.class, orgCode)); |
70 | ||
71 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::getById → KILLED |
return org; |
72 | } | |
73 | ||
74 | @Operation(summary= "Update a single organization") | |
75 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
76 | @PutMapping("") | |
77 | public UCSBOrganization updateOrganization( | |
78 | @Parameter(name="orgCode") @RequestParam String orgCode, | |
79 | @RequestBody @Valid UCSBOrganization incoming) { | |
80 | ||
81 | UCSBOrganization org = ucsbOrganizationRepository.findById(orgCode) | |
82 |
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)); |
83 | ||
84 | ||
85 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgCode → KILLED |
org.setOrgCode(incoming.getOrgCode()); |
86 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslationShort → KILLED |
org.setOrgTranslationShort(incoming.getOrgTranslationShort()); |
87 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setOrgTranslation → KILLED |
org.setOrgTranslation(incoming.getOrgTranslation()); |
88 |
1
1. updateOrganization : removed call to edu/ucsb/cs156/example/entities/UCSBOrganization::setInactive → KILLED |
org.setInactive(incoming.getInactive()); |
89 | ||
90 | ucsbOrganizationRepository.save(org); | |
91 | ||
92 |
1
1. updateOrganization : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBOrganizationController::updateOrganization → KILLED |
return org; |
93 | } | |
94 | ||
95 | @Operation(summary= "Delete an organization") | |
96 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
97 | @DeleteMapping("") | |
98 | public Object deleteOrganization( | |
99 | @Parameter(name="orgCode") @RequestParam String orgCode) { | |
100 | UCSBOrganization org = ucsbOrganizationRepository.findById(orgCode) | |
101 |
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)); |
102 | ||
103 |
1
1. deleteOrganization : removed call to edu/ucsb/cs156/example/repositories/UCSBOrganizationRepository::delete → KILLED |
ucsbOrganizationRepository.delete(org); |
104 |
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)); |
105 | } | |
106 | } | |
Mutations | ||
41 |
1.1 |
|
54 |
1.1 |
|
55 |
1.1 |
|
56 |
1.1 |
|
57 |
1.1 |
|
60 |
1.1 |
|
69 |
1.1 |
|
71 |
1.1 |
|
82 |
1.1 |
|
85 |
1.1 |
|
86 |
1.1 |
|
87 |
1.1 |
|
88 |
1.1 |
|
92 |
1.1 |
|
101 |
1.1 |
|
103 |
1.1 |
|
104 |
1.1 |