mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
50 lines
2.0 KiB
JavaScript
50 lines
2.0 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = ["MobileIdentitySmsMtVerificationFlow"];
|
|
|
|
const { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
|
|
|
Cu.import("resource://gre/modules/MobileIdentityCommon.jsm");
|
|
Cu.import("resource://gre/modules/MobileIdentitySmsVerificationFlow.jsm");
|
|
Cu.import("resource://gre/modules/Promise.jsm");
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
this.MobileIdentitySmsMtVerificationFlow = function(aOrigin,
|
|
aMsisdn,
|
|
aIccId,
|
|
aExternal,
|
|
aMtSender,
|
|
aUI,
|
|
aClient) {
|
|
|
|
log.debug("MobileIdentitySmsVerificationFlow " + aMsisdn + ", external: " +
|
|
aExternal);
|
|
|
|
MobileIdentitySmsVerificationFlow.call(this,
|
|
aOrigin,
|
|
aMsisdn,
|
|
aIccId,
|
|
null, // service ID
|
|
aExternal,
|
|
aMtSender,
|
|
null, // moVerifier
|
|
aUI,
|
|
aClient,
|
|
this.smsVerifyStrategy);
|
|
};
|
|
|
|
this.MobileIdentitySmsMtVerificationFlow.prototype = {
|
|
|
|
__proto__: MobileIdentitySmsVerificationFlow.prototype,
|
|
|
|
smsVerifyStrategy: function() {
|
|
return this.client.smsMtVerify(this.sessionToken,
|
|
this.verificationOptions.msisdn,
|
|
this.verificationOptions.external);
|
|
}
|
|
};
|