io.mosip.pmp.authdevice.controller.SecureBiometricInterfaceController Maven / Gradle / Ivy
package io.mosip.pmp.authdevice.controller;
import javax.validation.Valid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import io.mosip.kernel.core.http.ResponseFilter;
import io.mosip.pmp.authdevice.constants.Purpose;
import io.mosip.pmp.authdevice.dto.DeviceSearchDto;
import io.mosip.pmp.authdevice.dto.IdDto;
import io.mosip.pmp.authdevice.dto.SBISearchDto;
import io.mosip.pmp.authdevice.dto.SecureBiometricInterfaceCreateDto;
import io.mosip.pmp.authdevice.dto.SecureBiometricInterfaceStatusUpdateDto;
import io.mosip.pmp.authdevice.dto.SecureBiometricInterfaceUpdateDto;
import io.mosip.pmp.authdevice.dto.UpdateDeviceDetailStatusDto;
import io.mosip.pmp.authdevice.entity.SecureBiometricInterface;
import io.mosip.pmp.authdevice.service.SecureBiometricInterfaceService;
import io.mosip.pmp.authdevice.util.AuditUtil;
import io.mosip.pmp.authdevice.util.AuthDeviceConstant;
import io.mosip.pmp.common.dto.PageResponseDto;
import io.mosip.pmp.partner.core.RequestWrapper;
import io.mosip.pmp.partner.core.ResponseWrapper;
import io.mosip.pmp.regdevice.entity.RegSecureBiometricInterface;
import io.mosip.pmp.regdevice.service.RegSecureBiometricInterfaceService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
@RestController
@RequestMapping(value = "/securebiometricinterface")
@Api(tags = { "SecureBiometricInterface" })
public class SecureBiometricInterfaceController {
@Autowired
SecureBiometricInterfaceService secureBiometricInterface;
@Autowired
RegSecureBiometricInterfaceService regSecureBiometricInterface;
@Autowired
AuditUtil auditUtil;
@PreAuthorize("hasAnyRole('DEVICE_PROVIDER','FTM_PROVIDER')")
@ResponseFilter
@PostMapping
@ApiOperation(value = "Service to save SecureBiometricInterfaceCreateDto", notes = "Saves SecureBiometricInterfaceCreateDto and return DeviceDetail id")
@ApiResponses({ @ApiResponse(code = 201, message = "When SecureBiometricInterfaceCreateDto successfully created"),
@ApiResponse(code = 400, message = "When Request body passed is null or invalid"),
@ApiResponse(code = 500, message = "While creating SecureBiometricInterfaceCreateDto any error occured") })
public ResponseWrapper SecureBiometricInterface(
@Valid @RequestBody RequestWrapper secureBiometricInterfaceCreateDto) {
auditUtil.auditRequest(
AuthDeviceConstant.CREATE_API_IS_CALLED + SecureBiometricInterfaceCreateDto.class.getCanonicalName(),
AuthDeviceConstant.AUDIT_SYSTEM,
AuthDeviceConstant.CREATE_API_IS_CALLED + SecureBiometricInterfaceCreateDto.class.getCanonicalName(),
"AUT-011");
ResponseWrapper responseWrapper = new ResponseWrapper<>();
if(secureBiometricInterfaceCreateDto.getRequest().getIsItForRegistrationDevice()) {
responseWrapper
.setResponse(regSecureBiometricInterface.createSecureBiometricInterface(secureBiometricInterfaceCreateDto.getRequest()));
}else {
responseWrapper
.setResponse(secureBiometricInterface.createSecureBiometricInterface(secureBiometricInterfaceCreateDto.getRequest()));
}
auditUtil.auditRequest(
String.format(AuthDeviceConstant.SUCCESSFUL_CREATE , SecureBiometricInterfaceCreateDto.class.getCanonicalName()),
AuthDeviceConstant.AUDIT_SYSTEM,
String.format(AuthDeviceConstant.SUCCESSFUL_CREATE , SecureBiometricInterfaceCreateDto.class.getCanonicalName()),
"AUT-012");
return responseWrapper;
}
@PreAuthorize("hasAnyRole('DEVICE_PROVIDER','FTM_PROVIDER')")
@ResponseFilter
@PutMapping
@ApiOperation(value = "Service to update SecureBiometricInterface", notes = "Updates SecureBiometricInterface and returns success message")
@ApiResponses({ @ApiResponse(code = 201, message = "When SecureBiometricInterface successfully updated"),
@ApiResponse(code = 400, message = "When Request body passed is null or invalid"),
@ApiResponse(code = 500, message = "While updating SecureBiometricInterface any error occured") })
public ResponseWrapper updateSecureBiometricInterface(
@Valid @RequestBody RequestWrapper secureBiometricInterfaceUpdateDto) {
auditUtil.auditRequest(
AuthDeviceConstant.UPDATE_API_IS_CALLED + SecureBiometricInterfaceUpdateDto.class.getCanonicalName(),
AuthDeviceConstant.AUDIT_SYSTEM,
AuthDeviceConstant.UPDATE_API_IS_CALLED + SecureBiometricInterfaceUpdateDto.class.getCanonicalName(),
"AUT-013");
ResponseWrapper responseWrapper = new ResponseWrapper<>();
if(secureBiometricInterfaceUpdateDto.getRequest().getIsItForRegistrationDevice()) {
responseWrapper
.setResponse(regSecureBiometricInterface.updateSecureBiometricInterface(secureBiometricInterfaceUpdateDto.getRequest()));
}else {
responseWrapper
.setResponse(secureBiometricInterface.updateSecureBiometricInterface(secureBiometricInterfaceUpdateDto.getRequest()));
}
auditUtil.auditRequest(
String.format(AuthDeviceConstant.SUCCESSFUL_UPDATE , SecureBiometricInterfaceUpdateDto.class.getCanonicalName()),
AuthDeviceConstant.AUDIT_SYSTEM,
String.format(AuthDeviceConstant.SUCCESSFUL_UPDATE , SecureBiometricInterfaceUpdateDto.class.getCanonicalName()),
"AUT-012");
return responseWrapper;
}
@PreAuthorize("hasAnyRole('PARTNERMANAGER','PARTNER_ADMIN')")
@ResponseFilter
@PatchMapping
@ApiOperation(value = "Service to approve/reject SecureBiometricInterface", notes = "Approve SecureBiometricInterface and returns success message")
@ApiResponses({ @ApiResponse(code = 201, message = "When SecureBiometricInterface successfully approved/rejected"),
@ApiResponse(code = 400, message = "When Request body passed is null or invalid"),
@ApiResponse(code = 500, message = "While approving/rejecting DeviceDetail any error occured") })
public ResponseWrapper approveSecureBiometricInterface(
@Valid @RequestBody RequestWrapper secureBiometricInterfaceStatusUpdateDto){
auditUtil.auditRequest(
AuthDeviceConstant.STATUS_UPDATE_API_IS_CALLED + UpdateDeviceDetailStatusDto.class.getCanonicalName(),
AuthDeviceConstant.AUDIT_SYSTEM,
AuthDeviceConstant.STATUS_UPDATE_API_IS_CALLED + UpdateDeviceDetailStatusDto.class.getCanonicalName(),
"AUT-006");
ResponseWrapper responseWrapper = new ResponseWrapper<>();
if(secureBiometricInterfaceStatusUpdateDto.getRequest().getIsItForRegistrationDevice()) {
responseWrapper
.setResponse(regSecureBiometricInterface.updateSecureBiometricInterfaceStatus(secureBiometricInterfaceStatusUpdateDto.getRequest()));
}else {
responseWrapper
.setResponse(secureBiometricInterface.updateSecureBiometricInterfaceStatus(secureBiometricInterfaceStatusUpdateDto.getRequest()));
}
auditUtil.auditRequest(
String.format(AuthDeviceConstant.SUCCESSFUL_UPDATE , UpdateDeviceDetailStatusDto.class.getCanonicalName()),
AuthDeviceConstant.AUDIT_SYSTEM,
String.format(AuthDeviceConstant.SUCCESSFUL_UPDATE , UpdateDeviceDetailStatusDto.class.getCanonicalName()),
"AUT-007");
return responseWrapper;
}
@ResponseFilter
@PostMapping("/search")
@PreAuthorize("hasAnyRole('DEVICE_PROVIDER','FTM_PROVIDER')")
public ResponseWrapper> searchSecureBiometric(
@RequestBody @Valid RequestWrapper request) {
ResponseWrapper> responseWrapper = new ResponseWrapper<>();
if(request.getRequest().getPurpose().equals(Purpose.REGISTRATION)) {
responseWrapper.setResponse(regSecureBiometricInterface.searchSecureBiometricInterface(RegSecureBiometricInterface.class, request.getRequest()));
return responseWrapper;
}
responseWrapper.setResponse(secureBiometricInterface.searchSecureBiometricInterface(SecureBiometricInterface.class, request.getRequest()));
return responseWrapper;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy