UCSBDiningCommonsMenuItemController.java
package edu.ucsb.cs156.example.controllers;
import edu.ucsb.cs156.example.entities.UCSBDate;
import edu.ucsb.cs156.example.entities.UCSBDiningCommonsMenuItem;
import edu.ucsb.cs156.example.errors.EntityNotFoundException;
import edu.ucsb.cs156.example.repositories.UCSBDiningCommonsMenuItemRepository;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.extern.slf4j.Slf4j;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
/**
* This is a REST controller for UCSBDiningCommonsMenuItemController
*/
@Tag(name = "UCSBDiningCommonsMenuItemController")
@RequestMapping("/api/ucsbdiningcommonsmenuitem")
@RestController
@Slf4j
public class UCSBDiningCommonsMenuItemController extends ApiController {
@Autowired
UCSBDiningCommonsMenuItemRepository ucsbDiningCommonsMenuItemRepository;
/**
* List all UCSB dining commons menu items
*
* @return an iterable of UCSBDDiningCommonsMenuitem
*/
@Operation(summary= "List all ucsb dining commons menu items")
@PreAuthorize("hasRole('ROLE_USER')")
@GetMapping("/all")
public Iterable<UCSBDiningCommonsMenuItem> allUCSBDiningCommonsMenuItems() {
Iterable<UCSBDiningCommonsMenuItem> items = ucsbDiningCommonsMenuItemRepository.findAll();
return items;
}
/**
* Create a new dining commons menu item
*
* @param diningCommonsCode the dining commons code
* @param name the name of the item
* @param localDateTime the station at which the item is served
* @return the saved item
*/
@Operation(summary= "Create a new dining commons menu item")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/post")
public UCSBDiningCommonsMenuItem postUCSBDiningCommonsMenuItem (
@Parameter(name="diningCommonsCode") @RequestParam String diningCommonsCode,
@Parameter(name="name") @RequestParam String name,
@Parameter(name="station") @RequestParam String station)
throws JsonProcessingException {
UCSBDiningCommonsMenuItem item = new UCSBDiningCommonsMenuItem();
item.setDiningCommonsCode(diningCommonsCode);
item.setName(name);
item.setStation(station);
UCSBDiningCommonsMenuItem savedItem = ucsbDiningCommonsMenuItemRepository.save(item);
return savedItem;
}
/**
* Get a single dining commons menu item by id
*
* @param id the id of the dining commons menu item
* @return a UCSBDiningCommonsMenuItem
*/
@Operation(summary= "Get a single UCSBDiningCommonsMenuItem")
@PreAuthorize("hasRole('ROLE_USER')")
@GetMapping("")
public UCSBDiningCommonsMenuItem getById(
@Parameter(name="id") @RequestParam Long id) {
UCSBDiningCommonsMenuItem item = ucsbDiningCommonsMenuItemRepository.findById(id)
.orElseThrow(() -> new EntityNotFoundException(UCSBDiningCommonsMenuItem.class, id));
return item;
}
}