This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
571 lines (478 loc) · 16.6 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
import jsonLogic from 'json-logic-js';
import deepmerge from 'deepmerge';
import get from 'get-value';
import version from './lang/version';
import Config from './components/config';
import Options from './components/options';
import Environment from './components/environment';
import Event from './components/event';
import Experiment from './components/experiment';
import Variation from './components/variation';
import Component from './components/component';
import { EventTypes } from './config/event-types';
import * as debug from './lang/debug';
import * as errors from './lang/errors';
import env from './utilities/env';
const LOCAL_STORAGE_UUID_KEY = 'variate-uuid';
const LOCAL_STORAGE_TRAFFIC_BUCKETS_KEY = 'variate-buckets';
class Variate {
private _options: Options;
private _env: Environment;
private _experiments: Experiment[];
public isReady: boolean = false;
public isQualified: boolean = false;
/**
* @param {object} options
*/
constructor(options: Partial<Options>) {
options.debug && version.show();
this.options = new Options(options);
}
/**
* Get testing options
* @returns {Options}
*/
get options(): Options {
return this._options;
}
/**
* Set testing options
* @param options
*/
set options(options: Options) {
this._options = new Options(options);
if (this._options.debug) {
console.groupCollapsed(debug.SETUP_OPTIONS);
console.log(this._options);
console.groupEnd();
}
}
/**
* Get testing configuration
* @returns {object}
*/
get config() {
return this._options.config;
}
/**
* Set testing configuration
* @param config
*/
set config(config: Config) {
this._options.config = config;
}
/**
* Get testing environment
* @returns {object}
*/
get env(): Environment {
return this._env;
}
/**
* Set testing environment
* @param value
*/
set env(value: Environment) {
// View information
const { path, query } = get(value, 'view', {
default: {
path: env.inBrowser ? env.href() : '',
query: Variate.extractQueryParams(env.search())
}
});
const view = {
url: env.inBrowser ? env.href() : '',
path,
query
};
// Viewport information
const targeting = {
visitorId: this.getUUID(),
doNotTrack: env.doNotTrack(),
width: env.width(),
height: env.height(),
userAgent: env.UA,
};
// Targeting information
const customTargeting = get(value, 'targeting', {default: {}});
this._env = {
...this._env,
view,
targeting: {
...targeting,
...customTargeting
}
};
if (this._options.debug) {
console.groupCollapsed(debug.SETUP_ENVIRONMENT);
console.log(this.env);
console.groupEnd();
}
}
/**
* Get active experiments
* @returns {Array<Experiment>}
*/
get experiments(): Array<Experiment> {
return this._experiments || new Array<Experiment>();
}
/**
* Set active experiments
* @param value Array<Experiment>
*/
set experiments(value: Array<Experiment>) {
this._experiments = value || new Array<Experiment>();
}
/**
* Get active experiments
* @returns {Array<Variation>}
*/
get variations(): Array<Variation> {
return this.experiments.map((experiment) => experiment.variations)
.reduce((acc, val) => acc.concat(val), []);
}
/**
* Get all components
* @returns any
*/
get components(): any {
return deepmerge.all(this.variations.map(this.extractVariationComponents.bind(this)));
}
/**
* Extract variation components
* @param variation
* @returns {array}
*/
extractVariationComponents(variation: Variation) {
const experiment = this.experiments.find(item => item.id === variation.experimentId);
if(!experiment) {
console.error(errors.QUALIFICATION_EXPERIMENT_NOT_FOUND);
return [];
}
const bucket = this.getExperimentBucket(experiment);
for (let component of Object.values(variation.components)) {
component.bucket = bucket;
}
return variation.components;
}
/**
* Generate visitor UUID
* @returns {string}
*/
static generateUUID() {
let timestamp = Date.now();
let random = Math.floor(Math.random() * 900000000) + 100000000;
return 'V-' + timestamp + '-' + random;
}
/**
* Bucket number generator from 0 to 100
* @returns {number}
*/
static generateTrafficBucket() {
return Math.round(Math.random() * 100);
}
/**
* Get query parameters from window.Location object if needed
* @param url
* @returns {object}
*/
static extractQueryParams(url: string = '') {
let params: any = {};
const queryParams = Object(url.substr(1).split('&').filter(item => item.length));
for (let i = 0; i < queryParams.length; i++) {
let [key, value] = queryParams[i].split('=');
if (!isNaN(value)) {
params[key] = Number(value);
} else if (value === 'true' || value === 'false') {
params[key] = value === 'true';
} else {
params[key] = value;
}
}
return params;
}
/**
* Initialize testing:
* use this when loading the page for the first time
*/
async initialize(config?: Partial<Environment>, callback?: Function) {
this._options.debug && console.time('[BENCHMARK] Variate Initialization');
this.env = config || new Environment;
this.qualify();
this.isReady = true;
this._options.debug && console.timeEnd('[BENCHMARK] Variate Initialization');
if (this._options.tracking.enabled && this._options.pageview) {
await this.track('Pageview', EventTypes.PAGEVIEW);
}
if (typeof callback == 'function') {
callback();
}
}
/**
* Qualify visitor for experiments
*/
qualify() {
// 1. Get experiments based on bucket
let experiments = this.loadExperiments();
// 2. Check view targeting (URL)
experiments = experiments.filter((experiment) => this.filterWithView(experiment));
// 3. Check audience targeting
experiments = experiments.filter((experiment) => this.filterWithSegment(experiment));
// 3. Reduce to 1 variation per experiment to prepare for display
experiments = experiments.map((experiment) => this.filterVariationsWithBucket(experiment));
this.experiments = experiments;
this.isQualified = true;
}
/**
* Go through experiments and load only the relevant experiments
* based on visitor main bucket and if query params are present
* @returns {Array}
*/
loadExperiments(): Experiment[] {
let experiments: Experiment[] = Object.values(get(this.config, 'experiments', {
default: []
}));
if (this._options.debug) {
console.groupCollapsed(debug.LOADING_EXPERIMENTS);
experiments.forEach((experiment) => {
console.groupCollapsed(`${experiment.name} (${experiment.id})`);
console.log(`URL: https://variate.ca/sites/${experiment.siteId}/experiments/${experiment.id}`);
console.groupEnd();
});
console.groupEnd();
}
return experiments;
}
/**
* Go through each experiment and filters their variation to
* reduce to 1 based on visitor bucket
* @param experiment
* @returns {boolean}
*/
filterVariationsWithBucket(experiment: Experiment) {
const bucket = this.getExperimentBucket(experiment, true);
let variations: Variation[] = Object.values(get(experiment, 'variations'));
variations = variations.filter((variation: Variation) => {
return bucket >= get(variation, 'trafficAllocation.min')
&& bucket <= get(variation, 'trafficAllocation.max');
});
variations.map((variation: Variation) => {
variation.experimentId = experiment.id;
return variation;
});
experiment.variations = variations;
return experiment;
}
/**
* Check visitor view options and check if qualified for given experiment
* @param experiment
* @returns {boolean}
*/
filterWithView(experiment: Experiment) {
let isQualifiedForView = this.qualifyView(experiment);
if (this._options.debug) {
console.groupCollapsed(
isQualifiedForView ? debug.VIEW_QUALIFIED : debug.VIEW_NOT_QUALIFIED
);
console.log(`Experiment: #${experiment.id} - ${experiment.name}`);
console.log(`Experiment URL: https://variate.ca/sites/${experiment.siteId}/experiments/${experiment.id}`);
console.log(`Current URL: ${get(this.env, 'view.path')}`);
console.log(`Current Query Params: `, get(this.env, 'view.query'));
console.log(experiment);
console.groupEnd();
}
return isQualifiedForView;
}
/**
* Check visitor audience options and check if qualified for given experiment
* @param experiment
* @returns {boolean}
*/
filterWithSegment(experiment: Experiment) {
let isQualifiedForAudience = this.qualifySegment(experiment);
if (this._options.debug) {
console.groupCollapsed(
isQualifiedForAudience ? debug.SEGMENT_QUALIFIED : debug.SEGMENT_NOT_QUALIFIED
);
console.log(`Experiment: #${experiment.id} - ${experiment.name}`);
console.log(`Experiment URL: https://variate.ca/sites/${experiment.siteId}/experiments/${experiment.id}`);
console.log('Rules: ', get(experiment, 'targeting.segments'));
console.log('Data: ', get(this.env, 'targeting'));
console.groupEnd();
}
return isQualifiedForAudience;
}
/**
* Qualify visitor for given experiment based on current view (URL)
* @param experiment
* @returns {boolean}
*/
qualifyView(experiment: Object) {
const path = get(this.env, 'view.path');
const url = get(this.env, 'view.url');
const excludes = get(experiment, 'targeting.views.exclude');
for (let i = 0; i < excludes.length; i++) {
if (path.match(excludes[i]) || url.match(excludes[i])) {
return false;
}
}
const includes = get(experiment, 'targeting.views.include');
if (includes != null && includes.length > 0) {
if (includes[0] === '*') {
return true;
}
for (let i = 0; i < includes.length; i++) {
if (path.match(includes[i]) || url.match(includes[i])) {
return true;
}
}
}
return false;
}
/**
* Qualify visitor for given experiment based on audience
* @param experiment
* @returns {boolean}
*/
qualifySegment(experiment: Object) {
const rules = get(experiment, 'targeting.segments', {
default: true
});
const data = get(this.env, 'targeting', {});
return jsonLogic.apply(rules, data);
}
/**
* Retrieve or generate visitor UUID
*/
getUUID() {
let uuid = env.inBrowser && localStorage.getItem(LOCAL_STORAGE_UUID_KEY);
if (!uuid) {
uuid = Variate.generateUUID();
env.inBrowser && localStorage.setItem(LOCAL_STORAGE_UUID_KEY, uuid);
}
return uuid;
}
/**
* Get a traffic bucket for a given experiment
* @param experiment
* @param qualify
* @returns {number}
*/
getExperimentBucket(experiment: Experiment, qualify = false) {
try {
let bucket = localStorage.getItem(LOCAL_STORAGE_TRAFFIC_BUCKETS_KEY)
? JSON.parse(localStorage.getItem(LOCAL_STORAGE_TRAFFIC_BUCKETS_KEY) || '')
: {};
if (!bucket[experiment.id]) {
bucket[experiment.id] = Variate.generateTrafficBucket();
localStorage.setItem(LOCAL_STORAGE_TRAFFIC_BUCKETS_KEY, JSON.stringify(bucket));
if (this._options.tracking.enabled && qualify && !experiment.manualQualification) {
const [variation]: Variation[] = Object.values(get(experiment, 'variations', {
default: {}
}));
this.track({
name: 'Qualify',
type: EventTypes.QUALIFY,
value: {
experimentId: experiment.id,
variationId: variation.id
}
});
}
}
return bucket[experiment.id];
} catch(error) {
console.error(error);
return 0;
}
}
/**
* Should the query params be forced?
* @returns {boolean}
*/
shouldForceQueryParams() {
if (Object.keys(get(this.env, 'view.query' || {})).length && get(this.env, 'view.query.force', {
default: false
})) {
if (this._options.debug) {
console.groupCollapsed(debug.QUERY_PARAMS);
console.log(get(this.env, 'view.query') || {});
console.groupEnd();
}
return true;
}
return false;
}
/**
* Track an event to Variate Reporting API
* @param args
* @returns {boolean}
*/
async track(...args: any): Promise<boolean> {
let event = this.extractTrackingArguments(args);
if (!this._options.tracking.enabled) {
this._options.debug && console.info(debug.TRACKING_DISABLED);
return false;
}
try {
let trackers = [];
if (this._options.tracking.default) {
trackers.push(this.report(event));
}
if (this._options.tracking.reporter) {
if (typeof this._options.tracking.reporter !== 'function') {
throw new Error(errors.TRACKING_INVALID_REPORTER);
}
trackers.push(this._options.tracking.reporter(event));
}
return await Promise.all(trackers).then((response) => {
let wasTracked: boolean = response.every(item => item);
if (this._options.debug) {
console.groupCollapsed(wasTracked ? debug.TRACKING_EVENT_TRACKED : debug.TRACKING_EVENT_NOT_TRACKED, event.type);
console.log(response);
console.log(event);
console.groupEnd();
}
return wasTracked;
});
} catch(e) {
this._options.debug && console.error(e);
return false;
}
}
extractTrackingArguments(args?: any[]) {
if (typeof args === 'undefined' || !args.length) {
throw new Error(errors.REQUIRED_PARAMETERS.replace('%s', 'track()'));
}
const siteId = get(this.options, 'config.siteId', {
default: ''
});
if (typeof args[0] === 'string') {
const [name, type, value] = args;
return new Event({siteId, name, type, value, context: this.env});
}
const {name, type, value} = args[0];
return new Event({siteId, name, type, value, context: this.env});
}
report(event: Event) {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.open('POST', 'https://reporting.variate.ca/track', true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onload = function() {
/* istanbul ignore next */
if (this.status >= 200 && this.status < 300) {
resolve(true);
} else {
reject(false);
}
};
xhr.onerror = function () {
/* istanbul ignore next */
reject(false);
};
xhr.send(event.toJson());
});
}
}
export default Variate;