| 1 | package edu.ucsb.cs156.example.controllers; | |
| 2 | ||
| 3 | import com.fasterxml.jackson.core.JsonProcessingException; | |
| 4 | import edu.ucsb.cs156.example.entities.HelpRequest; | |
| 5 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
| 6 | import edu.ucsb.cs156.example.repositories.HelpRequestRepository; | |
| 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 jakarta.validation.Valid; | |
| 11 | import java.time.LocalDateTime; | |
| 12 | import lombok.extern.slf4j.Slf4j; | |
| 13 | import org.springframework.beans.factory.annotation.Autowired; | |
| 14 | import org.springframework.format.annotation.DateTimeFormat; | |
| 15 | import org.springframework.security.access.prepost.PreAuthorize; | |
| 16 | import org.springframework.web.bind.annotation.DeleteMapping; | |
| 17 | import org.springframework.web.bind.annotation.GetMapping; | |
| 18 | import org.springframework.web.bind.annotation.PostMapping; | |
| 19 | import org.springframework.web.bind.annotation.PutMapping; | |
| 20 | import org.springframework.web.bind.annotation.RequestBody; | |
| 21 | import org.springframework.web.bind.annotation.RequestMapping; | |
| 22 | import org.springframework.web.bind.annotation.RequestParam; | |
| 23 | import org.springframework.web.bind.annotation.RestController; | |
| 24 | ||
| 25 | /** This is a REST controller for HelpRequest */ | |
| 26 | @Tag(name = "HelpRequests") | |
| 27 | @RequestMapping("/api/helprequests") | |
| 28 | @RestController | |
| 29 | @Slf4j | |
| 30 | public class HelpRequestController extends ApiController { | |
| 31 | ||
| 32 | @Autowired HelpRequestRepository helpRequestRepository; | |
| 33 | ||
| 34 | /** | |
| 35 | * List all help requests | |
| 36 | * | |
| 37 | * @return an iterable of help requests | |
| 38 | */ | |
| 39 | @Operation(summary = "List all help requests") | |
| 40 | @PreAuthorize("hasRole('ROLE_USER')") | |
| 41 | @GetMapping("/all") | |
| 42 | public Iterable<HelpRequest> allHelpRequests() { | |
| 43 | Iterable<HelpRequest> help_requests = helpRequestRepository.findAll(); | |
| 44 |
1
1. allHelpRequests : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/HelpRequestController::allHelpRequests → KILLED |
return help_requests; |
| 45 | } | |
| 46 | ||
| 47 | /** | |
| 48 | * Get a single request by id | |
| 49 | * | |
| 50 | * @param id the id of the help request | |
| 51 | * @return a HelpRequest | |
| 52 | */ | |
| 53 | @Operation(summary = "Get a single help request") | |
| 54 | @PreAuthorize("hasRole('ROLE_USER')") | |
| 55 | @GetMapping("") | |
| 56 | public HelpRequest getById(@Parameter(name = "id") @RequestParam Long id) { | |
| 57 | HelpRequest helpRequest = | |
| 58 | helpRequestRepository | |
| 59 | .findById(id) | |
| 60 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(HelpRequest.class, id)); |
| 61 | ||
| 62 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::getById → KILLED |
return helpRequest; |
| 63 | } | |
| 64 | ||
| 65 | /** | |
| 66 | * Create a help request | |
| 67 | * | |
| 68 | * @param requesterEmail the requester's email ID | |
| 69 | * @param teamId the team id of the requester | |
| 70 | * @param tableOrBreakoutRoom where the help request is coming from | |
| 71 | * @param requestTime the time help request was submitted | |
| 72 | * @param explanation an explanation of the help request | |
| 73 | * @param solved bool that indicates if the issue has been solved | |
| 74 | * @return the saved help request | |
| 75 | */ | |
| 76 | @Operation(summary = "Create a help request") | |
| 77 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 78 | @PostMapping("/post") | |
| 79 | public HelpRequest posthHelpRequest( | |
| 80 | @Parameter(name = "requesterEmail") @RequestParam String requesterEmail, | |
| 81 | @Parameter(name = "teamId") @RequestParam String teamId, | |
| 82 | @Parameter(name = "tableOrBreakoutRoom") @RequestParam String tableOrBreakoutRoom, | |
| 83 | @Parameter( | |
| 84 | name = "requestTime", | |
| 85 | description = | |
| 86 | "date (in iso format, e.g. YYYY-mm-ddTHH:MM:SS; see https://en.wikipedia.org/wiki/ISO_8601)") | |
| 87 | @RequestParam("requestTime") | |
| 88 | @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
| 89 | LocalDateTime requestTime, | |
| 90 | @Parameter(name = "explanation") @RequestParam String explanation, | |
| 91 | @Parameter(name = "solved") @RequestParam boolean solved) | |
| 92 | throws JsonProcessingException { | |
| 93 | // For an explanation of @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
| 94 | // See: https://www.baeldung.com/spring-date-parameters | |
| 95 | ||
| 96 | log.info("requestTime={}", requestTime); | |
| 97 | ||
| 98 | HelpRequest helpRequest = new HelpRequest(); | |
| 99 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setRequesterEmail → KILLED |
helpRequest.setRequesterEmail(requesterEmail); |
| 100 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setTeamId → KILLED |
helpRequest.setTeamId(teamId); |
| 101 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setTableOrBreakoutRoom → KILLED |
helpRequest.setTableOrBreakoutRoom(tableOrBreakoutRoom); |
| 102 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setRequestTime → KILLED |
helpRequest.setRequestTime(requestTime); |
| 103 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setExplanation → KILLED |
helpRequest.setExplanation(explanation); |
| 104 |
1
1. posthHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setSolved → KILLED |
helpRequest.setSolved(solved); |
| 105 | ||
| 106 | helpRequestRepository.save(helpRequest); | |
| 107 | ||
| 108 |
1
1. posthHelpRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::posthHelpRequest → KILLED |
return helpRequest; |
| 109 | } | |
| 110 | ||
| 111 | /** | |
| 112 | * Delete a HelpRequest | |
| 113 | * | |
| 114 | * @param id the id of the helprequest to delete | |
| 115 | * @return a message indicating the helprequest was deleted | |
| 116 | */ | |
| 117 | @Operation(summary = "Delete a HelpRequest") | |
| 118 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 119 | @DeleteMapping("") | |
| 120 | public Object deleteHelpRequest(@Parameter(name = "id") @RequestParam Long id) { | |
| 121 | HelpRequest helpRequest = | |
| 122 | helpRequestRepository | |
| 123 | .findById(id) | |
| 124 |
1
1. lambda$deleteHelpRequest$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::lambda$deleteHelpRequest$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(HelpRequest.class, id)); |
| 125 | ||
| 126 |
1
1. deleteHelpRequest : removed call to edu/ucsb/cs156/example/repositories/HelpRequestRepository::delete → KILLED |
helpRequestRepository.delete(helpRequest); |
| 127 |
1
1. deleteHelpRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::deleteHelpRequest → KILLED |
return genericMessage("HelpRequest with id %s deleted".formatted(id)); |
| 128 | } | |
| 129 | ||
| 130 | /** | |
| 131 | * Update a single help request | |
| 132 | * | |
| 133 | * @param id id of the help request | |
| 134 | * @param incoming the new help request | |
| 135 | * @return the updated helpreuqest object | |
| 136 | */ | |
| 137 | @Operation(summary = "Update a single help request") | |
| 138 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
| 139 | @PutMapping("") | |
| 140 | public HelpRequest updateHelpRequest( | |
| 141 | @Parameter(name = "id") @RequestParam Long id, @RequestBody @Valid HelpRequest incoming) { | |
| 142 | ||
| 143 | HelpRequest helpRequest = | |
| 144 | helpRequestRepository | |
| 145 | .findById(id) | |
| 146 |
1
1. lambda$updateHelpRequest$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::lambda$updateHelpRequest$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(HelpRequest.class, id)); |
| 147 | ||
| 148 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setExplanation → KILLED |
helpRequest.setExplanation(incoming.getExplanation()); |
| 149 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setRequestTime → KILLED |
helpRequest.setRequestTime(incoming.getRequestTime()); |
| 150 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setRequesterEmail → KILLED |
helpRequest.setRequesterEmail(incoming.getRequesterEmail()); |
| 151 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setSolved → KILLED |
helpRequest.setSolved(incoming.getSolved()); |
| 152 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setTableOrBreakoutRoom → KILLED |
helpRequest.setTableOrBreakoutRoom(incoming.getTableOrBreakoutRoom()); |
| 153 |
1
1. updateHelpRequest : removed call to edu/ucsb/cs156/example/entities/HelpRequest::setTeamId → KILLED |
helpRequest.setTeamId(incoming.getTeamId()); |
| 154 | ||
| 155 | helpRequestRepository.save(helpRequest); | |
| 156 | ||
| 157 |
1
1. updateHelpRequest : replaced return value with null for edu/ucsb/cs156/example/controllers/HelpRequestController::updateHelpRequest → KILLED |
return helpRequest; |
| 158 | } | |
| 159 | } | |
Mutations | ||
| 44 |
1.1 |
|
| 60 |
1.1 |
|
| 62 |
1.1 |
|
| 99 |
1.1 |
|
| 100 |
1.1 |
|
| 101 |
1.1 |
|
| 102 |
1.1 |
|
| 103 |
1.1 |
|
| 104 |
1.1 |
|
| 108 |
1.1 |
|
| 124 |
1.1 |
|
| 126 |
1.1 |
|
| 127 |
1.1 |
|
| 146 |
1.1 |
|
| 148 |
1.1 |
|
| 149 |
1.1 |
|
| 150 |
1.1 |
|
| 151 |
1.1 |
|
| 152 |
1.1 |
|
| 153 |
1.1 |
|
| 157 |
1.1 |