1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.entities.RecommendationRequest; | |
4 | import edu.ucsb.cs156.example.entities.UCSBDate; | |
5 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
6 | import edu.ucsb.cs156.example.repositories.RecommendationRequestRepository; | |
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.checkerframework.checker.units.qual.g; | |
16 | import org.springframework.beans.factory.annotation.Autowired; | |
17 | import org.springframework.boot.context.properties.source.IterableConfigurationPropertySource; | |
18 | import org.springframework.format.annotation.DateTimeFormat; | |
19 | import org.springframework.security.access.prepost.PreAuthorize; | |
20 | import org.springframework.web.bind.annotation.DeleteMapping; | |
21 | import org.springframework.web.bind.annotation.GetMapping; | |
22 | import org.springframework.web.bind.annotation.PostMapping; | |
23 | import org.springframework.web.bind.annotation.PutMapping; | |
24 | import org.springframework.web.bind.annotation.RequestBody; | |
25 | import org.springframework.web.bind.annotation.RequestMapping; | |
26 | import org.springframework.web.bind.annotation.RequestParam; | |
27 | import org.springframework.web.bind.annotation.RestController; | |
28 | ||
29 | import jakarta.validation.Valid; | |
30 | ||
31 | import java.time.LocalDateTime; | |
32 | ||
33 | /** | |
34 | * This is a REST controller for RecommendationRequest | |
35 | */ | |
36 | ||
37 | @Tag(name = "RecommendationRequest") | |
38 | @RequestMapping("/api/recommendationrequest") | |
39 | @RestController | |
40 | @Slf4j | |
41 | public class RecommendationRequestController extends ApiController{ | |
42 | | |
43 | @Autowired | |
44 | RecommendationRequestRepository recommendationRequestRepository; | |
45 | ||
46 | /** | |
47 | * List all recommendation requests | |
48 | * | |
49 | * @return an iterable of RecommendationRequest | |
50 | */ | |
51 | @Operation(summary= "List all recommendation requests") | |
52 | @PreAuthorize("hasRole('ROLE_USER')") | |
53 | @GetMapping("/all") | |
54 | public Iterable<RecommendationRequest> allRecommendationRequests() { | |
55 | Iterable<RecommendationRequest> requests = recommendationRequestRepository.findAll(); | |
56 |
1
1. allRecommendationRequests : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/RecommendationRequestController::allRecommendationRequests → KILLED |
return requests; |
57 | } | |
58 | ||
59 | /** | |
60 | * Get a single recommendation request by id | |
61 | * | |
62 | * @param id the id of the recommendation request | |
63 | * @return a recommendation request | |
64 | */ | |
65 | @Operation(summary= "Get a single recommendation request") | |
66 | @PreAuthorize("hasRole('ROLE_USER')") | |
67 | @GetMapping("") | |
68 | public RecommendationRequest getById( | |
69 | @Parameter(name="id") @RequestParam Long id) { | |
70 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
71 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(RecommendationRequest.class, id)); |
72 | ||
73 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::getById → KILLED |
return recommendationRequest; |
74 | } | |
75 | ||
76 | /** | |
77 | * Create a new recommendation request | |
78 | * | |
79 | * @param requesterEmail the email of the requester | |
80 | * @param professorEmail the email of the professor | |
81 | * @param explanation the explanation of the request | |
82 | * @param dateRequested the date the request was made | |
83 | * @param dateNeeded the date the request is needed | |
84 | * @param done whether the request is done | |
85 | * @return the created RecommendationRequest | |
86 | */ | |
87 | | |
88 | @Operation(summary= "Create a new recommendation request") | |
89 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
90 | @PostMapping("/post") | |
91 | public RecommendationRequest postRecommendationRequest( | |
92 | @Parameter(name="requesterEmail") @RequestParam String requesterEmail, | |
93 | @Parameter(name="professorEmail") @RequestParam String professorEmail, | |
94 | @Parameter(name="explanation") @RequestParam String explanation, | |
95 | @Parameter(name="dateRequested") @RequestParam("dateRequested") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime dateRequested, | |
96 | @Parameter(name="dateNeeded") @RequestParam("dateNeeded") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime dateNeeded, | |
97 | @Parameter(name="done") @RequestParam boolean done) | |
98 | throws JsonProcessingException { | |
99 | ||
100 | log.info("date_Requested{}", dateRequested); | |
101 | ||
102 | RecommendationRequest recommendationRequest = new RecommendationRequest(); | |
103 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setRequesterEmail → KILLED |
recommendationRequest.setRequesterEmail(requesterEmail); |
104 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setProfessorEmail → KILLED |
recommendationRequest.setProfessorEmail(professorEmail); |
105 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setExplanation → KILLED |
recommendationRequest.setExplanation(explanation); |
106 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateRequested → KILLED |
recommendationRequest.setDateRequested(dateRequested); |
107 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateNeeded → KILLED |
recommendationRequest.setDateNeeded(dateNeeded); |
108 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDone → KILLED |
recommendationRequest.setDone(done); |
109 | ||
110 | RecommendationRequest savedRecommendationRequest = recommendationRequestRepository.save(recommendationRequest); | |
111 | ||
112 |
1
1. postRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::postRecommendationRequest → KILLED |
return savedRecommendationRequest; |
113 | } | |
114 | ||
115 | /** | |
116 | * Delete a recommendation request | |
117 | * | |
118 | * @param id the id of the recommendation request to delete | |
119 | * @return a message indicating the recommedation request was deleted | |
120 | */ | |
121 | @Operation(summary= "Delete a recommendation request") | |
122 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
123 | @DeleteMapping("") | |
124 | public Object deleteRecommendationRequest( | |
125 | @Parameter(name="id") @RequestParam Long id) { | |
126 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
127 |
1
1. lambda$deleteRecommendationRequest$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::lambda$deleteRecommendationRequest$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(RecommendationRequest.class, id)); |
128 | ||
129 |
1
1. deleteRecommendationRequest : removed call to edu/ucsb/cs156/example/repositories/RecommendationRequestRepository::delete → KILLED |
recommendationRequestRepository.delete(recommendationRequest); |
130 |
1
1. deleteRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::deleteRecommendationRequest → KILLED |
return genericMessage("RecommendationRequest with id %s deleted".formatted(id)); |
131 | } | |
132 | ||
133 | /** | |
134 | * Update a single recommendation request | |
135 | * | |
136 | * @param id id of the recommendation request to update | |
137 | * @param incoming the new recommendation request | |
138 | * @return the updated recommendation request object | |
139 | */ | |
140 | @Operation(summary= "Update a single recommendation request") | |
141 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
142 | @PutMapping("") | |
143 | public RecommendationRequest updateRecommendationRequest( | |
144 | @Parameter(name="id") @RequestParam Long id, | |
145 | @RequestBody @Valid RecommendationRequest incoming) { | |
146 | ||
147 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
148 |
1
1. lambda$updateRecommendationRequest$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::lambda$updateRecommendationRequest$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(RecommendationRequest.class, id)); |
149 | ||
150 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setRequesterEmail → KILLED |
recommendationRequest.setRequesterEmail(incoming.getRequesterEmail()); |
151 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setProfessorEmail → KILLED |
recommendationRequest.setProfessorEmail(incoming.getProfessorEmail()); |
152 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setExplanation → KILLED |
recommendationRequest.setExplanation(incoming.getExplanation()); |
153 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateRequested → KILLED |
recommendationRequest.setDateRequested(incoming.getDateRequested()); |
154 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateNeeded → KILLED |
recommendationRequest.setDateNeeded(incoming.getDateNeeded()); |
155 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDone → KILLED |
recommendationRequest.setDone(incoming.getDone()); |
156 | ||
157 | recommendationRequestRepository.save(recommendationRequest); | |
158 | ||
159 |
1
1. updateRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::updateRecommendationRequest → KILLED |
return recommendationRequest; |
160 | } | |
161 | } | |
Mutations | ||
56 |
1.1 |
|
71 |
1.1 |
|
73 |
1.1 |
|
103 |
1.1 |
|
104 |
1.1 |
|
105 |
1.1 |
|
106 |
1.1 |
|
107 |
1.1 |
|
108 |
1.1 |
|
112 |
1.1 |
|
127 |
1.1 |
|
129 |
1.1 |
|
130 |
1.1 |
|
148 |
1.1 |
|
150 |
1.1 |
|
151 |
1.1 |
|
152 |
1.1 |
|
153 |
1.1 |
|
154 |
1.1 |
|
155 |
1.1 |
|
159 |
1.1 |