use of io.getlime.security.powerauth.rest.api.spring.exception.authentication.PowerAuthTokenErrorException in project powerauth-restful-integration by lime-company.
the class TokenService method createToken.
/**
* Create token.
* @param request Create token request.
* @param authentication PowerAuth API authentication.
* @return Create token response.
* @throws PowerAuthAuthenticationException In case token could not be created.
*/
public TokenCreateResponse createToken(TokenCreateRequest request, PowerAuthApiAuthentication authentication) throws PowerAuthAuthenticationException {
try {
// Fetch activation ID and signature type
final String activationId = authentication.getActivationContext().getActivationId();
final PowerAuthSignatureTypes signatureFactors = authentication.getAuthenticationContext().getSignatureType();
// Fetch data from the request
final String ephemeralPublicKey = request.getEphemeralPublicKey();
// Prepare a signature type converter
SignatureTypeConverter converter = new SignatureTypeConverter();
// Create a token
final CreateTokenResponse token = powerAuthClient.v2().createToken(activationId, ephemeralPublicKey, converter.convertFrom(signatureFactors));
// Prepare a response
final TokenCreateResponse response = new TokenCreateResponse();
response.setMac(token.getMac());
response.setEncryptedData(token.getEncryptedData());
return response;
} catch (Exception ex) {
logger.warn("Creating PowerAuth token failed, error: {}", ex.getMessage());
logger.debug(ex.getMessage(), ex);
throw new PowerAuthTokenErrorException();
}
}
use of io.getlime.security.powerauth.rest.api.spring.exception.authentication.PowerAuthTokenErrorException in project powerauth-restful-integration by lime-company.
the class TokenService method removeToken.
/**
* Remove token.
*
* @param request Remove token request.
* @param authentication PowerAuth API authentication object.
* @return Remove token response.
* @throws PowerAuthAuthenticationException In case authentication fails.
*/
public TokenRemoveResponse removeToken(TokenRemoveRequest request, PowerAuthApiAuthentication authentication) throws PowerAuthAuthenticationException {
try {
// Fetch activation ID
final String activationId = authentication.getActivationContext().getActivationId();
// Fetch token ID from the request
final String tokenId = request.getTokenId();
// Remove a token, ignore response, since the endpoint should quietly return
powerAuthClient.removeToken(tokenId, activationId);
// Prepare a response
final TokenRemoveResponse response = new TokenRemoveResponse();
response.setTokenId(tokenId);
return response;
} catch (Exception ex) {
logger.warn("Removing PowerAuth token failed, error: {}", ex.getMessage());
logger.debug(ex.getMessage(), ex);
throw new PowerAuthTokenErrorException();
}
}
use of io.getlime.security.powerauth.rest.api.spring.exception.authentication.PowerAuthTokenErrorException in project powerauth-restful-integration by lime-company.
the class TokenService method createToken.
/**
* Create token.
*
* @param request ECIES encrypted create token request.
* @param authentication PowerAuth API authentication object.
* @return ECIES encrypted create token response.
* @throws PowerAuthAuthenticationException In case token could not be created.
*/
public EciesEncryptedResponse createToken(EciesEncryptedRequest request, PowerAuthApiAuthentication authentication) throws PowerAuthAuthenticationException {
try {
// Fetch activation ID and signature type
final PowerAuthSignatureTypes signatureFactors = authentication.getAuthenticationContext().getSignatureType();
// Fetch data from the request
final String ephemeralPublicKey = request.getEphemeralPublicKey();
final String encryptedData = request.getEncryptedData();
final String mac = request.getMac();
final String nonce = request.getNonce();
// Prepare a signature type converter
final SignatureTypeConverter converter = new SignatureTypeConverter();
final SignatureType signatureType = converter.convertFrom(signatureFactors);
if (signatureType == null) {
logger.warn("Invalid signature type: {}", signatureFactors);
throw new PowerAuthSignatureTypeInvalidException();
}
// Get ECIES headers
final String activationId = authentication.getActivationContext().getActivationId();
final PowerAuthSignatureHttpHeader httpHeader = (PowerAuthSignatureHttpHeader) authentication.getHttpHeader();
final String applicationKey = httpHeader.getApplicationKey();
// Create a token
final CreateTokenResponse token = powerAuthClient.createToken(activationId, applicationKey, ephemeralPublicKey, encryptedData, mac, nonce, signatureType);
// Prepare a response
final EciesEncryptedResponse response = new EciesEncryptedResponse();
response.setMac(token.getMac());
response.setEncryptedData(token.getEncryptedData());
return response;
} catch (Exception ex) {
logger.warn("Creating PowerAuth token failed, error: {}", ex.getMessage());
logger.debug(ex.getMessage(), ex);
throw new PowerAuthTokenErrorException();
}
}
Aggregations