2020-09-30 19:15:32 +02:00
|
|
|
package com.plannaplan.controllers;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.CrossOrigin;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Optional;
|
|
|
|
|
|
|
|
import com.plannaplan.App;
|
|
|
|
import com.plannaplan.entities.Assignment;
|
|
|
|
import com.plannaplan.entities.Commision;
|
|
|
|
import com.plannaplan.entities.User;
|
2020-10-08 16:41:13 +02:00
|
|
|
import com.plannaplan.responses.mappers.AssignmentResponseMappers;
|
|
|
|
import com.plannaplan.responses.models.AssignmentResponse;
|
2020-09-30 19:15:32 +02:00
|
|
|
import com.plannaplan.services.AssignmentService;
|
|
|
|
import com.plannaplan.services.CommisionService;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@CrossOrigin
|
|
|
|
@RequestMapping("/api/" + App.API_VERSION + "/assignments")
|
|
|
|
public class AssignmentsController extends TokenBasedController {
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
private CommisionService commisionService;
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
private AssignmentService assignmentService;
|
|
|
|
|
|
|
|
@GetMapping("/getCurrentAssignments")
|
2020-10-08 16:41:13 +02:00
|
|
|
public ResponseEntity<List<AssignmentResponse>> getCurrentAssignments() throws Exception {
|
|
|
|
User user = this.getCurrentUser().orElseThrow(() -> new NullPointerException("User not found"));
|
2020-09-30 19:15:32 +02:00
|
|
|
Optional<Commision> com = this.commisionService.getNewestCommision(user);
|
2020-10-08 16:41:13 +02:00
|
|
|
|
2020-09-30 19:15:32 +02:00
|
|
|
if (com.isPresent()) {
|
|
|
|
List<Assignment> respone = this.assignmentService.getCommisionAssignments(com.get());
|
2020-10-08 16:41:13 +02:00
|
|
|
return new ResponseEntity<>(AssignmentResponseMappers.mapAssignmentsListToAssignmentResponseList(respone),
|
|
|
|
HttpStatus.OK);
|
2020-09-30 19:15:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return new ResponseEntity<>(null, HttpStatus.OK);
|
|
|
|
}
|
|
|
|
}
|