@alipay/ams-checkout 0.0.1745390310-dev.6 → 0.0.1745808793-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/umd/ams-checkout.min.js +1 -1
- package/esm/component/channel.js +9 -27
- package/esm/core/component/ckp/index.d.ts +5 -15
- package/esm/core/component/ckp/index.js +26 -288
- package/esm/foundation/product-processor/easysafepay/index.js +12 -9
- package/esm/plugin/applepay/service.d.ts +1 -1
- package/esm/plugin/applepay/service.js +3 -5
- package/esm/types/index.d.ts +0 -1
- package/esm/types/index.js +0 -1
- package/package.json +1 -1
- package/esm/core/component/ckp/interface.d.ts +0 -540
- package/esm/core/component/ckp/interface.js +0 -233
package/esm/component/channel.js
CHANGED
@@ -3,52 +3,34 @@ export function getChannelBehavior(paymentSessionMetaData) {
|
|
3
3
|
var allowSubmitPayCallAhead = false;
|
4
4
|
var allowClickOutsideClose = false;
|
5
5
|
var buildSubmitPayExtParams = undefined;
|
6
|
-
|
7
6
|
// EASYPAY
|
8
7
|
if ((paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa = paymentSessionMetaData.paymentSessionConfig) === null || _paymentSessionMetaDa === void 0 ? void 0 : _paymentSessionMetaDa.productScene) === 'EASY_PAY') {
|
9
|
-
var _paymentSessionMetaDa2, _paymentSessionMetaDa3, _paymentSessionMetaDa4,
|
8
|
+
var _paymentSessionMetaDa2, _paymentSessionMetaDa3, _paymentSessionMetaDa4, _paymentSessionMetaDa5;
|
10
9
|
var amountConfirmRequired = (_paymentSessionMetaDa2 = paymentSessionMetaData.action) === null || _paymentSessionMetaDa2 === void 0 ? void 0 : _paymentSessionMetaDa2.amountConfirmRequired;
|
11
10
|
var isFirstTimeToPay = !((_paymentSessionMetaDa3 = paymentSessionMetaData.action) !== null && _paymentSessionMetaDa3 !== void 0 && _paymentSessionMetaDa3.autoDebitWithToken);
|
12
11
|
// EASYPAY 1.0
|
13
12
|
if ((paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa4 = paymentSessionMetaData.paymentSessionConfig) === null || _paymentSessionMetaDa4 === void 0 ? void 0 : _paymentSessionMetaDa4.productSceneVersion) === '1.0') {
|
14
|
-
|
15
|
-
if (!isFirstTimeToPay
|
16
|
-
allowSubmitPayCallAhead = false;
|
17
|
-
} else {
|
18
|
-
allowSubmitPayCallAhead = true;
|
19
|
-
}
|
20
|
-
if (
|
21
|
-
// AlipayCN、TOSS
|
22
|
-
['ALIPAY_CN', 'BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa5 = paymentSessionMetaData.paymentMethodInfoView) === null || _paymentSessionMetaDa5 === void 0 ? void 0 : _paymentSessionMetaDa5.paymentMethodType)) {
|
13
|
+
// 如果是二次一定调用submitPay接口
|
14
|
+
if (!isFirstTimeToPay) {
|
23
15
|
allowSubmitPayCallAhead = true;
|
24
16
|
}
|
25
|
-
} else if ((paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (
|
26
|
-
var
|
17
|
+
} else if ((paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa5 = paymentSessionMetaData.paymentSessionConfig) === null || _paymentSessionMetaDa5 === void 0 ? void 0 : _paymentSessionMetaDa5.productSceneVersion) === '2.0') {
|
18
|
+
var _paymentSessionMetaDa7;
|
27
19
|
if (isFirstTimeToPay) {
|
28
|
-
var
|
20
|
+
var _paymentSessionMetaDa6;
|
29
21
|
if (
|
30
22
|
// AlipayCN、TOSS
|
31
|
-
['ALIPAY_CN', 'BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (
|
23
|
+
['ALIPAY_CN', 'BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa6 = paymentSessionMetaData.paymentMethodInfoView) === null || _paymentSessionMetaDa6 === void 0 ? void 0 : _paymentSessionMetaDa6.paymentMethodType)) {
|
32
24
|
allowSubmitPayCallAhead = true;
|
33
25
|
} else {
|
34
26
|
allowSubmitPayCallAhead = false;
|
35
27
|
}
|
36
28
|
} else {
|
37
|
-
|
38
|
-
var _paymentSessionMetaDa8;
|
39
|
-
// TOSS
|
40
|
-
if (['BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa8 = paymentSessionMetaData.paymentMethodInfoView) === null || _paymentSessionMetaDa8 === void 0 ? void 0 : _paymentSessionMetaDa8.paymentMethodType)) {
|
41
|
-
allowSubmitPayCallAhead = true;
|
42
|
-
} else {
|
43
|
-
allowSubmitPayCallAhead = false;
|
44
|
-
}
|
45
|
-
} else {
|
46
|
-
allowSubmitPayCallAhead = true;
|
47
|
-
}
|
29
|
+
allowSubmitPayCallAhead = true;
|
48
30
|
}
|
49
31
|
|
50
32
|
// TOSS
|
51
|
-
if (['BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (
|
33
|
+
if (['BANKTRANSFER_QUICKPAY'].includes(paymentSessionMetaData === null || paymentSessionMetaData === void 0 || (_paymentSessionMetaDa7 = paymentSessionMetaData.paymentMethodInfoView) === null || _paymentSessionMetaDa7 === void 0 ? void 0 : _paymentSessionMetaDa7.paymentMethodType)) {
|
52
34
|
allowClickOutsideClose = false;
|
53
35
|
buildSubmitPayExtParams = function buildSubmitPayExtParams(params) {
|
54
36
|
var callBackUrl = getDoubleFaUrl(params);
|
@@ -1,11 +1,13 @@
|
|
1
1
|
import { IcreateComponent, IoptionsParams } from '../../../types';
|
2
|
-
import
|
2
|
+
import { Logger } from '../../../util/logger';
|
3
3
|
type LOCAL_URL = string;
|
4
4
|
export type CKPEmbeddedAppEnv = 'dev' | 'sit' | 'pre' | 'prod';
|
5
5
|
export type CKPEmbeddedEventType = 'SDK_PAYMENT_SUCCESSFUL' | 'SDK_PAYMENT_FAIL' | 'SDK_PAYMENT_CANCEL' | 'SDK_PAYMENT_CLICK_BACK_TO_MERCHANT';
|
6
6
|
export declare const getCKPPageAddress: (env: IoptionsParams['environment'] | LOCAL_URL) => string;
|
7
|
-
export declare class AMSCheckoutPage
|
8
|
-
|
7
|
+
export declare class AMSCheckoutPage {
|
8
|
+
logger: Logger;
|
9
|
+
private _instanceId;
|
10
|
+
private originOptions;
|
9
11
|
private readonly APP_IFRAME_ID;
|
10
12
|
private eventListener?;
|
11
13
|
constructor(options: Pick<IoptionsParams, 'environment' | 'locale' | 'onEventCallback'>);
|
@@ -21,17 +23,5 @@ export declare class AMSCheckoutPage extends CoreInstance {
|
|
21
23
|
* 卸载组件
|
22
24
|
*/
|
23
25
|
unmount(): void;
|
24
|
-
/**
|
25
|
-
* @description Execute payment submission process
|
26
|
-
* @description - When using your own payment button, you can execute the submit payment process by actively calling this function.
|
27
|
-
* @param data - Transfer information in the submission interface according to your requirements (optional)
|
28
|
-
*/
|
29
|
-
applePaySubmit({ paymentRequest, paymentSessionData, paymentMethod, version, request }: {
|
30
|
-
paymentRequest: any;
|
31
|
-
paymentSessionData: any;
|
32
|
-
paymentMethod: any;
|
33
|
-
version: any;
|
34
|
-
request: any;
|
35
|
-
}): Promise<void>;
|
36
26
|
}
|
37
27
|
export {};
|
@@ -1,29 +1,15 @@
|
|
1
1
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
2
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
3
|
-
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
4
|
-
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
5
2
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
6
3
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
7
4
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
8
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
9
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
10
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
11
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
12
|
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
13
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
14
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
15
5
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
16
6
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
17
7
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
18
8
|
import { v4 as uuid } from 'uuid';
|
19
|
-
import ApplePayService from "../../../plugin/applepay/service";
|
20
|
-
import { getApplePayPaymentSession } from "../../../service";
|
21
9
|
import { EnvironmentEnum } from "../../../types";
|
22
10
|
import { queryParse } from "../../../util";
|
23
11
|
import { LogConfig, Logger } from "../../../util/logger";
|
24
|
-
import CoreInstance from "../../instance/index";
|
25
12
|
var CKP_PAYMENT_PAGE_HOST = {
|
26
|
-
LOCAL: 'http://localhost:5174',
|
27
13
|
DEV: 'https://dev.page.alipay.net',
|
28
14
|
TEST: 'https://test.page.alipay.net',
|
29
15
|
PRE: 'https://pre.ac.alipay.com',
|
@@ -33,12 +19,9 @@ var CKP_PAYMENT_PAGE_HOST = {
|
|
33
19
|
// for local development
|
34
20
|
|
35
21
|
var CKP_PAGE_ADDRESS = '/page/antom-web-checkout-v2/checkout-page/pages/payment/index.html';
|
36
|
-
var CKP_PAGE_LOCAL = '/checkout-page/src/pages/payment/index.html';
|
37
22
|
var CKP_PAGE_NEW_ADDRESS = '/checkout-page/pages/payment/index.html';
|
38
23
|
export var getCKPPageAddress = function getCKPPageAddress(env) {
|
39
24
|
switch (env) {
|
40
|
-
case 'local':
|
41
|
-
return "".concat(CKP_PAYMENT_PAGE_HOST.LOCAL).concat(CKP_PAGE_LOCAL);
|
42
25
|
case 'dev':
|
43
26
|
return "".concat(CKP_PAYMENT_PAGE_HOST.DEV).concat(CKP_PAGE_ADDRESS);
|
44
27
|
case 'sit':
|
@@ -54,23 +37,19 @@ export var getCKPPageAddress = function getCKPPageAddress(env) {
|
|
54
37
|
return env;
|
55
38
|
}
|
56
39
|
};
|
57
|
-
export var AMSCheckoutPage = /*#__PURE__*/function (
|
58
|
-
_inherits(AMSCheckoutPage, _CoreInstance);
|
59
|
-
var _super = _createSuper(AMSCheckoutPage);
|
40
|
+
export var AMSCheckoutPage = /*#__PURE__*/function () {
|
60
41
|
function AMSCheckoutPage(options) {
|
61
|
-
var _this;
|
42
|
+
var _this = this;
|
62
43
|
_classCallCheck(this, AMSCheckoutPage);
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
_defineProperty(
|
67
|
-
_defineProperty(
|
68
|
-
_defineProperty(
|
69
|
-
_defineProperty(_assertThisInitialized(_this), "generateIframeSrc", function (sessionData) {
|
44
|
+
_defineProperty(this, "logger", void 0);
|
45
|
+
_defineProperty(this, "_instanceId", void 0);
|
46
|
+
_defineProperty(this, "originOptions", void 0);
|
47
|
+
_defineProperty(this, "APP_IFRAME_ID", 'antom-checkout-page-sub-page-iframe');
|
48
|
+
_defineProperty(this, "eventListener", void 0);
|
49
|
+
_defineProperty(this, "generateIframeSrc", function (sessionData) {
|
70
50
|
var env = _this.originOptions.environment || 'prod';
|
71
51
|
var session = sessionData || '';
|
72
52
|
var lang = _this.originOptions.locale || 'en_US';
|
73
|
-
console.log(env, '---env------');
|
74
53
|
var ckpPageAddress = getCKPPageAddress(env);
|
75
54
|
console.log('[antom-web-sdk] <antom-checkout-page> generateIframeSrc', _this.originOptions, env, session, lang, ckpPageAddress);
|
76
55
|
|
@@ -88,61 +67,43 @@ export var AMSCheckoutPage = /*#__PURE__*/function (_CoreInstance) {
|
|
88
67
|
});
|
89
68
|
return url;
|
90
69
|
});
|
91
|
-
_defineProperty(
|
92
|
-
var _ref = JSON.parse(
|
70
|
+
_defineProperty(this, "eventListenerWrapper", function (event) {
|
71
|
+
var _ref = JSON.parse(event.data) || {},
|
93
72
|
code = _ref.code,
|
94
73
|
message = _ref.message,
|
95
74
|
result = _ref.result;
|
96
75
|
if (code && code.startsWith('SDK_PAYMENT')) {
|
97
|
-
var _this$eventListener
|
76
|
+
var _this$eventListener;
|
98
77
|
console.log('[antom-web-sdk] <antom-checkout-page> eventListenerWrapper', event, message, result);
|
99
|
-
(_this$eventListener =
|
78
|
+
(_this$eventListener = _this.eventListener) === null || _this$eventListener === void 0 || _this$eventListener.call(_this, {
|
100
79
|
code: code,
|
101
80
|
message: message,
|
102
81
|
result: result
|
103
82
|
});
|
104
83
|
}
|
105
84
|
});
|
106
|
-
_defineProperty(
|
85
|
+
_defineProperty(this, "addListener", function () {
|
107
86
|
window.addEventListener('message', _this.eventListenerWrapper);
|
108
87
|
});
|
109
|
-
_defineProperty(
|
88
|
+
_defineProperty(this, "removeListener", function () {
|
110
89
|
window.removeEventListener('message', _this.eventListenerWrapper);
|
111
90
|
});
|
112
91
|
options.environment = options.environment || EnvironmentEnum.prod;
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
instanceId: _this._instanceId
|
92
|
+
this._instanceId = uuid();
|
93
|
+
this.originOptions = options;
|
94
|
+
this.eventListener = options.onEventCallback;
|
95
|
+
this.logger = new Logger(LogConfig, ![EnvironmentEnum.prod, EnvironmentEnum.sandbox].includes(options === null || options === void 0 ? void 0 : options.environment));
|
96
|
+
Logger.setInstance(this.logger);
|
97
|
+
this.logger.setMedta({
|
98
|
+
instanceId: this._instanceId
|
121
99
|
});
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
100
|
+
this.logger.initTracker();
|
101
|
+
this.logger.setComponentStartTime(Date.now());
|
102
|
+
this.logger.setTrackId(this._instanceId);
|
103
|
+
this.logger.logInfo({
|
126
104
|
title: 'NEW_AMSSDK_BY_MECHANT',
|
127
105
|
msg: "".concat(options === null || options === void 0 ? void 0 : options.environment, "_").concat(options === null || options === void 0 ? void 0 : options.locale)
|
128
106
|
}).send();
|
129
|
-
|
130
|
-
// 监听ckp applePay提交支付动作
|
131
|
-
var onListenSubmitAction = function onListenSubmitAction(e) {
|
132
|
-
if (typeof (e === null || e === void 0 ? void 0 : e.data) !== 'string') {
|
133
|
-
return;
|
134
|
-
}
|
135
|
-
var submitData = JSON.parse((e === null || e === void 0 ? void 0 : e.data) || '{}');
|
136
|
-
var _ref2 = (submitData === null || submitData === void 0 ? void 0 : submitData.context) || {},
|
137
|
-
event = _ref2.event,
|
138
|
-
data = _ref2.data;
|
139
|
-
if (event === 'onApplePaySubmit') {
|
140
|
-
console.log(data, 'onApplePaySubmit--------');
|
141
|
-
_this.applePaySubmit(data);
|
142
|
-
}
|
143
|
-
};
|
144
|
-
window.addEventListener('message', onListenSubmitAction);
|
145
|
-
return _this;
|
146
107
|
}
|
147
108
|
_createClass(AMSCheckoutPage, [{
|
148
109
|
key: "mountComponent",
|
@@ -170,7 +131,6 @@ export var AMSCheckoutPage = /*#__PURE__*/function (_CoreInstance) {
|
|
170
131
|
this.addListener();
|
171
132
|
var ckpPageAddress = this.generateIframeSrc(params.sessionData);
|
172
133
|
var iframe = document.createElement('iframe');
|
173
|
-
this.app = iframe;
|
174
134
|
iframe.id = this.APP_IFRAME_ID;
|
175
135
|
iframe.src = ckpPageAddress;
|
176
136
|
// iframe设置支持第三方支付
|
@@ -207,228 +167,6 @@ export var AMSCheckoutPage = /*#__PURE__*/function (_CoreInstance) {
|
|
207
167
|
}
|
208
168
|
return;
|
209
169
|
}
|
210
|
-
/**
|
211
|
-
* @description Execute payment submission process
|
212
|
-
* @description - When using your own payment button, you can execute the submit payment process by actively calling this function.
|
213
|
-
* @param data - Transfer information in the submission interface according to your requirements (optional)
|
214
|
-
*/
|
215
|
-
}, {
|
216
|
-
key: "applePaySubmit",
|
217
|
-
value: (function () {
|
218
|
-
var _applePaySubmit = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(_ref3) {
|
219
|
-
var _this3 = this,
|
220
|
-
_request$total,
|
221
|
-
_request$total2;
|
222
|
-
var paymentRequest, paymentSessionData, paymentMethod, version, request, appleService, onPostEndMessage, getMerchantSession, completePaymentAuthorized, completeApplePay, param, status;
|
223
|
-
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
224
|
-
while (1) switch (_context3.prev = _context3.next) {
|
225
|
-
case 0:
|
226
|
-
paymentRequest = _ref3.paymentRequest, paymentSessionData = _ref3.paymentSessionData, paymentMethod = _ref3.paymentMethod, version = _ref3.version, request = _ref3.request;
|
227
|
-
appleService = new ApplePayService(this.logger);
|
228
|
-
onPostEndMessage = function onPostEndMessage(data) {
|
229
|
-
console.log('enter--onPostEndMessage---', data, _this3.app);
|
230
|
-
_this3.app.contentWindow.postMessage(JSON.stringify({
|
231
|
-
name: 'SDK_TO_APP',
|
232
|
-
context: {
|
233
|
-
event: 'paymentEnd',
|
234
|
-
data: JSON.stringify(data)
|
235
|
-
}
|
236
|
-
}), '*');
|
237
|
-
};
|
238
|
-
if (ApplePayService.canMakePayments(version)) {
|
239
|
-
_context3.next = 7;
|
240
|
-
break;
|
241
|
-
}
|
242
|
-
this.logger.logError({
|
243
|
-
code: 'a3753.b103030.c386485.d507471'
|
244
|
-
}, {
|
245
|
-
paymentRequest: paymentRequest
|
246
|
-
});
|
247
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
248
|
-
status: false,
|
249
|
-
error: {
|
250
|
-
errorCode: 'APPLE_PAY_NOT_SUPPORTED'
|
251
|
-
}
|
252
|
-
});
|
253
|
-
return _context3.abrupt("return");
|
254
|
-
case 7:
|
255
|
-
getMerchantSession = /*#__PURE__*/function () {
|
256
|
-
var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_ref4) {
|
257
|
-
var validationUrl, requestParams;
|
258
|
-
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
259
|
-
while (1) switch (_context.prev = _context.next) {
|
260
|
-
case 0:
|
261
|
-
validationUrl = _ref4.validationUrl;
|
262
|
-
// get validateUrl
|
263
|
-
requestParams = {
|
264
|
-
validateUrl: validationUrl,
|
265
|
-
paymentSessionData: paymentSessionData
|
266
|
-
};
|
267
|
-
return _context.abrupt("return", getApplePayPaymentSession(paymentSessionData, requestParams, {
|
268
|
-
env: 'prod',
|
269
|
-
envInfo: {
|
270
|
-
deviceId: ''
|
271
|
-
}
|
272
|
-
}, _this3.logger).then(function (res) {
|
273
|
-
if (res !== null && res !== void 0 && res.success && res.merchantSessionObject) {
|
274
|
-
return Promise.resolve(res.merchantSessionObject);
|
275
|
-
}
|
276
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
277
|
-
status: false,
|
278
|
-
error: {
|
279
|
-
errorCode: res === null || res === void 0 ? void 0 : res.errorCode,
|
280
|
-
errorMessage: res === null || res === void 0 ? void 0 : res.errorMessage
|
281
|
-
}
|
282
|
-
});
|
283
|
-
return Promise.reject({
|
284
|
-
errorCode: res.errorCode,
|
285
|
-
errorMessage: res.errorMessage
|
286
|
-
});
|
287
|
-
}).catch(function (error) {
|
288
|
-
_this3.logger.logError({
|
289
|
-
code: 'a3753.b103030.c386485.d507483'
|
290
|
-
}, error);
|
291
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
292
|
-
status: false,
|
293
|
-
error: {
|
294
|
-
errorCode: 'APPLE_PAY_PAYMENT_SESSION_REQUEST_FAILED'
|
295
|
-
}
|
296
|
-
});
|
297
|
-
return Promise.reject(error);
|
298
|
-
}));
|
299
|
-
case 3:
|
300
|
-
case "end":
|
301
|
-
return _context.stop();
|
302
|
-
}
|
303
|
-
}, _callee);
|
304
|
-
}));
|
305
|
-
return function getMerchantSession(_x2) {
|
306
|
-
return _ref5.apply(this, arguments);
|
307
|
-
};
|
308
|
-
}();
|
309
|
-
completePaymentAuthorized = /*#__PURE__*/function () {
|
310
|
-
var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
311
|
-
var _ref7,
|
312
|
-
paymentToken,
|
313
|
-
billingContact,
|
314
|
-
shippingContact,
|
315
|
-
paramsPaymentFactors,
|
316
|
-
submitResult,
|
317
|
-
_args2 = arguments;
|
318
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
319
|
-
while (1) switch (_context2.prev = _context2.next) {
|
320
|
-
case 0:
|
321
|
-
_ref7 = _args2.length > 0 && _args2[0] !== undefined ? _args2[0] : {}, paymentToken = _ref7.paymentToken, billingContact = _ref7.billingContact, shippingContact = _ref7.shippingContact;
|
322
|
-
_context2.prev = 1;
|
323
|
-
paramsPaymentFactors = {
|
324
|
-
instPaymentToken: paymentToken,
|
325
|
-
applePayBillingContact: billingContact,
|
326
|
-
applePayShippingContact: shippingContact
|
327
|
-
};
|
328
|
-
_context2.next = 5;
|
329
|
-
return new Promise(function (resolve, reject) {
|
330
|
-
if (!_this3.app) {
|
331
|
-
reject('');
|
332
|
-
}
|
333
|
-
_this3.app.contentWindow.postMessage(JSON.stringify({
|
334
|
-
name: 'SDK_TO_APP',
|
335
|
-
context: {
|
336
|
-
event: 'doSubmit',
|
337
|
-
data: JSON.stringify(paramsPaymentFactors)
|
338
|
-
}
|
339
|
-
}), '*');
|
340
|
-
window.addEventListener('message', function (e) {
|
341
|
-
var messageData = JSON.parse(e === null || e === void 0 ? void 0 : e.data) || {};
|
342
|
-
var _messageData$context = messageData === null || messageData === void 0 ? void 0 : messageData.context,
|
343
|
-
event = _messageData$context.event,
|
344
|
-
data = _messageData$context.data;
|
345
|
-
if (event === 'onApplePaySubmitResult') {
|
346
|
-
resolve(data || {});
|
347
|
-
}
|
348
|
-
});
|
349
|
-
setTimeout(resolve, 20000);
|
350
|
-
});
|
351
|
-
case 5:
|
352
|
-
submitResult = _context2.sent;
|
353
|
-
if (!(submitResult !== null && submitResult !== void 0 && submitResult.success || (submitResult === null || submitResult === void 0 ? void 0 : submitResult.errorStatus) === 'U')) {
|
354
|
-
_context2.next = 8;
|
355
|
-
break;
|
356
|
-
}
|
357
|
-
return _context2.abrupt("return", Promise.resolve(submitResult));
|
358
|
-
case 8:
|
359
|
-
return _context2.abrupt("return", Promise.reject({
|
360
|
-
errorCode: submitResult.errorCode,
|
361
|
-
errorMessage: submitResult.errorMessage
|
362
|
-
}));
|
363
|
-
case 11:
|
364
|
-
_context2.prev = 11;
|
365
|
-
_context2.t0 = _context2["catch"](1);
|
366
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
367
|
-
status: false,
|
368
|
-
error: _context2.t0
|
369
|
-
});
|
370
|
-
return _context2.abrupt("return", Promise.reject(_context2.t0));
|
371
|
-
case 15:
|
372
|
-
case "end":
|
373
|
-
return _context2.stop();
|
374
|
-
}
|
375
|
-
}, _callee2, null, [[1, 11]]);
|
376
|
-
}));
|
377
|
-
return function completePaymentAuthorized() {
|
378
|
-
return _ref6.apply(this, arguments);
|
379
|
-
};
|
380
|
-
}();
|
381
|
-
completeApplePay = function completeApplePay(data) {
|
382
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
383
|
-
status: true,
|
384
|
-
result: data
|
385
|
-
});
|
386
|
-
};
|
387
|
-
appleService.setApplePayParams(getMerchantSession, completePaymentAuthorized, completeApplePay, onPostEndMessage);
|
388
|
-
param = {
|
389
|
-
paymentSessionFactor: {
|
390
|
-
extendInfo: {
|
391
|
-
merchantCapabilities: request === null || request === void 0 ? void 0 : request.merchantCapabilities,
|
392
|
-
supportedNetworks: request === null || request === void 0 ? void 0 : request.supportedNetworks,
|
393
|
-
requiredBillingContactFields: null,
|
394
|
-
requiredShippingContactFields: null
|
395
|
-
},
|
396
|
-
merchantInfo: {
|
397
|
-
partnerId: '1',
|
398
|
-
registeredCountry: request === null || request === void 0 ? void 0 : request.countryCode,
|
399
|
-
merchantName: request === null || request === void 0 || (_request$total = request.total) === null || _request$total === void 0 ? void 0 : _request$total.label
|
400
|
-
},
|
401
|
-
paymentAmount: {
|
402
|
-
currency: request === null || request === void 0 ? void 0 : request.currencyCode,
|
403
|
-
value: request === null || request === void 0 || (_request$total2 = request.total) === null || _request$total2 === void 0 ? void 0 : _request$total2.amount
|
404
|
-
}
|
405
|
-
}
|
406
|
-
};
|
407
|
-
try {
|
408
|
-
status = appleService.startPay(param);
|
409
|
-
if (!status) {
|
410
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
411
|
-
status: false
|
412
|
-
});
|
413
|
-
}
|
414
|
-
} catch (error) {
|
415
|
-
console.log(error, '----error-----');
|
416
|
-
onPostEndMessage === null || onPostEndMessage === void 0 || onPostEndMessage({
|
417
|
-
status: false,
|
418
|
-
error: error
|
419
|
-
});
|
420
|
-
}
|
421
|
-
case 13:
|
422
|
-
case "end":
|
423
|
-
return _context3.stop();
|
424
|
-
}
|
425
|
-
}, _callee3, this);
|
426
|
-
}));
|
427
|
-
function applePaySubmit(_x) {
|
428
|
-
return _applePaySubmit.apply(this, arguments);
|
429
|
-
}
|
430
|
-
return applePaySubmit;
|
431
|
-
}())
|
432
170
|
}]);
|
433
171
|
return AMSCheckoutPage;
|
434
|
-
}(
|
172
|
+
}();
|
@@ -32,7 +32,7 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
32
32
|
// 是否允许submitPay提前调用,在ESP非首次的性能优化场景使用
|
33
33
|
_defineProperty(this, "allowSubmitPayCallAhead", void 0);
|
34
34
|
_defineProperty(this, "channelBehavior", void 0);
|
35
|
-
_defineProperty(this, "SECURITY_SDK_INIT_TIMEOUT",
|
35
|
+
_defineProperty(this, "SECURITY_SDK_INIT_TIMEOUT", 1500);
|
36
36
|
_defineProperty(this, "SDK_REQUEST_TIMEOUT", 15000);
|
37
37
|
_defineProperty(this, "LOAD_APP_RESOURCES_TIMEOUT", 15000);
|
38
38
|
}
|
@@ -82,7 +82,7 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
82
82
|
return _context.abrupt("return", this.buildRedirectResult(authUrlInfo));
|
83
83
|
case 12:
|
84
84
|
// 下面的场景是需要渲染UI的渠道, 打开WebUrl
|
85
|
-
webAppUrl = this.buildWebAppUrl();
|
85
|
+
webAppUrl = this.buildWebAppUrl();
|
86
86
|
resultPayload = {
|
87
87
|
url: webAppUrl,
|
88
88
|
allowClickPopupOutsideClose: (_this$channelBehavior = this.channelBehavior) === null || _this$channelBehavior === void 0 ? void 0 : _this$channelBehavior.allowClickOutsideClose
|
@@ -229,7 +229,7 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
229
229
|
value: function () {
|
230
230
|
var _processSubmitPay = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
231
231
|
var _this$paymentContext3, _this$paymentContext4, _this$paymentContext5, _this$channelBehavior2, _this$channelBehavior3, _this$paymentContext$6;
|
232
|
-
var submitParams, _ref3, _ref3$productSceneVer, productSceneVersion, _ref4, _ref4$action, _ref4$action2, _ref4$action2$enableS, enableSignAgreement, _ref4$action2$autoDeb, autoDebitWithToken, _this$paymentContext$5, paymentMethodType, isAppWebview, backScheme, requestBizId, extParams, requester, res;
|
232
|
+
var submitParams, _ref3, _ref3$productSceneVer, productSceneVersion, _ref4, _ref4$action, _ref4$action2, _ref4$action2$enableS, enableSignAgreement, _ref4$action2$autoDeb, autoDebitWithToken, _this$paymentContext$5, paymentMethodType, isAppWebview, backScheme, requestBizId, extParams, requester, _this$paymentContext$7, res;
|
233
233
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
234
234
|
while (1) switch (_context2.prev = _context2.next) {
|
235
235
|
case 0:
|
@@ -283,7 +283,10 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
283
283
|
requester = ServiceProvider.getInstance(this.instanceId).getService('Requester');
|
284
284
|
_context2.prev = 13;
|
285
285
|
_context2.t0 = requester;
|
286
|
-
_context2.t1 = submitParams
|
286
|
+
_context2.t1 = _objectSpread(_objectSpread({}, submitParams), {}, {
|
287
|
+
integrationType: 'SDK',
|
288
|
+
sdkVersion: (_this$paymentContext$7 = this.paymentContext.sdkMetaData.sdkVersion) !== null && _this$paymentContext$7 !== void 0 ? _this$paymentContext$7 : '1.0.0'
|
289
|
+
});
|
287
290
|
_context2.t2 = this.initConfig.environment;
|
288
291
|
_context2.t3 = this.SDK_REQUEST_TIMEOUT;
|
289
292
|
_context2.next = 20;
|
@@ -341,13 +344,13 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
341
344
|
key: "acquireApdidToken",
|
342
345
|
value: function () {
|
343
346
|
var _acquireApdidToken = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
344
|
-
var _this$paymentContext$
|
347
|
+
var _this$paymentContext$8;
|
345
348
|
var securityService, productScene, deviceId;
|
346
349
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
347
350
|
while (1) switch (_context3.prev = _context3.next) {
|
348
351
|
case 0:
|
349
352
|
securityService = ServiceProvider.getInstance(this.instanceId).getService('Security');
|
350
|
-
productScene = (_this$paymentContext$
|
353
|
+
productScene = (_this$paymentContext$8 = this.paymentContext.paymentSessionObj) === null || _this$paymentContext$8 === void 0 || (_this$paymentContext$8 = _this$paymentContext$8.paymentSessionConfig) === null || _this$paymentContext$8 === void 0 ? void 0 : _this$paymentContext$8.productScene;
|
351
354
|
deviceId = securityService.getDeviceId({
|
352
355
|
productScene: productScene
|
353
356
|
});
|
@@ -367,14 +370,14 @@ export var EasySafePayProcessor = /*#__PURE__*/function () {
|
|
367
370
|
key: "initSecuritySDK",
|
368
371
|
value: function () {
|
369
372
|
var _initSecuritySDK = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
|
370
|
-
var _this$paymentContext$
|
373
|
+
var _this$paymentContext$9, _this$paymentContext$10, productSceneVersion, nonCompliant, nonInitSecuritySDK, isFirstTimeToPay, shouldInitSecuritySDK;
|
371
374
|
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
372
375
|
while (1) switch (_context4.prev = _context4.next) {
|
373
376
|
case 0:
|
374
377
|
_context4.prev = 0;
|
375
378
|
productSceneVersion = this.paymentContext.paymentSessionObj.paymentSessionConfig.productSceneVersion;
|
376
|
-
nonCompliant = (_this$paymentContext$
|
377
|
-
nonInitSecuritySDK = (_this$paymentContext$
|
379
|
+
nonCompliant = (_this$paymentContext$9 = this.paymentContext.paymentSessionObj.action) === null || _this$paymentContext$9 === void 0 ? void 0 : _this$paymentContext$9.nonCompliant;
|
380
|
+
nonInitSecuritySDK = (_this$paymentContext$10 = this.paymentContext.paymentSessionObj.action) === null || _this$paymentContext$10 === void 0 ? void 0 : _this$paymentContext$10.nonInitSecuritySDK;
|
378
381
|
isFirstTimeToPay = !this.paymentContext.paymentSessionObj.action.autoDebitWithToken;
|
379
382
|
shouldInitSecuritySDK = false;
|
380
383
|
if (nonInitSecuritySDK) {
|
@@ -133,20 +133,19 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
133
133
|
recurring: _this.isRecurring
|
134
134
|
})
|
135
135
|
}).send();
|
136
|
-
console.log(ApplePaySession, '----ApplePaySession---ApplePaySession');
|
137
136
|
if (!ApplePaySession) {
|
138
137
|
_this.logError(eventCodeEnum.SDK_PAYMENT_ERROR, "ApplePaySession is only support in Safari");
|
139
|
-
return
|
138
|
+
return;
|
140
139
|
}
|
141
140
|
if (!(extendInfo !== null && extendInfo !== void 0 && extendInfo.merchantCapabilities) || !(extendInfo !== null && extendInfo !== void 0 && extendInfo.supportedNetworks) || !(merchantInfo !== null && merchantInfo !== void 0 && merchantInfo.registeredCountry) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.currency) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.value) || !(merchantInfo !== null && merchantInfo !== void 0 && merchantInfo.merchantName)) {
|
142
141
|
_this.logError(eventCodeEnum.SDK_PAYMENT_ERROR, "Abnormal params paymentSessionFactor");
|
143
|
-
return
|
142
|
+
return;
|
144
143
|
}
|
145
144
|
if (recurringInfo) {
|
146
145
|
var _recurringInfo$interv;
|
147
146
|
if (!(order !== null && order !== void 0 && order.orderDescription) || !(recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.managementURL)) {
|
148
147
|
_this.logError(eventCodeEnum.SDK_PAYMENT_ERROR, "Abnormal params recurringInfo");
|
149
|
-
return
|
148
|
+
return;
|
150
149
|
}
|
151
150
|
var lineItem = {
|
152
151
|
type: 'final',
|
@@ -214,7 +213,6 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
214
213
|
recurring: recurringInfo !== null
|
215
214
|
})
|
216
215
|
}).send();
|
217
|
-
return true;
|
218
216
|
});
|
219
217
|
this.logger = logger;
|
220
218
|
}
|