1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.entities.UCSBDate; | |
4 | import edu.ucsb.cs156.example.entities.UCSBDiningCommonsMenuItem; | |
5 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
6 | import edu.ucsb.cs156.example.repositories.UCSBDiningCommonsMenuItemRepository; | |
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 com.fasterxml.jackson.core.JsonProcessingException; | |
14 | ||
15 | import org.springframework.beans.factory.annotation.Autowired; | |
16 | import org.springframework.format.annotation.DateTimeFormat; | |
17 | import org.springframework.security.access.prepost.PreAuthorize; | |
18 | import org.springframework.web.bind.annotation.DeleteMapping; | |
19 | import org.springframework.web.bind.annotation.GetMapping; | |
20 | import org.springframework.web.bind.annotation.PostMapping; | |
21 | import org.springframework.web.bind.annotation.PutMapping; | |
22 | import org.springframework.web.bind.annotation.RequestBody; | |
23 | import org.springframework.web.bind.annotation.RequestMapping; | |
24 | import org.springframework.web.bind.annotation.RequestParam; | |
25 | import org.springframework.web.bind.annotation.RestController; | |
26 | ||
27 | import jakarta.validation.Valid; | |
28 | ||
29 | import java.time.LocalDateTime; | |
30 | ||
31 | /** | |
32 | * This is a REST controller for UCSBDiningCommonsMenuItem | |
33 | */ | |
34 | ||
35 | @Tag(name = "UCSBDiningCommonsMenuItem") | |
36 | @RequestMapping("/api/ucsbdiningcommonsmenuitem") | |
37 | @RestController | |
38 | @Slf4j | |
39 | public class UCSBDiningCommonsMenuItemController extends ApiController { | |
40 | | |
41 | @Autowired | |
42 | UCSBDiningCommonsMenuItemRepository ucsbDiningCommonsMenuItemRepository; | |
43 | | |
44 | @Operation(summary= "List all ucsb dining commons menu items") | |
45 | @PreAuthorize("hasRole('ROLE_USER')") | |
46 | @GetMapping("/all") | |
47 | public Iterable<UCSBDiningCommonsMenuItem> allUCSBDiningCommonsMenuItem() { | |
48 | Iterable<UCSBDiningCommonsMenuItem> items = ucsbDiningCommonsMenuItemRepository.findAll(); | |
49 |
1
1. allUCSBDiningCommonsMenuItem : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::allUCSBDiningCommonsMenuItem → KILLED |
return items; |
50 | } | |
51 | | |
52 | /** | |
53 | * Get a single menu item by id | |
54 | * | |
55 | * @param id the id of diningCommonCode | |
56 | * @return a UCSBDiningCommonsMenuItem | |
57 | */ | |
58 | @Operation(summary= "Get a single menu item") | |
59 | @PreAuthorize("hasRole('ROLE_USER')") | |
60 | @GetMapping("") | |
61 | public UCSBDiningCommonsMenuItem getById( | |
62 | @Parameter(name="id") @RequestParam Long id) { | |
63 | UCSBDiningCommonsMenuItem ucsbDiningCommonsMenuItem = ucsbDiningCommonsMenuItemRepository.findById(id) | |
64 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDiningCommonsMenuItem.class, id)); |
65 | | |
66 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::getById → KILLED |
return ucsbDiningCommonsMenuItem; |
67 | } | |
68 | | |
69 | /** | |
70 | * Create a new menu item | |
71 | * | |
72 | * @param diningCommonsCode | |
73 | * @param name | |
74 | * @param station | |
75 | * @return | |
76 | */ | |
77 | @Operation(summary= "Create a new dining commons menu item") | |
78 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
79 | @PostMapping("/post") | |
80 | public UCSBDiningCommonsMenuItem postUCSBDiningCommonsMenuItem( | |
81 | @Parameter(name="diningCommonsCode") @RequestParam String diningCommonsCode, | |
82 | @Parameter(name="name") @RequestParam String name, | |
83 | @Parameter(name="station") @RequestParam String station) | |
84 | throws JsonProcessingException { | |
85 | | |
86 | // For an explanation of @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
87 | // See: https://www.baeldung.com/spring-date-parameters | |
88 | | |
89 | // log.info("localDateTime={}", localDateTime); | |
90 | | |
91 | UCSBDiningCommonsMenuItem ucsbDiningCommonsMenuItem = new UCSBDiningCommonsMenuItem(); | |
92 |
1
1. postUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setDiningCommonsCode → KILLED |
ucsbDiningCommonsMenuItem.setDiningCommonsCode(diningCommonsCode); |
93 |
1
1. postUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setName → KILLED |
ucsbDiningCommonsMenuItem.setName(name); |
94 |
1
1. postUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setStation → KILLED |
ucsbDiningCommonsMenuItem.setStation(station); |
95 | | |
96 | UCSBDiningCommonsMenuItem savedUCSBDiningCommonsMenuItem = ucsbDiningCommonsMenuItemRepository.save(ucsbDiningCommonsMenuItem); | |
97 | | |
98 |
1
1. postUCSBDiningCommonsMenuItem : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::postUCSBDiningCommonsMenuItem → KILLED |
return savedUCSBDiningCommonsMenuItem; |
99 | } | |
100 | | |
101 | | |
102 | /** | |
103 | * Delete a UCSBDiningCommonsMenuItem | |
104 | * | |
105 | * @param id the id of menu item to delete | |
106 | * @return a message indicating the menu item was deleted | |
107 | */ | |
108 | @Operation(summary= "Delete a UCSBDiningCommonsMenuItem") | |
109 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
110 | @DeleteMapping("") | |
111 | public Object deleteUCSBDiningCommonsMenuItem( | |
112 | @Parameter(name="id") @RequestParam Long id) { | |
113 | UCSBDiningCommonsMenuItem ucsbDiningCommonsMenuItem = ucsbDiningCommonsMenuItemRepository.findById(id) | |
114 |
1
1. lambda$deleteUCSBDiningCommonsMenuItem$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::lambda$deleteUCSBDiningCommonsMenuItem$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDiningCommonsMenuItem.class, id)); |
115 | | |
116 |
1
1. deleteUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/repositories/UCSBDiningCommonsMenuItemRepository::delete → KILLED |
ucsbDiningCommonsMenuItemRepository.delete(ucsbDiningCommonsMenuItem); |
117 |
1
1. deleteUCSBDiningCommonsMenuItem : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::deleteUCSBDiningCommonsMenuItem → KILLED |
return genericMessage("UCSBDiningCommonsMenuItem with id %s deleted".formatted(id)); |
118 | } | |
119 | | |
120 | /** | |
121 | * Update a single menu item | |
122 | * | |
123 | * @param id id of the menu item to update | |
124 | * @param incoming the new menu item | |
125 | * @return the updated menu item object | |
126 | */ | |
127 | @Operation(summary= "Update a single menu item") | |
128 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
129 | @PutMapping("") | |
130 | public UCSBDiningCommonsMenuItem updateUCSBDiningCommonsMenuItem( | |
131 | @Parameter(name="id") @RequestParam Long id, | |
132 | @RequestBody @Valid UCSBDiningCommonsMenuItem incoming) { | |
133 | | |
134 | UCSBDiningCommonsMenuItem ucsbDiningCommonsMenuItem = ucsbDiningCommonsMenuItemRepository.findById(id) | |
135 |
1
1. lambda$updateUCSBDiningCommonsMenuItem$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::lambda$updateUCSBDiningCommonsMenuItem$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDiningCommonsMenuItem.class, id)); |
136 | | |
137 |
1
1. updateUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setDiningCommonsCode → KILLED |
ucsbDiningCommonsMenuItem.setDiningCommonsCode(incoming.getDiningCommonsCode()); |
138 |
1
1. updateUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setName → KILLED |
ucsbDiningCommonsMenuItem.setName(incoming.getName()); |
139 |
1
1. updateUCSBDiningCommonsMenuItem : removed call to edu/ucsb/cs156/example/entities/UCSBDiningCommonsMenuItem::setStation → KILLED |
ucsbDiningCommonsMenuItem.setStation(incoming.getStation()); |
140 | | |
141 | ucsbDiningCommonsMenuItemRepository.save(ucsbDiningCommonsMenuItem); | |
142 | | |
143 |
1
1. updateUCSBDiningCommonsMenuItem : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDiningCommonsMenuItemController::updateUCSBDiningCommonsMenuItem → KILLED |
return ucsbDiningCommonsMenuItem; |
144 | } | |
145 | } | |
146 | | |
147 | ||
Mutations | ||
49 |
1.1 |
|
64 |
1.1 |
|
66 |
1.1 |
|
92 |
1.1 |
|
93 |
1.1 |
|
94 |
1.1 |
|
98 |
1.1 |
|
114 |
1.1 |
|
116 |
1.1 |
|
117 |
1.1 |
|
135 |
1.1 |
|
137 |
1.1 |
|
138 |
1.1 |
|
139 |
1.1 |
|
143 |
1.1 |