Using Operations Service
- Introduction
- Creating an Instance
- Retrieve Pending Operations
- Start Periodic Polling
- Approve an Operation
- Reject an Operation
- Off-line Authorization
- Operations API Reference
- Creating a Custom Operation
- Error handling
Introduction
Operations Service is responsible for fetching the operation list and for approving or rejecting operations.
An operation can be anything you need to be approved or rejected by the user. It can be for example money transfer, login request, access approval, …
Note: Before using Operations Service, you need to have a
PowerAuthSDK
object available and initialized with a valid activation. Without a valid PowerAuth activation, all endpoints will return an error
Operations Service communicates with a backend via Mobile Token API endpoints.
Creating an Instance
To create an instance of an operations service, use the following snippet:
import WultraMobileTokenSDK
let opsConfig = WMTConfig(
baseUrl: URL(string: "https://myservice.com/mtoken/operations/api/")!,
sslValidation: .default,
pollingOptions: [.pauseWhenOnBackground]
)
let opsService = powerAuth.createWMTOperations(config: config)
The sslValidation
parameter is used when validating HTTPS requests. Following strategies can be used.
WMTSSLValidationStrategy.default
WMTSSLValidationStrategy.noValidation
WMTSSLValidationStrategy.sslPinning
The pollingOptions
parameter is used for polling feature configuration. The default value is empty []
. Possible options are:
WMTOperationsPollingOptions.pauseWhenOnBackground
Retrieve Pending Operations
To fetch the list with pending operations, can call the WMTOperations
API:
import WultraMobileTokenSDK
DispatchQueue.main.async {
// This method needs to be called on the main thread.
operationsService.getOperations { result in
switch result {
case .success(let ops):
// render success UI
case .failure(let err):
// render error UI
}
}
}
After you retrieve the pending operations, you can render them in the UI, for example, as a list of items with a detail of operation shown after a tap.
Note: Language of the UI data inside the operation depends on the cofiguration of the WMTOperation.acceptLanguage
.
Start Periodic Polling
Mobile token API is highly asynchronous - to simplify the work for you, we added a convenience operation list polling feature:
import WultraMobileTokenSDK
// fetch new operations every 7 seconds periodically
if (!operationsService.isPollingOperations) {
operationsService.startPollingOperations(interval: 7, delayStart: false)
}
To receive the result of the polling, set up a delegate.
Note that the listener is called for all “fetch operations” requests (not just the polling).
import WultraMobileTokenSDK
import PowerAuth2
class MyOperationsManager: WMTOperationsDelegate {
private let ops: WMTOperations
init(powerAuth: PowerAuthSDK) {
let opsConfig = WMTConfig(
baseUrl: URL(string: "https://myservice.com/mtoken/api/")!,
sslValidation: .default)
self.ops = powerAuth.createWMTOperations(config: opsConfig)
self.ops.delegate = self
}
func operationsFailed(error: WMTError) {
// show UI that the last fetch has failed
}
func operationsChanged(operations: [UserOperation], removed: [UserOperation], added: [UserOperation]) {
// refresh operation list UI
}
func operationsLoading(loading: Bool) {
// show loading UI
}
}
Polling behavior can be adjusted by the pollingOptions
parameter when creating an instance of the service.
Approve an Operation
To approve an operation use WMTOperations.authorize
. You can simply use it with following examples:
import WultraMobileTokenSDK
import PowerAuth2
// Approve operation with password
func approve(operation: WMTOperation, password: String) {
let auth = PowerAuthAuthentication()
auth.usePossession = true
auth.usePassword = password
operationService.authorize(operation: operation, authentication: auth) { error in
if let error = error {
// show error UI
} else {
// show success UI
}
}
}
To approve offline operations with biometry, your PowerAuth instance need to be configured with biometry factor.
import WultraMobileTokenSDK
import PowerAuth2
// Approve operation with password
func approveWithBiometry(operation: WMTOperation) {
let auth = PowerAuthAuthentication()
auth.usePossession = true
auth.useBiometry = true
auth.biometryPrompt = "Confirm operation."
operationService.authorize(operation: operation, authentication: auth) { error in
if let error = error {
// show error UI
} else {
// show success UI
}
}
}
Reject an Operation
To reject an operation use WMTOperations.reject
. Operation rejection is confirmed by possession factor so there is no need for creating PowerAuthAuthentication
object. You can simply use it with the following example.
import WultraMobileTokenSDK
import PowerAuth2
// Reject operation with some reason
func reject(operation: WMTOperation, reason: WMTRejectionReason) {
operationService.reject(operation: operation, reason: reason) { error in
if let error = error {
// show error UI
} else {
// show success UI
}
}
}
Operation History
You can retrieve an operation history via the WMTOperations.getHistory
method. The returned result is operations and their current status.
import WultraMobileTokenSDK
import PowerAuth2
// Retrieve operation history with password
func history(password: String) {
let auth = PowerAuthAuthentication()
auth.usePossession = true
auth.usePassword = password
operationService.getHistory(authentication: auth) { result in
switch result {
case .success(let operations):
// process operation history
break
case .failure(let error):
// process error
break
}
}
}
Note that the operation history availability depends on the backend implementation and might not be available. Please consult this with your backend developers.
Off-line Authorization
In case the user is not online, you can use off-line authorizations. In this operation mode, the user needs to scan a QR code, enter PIN code or use biometry, and rewrite the resulting code. Wultra provides a special format for the operation QR codes, that is automatically processed with the SDK.
Processing scanned QR operation
import WultraMobileTokenSDK
let code = "..." // scanned QR value
let parser = WMTQROperationParser()
switch parser.parse(string: code) {
case .success(let op):
let isMasterKey = op.signature.signingKey == .master
guard powerAuth.verifyServerSignedData(op.signedData, signature: op.signature.signature, masterKey: isMasterKey) else {
// failed to verify signature
return
}
// opeartion is parsed and verify
case .failure(let error):
// failed to parse. See error for more info.
}
Authorizing scanned QR operation
An offline operation needs to be always approved with 2-factor scheme (password or biometry).
With password
import WultraMobileTokenSDK
import PowerAuth2
func approveQROperation(operation: WMTQROperation, password: String) {
let auth = PowerAuthAuthentication()
auth.usePossession = true
auth.usePassword = password
operationsService.authorize(qrOperation: operation, authentication: auth) { result in
switch result {
case .success(let code):
// Display the signature to the user so it can be manually rewritten.
// Note that the operation will be signed even with the wrong password!
case .failure(let error):
// Failed to sign the operation
}
}
}
An offline operation can and will be signed even with an incorrect password. The signature cannot be used for manual approval in such a case. This behavior cannot be detected, so you should warn the user that an incorrect password will result in an incorrect “approval code”.
With biometry
To approve offline operations with biometry, your PowerAuth instance need to be configured with biometry factor.
import WultraMobileTokenSDK
import PowerAuth2
// Approves QR operation with biometry
func approveQROperationWithBiometry(operation: WMTQROperation) {
guard operation.flags.allowBiometryFactor else {
// biometry usage is not allowed on this operation
return
}
let auth = PowerAuthAuthentication()
auth.usePossession = true
auth.useBiometry = true
auth.biometryPrompt = "Confirm operation."
operationsService.authorize(qrOperation: operation, authentication: auth) { result in
switch result {
case .success(let code):
// Display the signature to the user so it can be manually rewritten.
case .failure(let error):
// Failed to sign the operation
}
}
}
Operations API Reference
All available methods and attributes of WMTOperations
API are:
delegate
- Delegate object that receives info about operation loading. Methods of the delegate are always called on the main thread.config
- Config object, that was used for initialization.acceptLanguage
- Language settings, that will be sent along with each request. The server will return properly localized content based on this value. Value follows standard RFC Accept-LanguagelastFetchResult()
- Cached last operations result.isLoadingOperations
- Indicates if the service is loading pending operations.refreshOperations
- Async “fire and forget” request to refresh pending operations.getOperations(completion: @escaping GetOperationsCompletion)
- Retrieves pending operations from the server.completion
- Called when operation finishes. Always called on the main thread.
isPollingOperations
- If the app is periodically polling for the operations from the server.pollingOptions
- Configuration of the polling featurepauseWhenOnBackground
- Polling will be paused when your app is on the background.
startPollingOperations(interval: TimeInterval, delayStart: Bool)
- Starts the periodic operation polling.interval
- How often should operations be refreshed.delayStart
- When true, polling starts after the firstinterval
time passes.
stopPollingOperations()
- Stops the periodic operation polling.authorize(operation: WMTOperation, authentication: PowerAuthAuthentication, completion: @escaping(WMTError?)->Void)
- Authorize provided operation.operation
- An operation to approve, retrieved fromgetOperations
call or created locally.authentication
- PowerAuth authentication object for operation signing.completion
- Called when authorization request finishes. Always called on the main thread.
reject(operation: WMTOperation, reason: WMTRejectionReason, completion: @escaping(WMTError?)->Void)
- Reject provided operation.operation
- An operation to reject, retrieved fromgetOperations
call or created locally.reason
- Rejection reasoncompletion
- Called when rejection request finishes. Always called on the main thread.
getHistory(authentication: PowerAuthAuthentication, completion: @escaping(Result<[WMTOperationHistoryEntry],WMTError>) -> Void)
- Retrieves operation historyauthentication
- PowerAuth authentication object for operation signing.completion
- Called when rejection request finishes. Always called on the main thread.
authorize(qrOperation: WMTQROperation, authentication: PowerAuthAuthentication, completion: @escaping(Result<String, WMTError>) -> Void)
- Sign offline (QR) operation.operation
- Offline operation that can be retrieved viaWMTQROperationParser.parse
method.authentication
- PowerAuth authentication object for operation signing.completion
- Called when authentication finishes. Always called on the main thread.
WMTUserOperation
Operations objects retrieved through the getOperations
API method are called “user operations”.
Under this abstract name, you can imagine for example “Login operation”, which is a request for signing in to the online account in a web browser on another device. In general, it can be any operation that can be either approved or rejected by the user.
Visually, the operation should be displayed as an info page with all the attributes (rows) of such operation, where the user can decide if he wants to approve or reject it.
Definition of the WMTUserOperation
:
class WMTUserOperation: WMTOperation {
/// Unique operation identifier
public let id: String
/// System name of the operation.
///
/// This property lets you adjust the UI for various operation types.
/// For example, the "login" operation may display a specialized interface with
/// an icon or an illustration, instead of an empty list of attributes,
/// "payment" operation can include a special icon that denotes payments, etc.
public let name: String
/// Actual data that will be signed.
public let data: String
/// Date and time when the operation was created.
public let operationCreated: Date
/// Date and time when the operation will expire.
public let operationExpires: Date
/// Data that should be presented to the user.
public let formData: WMTOperationFormData
/// Allowed signature types.
///
/// This hints if the operation needs a 2nd factor or can be approved simply by
/// tapping an approve button. If the operation requires 2FA, this value also hints if
/// the user may use the biometry, or if a password is required.
public let allowedSignatureType: WMTAllowedOperationSignature
}
Definition of WMTOperationFormData
:
public class WMTOperationFormData {
/// Title of the operation
public let title: String
/// Message for the user
public let message: String
/// Other attributes.
///
/// Each attribute presents one line in the UI. Attributes are differentiated by type property
/// and specific classes such as WMTOperationAttributeNote or WMTOperationAttributeAmount.
public let attributes: [WMTOperationAttribute]
}
Attributes types:
AMOUNT
like “100.00 CZK”KEY_VALUE
any key value pairNOTE
just likeKEY_VALUE
, emphasizing that the value is a note or messageHEADING
single highlighted text, written in a larger font, used as a section headingPARTY_INFO
providing structured information about third-party data (for example known eshop)
Creating a Custom Operation
In some specific scenarios, you might need to approve or reject an operation that you received through a different channel than getOperations
. In such cases, you can implement the WMTOperation
protocol in your custom class and then feed created objects to both authorize
and reject
methods.
Note: For such cases, you can use concrete convenient class WMTLocalOperation
, that implements this protocol.
Definition of the WMTOperation
:
public protocol WMTOperation {
/// Operation identifier
var id: String { get }
/// Data for signing
var data: String { get }
}
Error handling
Every error produced by the Operations Service is of a WMTError
type. For more information see detailed error handling documentation.