Post-Install Configuration
After you created the database and installed PowerAuth Cloud in the Docker, you need to perform mandatory post-installation steps.
Database Setup
The Liquibase script bundled in the Docker image can create a correct database scheme.
Creating First Admin User
When calling APIs provided by the PowerAuth Cloud application from various systems, basic HTTP authentication is required. This why we need to add users (which, in this case, are basically server applications calling the PowerAuth Cloud APIs) and their passwords in the database. We also need to assign access to the particular PowerAuth application created in the previous step.
The first user we need to add is basically the main admin user, let’s call the user system-admin
. The first user needs to be inserted in the database.
First, we need to generate the password via openssl
:
openssl rand -base64 12
Output will look like this:
0k4Vyn4A87VtOkEG
In order to store the password in the database, we need to encode it using bcrypt
first. You can use the htpasswd
command to achieve this:
htpasswd -bnBC 12 "" 0k4Vyn4A87VtOkEG | tr -d ':'
Output will look like this:
$2a$12$uZbWUhbRxqHwz5IYqg21LO.LHNhuKFM2SoA56ozAezyGMQdFpDJwe
You can now put this all together and store the user in the database:
INSERT INTO pa_cloud_user (id, username, password, enabled)
VALUES (nextval('pa_cloud_user_seq'), 'system-admin', '$2a$08$uZbWUhbRxqHwz5IYqg21LO.LHNhuKFM2SoA56ozAezyGMQdFpDJwe', true);
INSERT INTO pa_cloud_user_authority (id, user_id, authority)
VALUES (nextval('pa_cloud_user_seq'), (SELECT id FROM pa_cloud_user WHERE username = 'system-admin'), 'ROLE_ADMIN');
- We stored the hashed password for the
system-admin
user. - We used authority
ROLE_ADMIN
for the administrator user who can call services published under/admin
context. Regular users who only need to call registration and operation APIs can use a restrictedROLE_USER
authority.
You can now check the changes in the database:
pa_cloud_user
- New user record with the bcrypt-hashed password.pa_cloud_user_authority
- New user authority record.
At this point, you can open http://localhost:8080/powerauth-cloud/ and use system-admin
as username and 0k4Vyn4A87VtOkEG
, your password value respectively (plaintext) as the password.
Adding More Users and Applications
After you create your first admin user, you can open Swagger UI and create new users and applications, and assign user access to application.
Creating an Integration User
In Swagger UI, you can call POST /admin/users
to create a new regular user. The corresponding cURL call would be:
curl -X 'POST' \
'http://localhost:8080/powerauth-cloud/admin/users' \
-u system-admin:0k4Vyn4A87VtOkEG \
-H 'Content-Type: application/json' \
-d '{
"username": "integration-user"
}'
The response will return a random generated password for the new user.
You cannot set your own password to the users, but admin users can reset password to any users other than themselves (to prevent lockout). We enforce random and sufficiently long passwords.
Create Your First Application
In Swagger UI, you can call POST /admin/applications
to create a new application. The corresponding cURL call would be:
curl -X 'POST' \
'http://localhost:8080/powerauth-cloud/admin/applications' \
-u system-admin:0k4Vyn4A87VtOkEG \
-H 'Content-Type: application/json' \
-d '{
"id": "my-application"
}'
Assign Integration Access to New Application
In Swagger UI, call POST /admin/users/{username}/applications/{appId}
to assign integration user access to the newly created application. The corresponding cURL call (substituting the placeholders for previous values) would be:
curl -X 'POST' \
'http://localhost:8080/powerauth-cloud/admin/users/integration-user/applications/my-application' \
-u system-admin:0k4Vyn4A87VtOkEG \
-d ''
Configuring Push Server Credentials
In order to configure the Push Server credentials, you need to first obtain the required value from Apple and Google.
To obtain APNS credentials for iOS apps, visit the Apple’s developer portal to find:
- Key ID
- Team ID
- Your iOS app bundle (used as a “topic”)
- Private key for push notifications (
*.p8
file)
To obtain FCM credentials for Android, visit the Firebase Console by Google to find:
- Project ID
- Private key (stored in the full
*.json
file)
You can now set the values by calling (the private key value is the binary content of the file encoded as Base64):
POST /admin/applications/{id}/push/apns
{ "topic": "string", "keyId": "string", "teamId": "string", "environment": "development|production", "privateKeyBase64": "stringBase64" }
POST /admin/applications/{id}/push/fcm
{ "projectId": "string", "privateKeyBase64": "stringBase64" }
Configuring Push Server Callback
To make sure Push Server is notified about registration status change whenever it happens, we recommend adding the following callback URL to the database:
INSERT INTO pa_application_callback (id, application_id, name, callback_url, attributes)
VALUES (uuid_generate_v4(), 1, 'push-server', 'http://localhost:8080/powerauth-push-server/push/device/status/update', '["activationId","activationStatus"]');
While this step is not strictly required, it may improve the time of data replication when the registration status changes while the mobile app is already started.
Configuring Operations Templates
Finally, you need to configure the templates used while working with operations. The operation templates are technically stored in three separate tables.
Operation Template
The pa_operation_template
table contains templates used for signing. The template is rather technical. The values are not visible to the end user but they are a critical part of the underlying cryptography. Let’s create two operations for the start: login and payment approval.
INSERT INTO pa_operation_template (id, template_name, operation_type, data_template, signature_type, max_failure_count, expiration)
VALUES (1, 'login', 'login', 'A2', 'possession_knowledge,possession_biometry', 5, 300);
INSERT INTO pa_operation_template (id, template_name, operation_type, data_template, signature_type, max_failure_count, expiration)
VALUES (2, 'payment', 'authorize_payment', 'A1*A${amount}${currency}*I${iban}', 'possession_knowledge,possession_biometry', 5, 300);
Of course, you can insert many other operation types, and even the same operation types with different template name (for example, to create payment type that does not allow biometric authentication used for any riskier payment types).
Operation data column uses a specially defined format shared across all Wultra components. In the PowerAuth Cloud database definition, you can use named variables in the operation data to bind resulting signature with specific attributes of a particular operation. The syntax for the variables is ${name}
. As you can see, the operation data for payment contains three named variables: amount
, currency
and iban
, resulting in the A1*A${amount}${currency}*I${iban}
data.
To disable biometry for a particular operation, use just possession_knowledge
in the signature_type
column.
Operation Summary Localization
You can easily localize operation summary (used for the push messages sent through the system, and for offline approvals) by adding localization records for the particular templates. You need to provide at least English localization (en
), any other localizations are optional, non-existing localizations will fallback to English keys.
To create English localization for the two operations we created earlier, run the following script:
INSERT INTO pa_cloud_localization (id, placeholder, language, title, summary)
VALUES (1, 'login', 'en', 'Approve Login', 'Please confirm the login request.');
INSERT INTO pa_cloud_localization (id, placeholder, language, title, summary)
VALUES (2, 'payment', 'en', 'Approve Payment', 'Please approve the payment of ${amount} ${currency} to account ${iban}.');
Just as with operation templates, you can use named variables in the localizable strings to display the important values to the user (in both title and summary). The syntax for the variables is ${name}
. As you can see, the payment approval summary again contains the three named variables: amount
, currency
and iban
.
Mobile Token Operation Localization
When mobile token requests the list of operations that are pending approval, additional attributes can be rendered to the end user. To define precise looks of the particular operation, you need to configure the localized mobile API operation template.
Again, you need to provide at least the English localization. Also, note that the operations are addressed not by a template name at this level, but by the operation type.
We will create the data for the operations we created earlier.
INSERT INTO es_operation_template (id, placeholder, language, title, message, attributes)
VALUES (1, 'login', 'en', 'Login Approval', 'Are you logging in to the internet banking?', null);
INSERT INTO es_operation_template (id, placeholder, language, title, message, attributes)
VALUES (2, 'authorize_payment', 'en', 'Payment Approval', 'Please confirm the payment', '[
{
"id": "operation.amount",
"type": "AMOUNT",
"text": "Amount",
"params": {
"amount": "amount",
"currency": "currency"
}
},
{
"id": "operation.account",
"type": "KEY_VALUE",
"text": "To Account",
"params": {
"value": "iban"
}
}
]');
Most of the columns in the table are straight forward. The only complex column is the last one - the attributes
column. It is a JSON serialized array of object that define attributes that are rendered in the mobile app. The object structure is the following:
id
- ID of the attribute.type
- Type of the attribute.text
- The text (localized) that will be displayed as the attribute static text in the mobile app.params
- Attribute parameters, differ according to the type. Note that the parameters only define what names of operation named variables are assigned to particular attribute. For example, if you create payments with named variableiban
, thevalue
parameter of theKEY_VALUE
attribute is set toiban
.
The following attribute types are supported:
AMOUNT
- Represent the amount of money, for example during a money transfer. It has two parameters:amount
andcurrency
.HEADING
- Represent the static text heading, does not have any parameters.KEY_VALUE
- Represent the key-value attribute displayed on a single line. It has one parametervalue
.NOTE
- Represent the key-value attribute displayed on multiple lines. It has one parameternote
.
REST API Configuration
The version of REST API which is published is controlled using following configuration property:
powerauth.cloud.rest.api.version=v2
Version | Default | Description |
---|---|---|
v2 |
true | Multi-Device REST API, multiple device registrations per user are allowed. |
v1 |
false | Single-Device REST API, only one device registration per user is allowed. |