forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
360 lines (326 loc) · 10.8 KB
/
Copy pathindex.ts
File metadata and controls
360 lines (326 loc) · 10.8 KB
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
/*
* Copyright (c) 2021 Snowplow Analytics Ltd, 2010 Anthon Pang
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import { isValueInArray, BrowserPlugin } from '@snowplow/browser-tracker-core';
import {
Experiment,
OptimizelySummary,
State,
Variation,
Visitor,
VisitorAudience,
VisitorDimension,
} from './contexts';
declare global {
interface Window {
optimizely: {
data: { [key: string]: any };
};
}
}
/**
* Adds classic Opimizely context to events
*
* @param summary - Add summary context
* @param experiments - Add experiments context
* @param states - Add states context
* @param variations - Add variations context
* @param visitor - Add visitor context
* @param audiences - Add audiences context
* @param dimensions - Add dimensions context
*/
export function OptimizelyPlugin(
summary: boolean = true,
experiments: boolean = true,
states: boolean = true,
variations: boolean = true,
visitor: boolean = true,
audiences: boolean = true,
dimensions: boolean = true
): BrowserPlugin {
/**
* Check that *both* optimizely and optimizely.data exist and return
* optimizely.data.property
*
* @param property - optimizely data property
* @param snd - optional nested property
*/
function getOptimizelyData(property: string, snd?: string) {
const windowOptimizelyAlias = window.optimizely;
let data;
if (windowOptimizelyAlias && windowOptimizelyAlias.data) {
data = windowOptimizelyAlias.data[property];
if (typeof snd !== 'undefined' && data !== undefined) {
data = data[snd];
}
}
return data;
}
/**
* Get data for Optimizely "lite" contexts - active experiments on current page
*
* @returns Array content of lite optimizely lite context
*/
function getOptimizelySummary(): OptimizelySummary[] {
var state = getOptimizelyData('state');
var experiments = getOptimizelyData('experiments');
if (!state || !experiments) return [];
return (
state.activeExperiments?.map(function (activeExperiment: string) {
var current = experiments[activeExperiment];
return {
activeExperimentId: activeExperiment.toString(),
// User can be only in one variation (don't know why is this array)
variation: state.variationIdsMap[activeExperiment][0].toString(),
conditional: current && current.conditional,
manual: current && current.manual,
name: current && current.name,
};
}) ?? []
);
}
/**
* Creates a context from the window['optimizely'].data.experiments object
*
* @returns Array Experiment contexts
*/
function getOptimizelyExperimentContexts() {
var experiments = getOptimizelyData('experiments');
if (experiments) {
var contexts = [];
for (var key in experiments) {
if (experiments.hasOwnProperty(key)) {
var context: Experiment = {};
context.id = key;
var experiment = experiments[key];
context.code = experiment.code;
context.manual = experiment.manual;
context.conditional = experiment.conditional;
context.name = experiment.name;
context.variationIds = experiment.variation_ids;
contexts.push({
schema: 'iglu:com.optimizely/experiment/jsonschema/1-0-0',
data: context,
});
}
}
return contexts;
}
return [];
}
/**
* Creates a context from the window['optimizely'].data.state object
*
* @returns Array State contexts
*/
function getOptimizelyStateContexts() {
var experimentIds = [];
var experiments = getOptimizelyData('experiments');
if (experiments) {
for (var key in experiments) {
if (experiments.hasOwnProperty(key)) {
experimentIds.push(key);
}
}
}
var state = getOptimizelyData('state');
if (state) {
var contexts = [];
var activeExperiments = state.activeExperiments || [];
for (var i = 0; i < experimentIds.length; i++) {
var experimentId = experimentIds[i];
var context: State = {};
context.experimentId = experimentId;
context.isActive = isValueInArray(experimentIds[i], activeExperiments);
var variationMap = state.variationMap || {};
context.variationIndex = variationMap[experimentId];
var variationNamesMap = state.variationNamesMap || {};
context.variationName = variationNamesMap[experimentId];
var variationIdsMap = state.variationIdsMap || {};
if (variationIdsMap[experimentId] && variationIdsMap[experimentId].length === 1) {
context.variationId = variationIdsMap[experimentId][0];
}
contexts.push({
schema: 'iglu:com.optimizely/state/jsonschema/1-0-0',
data: context,
});
}
return contexts;
}
return [];
}
/**
* Creates a context from the window['optimizely'].data.variations object
*
* @returns Array Variation contexts
*/
function getOptimizelyVariationContexts() {
var variations = getOptimizelyData('variations');
if (variations) {
var contexts = [];
for (var key in variations) {
if (variations.hasOwnProperty(key)) {
var context: Variation = {};
context.id = key;
var variation = variations[key];
context.name = variation.name;
context.code = variation.code;
contexts.push({
schema: 'iglu:com.optimizely/variation/jsonschema/1-0-0',
data: context,
});
}
}
return contexts;
}
return [];
}
/**
* Creates a context from the window['optimizely'].data.visitor object
*
* @returns object Visitor context
*/
function getOptimizelyVisitorContexts() {
var visitor = getOptimizelyData('visitor');
if (visitor) {
var context: Visitor = {};
context.browser = visitor.browser;
context.browserVersion = visitor.browserVersion;
context.device = visitor.device;
context.deviceType = visitor.deviceType;
context.ip = visitor.ip;
var platform = visitor.platform || {};
context.platformId = platform.id;
context.platformVersion = platform.version;
var location = visitor.location || {};
context.locationCity = location.city;
context.locationRegion = location.region;
context.locationCountry = location.country;
context.mobile = visitor.mobile;
context.mobileId = visitor.mobileId;
context.referrer = visitor.referrer;
context.os = visitor.os;
return [
{
schema: 'iglu:com.optimizely/visitor/jsonschema/1-0-0',
data: context,
},
];
}
return [];
}
/**
* Creates a context from the window['optimizely'].data.visitor.audiences object
*
* @returns Array VisitorAudience contexts
*/
function getOptimizelyAudienceContexts() {
var audienceIds = getOptimizelyData('visitor', 'audiences');
if (audienceIds) {
var contexts = [];
for (var key in audienceIds) {
if (audienceIds.hasOwnProperty(key)) {
var context: VisitorAudience = { id: key, isMember: audienceIds[key] };
contexts.push({
schema: 'iglu:com.optimizely/visitor_audience/jsonschema/1-0-0',
data: context,
});
}
}
return contexts;
}
return [];
}
/**
* Creates a context from the window['optimizely'].data.visitor.dimensions object
*
* @returns Array VisitorDimension contexts
*/
function getOptimizelyDimensionContexts() {
var dimensionIds = getOptimizelyData('visitor', 'dimensions');
if (dimensionIds) {
var contexts = [];
for (var key in dimensionIds) {
if (dimensionIds.hasOwnProperty(key)) {
var context: VisitorDimension = { id: key, value: dimensionIds[key] };
contexts.push({
schema: 'iglu:com.optimizely/visitor_dimension/jsonschema/1-0-0',
data: context,
});
}
}
return contexts;
}
return [];
}
/**
* Creates an Optimizely lite context containing only data required to join
* event to experiment data
*
* @returns Array of custom contexts
*/
function getOptimizelySummaryContexts() {
return getOptimizelySummary().map(function (experiment) {
return {
schema: 'iglu:com.optimizely.snowplow/optimizely_summary/jsonschema/1-0-0',
data: experiment,
};
});
}
return {
contexts: () => {
const combinedContexts = [];
// Add Optimizely Contexts
if (window.optimizely) {
if (summary) {
combinedContexts.push(...getOptimizelySummaryContexts());
}
if (experiments) {
combinedContexts.push(...getOptimizelyExperimentContexts());
}
if (states) {
combinedContexts.push(...getOptimizelyStateContexts());
}
if (variations) {
combinedContexts.push(...getOptimizelyVariationContexts());
}
if (visitor) {
combinedContexts.push(...getOptimizelyVisitorContexts());
}
if (audiences) {
combinedContexts.push(...getOptimizelyAudienceContexts());
}
if (dimensions) {
combinedContexts.push(...getOptimizelyDimensionContexts());
}
}
return combinedContexts;
},
};
}