@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
96 lines (93 loc) • 3.5 kB
JavaScript
/**
* Copyright © 2023-2024 Nevis Security AG. All rights reserved.
*/
import uuid from 'react-native-uuid';
import { UserInteractionPlatformOperationImpl } from '../../cache/operation/UserInteractionPlatformOperation';
import { PlatformOperationCache } from '../../cache/PlatformOperationCache';
import { OutOfBandPayloadErrorConverter } from '../../error/outOfBand/payload/OutOfBandPayloadErrorConverter';
import { NativeEventListener } from '../../event/NativeEventListener';
import NevisMobileAuthenticationSdkReact from '../../MobileAuthenticationSdk';
import { OnSuccessMessage } from '../../model/messages/in/OnSuccessMessage';
import { OutOfBandPayloadDecodeMessage } from '../../model/messages/out/OutOfBandPayloadDecodeMessage';
import { Operation } from '../Operation';
/**
* The object that decodes an {@link OutOfBandPayload} from a string in JSON format or a Base64 URL
* encoded string representing the JSON.
*
* The {@link OutOfBandPayload} can be used to trigger an out-of-band operation (see {@link OutOfBandOperation}).
*
* Usage example:
* ```ts
* [...]
* async decodeOutOfBandPayload(
* client: MobileAuthenticationClient,
* json: string
* ): Promise<void> {
* await client.operations.outOfBandPayloadDecode
* .json(json)
* .onSuccess((outOfBandPayload) => {
* // handle the OutOfBandPayload
* })
* .onError((_error) => {
* // handle error
* })
* .execute();
* }
* [...]
* ```
*
* The JSON is obtained from a push notification, or as a Base64 URL encoded JSON in QR codes generated
* by the server.
* JSON example:
* ```json
* {
* "nma_data" : {
* "token" : "b4b07559-f934-4597-a1c5-44d89f691e8f",
* "redeem_url" : "https://fido.siven.ch/nevisfido/token/redeem/authentication",
* "attributeName" : "some additional data to be included in the QR code"
* },
* "nma_data_content_type" : "application/json",
* "nma_data_version" : "1"
* }
*/
export class OutOfBandPayloadDecode extends Operation {}
export class OutOfBandPayloadDecodeImpl extends OutOfBandPayloadDecode {
json(json) {
this._json = json;
return this;
}
base64UrlEncoded(base64UrlEncoded) {
this._base64UrlEncoded = base64UrlEncoded;
return this;
}
onSuccess(onSuccess) {
this._onSuccess = onSuccess;
return this;
}
onError(onError) {
this._onError = onError;
return this;
}
async execute() {
const operationId = uuid.v4();
const operation = new UserInteractionPlatformOperationImpl(operationId);
PlatformOperationCache.getInstance().put(operation);
NativeEventListener.getInstance().start(operationId);
const message = new OutOfBandPayloadDecodeMessage(operationId, this._onSuccess !== undefined, this.onError !== undefined, this._json, this._base64UrlEncoded);
function finish() {
NativeEventListener.getInstance().stop(operationId);
PlatformOperationCache.getInstance().delete(operationId);
}
return NevisMobileAuthenticationSdkReact.payloadDecode(message).then(result => {
finish();
const successMessage = OnSuccessMessage.fromJson(result);
this._onSuccess?.(successMessage.outOfBandPayload);
}).catch(error => {
finish();
const payloadError = new OutOfBandPayloadErrorConverter(error).convert();
this._onError?.(payloadError);
});
}
}
//# sourceMappingURL=OutOfBandPayloadDecode.js.map
;