2020-08-08 14:14:42 +02:00
package com.plannaplan.controllers ;
2020-11-22 03:51:24 +01:00
import java.util.HashMap ;
2020-08-08 14:14:42 +02:00
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 ;
2020-11-08 17:20:00 +01:00
import com.plannaplan.responses.models.GroupDefaultResponse ;
import com.plannaplan.responses.models.CourseWithGroupsResponse ;
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-10-30 16:42:57 +01:00
import org.springframework.web.bind.annotation.PathVariable ;
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 ;
2020-11-04 16:40:02 +01:00
import io.swagger.annotations.Api ;
2020-11-04 16:58:26 +01:00
import io.swagger.annotations.ApiOperation ;
2020-11-04 17:23:29 +01:00
import io.swagger.annotations.ApiParam ;
2020-11-04 16:40:02 +01:00
2020-08-08 14:14:42 +02:00
@RestController
@CrossOrigin
2020-10-30 16:42:57 +01:00
2020-09-15 11:31:30 +02:00
@RequestMapping ( " /api/ " + App . API_VERSION + " /groups " )
2020-11-04 16:40:02 +01:00
@Api ( tags = {
" Group " } , value = " Group " , description = " Enpoints to deal with gorups. Group is related directly to course and can be either class and lecture " )
2020-08-08 14:14:42 +02:00
public class GroupController {
@Autowired
private GroupService groupService ;
2020-10-30 16:42:57 +01:00
@GetMapping ( " /course/{id} " )
2020-11-04 16:58:26 +01:00
@ApiOperation ( value = " Return list of lectures and classes (if present) given course " )
2020-11-08 17:20:00 +01:00
public ResponseEntity < CourseWithGroupsResponse < ? extends GroupDefaultResponse > > getCourses (
2020-11-05 14:32:42 +01:00
@PathVariable ( name = " id " ) Long id ,
2020-11-20 16:20:38 +01:00
@RequestParam ( name = " capacity " , defaultValue = " true " ) @ApiParam ( value = " Boolean if we want to have capacity field in response " ) Boolean capacity ,
@RequestParam ( name = " takenPlaces " , defaultValue = " false " ) @ApiParam ( value = " Boolean if we want to have respoonse with information about taken places by other students " ) Boolean takenPlaces ) {
2020-08-11 17:36:58 +02:00
List < Groups > groups = this . groupService . getGroupsByCourse ( id ) ;
2020-11-22 03:51:24 +01:00
HashMap < Groups , Integer > ammounts ;
if ( takenPlaces ) {
ammounts = this . groupService . getTakenPlaces ( groups ) ;
}
2020-10-13 18:03:37 +02:00
if ( capacity ) {
2020-10-20 19:02:18 +02:00
return new ResponseEntity < > ( GroupsMappers . mapToGetCourseGroupsWithCapacityResponse ( groups ) , HttpStatus . OK ) ;
2020-08-11 17:36:58 +02:00
}
2020-10-20 19:02:18 +02:00
return new ResponseEntity < > ( GroupsMappers . mapToGetCourseGroupsDefaultResponse ( groups ) , HttpStatus . OK ) ;
2020-08-08 14:14:42 +02:00
}
}