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