| 1 | package edu.ucsb.cs156.example.controllers; | |
| 2 | ||
| 3 | import edu.ucsb.cs156.example.entities.RecommendationRequest; | |
| 4 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
| 5 | import edu.ucsb.cs156.example.repositories.RecommendationRequestRepository; | |
| 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 | /** | |
| 32 | * This is a REST controller for RecommendationRequest | |
| 33 | */ | |
| 34 | ||
| 35 | ||
| 36 | @Tag(name = "RecommendationRequest") | |
| 37 | @RequestMapping("/api/recommendationrequest") | |
| 38 | @RestController | |
| 39 | @Slf4j | |
| 40 | public class RecommendationRequestController extends ApiController{ | |
| 41 | ||
| 42 | @Autowired | |
| 43 | RecommendationRequestRepository recommendationRequestRepository; | |
| 44 | ||
| 45 | /** | |
| 46 | * List all Recommendation requests | |
| 47 | * | |
| 48 | * @return an iterable of RecommendationRequest | |
| 49 | */ | |
| 50 | @Operation(summary= "List all recommendation requests") | |
| 51 | @PreAuthorize("hasRole('ROLE_USER')") | |
| 52 | @GetMapping("/all") | |
| 53 | public Iterable<RecommendationRequest> allRecommendationRequests() { | |
| 54 | Iterable<RecommendationRequest> requests = recommendationRequestRepository.findAll(); | |
| 55 |
1
1. allRecommendationRequests : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/RecommendationRequestController::allRecommendationRequests → KILLED |
return requests; |
| 56 | } | |
| 57 | ||
| 58 | /** | |
| 59 | * Get a single recommendation request by id | |
| 60 | * | |
| 61 | * @param id the id of the recommendation request | |
| 62 | * @return a RecommendationRequest | |
| 63 | */ | |
| 64 | @Operation(summary= "Get a single recommendation request") | |
| 65 | @PreAuthorize("hasRole('ROLE_USER')") | |
| 66 | @GetMapping("") | |
| 67 | public RecommendationRequest getById( | |
| 68 | @Parameter(name="id") @RequestParam Long id) { | |
| 69 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
| 70 |
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)); |
| 71 | ||
| 72 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::getById → KILLED |
return recommendationRequest; |
| 73 | } | |
| 74 | ||
| 75 | /** | |
| 76 | * Create a new recommendation request | |
| 77 | * | |
| 78 | * @param requesterEmail the email of the person making the request | |
| 79 | * @param professorEmail the email of the professor | |
| 80 | * @param explanation explanation of the request | |
| 81 | * @param dateRequested the date of the request | |
| 82 | * @param dateNeeded the date the request is needed | |
| 83 | * @param done the status of the request | |
| 84 | * @return the saved recommendation request | |
| 85 | */ | |
| 86 | @Operation(summary= "Create a new recommendation request") | |
| 87 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 88 | @PostMapping("/post") | |
| 89 | public RecommendationRequest postRecommendationRequest( | |
| 90 | @Parameter(name="requesterEmail") @RequestParam String requesterEmail, | |
| 91 | @Parameter(name="professorEmail") @RequestParam String professorEmail, | |
| 92 | @Parameter(name="explanation") @RequestParam String explanation, | |
| 93 | @Parameter(name="dateRequested", description="date (in iso format, e.g. YYYY-mm-ddTHH:MM:SS; see https://en.wikipedia.org/wiki/ISO_8601)") @RequestParam("dateRequested") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime dateRequested, | |
| 94 | @Parameter(name="dateNeeded", description="date (in iso format, e.g. YYYY-mm-ddTHH:MM:SS; see https://en.wikipedia.org/wiki/ISO_8601)") @RequestParam("dateNeeded") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime dateNeeded, | |
| 95 | @Parameter(name="done") @RequestParam boolean done) | |
| 96 | throws JsonProcessingException { | |
| 97 | ||
| 98 | // For an explanation of @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
| 99 | // See: https://www.baeldung.com/spring-date-parameters | |
| 100 | ||
| 101 | log.info("localDateTime={}", dateRequested); | |
| 102 | log.info("dateNeeded={}", dateNeeded); | |
| 103 | ||
| 104 | RecommendationRequest recommendationRequest = new RecommendationRequest(); | |
| 105 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setRequesterEmail → KILLED |
recommendationRequest.setRequesterEmail(requesterEmail); |
| 106 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setProfessorEmail → KILLED |
recommendationRequest.setProfessorEmail(professorEmail); |
| 107 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setExplanation → KILLED |
recommendationRequest.setExplanation(explanation); |
| 108 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateRequested → KILLED |
recommendationRequest.setDateRequested(dateRequested); |
| 109 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateNeeded → KILLED |
recommendationRequest.setDateNeeded(dateNeeded); |
| 110 |
1
1. postRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDone → KILLED |
recommendationRequest.setDone(done); |
| 111 | ||
| 112 | RecommendationRequest savedRecommendationRequest = recommendationRequestRepository.save(recommendationRequest); | |
| 113 | ||
| 114 |
1
1. postRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::postRecommendationRequest → KILLED |
return savedRecommendationRequest; |
| 115 | } | |
| 116 | ||
| 117 | /** | |
| 118 | * Delete a Recommendation Request | |
| 119 | * | |
| 120 | * @param id the id of the request to delete | |
| 121 | * @return a message indicating the request was deleted | |
| 122 | */ | |
| 123 | @Operation(summary= "Delete a recommendation request") | |
| 124 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 125 | @DeleteMapping("") | |
| 126 | public Object deleteRecommendationRequest( | |
| 127 | @Parameter(name="id") @RequestParam Long id) { | |
| 128 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
| 129 |
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)); |
| 130 | ||
| 131 |
1
1. deleteRecommendationRequest : removed call to edu/ucsb/cs156/example/repositories/RecommendationRequestRepository::delete → KILLED |
recommendationRequestRepository.delete(recommendationRequest); |
| 132 |
1
1. deleteRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::deleteRecommendationRequest → KILLED |
return genericMessage("Recommendation Request with id %s deleted".formatted(id)); |
| 133 | } | |
| 134 | ||
| 135 | /** | |
| 136 | * Update a single recommendation request | |
| 137 | * | |
| 138 | * @param id id of the request to update | |
| 139 | * @param incoming the new request | |
| 140 | * @return the updated recommendation request object | |
| 141 | */ | |
| 142 | @Operation(summary= "Update a single recommendation request") | |
| 143 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 144 | @PutMapping("") | |
| 145 | public RecommendationRequest updateRecommendationRequest( | |
| 146 | @Parameter(name="id") @RequestParam Long id, | |
| 147 | @RequestBody @Valid RecommendationRequest incoming) { | |
| 148 | ||
| 149 | RecommendationRequest recommendationRequest = recommendationRequestRepository.findById(id) | |
| 150 |
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)); |
| 151 | ||
| 152 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setRequesterEmail → KILLED |
recommendationRequest.setRequesterEmail(incoming.getRequesterEmail()); |
| 153 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setProfessorEmail → KILLED |
recommendationRequest.setProfessorEmail(incoming.getProfessorEmail()); |
| 154 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setExplanation → KILLED |
recommendationRequest.setExplanation(incoming.getExplanation()); |
| 155 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateRequested → KILLED |
recommendationRequest.setDateRequested(incoming.getDateRequested()); |
| 156 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDateNeeded → KILLED |
recommendationRequest.setDateNeeded(incoming.getDateNeeded()); |
| 157 |
1
1. updateRecommendationRequest : removed call to edu/ucsb/cs156/example/entities/RecommendationRequest::setDone → KILLED |
recommendationRequest.setDone(incoming.getDone()); |
| 158 | ||
| 159 | recommendationRequestRepository.save(recommendationRequest); | |
| 160 | ||
| 161 |
1
1. updateRecommendationRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/RecommendationRequestController::updateRecommendationRequest → KILLED |
return recommendationRequest; |
| 162 | } | |
| 163 | } | |
Mutations | ||
| 55 |
1.1 |
|
| 70 |
1.1 |
|
| 72 |
1.1 |
|
| 105 |
1.1 |
|
| 106 |
1.1 |
|
| 107 |
1.1 |
|
| 108 |
1.1 |
|
| 109 |
1.1 |
|
| 110 |
1.1 |
|
| 114 |
1.1 |
|
| 129 |
1.1 |
|
| 131 |
1.1 |
|
| 132 |
1.1 |
|
| 150 |
1.1 |
|
| 152 |
1.1 |
|
| 153 |
1.1 |
|
| 154 |
1.1 |
|
| 155 |
1.1 |
|
| 156 |
1.1 |
|
| 157 |
1.1 |
|
| 161 |
1.1 |