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 ;
2020-12-18 15:49:46 +01:00
import org.springframework.security.access.prepost.PreAuthorize ;
2020-08-08 14:14:42 +02:00
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-12-18 15:49:46 +01:00
import org.springframework.web.bind.annotation.PutMapping ;
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
if ( takenPlaces ) {
2020-11-30 13:22:53 +01:00
HashMap < Long , Integer > ammounts = this . groupService . getTakenPlaces ( groups ) ;
if ( capacity ) {
return new ResponseEntity < > ( GroupsMappers . mapToGetCourseGroupsWithCapacityResponse ( groups , ammounts ) ,
HttpStatus . OK ) ;
}
return new ResponseEntity < > ( GroupsMappers . mapToGetCourseGroupsDefaultResponse ( groups , ammounts ) ,
HttpStatus . OK ) ;
2020-11-22 03:51:24 +01:00
}
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
}
2020-12-18 15:49:46 +01:00
@PreAuthorize ( " hasRole('ROLE_DEANERY') " )
@PutMapping ( " /{id}/capacity " )
2020-12-18 15:52:05 +01:00
@ApiOperation ( value = " Change capacity of given group. You need to provide DEANERY token to be ale to change capacity " )
public ResponseEntity < String > updateCapacity (
2020-12-18 16:33:58 +01:00
@PathVariable ( name = " id " , required = true ) @ApiParam ( value = " id of group to change capacity " ) Long id ,
@RequestParam ( name = " newcapacity " , required = true ) Integer newcapacity ) {
2020-12-18 15:49:46 +01:00
final Groups group = this . groupService . getGroupById ( id ) . get ( ) ;
if ( group = = null ) {
return new ResponseEntity < > ( " Given group doens't exist " , HttpStatus . NOT_FOUND ) ;
}
group . setCapacity ( newcapacity ) ;
this . groupService . save ( group ) ;
return new ResponseEntity < > ( " Success " , HttpStatus . OK ) ;
}
2020-08-08 14:14:42 +02:00
}