Class HelpRequestController

java.lang.Object
edu.ucsb.cs156.example.controllers.ApiController
edu.ucsb.cs156.example.controllers.HelpRequestController

@RequestMapping("/api/helprequests") @RestController public class HelpRequestController extends ApiController
This is a REST controller for HelpRequests
  • Constructor Details

    • HelpRequestController

      public HelpRequestController()
  • Method Details

    • allHelpRequests

      @PreAuthorize("hasRole(\'ROLE_USER\')") @GetMapping("/all") public Iterable<HelpRequest> allHelpRequests()
      List all UCSB dates
      Returns:
      an iterable of HelpRequest
    • getById

      @PreAuthorize("hasRole(\'ROLE_USER\')") @GetMapping("") public HelpRequest getById(@RequestParam Long id)
      Get a single date by id
      Parameters:
      id - the id of the date
      Returns:
      a UCSBDate
    • postHelpRequest

      @PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PostMapping("/post") public HelpRequest postHelpRequest(@RequestParam String requesterEmail, @RequestParam String teamId, @RequestParam String tableOrBreakoutRoom, @RequestParam String explanation, @RequestParam boolean solved, @RequestParam("requestTime") @DateTimeFormat(iso=DATE_TIME) LocalDateTime requestTime) throws com.fasterxml.jackson.core.JsonProcessingException
      Create a help request
      Parameters:
      requesterEmail - the email of the requester
      teamId - the id of the team
      tableOrBreakoutRoom - whether its at a table or breakout room
      explanation - the details of request
      solved - whether request has been solved or not
      requestTime - the date and time of request in the format YYYY-mm-ddTHH:MM:SS
      Returns:
      the saved helprequest
      Throws:
      com.fasterxml.jackson.core.JsonProcessingException
    • deleteHelpRequest

      @PreAuthorize("hasRole(\'ROLE_ADMIN\')") @DeleteMapping("") public Object deleteHelpRequest(@RequestParam Long id)
      Delete a HelpRequest
      Parameters:
      id - the id of the request to delete
      Returns:
      a message indicating the request was deleted
    • updateHelpRequest

      @PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PutMapping("") public HelpRequest updateHelpRequest(@RequestParam Long id, @RequestBody @Valid @Valid HelpRequest incoming)
      Update a single request
      Parameters:
      id - id of the date to update
      incoming - the new request
      Returns:
      the updated request object