1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.entities.UCSBDate; | |
4 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
5 | import edu.ucsb.cs156.example.repositories.UCSBDateRepository; | |
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 javax.validation.Valid; | |
27 | ||
28 | import java.time.LocalDateTime; | |
29 | ||
30 | @Tag(name = "UCSBDates") | |
31 | @RequestMapping("/api/ucsbdates") | |
32 | @RestController | |
33 | @Slf4j | |
34 | public class UCSBDatesController extends ApiController { | |
35 | ||
36 | @Autowired | |
37 | UCSBDateRepository ucsbDateRepository; | |
38 | ||
39 | @Operation(summary= "List all ucsb dates") | |
40 | @PreAuthorize("hasRole('ROLE_USER')") | |
41 | @GetMapping("/all") | |
42 | public Iterable<UCSBDate> allUCSBDates() { | |
43 | Iterable<UCSBDate> dates = ucsbDateRepository.findAll(); | |
44 |
1
1. allUCSBDates : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::allUCSBDates → KILLED |
return dates; |
45 | } | |
46 | ||
47 | @Operation(summary= "Create a new date") | |
48 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
49 | @PostMapping("/post") | |
50 | public UCSBDate postUCSBDate( | |
51 | @Parameter(name="quarterYYYYQ") @RequestParam String quarterYYYYQ, | |
52 | @Parameter(name="name") @RequestParam String name, | |
53 | @Parameter(name="date (in iso format, e.g. YYYY-mm-ddTHH:MM:SS; see https://en.wikipedia.org/wiki/ISO_8601)") @RequestParam("localDateTime") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime localDateTime) | |
54 | throws JsonProcessingException { | |
55 | ||
56 | // For an explanation of @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
57 | // See: https://www.baeldung.com/spring-date-parameters | |
58 | ||
59 | log.info("localDateTime={}", localDateTime); | |
60 | ||
61 | UCSBDate ucsbDate = new UCSBDate(); | |
62 |
1
1. postUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setQuarterYYYYQ → KILLED |
ucsbDate.setQuarterYYYYQ(quarterYYYYQ); |
63 |
1
1. postUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setName → KILLED |
ucsbDate.setName(name); |
64 |
1
1. postUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setLocalDateTime → KILLED |
ucsbDate.setLocalDateTime(localDateTime); |
65 | ||
66 | UCSBDate savedUcsbDate = ucsbDateRepository.save(ucsbDate); | |
67 | ||
68 |
1
1. postUCSBDate : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::postUCSBDate → KILLED |
return savedUcsbDate; |
69 | } | |
70 | ||
71 | @Operation(summary= "Get a single date") | |
72 | @PreAuthorize("hasRole('ROLE_USER')") | |
73 | @GetMapping("") | |
74 | public UCSBDate getById( | |
75 | @Parameter(name="id") @RequestParam Long id) { | |
76 | UCSBDate ucsbDate = ucsbDateRepository.findById(id) | |
77 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDate.class, id)); |
78 | ||
79 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::getById → KILLED |
return ucsbDate; |
80 | } | |
81 | ||
82 | @Operation(summary= "Delete a UCSBDate") | |
83 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
84 | @DeleteMapping("") | |
85 | public Object deleteUCSBDate( | |
86 | @Parameter(name="id") @RequestParam Long id) { | |
87 | UCSBDate ucsbDate = ucsbDateRepository.findById(id) | |
88 |
1
1. lambda$deleteUCSBDate$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::lambda$deleteUCSBDate$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDate.class, id)); |
89 | ||
90 |
1
1. deleteUCSBDate : removed call to edu/ucsb/cs156/example/repositories/UCSBDateRepository::delete → KILLED |
ucsbDateRepository.delete(ucsbDate); |
91 |
1
1. deleteUCSBDate : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::deleteUCSBDate → KILLED |
return genericMessage("UCSBDate with id %s deleted".formatted(id)); |
92 | } | |
93 | ||
94 | @Operation(summary= "Update a single date") | |
95 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
96 | @PutMapping("") | |
97 | public UCSBDate updateUCSBDate( | |
98 | @Parameter(name="id") @RequestParam Long id, | |
99 | @RequestBody @Valid UCSBDate incoming) { | |
100 | ||
101 | UCSBDate ucsbDate = ucsbDateRepository.findById(id) | |
102 |
1
1. lambda$updateUCSBDate$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::lambda$updateUCSBDate$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(UCSBDate.class, id)); |
103 | ||
104 |
1
1. updateUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setQuarterYYYYQ → KILLED |
ucsbDate.setQuarterYYYYQ(incoming.getQuarterYYYYQ()); |
105 |
1
1. updateUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setName → KILLED |
ucsbDate.setName(incoming.getName()); |
106 |
1
1. updateUCSBDate : removed call to edu/ucsb/cs156/example/entities/UCSBDate::setLocalDateTime → KILLED |
ucsbDate.setLocalDateTime(incoming.getLocalDateTime()); |
107 | ||
108 | ucsbDateRepository.save(ucsbDate); | |
109 | ||
110 |
1
1. updateUCSBDate : replaced return value with null for edu/ucsb/cs156/example/controllers/UCSBDatesController::updateUCSBDate → KILLED |
return ucsbDate; |
111 | } | |
112 | } | |
Mutations | ||
44 |
1.1 |
|
62 |
1.1 |
|
63 |
1.1 |
|
64 |
1.1 |
|
68 |
1.1 |
|
77 |
1.1 |
|
79 |
1.1 |
|
88 |
1.1 |
|
90 |
1.1 |
|
91 |
1.1 |
|
102 |
1.1 |
|
104 |
1.1 |
|
105 |
1.1 |
|
106 |
1.1 |
|
110 |
1.1 |