2020-08-08 14:14:42 +02:00
|
|
|
package com.plannaplan.controllers;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2020-09-15 11:31:30 +02:00
|
|
|
import com.plannaplan.App;
|
2020-08-08 14:14:42 +02:00
|
|
|
import com.plannaplan.entities.Groups;
|
2020-10-13 18:03:37 +02:00
|
|
|
import com.plannaplan.responses.mappers.GroupsMappers;
|
|
|
|
import com.plannaplan.responses.models.DefaultGroupResponse;
|
2020-08-08 14:14:42 +02:00
|
|
|
import com.plannaplan.services.GroupService;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
import org.springframework.web.bind.annotation.CrossOrigin;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
2020-09-15 11:31:30 +02:00
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
2020-08-08 14:14:42 +02:00
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@CrossOrigin
|
2020-09-15 11:31:30 +02:00
|
|
|
@RequestMapping("/api/" + App.API_VERSION + "/groups")
|
2020-08-08 14:14:42 +02:00
|
|
|
public class GroupController {
|
|
|
|
@Autowired
|
|
|
|
private GroupService groupService;
|
|
|
|
|
|
|
|
@GetMapping("/getCourseGroups")
|
2020-10-15 16:56:31 +02:00
|
|
|
public ResponseEntity<List<? extends DefaultGroupResponse>> getCourses(@RequestParam("id") Long id,
|
|
|
|
@RequestParam(name = "capacity", defaultValue = "true") Boolean capacity) {
|
2020-08-11 17:36:58 +02:00
|
|
|
List<Groups> groups = this.groupService.getGroupsByCourse(id);
|
2020-10-13 18:03:37 +02:00
|
|
|
if (capacity) {
|
2020-10-15 16:56:31 +02:00
|
|
|
return new ResponseEntity<>(GroupsMappers.mapToCapacityResponse(groups), HttpStatus.OK);
|
2020-08-11 17:36:58 +02:00
|
|
|
}
|
2020-10-15 16:56:31 +02:00
|
|
|
return new ResponseEntity<>(GroupsMappers.mapToDefaultResponse(groups), HttpStatus.OK);
|
2020-08-08 14:14:42 +02:00
|
|
|
}
|
|
|
|
}
|