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