io.getlime.security.powerauth.rest.api.jaxrs.controller.ActivationController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powerauth-restful-security-javaee Show documentation
Show all versions of powerauth-restful-security-javaee Show documentation
PowerAuth 2.0 RESTful API Security Additions for EJB
/*
* PowerAuth integration libraries for RESTful API applications, examples and
* related software components
*
* Copyright (C) 2017 Lime - HighTech Solutions s.r.o.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package io.getlime.security.powerauth.rest.api.jaxrs.controller;
import io.getlime.core.rest.model.base.request.ObjectRequest;
import io.getlime.core.rest.model.base.response.ObjectResponse;
import io.getlime.core.rest.model.base.response.Response;
import io.getlime.powerauth.soap.PowerAuthPortServiceStub;
import io.getlime.security.powerauth.http.PowerAuthHttpHeader;
import io.getlime.security.powerauth.rest.api.base.application.PowerAuthApplicationConfiguration;
import io.getlime.security.powerauth.rest.api.base.authentication.PowerAuthApiAuthentication;
import io.getlime.security.powerauth.rest.api.base.exception.PowerAuthActivationException;
import io.getlime.security.powerauth.rest.api.base.exception.PowerAuthAuthenticationException;
import io.getlime.security.powerauth.rest.api.jaxrs.provider.PowerAuthAuthenticationProvider;
import io.getlime.security.powerauth.rest.api.model.request.ActivationCreateRequest;
import io.getlime.security.powerauth.rest.api.model.request.ActivationStatusRequest;
import io.getlime.security.powerauth.rest.api.model.response.ActivationCreateResponse;
import io.getlime.security.powerauth.rest.api.model.response.ActivationRemoveResponse;
import io.getlime.security.powerauth.rest.api.model.response.ActivationStatusResponse;
import io.getlime.security.powerauth.soap.axis.client.PowerAuthServiceClient;
import javax.inject.Inject;
import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import java.rmi.RemoteException;
/**
* Controller implementing activation related end-points from the PowerAuth
* Standard API.
*
* @author Petr Dvorak, [email protected]
*
*/
@Path("pa/activation")
@Produces(MediaType.APPLICATION_JSON)
public class ActivationController {
@Inject
private PowerAuthServiceClient powerAuthClient;
@Inject
private PowerAuthAuthenticationProvider authenticationProvider;
@Inject
private PowerAuthApplicationConfiguration applicationConfiguration;
/**
* 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 createActivation(ObjectRequest 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();
}
}
/**
* Get activation status.
* @param request PowerAuth RESTful request with {@link ActivationStatusRequest} payload.
* @return PowerAuth RESTful response with {@link ActivationStatusResponse} payload.
* @throws RemoteException In case SOAP communication fails
*/
@POST
@Consumes({MediaType.APPLICATION_JSON})
@Produces({MediaType.APPLICATION_JSON})
@Path("status")
public ObjectResponse getActivationStatus(ObjectRequest request) throws RemoteException, PowerAuthActivationException {
if (request.getRequestObject() == null) {
throw new PowerAuthActivationException();
}
try {
String activationId = request.getRequestObject().getActivationId();
PowerAuthPortServiceStub.GetActivationStatusResponse soapResponse = powerAuthClient.getActivationStatus(activationId);
ActivationStatusResponse response = new ActivationStatusResponse();
response.setActivationId(soapResponse.getActivationId());
response.setEncryptedStatusBlob(soapResponse.getEncryptedStatusBlob());
if (applicationConfiguration != null) {
response.setCustomObject(applicationConfiguration.statusServiceCustomObject());
}
return new ObjectResponse<>(response);
} catch (Exception e) {
throw new PowerAuthActivationException();
}
}
/**
* Get activation status.
* @param signatureHeader PowerAuth signature HTTP header.
* @return PowerAuth RESTful response with {@link ActivationRemoveResponse} payload.
* @throws PowerAuthAuthenticationException In case the signature validation fails.
* @throws RemoteException In case SOAP communication fails
*/
@POST
@Consumes({MediaType.APPLICATION_JSON})
@Produces({MediaType.APPLICATION_JSON})
@Path("remove")
public ObjectResponse removeActivation(@HeaderParam(PowerAuthHttpHeader.HEADER_NAME) String signatureHeader) throws PowerAuthAuthenticationException, PowerAuthActivationException {
try {
PowerAuthApiAuthentication apiAuthentication = authenticationProvider.validateRequestSignature("POST", null, "/pa/activation/remove", signatureHeader);
if (apiAuthentication != null && apiAuthentication.getActivationId() != null) {
PowerAuthPortServiceStub.RemoveActivationResponse soapResponse = powerAuthClient.removeActivation(apiAuthentication.getActivationId());
ActivationRemoveResponse response = new ActivationRemoveResponse();
response.setActivationId(soapResponse.getActivationId());
return new ObjectResponse<>(response);
} else {
throw new PowerAuthAuthenticationException("USER_NOT_AUTHENTICATED");
}
} catch (PowerAuthAuthenticationException ex) {
throw ex;
} catch (Exception ex) {
throw new PowerAuthActivationException();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy