ouisys-engine 2.1.21 → 2.1.22
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/api/click2sms.js +357 -0
- package/dist/api/index.js +3 -3
- package/dist/api/mo.js +274 -0
- package/dist/api/moRedir.js +186 -0
- package/dist/api/oneClick.js +366 -0
- package/dist/api/pin.js +493 -0
- package/dist/api/strategies.js +704 -0
- package/dist/api/ussd.js +1 -0
- package/dist/app/store.js +35 -0
- package/dist/features/strategies/categories/askMobileNumber.js +395 -0
- package/dist/features/strategies/categories/askOperator.js +311 -0
- package/dist/features/strategies/categories/detectOperatorByIp.js +606 -0
- package/dist/features/strategies/categories/headerEnrichment.js +670 -0
- package/dist/features/strategies/categories/typings/click2smsSliceTypes.js +12 -0
- package/dist/features/strategies/categories/typings/identifySliceTypes.js +22 -0
- package/dist/features/strategies/categories/typings/moFlowSliceTypes.js +22 -0
- package/dist/features/strategies/categories/typings/moRedirFlowSliceTypes.js +21 -0
- package/dist/features/strategies/categories/typings/oneClickSliceTypes.js +13 -0
- package/dist/features/strategies/categories/typings/pinFlowSliceTypes.js +13 -0
- package/dist/features/strategies/click2smsFlowSlice.js +172 -0
- package/dist/features/strategies/identifySlice.js +455 -0
- package/dist/features/strategies/moFlowSlice.js +196 -0
- package/dist/features/strategies/moRedirFlowSlice.js +190 -0
- package/dist/features/strategies/oneClickFlowSlice.js +277 -0
- package/dist/features/strategies/pinFlowSlice.js +313 -0
- package/dist/features/strategies/ussdFlowSlice.js +1 -0
- package/dist/ips/tryGetIPRangeName.js +14 -13
- package/dist/mockServer/browser.js +48 -0
- package/dist/mockServer/handlers.js +22 -0
- package/dist/mockServer/server.js +48 -0
- package/dist/pacman/index.js +0 -1
- package/dist/reducers/click2smsFlow/utils.js +1 -3
- package/dist/reducers/strategy/utils.js +11 -12
- package/dist/reducers/tpayHeFlow/utils.js +1 -1
- package/dist/test/setup.js +24 -0
- package/dist/test/test-utils.js +51 -0
- package/package.json +1 -1
- package/src/api/index.ts +3 -3
- package/src/ips/tryGetIPRangeName.ts +3 -2
- package/src/pacman/index.ts +1 -1
- package/src/reducers/click2smsFlow/utils.ts +0 -3
- package/src/reducers/strategy/utils.ts +1 -2
- package/src/reducers/tpayHeFlow/utils.ts +1 -1
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
require("core-js/modules/es.symbol");
|
|
6
|
+
|
|
7
|
+
require("core-js/modules/es.symbol.description");
|
|
8
|
+
|
|
9
|
+
require("core-js/modules/es.symbol.iterator");
|
|
10
|
+
|
|
11
|
+
require("core-js/modules/es.array.filter");
|
|
12
|
+
|
|
13
|
+
require("core-js/modules/es.array.iterator");
|
|
14
|
+
|
|
15
|
+
require("core-js/modules/es.object.get-own-property-descriptor");
|
|
16
|
+
|
|
17
|
+
require("core-js/modules/es.object.get-own-property-descriptors");
|
|
18
|
+
|
|
19
|
+
require("core-js/modules/es.object.keys");
|
|
20
|
+
|
|
21
|
+
require("core-js/modules/es.object.to-string");
|
|
22
|
+
|
|
23
|
+
require("core-js/modules/es.promise");
|
|
24
|
+
|
|
25
|
+
require("core-js/modules/es.string.iterator");
|
|
26
|
+
|
|
27
|
+
require("core-js/modules/es.weak-map");
|
|
28
|
+
|
|
29
|
+
require("core-js/modules/web.dom-collections.for-each");
|
|
30
|
+
|
|
31
|
+
require("core-js/modules/web.dom-collections.iterator");
|
|
32
|
+
|
|
33
|
+
Object.defineProperty(exports, "__esModule", {
|
|
34
|
+
value: true
|
|
35
|
+
});
|
|
36
|
+
exports.submitPinAction = exports.submitMSISDNAction = exports.default = exports.backToStart = void 0;
|
|
37
|
+
|
|
38
|
+
require("regenerator-runtime/runtime");
|
|
39
|
+
|
|
40
|
+
var _toolkit = require("@reduxjs/toolkit");
|
|
41
|
+
|
|
42
|
+
var _pin = _interopRequireWildcard(require("../../api/pin"));
|
|
43
|
+
|
|
44
|
+
var RDS = _interopRequireWildcard(require("../../common-types/RemoteDataState"));
|
|
45
|
+
|
|
46
|
+
var _pinFlowSliceTypes = require("./categories/typings/pinFlowSliceTypes");
|
|
47
|
+
|
|
48
|
+
var _identifySlice = require("./identifySlice");
|
|
49
|
+
|
|
50
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
51
|
+
|
|
52
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
53
|
+
|
|
54
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
55
|
+
|
|
56
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
57
|
+
|
|
58
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
59
|
+
|
|
60
|
+
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); } }
|
|
61
|
+
|
|
62
|
+
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); }); }; }
|
|
63
|
+
|
|
64
|
+
var submitMSISDNAction = (0, _toolkit.createAsyncThunk)('pinFlow/submitMSISDNAction',
|
|
65
|
+
/*#__PURE__*/
|
|
66
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
67
|
+
// @ts-ignore
|
|
68
|
+
function () {
|
|
69
|
+
var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(payload, thunkApi) {
|
|
70
|
+
var strategyState, currentState, config, pinMaxLengthByOp, msisdn, extraParams, msisdnSubmissionResult, operator, errorType;
|
|
71
|
+
return regeneratorRuntime.wrap(function _callee$(_context) {
|
|
72
|
+
while (1) {
|
|
73
|
+
switch (_context.prev = _context.next) {
|
|
74
|
+
case 0:
|
|
75
|
+
strategyState = thunkApi.getState().strategy.currentState;
|
|
76
|
+
currentState = thunkApi.getState().pinFlow.currentState; // eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
77
|
+
// @ts-ignore
|
|
78
|
+
|
|
79
|
+
config = strategyState.nextData.config || payload.configs;
|
|
80
|
+
pinMaxLengthByOp = {
|
|
81
|
+
SA_MOBILY: 6,
|
|
82
|
+
SA_STC: 4,
|
|
83
|
+
SA_ZAIN: 6
|
|
84
|
+
};
|
|
85
|
+
msisdn = payload.msisdn, extraParams = payload.extraParams;
|
|
86
|
+
_context.prev = 5;
|
|
87
|
+
|
|
88
|
+
_identifySlice.tracker.advancedInFlow('tallyman.v1-pin', 'msisdn-submitted', {
|
|
89
|
+
msisdn: msisdn
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
_context.next = 9;
|
|
93
|
+
return (0, _pin.default)(window, config, msisdn, extraParams);
|
|
94
|
+
|
|
95
|
+
case 9:
|
|
96
|
+
msisdnSubmissionResult = _context.sent;
|
|
97
|
+
|
|
98
|
+
_identifySlice.tracker.advancedInFlow('tallyman.v1-pin', 'msisdn-submission-success', {
|
|
99
|
+
msisdn: msisdn
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
operator = msisdnSubmissionResult.type === 'SingleMSISDNSubmissionResult' ? msisdnSubmissionResult.operator : '';
|
|
103
|
+
return _context.abrupt("return", {
|
|
104
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
105
|
+
result: {
|
|
106
|
+
actualPIN: msisdnSubmissionResult.type === 'SingleMSISDNSubmissionResult' ? msisdnSubmissionResult.pin : null,
|
|
107
|
+
msisdn: msisdn,
|
|
108
|
+
operator: operator,
|
|
109
|
+
pinMaxLength: operator !== '' && pinMaxLengthByOp[operator] ? pinMaxLengthByOp[operator] : null
|
|
110
|
+
}
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
case 15:
|
|
114
|
+
_context.prev = 15;
|
|
115
|
+
_context.t0 = _context["catch"](5);
|
|
116
|
+
console.warn(_context.t0);
|
|
117
|
+
errorType = _context.t0.type;
|
|
118
|
+
|
|
119
|
+
_identifySlice.tracker.recedeInFlow('tallyman.v1-pin', 'msisdn-submission-failure', {
|
|
120
|
+
msisdn: msisdn,
|
|
121
|
+
errorType: errorType || 'UnknownError'
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
return _context.abrupt("return", thunkApi.rejectWithValue(_objectSpread(_objectSpread({}, currentState), {}, {
|
|
125
|
+
type: _pinFlowSliceTypes.PinStates.MSISDNEntry,
|
|
126
|
+
result: {
|
|
127
|
+
errorType: errorType,
|
|
128
|
+
error: _context.t0,
|
|
129
|
+
productUrl: _context.t0.productUrl
|
|
130
|
+
}
|
|
131
|
+
})));
|
|
132
|
+
|
|
133
|
+
case 21:
|
|
134
|
+
case "end":
|
|
135
|
+
return _context.stop();
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}, _callee, null, [[5, 15]]);
|
|
139
|
+
}));
|
|
140
|
+
|
|
141
|
+
return function (_x, _x2) {
|
|
142
|
+
return _ref.apply(this, arguments);
|
|
143
|
+
};
|
|
144
|
+
}());
|
|
145
|
+
exports.submitMSISDNAction = submitMSISDNAction;
|
|
146
|
+
var submitPinAction = (0, _toolkit.createAsyncThunk)('pinFlow/submitPinAction',
|
|
147
|
+
/*#__PURE__*/
|
|
148
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
149
|
+
// @ts-ignore
|
|
150
|
+
function () {
|
|
151
|
+
var _ref2 = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2(payload, thunkApi) {
|
|
152
|
+
var strategyState, currentState, config, msisdn, pin, extraParams, result, errorType;
|
|
153
|
+
return regeneratorRuntime.wrap(function _callee2$(_context2) {
|
|
154
|
+
while (1) {
|
|
155
|
+
switch (_context2.prev = _context2.next) {
|
|
156
|
+
case 0:
|
|
157
|
+
strategyState = thunkApi.getState().strategy.currentState;
|
|
158
|
+
currentState = thunkApi.getState().pinFlow.currentState; // eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
159
|
+
// @ts-ignore
|
|
160
|
+
|
|
161
|
+
config = strategyState.nextData.config || payload.configs;
|
|
162
|
+
msisdn = payload.msisdn, pin = payload.pin, extraParams = payload.extraParams;
|
|
163
|
+
_context2.prev = 4;
|
|
164
|
+
|
|
165
|
+
_identifySlice.tracker.advancedInFlow('tallyman.v1-pin', 'pin-submitted', {
|
|
166
|
+
msisdn: msisdn,
|
|
167
|
+
pin: pin
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
_context2.next = 8;
|
|
171
|
+
return (0, _pin.submitPIN)(window, pin, config, extraParams);
|
|
172
|
+
|
|
173
|
+
case 8:
|
|
174
|
+
result = _context2.sent;
|
|
175
|
+
|
|
176
|
+
_identifySlice.tracker.advancedInFlow('tallyman.v1-pin', 'pin-submission-success', {
|
|
177
|
+
msisdn: msisdn,
|
|
178
|
+
pin: pin,
|
|
179
|
+
finalUrl: result
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
return _context2.abrupt("return", _objectSpread(_objectSpread({}, currentState), {}, {
|
|
183
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
184
|
+
result: {
|
|
185
|
+
finalUrl: result.productUrl,
|
|
186
|
+
isAlreadySubscribed: result.isAlreadySubscribed || false
|
|
187
|
+
}
|
|
188
|
+
}));
|
|
189
|
+
|
|
190
|
+
case 13:
|
|
191
|
+
_context2.prev = 13;
|
|
192
|
+
_context2.t0 = _context2["catch"](4);
|
|
193
|
+
console.error(_context2.t0);
|
|
194
|
+
errorType = _context2.t0.type === 'InvalidPIN' ? 'InvalidPIN' : 'UnknownError';
|
|
195
|
+
|
|
196
|
+
_identifySlice.tracker.recedeInFlow('tallyman.v1-pin', 'pin-submission-failure', {
|
|
197
|
+
msisdn: msisdn,
|
|
198
|
+
pin: pin
|
|
199
|
+
});
|
|
200
|
+
|
|
201
|
+
return _context2.abrupt("return", thunkApi.rejectWithValue(_objectSpread(_objectSpread({}, currentState), {}, {
|
|
202
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
203
|
+
result: {
|
|
204
|
+
errorType: errorType
|
|
205
|
+
}
|
|
206
|
+
})));
|
|
207
|
+
|
|
208
|
+
case 19:
|
|
209
|
+
case "end":
|
|
210
|
+
return _context2.stop();
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}, _callee2, null, [[4, 13]]);
|
|
214
|
+
}));
|
|
215
|
+
|
|
216
|
+
return function (_x3, _x4) {
|
|
217
|
+
return _ref2.apply(this, arguments);
|
|
218
|
+
};
|
|
219
|
+
}());
|
|
220
|
+
exports.submitPinAction = submitPinAction;
|
|
221
|
+
|
|
222
|
+
var handleSubmitMSISDNAction = function handleSubmitMSISDNAction(builder) {
|
|
223
|
+
builder.addCase(submitMSISDNAction.pending, function (state) {
|
|
224
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
225
|
+
// @ts-ignore
|
|
226
|
+
state.currentState = {
|
|
227
|
+
type: _pinFlowSliceTypes.PinStates.MSISDNEntry,
|
|
228
|
+
result: RDS.Loading()
|
|
229
|
+
};
|
|
230
|
+
});
|
|
231
|
+
builder.addCase(submitMSISDNAction.fulfilled, function (state, _ref3) {
|
|
232
|
+
var payload = _ref3.payload;
|
|
233
|
+
state.currentState = {
|
|
234
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
235
|
+
result: RDS.NothingYet(),
|
|
236
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
237
|
+
// @ts-ignore
|
|
238
|
+
data: payload.result
|
|
239
|
+
};
|
|
240
|
+
});
|
|
241
|
+
builder.addCase(submitMSISDNAction.rejected, function (state, _ref4) {
|
|
242
|
+
var payload = _ref4.payload;
|
|
243
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
244
|
+
// @ts-ignore
|
|
245
|
+
state.currentState = {
|
|
246
|
+
type: _pinFlowSliceTypes.PinStates.MSISDNEntry,
|
|
247
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
248
|
+
// @ts-ignore
|
|
249
|
+
result: RDS.Failure(payload.result)
|
|
250
|
+
};
|
|
251
|
+
});
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
var handleSubmitPinAction = function handleSubmitPinAction(builder) {
|
|
255
|
+
builder.addCase(submitPinAction.pending, function (state) {
|
|
256
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
257
|
+
// @ts-ignore
|
|
258
|
+
state.currentState = {
|
|
259
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
260
|
+
result: RDS.Loading()
|
|
261
|
+
};
|
|
262
|
+
});
|
|
263
|
+
builder.addCase(submitPinAction.fulfilled, function (state, _ref5) {
|
|
264
|
+
var payload = _ref5.payload;
|
|
265
|
+
state.currentState = {
|
|
266
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
267
|
+
result: RDS.NothingYet(),
|
|
268
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
269
|
+
// @ts-ignore
|
|
270
|
+
data: payload.result
|
|
271
|
+
};
|
|
272
|
+
});
|
|
273
|
+
builder.addCase(submitPinAction.rejected, function (state, _ref6) {
|
|
274
|
+
var payload = _ref6.payload;
|
|
275
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
276
|
+
// @ts-ignore
|
|
277
|
+
state.currentState = {
|
|
278
|
+
type: _pinFlowSliceTypes.PinStates.PINEntry,
|
|
279
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
280
|
+
// @ts-ignore
|
|
281
|
+
result: RDS.Failure(payload.result)
|
|
282
|
+
};
|
|
283
|
+
});
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
var initialState = {
|
|
287
|
+
currentState: {
|
|
288
|
+
type: _pinFlowSliceTypes.PinStates.MSISDNEntry,
|
|
289
|
+
result: RDS.NothingYet()
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
var pinFlowSlice = (0, _toolkit.createSlice)({
|
|
293
|
+
name: 'pinFlow',
|
|
294
|
+
initialState: initialState,
|
|
295
|
+
reducers: {
|
|
296
|
+
backToStart: function backToStart(state) {
|
|
297
|
+
_identifySlice.tracker.recedeInFlow('tallyman.v1-pin', 'pin-submission-backtostart', 'requested to change phone number');
|
|
298
|
+
|
|
299
|
+
state.currentState = {
|
|
300
|
+
type: _pinFlowSliceTypes.PinStates.MSISDNEntry,
|
|
301
|
+
result: RDS.NothingYet()
|
|
302
|
+
};
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
extraReducers: function extraReducers(builder) {
|
|
306
|
+
handleSubmitMSISDNAction(builder);
|
|
307
|
+
handleSubmitPinAction(builder);
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
var backToStart = pinFlowSlice.actions.backToStart;
|
|
311
|
+
exports.backToStart = backToStart;
|
|
312
|
+
var _default = pinFlowSlice.reducer;
|
|
313
|
+
exports.default = _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -25,7 +25,7 @@ function tryGetIPRangeName(_x) {
|
|
|
25
25
|
|
|
26
26
|
function _tryGetIPRangeName() {
|
|
27
27
|
_tryGetIPRangeName = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee(visitor) {
|
|
28
|
-
var mockip, res;
|
|
28
|
+
var mockip, host, res;
|
|
29
29
|
return regeneratorRuntime.wrap(function _callee$(_context) {
|
|
30
30
|
while (1) {
|
|
31
31
|
switch (_context.prev = _context.next) {
|
|
@@ -33,42 +33,43 @@ function _tryGetIPRangeName() {
|
|
|
33
33
|
mockip = (0, _queryString.default)(window.location.href, "mock-ip") || process.env.mock_ip;
|
|
34
34
|
console.log("mockip", mockip);
|
|
35
35
|
|
|
36
|
-
if (visitor.ip) {
|
|
37
|
-
_context.next =
|
|
36
|
+
if (!(!visitor.ip && typeof window != "undefined")) {
|
|
37
|
+
_context.next = 18;
|
|
38
38
|
break;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
_context.prev = 3;
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
host = window.location.host;
|
|
43
|
+
_context.next = 7;
|
|
44
|
+
return fetch("https://".concat(host, "/api/v1/ip") + (!!mockip ? "?mock-ip=".concat(mockip) : "")).then(function (x) {
|
|
44
45
|
return x.json();
|
|
45
46
|
});
|
|
46
47
|
|
|
47
|
-
case
|
|
48
|
+
case 7:
|
|
48
49
|
res = _context.sent;
|
|
49
50
|
// return isIPInRange('37.200.146.28')
|
|
50
51
|
visitor.ip = res.ip;
|
|
51
52
|
visitor.ip_range_name = res.ip_range_name;
|
|
52
53
|
return _context.abrupt("return", res.ip_range_name);
|
|
53
54
|
|
|
54
|
-
case
|
|
55
|
-
_context.prev =
|
|
55
|
+
case 13:
|
|
56
|
+
_context.prev = 13;
|
|
56
57
|
_context.t0 = _context["catch"](3);
|
|
57
58
|
console.warn("IP Lookup failed", _context.t0);
|
|
58
59
|
|
|
59
|
-
case
|
|
60
|
-
_context.next =
|
|
60
|
+
case 16:
|
|
61
|
+
_context.next = 19;
|
|
61
62
|
break;
|
|
62
63
|
|
|
63
|
-
case
|
|
64
|
+
case 18:
|
|
64
65
|
return _context.abrupt("return", visitor.ip_range_name);
|
|
65
66
|
|
|
66
|
-
case
|
|
67
|
+
case 19:
|
|
67
68
|
case "end":
|
|
68
69
|
return _context.stop();
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
|
-
}, _callee, null, [[3,
|
|
72
|
+
}, _callee, null, [[3, 13]]);
|
|
72
73
|
}));
|
|
73
74
|
return _tryGetIPRangeName.apply(this, arguments);
|
|
74
75
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.symbol");
|
|
4
|
+
|
|
5
|
+
require("core-js/modules/es.symbol.description");
|
|
6
|
+
|
|
7
|
+
require("core-js/modules/es.symbol.iterator");
|
|
8
|
+
|
|
9
|
+
require("core-js/modules/es.array.from");
|
|
10
|
+
|
|
11
|
+
require("core-js/modules/es.array.iterator");
|
|
12
|
+
|
|
13
|
+
require("core-js/modules/es.array.slice");
|
|
14
|
+
|
|
15
|
+
require("core-js/modules/es.function.name");
|
|
16
|
+
|
|
17
|
+
require("core-js/modules/es.object.to-string");
|
|
18
|
+
|
|
19
|
+
require("core-js/modules/es.regexp.to-string");
|
|
20
|
+
|
|
21
|
+
require("core-js/modules/es.string.iterator");
|
|
22
|
+
|
|
23
|
+
require("core-js/modules/web.dom-collections.iterator");
|
|
24
|
+
|
|
25
|
+
Object.defineProperty(exports, "__esModule", {
|
|
26
|
+
value: true
|
|
27
|
+
});
|
|
28
|
+
exports.worker = void 0;
|
|
29
|
+
|
|
30
|
+
var _msw = require("msw");
|
|
31
|
+
|
|
32
|
+
var _handlers = require("./handlers");
|
|
33
|
+
|
|
34
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
35
|
+
|
|
36
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
37
|
+
|
|
38
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
39
|
+
|
|
40
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
41
|
+
|
|
42
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
43
|
+
|
|
44
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
45
|
+
|
|
46
|
+
var worker = _msw.setupWorker.apply(void 0, _toConsumableArray(_handlers.handlers));
|
|
47
|
+
|
|
48
|
+
exports.worker = worker;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.handlers = void 0;
|
|
7
|
+
|
|
8
|
+
var _msw = require("msw");
|
|
9
|
+
|
|
10
|
+
var handlers = [_msw.rest.get('http://127.0.0.1:8080/sockjs-node/info/*', function (_, res, ctx) {
|
|
11
|
+
return res(ctx.json({
|
|
12
|
+
websocket: true,
|
|
13
|
+
origins: ['*:*'],
|
|
14
|
+
cookie_needed: false,
|
|
15
|
+
entropy: 1975621412
|
|
16
|
+
}));
|
|
17
|
+
}), _msw.rest.get('https://stats.g.doubleclick.net/j/collect/*', function (_, res, ctx) {
|
|
18
|
+
return res(ctx.json({}));
|
|
19
|
+
}), _msw.rest.get('https://de-pacman.analytickz.com/api/v2/mstore/*', function (_, res, ctx) {
|
|
20
|
+
return res(ctx.json({}));
|
|
21
|
+
})];
|
|
22
|
+
exports.handlers = handlers;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.symbol");
|
|
4
|
+
|
|
5
|
+
require("core-js/modules/es.symbol.description");
|
|
6
|
+
|
|
7
|
+
require("core-js/modules/es.symbol.iterator");
|
|
8
|
+
|
|
9
|
+
require("core-js/modules/es.array.from");
|
|
10
|
+
|
|
11
|
+
require("core-js/modules/es.array.iterator");
|
|
12
|
+
|
|
13
|
+
require("core-js/modules/es.array.slice");
|
|
14
|
+
|
|
15
|
+
require("core-js/modules/es.function.name");
|
|
16
|
+
|
|
17
|
+
require("core-js/modules/es.object.to-string");
|
|
18
|
+
|
|
19
|
+
require("core-js/modules/es.regexp.to-string");
|
|
20
|
+
|
|
21
|
+
require("core-js/modules/es.string.iterator");
|
|
22
|
+
|
|
23
|
+
require("core-js/modules/web.dom-collections.iterator");
|
|
24
|
+
|
|
25
|
+
Object.defineProperty(exports, "__esModule", {
|
|
26
|
+
value: true
|
|
27
|
+
});
|
|
28
|
+
exports.server = void 0;
|
|
29
|
+
|
|
30
|
+
var _node = require("msw/node");
|
|
31
|
+
|
|
32
|
+
var _handlers = require("./handlers");
|
|
33
|
+
|
|
34
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
35
|
+
|
|
36
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
37
|
+
|
|
38
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
39
|
+
|
|
40
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
41
|
+
|
|
42
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
43
|
+
|
|
44
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
45
|
+
|
|
46
|
+
var server = _node.setupServer.apply(void 0, _toConsumableArray(_handlers.handlers));
|
|
47
|
+
|
|
48
|
+
exports.server = server;
|
package/dist/pacman/index.js
CHANGED
|
@@ -94,7 +94,6 @@ var _default = function _default(window, country, page) {
|
|
|
94
94
|
var pacmanClient = (0, _pacmanClient.default)({
|
|
95
95
|
rockmanId: window.pac_analytics.visitor.rockmanId,
|
|
96
96
|
serverUrl: process.env.pacman_server,
|
|
97
|
-
// check webpack.config.common.js //"https://de-pacman.sam-media.com/api/v2/mstore",
|
|
98
97
|
impressionNumber: 1,
|
|
99
98
|
signalInterval: 1000 // in milliseconds
|
|
100
99
|
|
|
@@ -304,9 +304,7 @@ function _load2() {
|
|
|
304
304
|
|
|
305
305
|
function checkSubscription(_x19, _x20) {
|
|
306
306
|
return _checkSubscription.apply(this, arguments);
|
|
307
|
-
}
|
|
308
|
-
// curl "http://w1.mozzi.com/spa-api/?country=gh&device=smart&slug=18plus-oc2sms&action=oc2sms"
|
|
309
|
-
|
|
307
|
+
}
|
|
310
308
|
|
|
311
309
|
function _checkSubscription() {
|
|
312
310
|
_checkSubscription = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee6(window, maybeConfig) {
|
|
@@ -431,7 +431,7 @@ var identifyUser = /*#__PURE__*/function () {
|
|
|
431
431
|
searchObj = searchToObject();
|
|
432
432
|
|
|
433
433
|
if (!(!!searchObj["redirect-back"] && searchObj["redirect-back"] == "1" && !!searchObj.success)) {
|
|
434
|
-
_context2.next =
|
|
434
|
+
_context2.next = 56;
|
|
435
435
|
break;
|
|
436
436
|
}
|
|
437
437
|
|
|
@@ -503,11 +503,10 @@ var identifyUser = /*#__PURE__*/function () {
|
|
|
503
503
|
});
|
|
504
504
|
|
|
505
505
|
case 46:
|
|
506
|
-
_context2.next =
|
|
506
|
+
_context2.next = 54;
|
|
507
507
|
break;
|
|
508
508
|
|
|
509
509
|
case 48:
|
|
510
|
-
console.log("newUrl", window.location.href);
|
|
511
510
|
_newUrl2 = new URL(window.location.href);
|
|
512
511
|
_queryString3 = _newUrl2.search;
|
|
513
512
|
_urlParams2 = new URLSearchParams(_queryString3);
|
|
@@ -518,20 +517,20 @@ var identifyUser = /*#__PURE__*/function () {
|
|
|
518
517
|
operator: _operator2
|
|
519
518
|
});
|
|
520
519
|
|
|
521
|
-
case
|
|
522
|
-
_context2.next =
|
|
520
|
+
case 54:
|
|
521
|
+
_context2.next = 67;
|
|
523
522
|
break;
|
|
524
523
|
|
|
525
|
-
case
|
|
526
|
-
_url2 = "https://".concat(newHost, "/tallyman/v1/?action=identify-user&country=").concat(bupperizeCountry(country), "&slug=").concat(slug, "&device=").concat(device, "&offerId=").concat(offer, "&page=").concat(window.location.href, "&pixel_url=").concat(encodeURIComponent("http://
|
|
527
|
-
_context2.next =
|
|
524
|
+
case 56:
|
|
525
|
+
_url2 = "https://".concat(newHost, "/tallyman/v1/?action=identify-user&country=").concat(bupperizeCountry(country), "&slug=").concat(slug, "&device=").concat(device, "&offerId=").concat(offer, "&page=").concat(window.location.href, "&pixel_url=").concat(encodeURIComponent("http://".concat(window.location.host, "/pixels?xcid=").concat(window.location.pathname.replace("/", ""), "&xaid=").concat(window.pac_analytics.visitor.xaid, "&country=").concat(bupperizeCountry(country))), "&rockman_id=").concat(rockmanId).concat(extraParamsQs, "&").concat(search);
|
|
526
|
+
_context2.next = 59;
|
|
528
527
|
return fetchJsonp(_url2);
|
|
529
528
|
|
|
530
|
-
case
|
|
529
|
+
case 59:
|
|
531
530
|
result = _context2.sent;
|
|
532
531
|
|
|
533
532
|
if (!(false === result.success)) {
|
|
534
|
-
_context2.next =
|
|
533
|
+
_context2.next = 66;
|
|
535
534
|
break;
|
|
536
535
|
}
|
|
537
536
|
|
|
@@ -540,7 +539,7 @@ var identifyUser = /*#__PURE__*/function () {
|
|
|
540
539
|
|
|
541
540
|
throw _identifyError;
|
|
542
541
|
|
|
543
|
-
case
|
|
542
|
+
case 66:
|
|
544
543
|
return _context2.abrupt("return", {
|
|
545
544
|
subscription_url: result.subscription_url || result.redirect_url,
|
|
546
545
|
action: function action() {
|
|
@@ -550,7 +549,7 @@ var identifyUser = /*#__PURE__*/function () {
|
|
|
550
549
|
operator: result.operator
|
|
551
550
|
});
|
|
552
551
|
|
|
553
|
-
case
|
|
552
|
+
case 67:
|
|
554
553
|
case "end":
|
|
555
554
|
return _context2.stop();
|
|
556
555
|
}
|
|
@@ -441,7 +441,7 @@ var confirmTPay = function confirmTPay(window, tpayConfig, locale, redirectUrl)
|
|
|
441
441
|
if (config["replace_uid"] != undefined && config['replace_uid'] == true) {
|
|
442
442
|
console.log('sub id ' + subId);
|
|
443
443
|
productUrl = config['product_full_access'];
|
|
444
|
-
fetch("http://de
|
|
444
|
+
fetch("http://de.tallymans.com/api/v2/validate-access/?domain=".concat(config.domain, "&sub_id=").concat(subId, "&country=").concat(tpayConfig.country, "&gateway=tpay")).then(function (response) {
|
|
445
445
|
if (response.payload.token) {
|
|
446
446
|
productUrl = config['product_url'].replace('<%UID%>', response.payload.token);
|
|
447
447
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.array.includes");
|
|
4
|
+
|
|
5
|
+
require("core-js/modules/es.string.includes");
|
|
6
|
+
|
|
7
|
+
require("whatwg-fetch");
|
|
8
|
+
|
|
9
|
+
// Jenkins seems to have installed a custom certificate which causes the logs to be poluted
|
|
10
|
+
// This little hack fixes that
|
|
11
|
+
var logErr = console.error; // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
12
|
+
|
|
13
|
+
console.error = function (message) {
|
|
14
|
+
if (message && message.includes('ERR_TLS_CERT_ALTNAME_INVALID')) return;
|
|
15
|
+
|
|
16
|
+
for (var _len = arguments.length, optionalParams = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
17
|
+
optionalParams[_key - 1] = arguments[_key];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
logErr(message, optionalParams);
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
jest.mock('../auth/authHandler');
|
|
24
|
+
global.scrollTo = jest.fn();
|