blob: d9bef9f509664cf4b3c0da78065cb56f28c7f194 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.contactbasedata.controller;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import lombok.extern.log4j.Log4j2;
import org.eclipse.openk.contactbasedata.exceptions.BadRequestException;
import org.eclipse.openk.contactbasedata.exceptions.ConflictException;
import org.eclipse.openk.contactbasedata.service.PersonTypeService;
import org.eclipse.openk.contactbasedata.viewmodel.PersonTypeDto;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.annotation.Secured;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.support.ServletUriComponentsBuilder;
import java.net.URI;
import java.util.List;
import java.util.UUID;
@Log4j2
@RestController
@RequestMapping("/personTypes")
public class PersonTypeController {
@Autowired
private PersonTypeService personTypeService;
@ApiOperation(value = "Anzeigen aller Personentypen")
@Secured({"ROLE_KON-READER", "ROLE_KON-WRITER", "ROLE_KON-ADMIN"})
@ApiResponses(value = { @ApiResponse(code = 200, message = "Erfolgreich durchgeführt")})
@ResponseStatus(HttpStatus.OK)
@GetMapping
public List<PersonTypeDto> getPersonType() {
return personTypeService.findAllPersonTypes();
}
@GetMapping("/{personTypeUuid}")
@Secured({"ROLE_KON-READER", "ROLE_KON-WRITER", "ROLE_KON-ADMIN"})
@ApiOperation(value = "Suchen eines Personentyps per UUID")
@ResponseStatus(HttpStatus.OK)
@ApiResponses(value = {
@ApiResponse(code = 400, message = "Ungültige Anfrage."),
@ApiResponse(code = 200, message = "Personentyp gefunden")})
public PersonTypeDto getPersonType(@PathVariable UUID personTypeUuid) {
return personTypeService.getPersonTypeByUuid(personTypeUuid);
}
@PostMapping
@Secured("ROLE_KON-ADMIN")
@ApiOperation(value = "Anlegen eines neuen Personentyps")
@ApiResponses(value = {
@ApiResponse(code = 200, message = "Personentyp erfolgreich angelegt"),
@ApiResponse(code = 500, message = "Konnte nicht durchgeführt werden")
})
public ResponseEntity<PersonTypeDto> insertPersonType(@Validated @RequestBody PersonTypeDto personTypeDto) {
PersonTypeDto savedPersonTypeDto = personTypeService.insertPersonType(personTypeDto);
URI location = ServletUriComponentsBuilder
.fromCurrentRequestUri()
.path("/{uuid}")
.buildAndExpand(savedPersonTypeDto.getUuid())
.toUri();
return ResponseEntity.created(location).body(savedPersonTypeDto);
}
@PutMapping("/{personTypeUuid}")
@Secured("ROLE_KON-ADMIN")
@ApiOperation(value = "Ändern eines Personentyp")
@ApiResponses(value = {
@ApiResponse(code = 200, message = "Personentyp wurde erfolgreich aktualisiert"),
@ApiResponse(code = 400, message = "Ungültige Eingabe"),
@ApiResponse(code = 404, message = "Nicht gefunden")})
public ResponseEntity updatePersonType(@PathVariable UUID personTypeUuid, @Validated @RequestBody PersonTypeDto personTypeDto) {
if (!personTypeDto.getUuid().equals(personTypeUuid)) {
throw new BadRequestException("invalid.uuid.path.object");
}
personTypeService.updatePersonType(personTypeDto);
return ResponseEntity.ok().build();
}
@DeleteMapping("/{uuid}")
@Secured("ROLE_KON-ADMIN")
@ResponseStatus(HttpStatus.OK)
@ApiOperation(value = "Personentyp löschen")
@ApiResponses(value = {
@ApiResponse(code = 204, message = "Erfolgreich durchgeführt"),
@ApiResponse(code = 400, message = "Ungültige Anfrage"),
@ApiResponse(code = 404, message = "Nicht gefunden"),
@ApiResponse(code = 409, message = "Datensatz konnte nicht gelöscht werden")})
public void removePersonType(@PathVariable UUID uuid) {
try {
personTypeService.removePersonType(uuid);
}
catch( Exception ex ) {
throw new ConflictException("Person type couldn't be deleted");
}
}
}