use of io.getlime.security.powerauth.rest.api.model.response.ActivationCreateResponse in project powerauth-restful-integration by lime-company.
the class ActivationController method createActivation.
/**
* Create a new activation.
* @param request PowerAuth RESTful request with {@link ActivationCreateRequest} payload.
* @return PowerAuth RESTful response with {@link ActivationCreateResponse} payload.
*/
@RequestMapping(value = "create", method = RequestMethod.POST)
@ResponseBody
public ObjectResponse<ActivationCreateResponse> createActivation(@RequestBody ObjectRequest<ActivationCreateRequest> request) throws PowerAuthActivationException {
try {
String activationIDShort = request.getRequestObject().getActivationIdShort();
String activationNonce = request.getRequestObject().getActivationNonce();
String cDevicePublicKey = request.getRequestObject().getEncryptedDevicePublicKey();
String activationName = request.getRequestObject().getActivationName();
String extras = request.getRequestObject().getExtras();
String applicationKey = request.getRequestObject().getApplicationKey();
String applicationSignature = request.getRequestObject().getApplicationSignature();
String clientEphemeralKey = request.getRequestObject().getEphemeralPublicKey();
PrepareActivationResponse soapResponse = powerAuthClient.prepareActivation(activationIDShort, activationName, activationNonce, clientEphemeralKey, cDevicePublicKey, extras, applicationKey, applicationSignature);
ActivationCreateResponse response = new ActivationCreateResponse();
response.setActivationId(soapResponse.getActivationId());
response.setActivationNonce(soapResponse.getActivationNonce());
response.setEncryptedServerPublicKey(soapResponse.getEncryptedServerPublicKey());
response.setEncryptedServerPublicKeySignature(soapResponse.getEncryptedServerPublicKeySignature());
response.setEphemeralPublicKey(soapResponse.getEphemeralPublicKey());
return new ObjectResponse<>(response);
} catch (Exception ex) {
throw new PowerAuthActivationException();
}
}
use of io.getlime.security.powerauth.rest.api.model.response.ActivationCreateResponse in project powerauth-restful-integration by lime-company.
the class CustomActivationController method createNewActivation.
@RequestMapping(value = "create", method = RequestMethod.POST)
@ResponseBody
public ObjectResponse<NonPersonalizedEncryptedPayloadModel> createNewActivation(@RequestBody ObjectRequest<NonPersonalizedEncryptedPayloadModel> object) throws PowerAuthAuthenticationException, PowerAuthActivationException {
try {
// Check if there is any user provider to be autowired
if (userProvider == null) {
throw new PowerAuthActivationException();
}
// Prepare an encryptor
final PowerAuthNonPersonalizedEncryptor encryptor = encryptorFactory.buildNonPersonalizedEncryptor(object);
if (encryptor == null) {
throw new PowerAuthActivationException();
}
// Decrypt the request object
ActivationCreateCustomRequest request = encryptor.decrypt(object, ActivationCreateCustomRequest.class);
if (request == null) {
throw new PowerAuthActivationException();
}
// Lookup user ID using a provided identity
final Map<String, String> identity = request.getIdentity();
String userId = userProvider.lookupUserIdForAttributes(identity);
// If no user was found, return error
if (userId == null) {
throw new PowerAuthActivationException();
}
// Create activation for a looked up user and application related to the given application key
ActivationCreateRequest acr = request.getPowerauth();
CreateActivationResponse response = powerAuthClient.createActivation(acr.getApplicationKey(), userId, acr.getActivationIdShort(), acr.getActivationName(), acr.getActivationNonce(), acr.getEphemeralPublicKey(), acr.getEncryptedDevicePublicKey(), acr.getExtras(), acr.getApplicationSignature());
// Process custom attributes using a custom logic
final Map<String, Object> customAttributes = request.getCustomAttributes();
userProvider.processCustomActivationAttributes(customAttributes);
// Prepare the created activation response data
ActivationCreateResponse createResponse = new ActivationCreateResponse();
createResponse.setActivationId(response.getActivationId());
createResponse.setEphemeralPublicKey(response.getEphemeralPublicKey());
createResponse.setActivationNonce(response.getActivationNonce());
createResponse.setEncryptedServerPublicKey(response.getEncryptedServerPublicKey());
createResponse.setEncryptedServerPublicKeySignature(response.getEncryptedServerPublicKeySignature());
// Encrypt response object
final ObjectResponse<NonPersonalizedEncryptedPayloadModel> powerAuthApiResponse = encryptor.encrypt(createResponse);
// Check if activation should be committed instantly and if yes, perform commit
if (userProvider.shouldAutoCommitActivation(identity, customAttributes)) {
powerAuthClient.commitActivation(response.getActivationId());
}
// Return response
return powerAuthApiResponse;
} catch (IOException e) {
throw new PowerAuthActivationException();
}
}
use of io.getlime.security.powerauth.rest.api.model.response.ActivationCreateResponse in project powerauth-restful-integration by lime-company.
the class CustomActivationController method createNewActivation.
@POST
@Path("create")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public ObjectResponse<NonPersonalizedEncryptedPayloadModel> createNewActivation(ObjectRequest<NonPersonalizedEncryptedPayloadModel> object) throws PowerAuthAuthenticationException, RemoteException, PowerAuthActivationException {
try {
final PowerAuthNonPersonalizedEncryptor encryptor = encryptorFactory.buildNonPersonalizedEncryptor(object);
if (encryptor == null) {
throw new PowerAuthActivationException();
}
ActivationCreateCustomRequest request = encryptor.decrypt(object, ActivationCreateCustomRequest.class);
if (request == null) {
throw new PowerAuthActivationException();
}
final Map<String, String> identity = request.getIdentity();
String userId = userProvider.lookupUserIdForAttributes(identity);
if (userId == null) {
throw new PowerAuthActivationException();
}
ActivationCreateRequest acr = request.getPowerauth();
PowerAuthPortServiceStub.CreateActivationResponse response = powerAuthClient.createActivation(acr.getApplicationKey(), userId, acr.getActivationIdShort(), acr.getActivationName(), acr.getActivationNonce(), acr.getEphemeralPublicKey(), acr.getEncryptedDevicePublicKey(), acr.getExtras(), acr.getApplicationSignature());
final Map<String, Object> customAttributes = request.getCustomAttributes();
userProvider.processCustomActivationAttributes(customAttributes);
ActivationCreateResponse createResponse = new ActivationCreateResponse();
createResponse.setActivationId(response.getActivationId());
createResponse.setEphemeralPublicKey(response.getEphemeralPublicKey());
createResponse.setActivationNonce(response.getActivationNonce());
createResponse.setEncryptedServerPublicKey(response.getEncryptedServerPublicKey());
createResponse.setEncryptedServerPublicKeySignature(response.getEncryptedServerPublicKeySignature());
final ObjectResponse<NonPersonalizedEncryptedPayloadModel> powerAuthApiResponse = encryptor.encrypt(createResponse);
if (userProvider.shouldAutoCommitActivation(identity, customAttributes)) {
powerAuthClient.commitActivation(response.getActivationId());
}
return powerAuthApiResponse;
} catch (IOException e) {
throw new PowerAuthActivationException();
}
}
use of io.getlime.security.powerauth.rest.api.model.response.ActivationCreateResponse in project powerauth-restful-integration by lime-company.
the class ActivationController method createActivation.
/**
* Create a new activation.
* @param request PowerAuth RESTful request with {@link ActivationCreateRequest} payload.
* @return PowerAuth RESTful response with {@link ActivationCreateResponse} payload.
* @throws RemoteException In case SOAP communication fails
*/
@POST
@Consumes({ MediaType.APPLICATION_JSON })
@Produces({ MediaType.APPLICATION_JSON })
@Path("create")
public ObjectResponse<ActivationCreateResponse> createActivation(ObjectRequest<ActivationCreateRequest> request) throws RemoteException, PowerAuthActivationException {
if (request.getRequestObject() == null) {
throw new PowerAuthActivationException();
}
try {
String activationIDShort = request.getRequestObject().getActivationIdShort();
String activationNonce = request.getRequestObject().getActivationNonce();
String cDevicePublicKey = request.getRequestObject().getEncryptedDevicePublicKey();
String activationName = request.getRequestObject().getActivationName();
String extras = request.getRequestObject().getExtras();
String applicationKey = request.getRequestObject().getApplicationKey();
String applicationSignature = request.getRequestObject().getApplicationSignature();
String clientEphemeralKey = request.getRequestObject().getEphemeralPublicKey();
PowerAuthPortServiceStub.PrepareActivationResponse soapResponse = powerAuthClient.prepareActivation(activationIDShort, activationName, activationNonce, clientEphemeralKey, cDevicePublicKey, extras, applicationKey, applicationSignature);
ActivationCreateResponse response = new ActivationCreateResponse();
response.setActivationId(soapResponse.getActivationId());
response.setActivationNonce(soapResponse.getActivationNonce());
response.setEncryptedServerPublicKey(soapResponse.getEncryptedServerPublicKey());
response.setEncryptedServerPublicKeySignature(soapResponse.getEncryptedServerPublicKeySignature());
response.setEphemeralPublicKey(soapResponse.getEphemeralPublicKey());
return new ObjectResponse<>(response);
} catch (Exception e) {
throw new PowerAuthActivationException();
}
}
Aggregations