summaryrefslogtreecommitdiff
path: root/shared/metrics-8/src/index.ts
blob: 59510b0a7f806a2f9c77a2bf439709607b82818c (plain)
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
572
573
574
575
576
577
578
import type { Logger, LoggerFactory } from '@amp/web-apps-logger';
import { getPWADisplayMode, PWADisplayMode } from '@amp/web-apps-utils/src';
import type {
    LintedMetricsEvent,
    MetricsData,
    MetricsFields,
} from '@jet/environment/types/metrics';
import type { PageMetrics } from '@jet/environment/types/metrics';

import type { Opt } from '@jet/environment';

import {
    MetricsFieldsAggregator,
    type MetricsFieldsContext,
    type MetricsFieldsProvider,
    MetricsPipeline,
    PageMetricsPresenter,
    type MetricsEventRecorder,
} from '@jet/engine';

import {
    CompositeEventRecorder,
    type FunnelKitConfig,
    FunnelKitRecorder,
    LoggingEventRecorder,
    type MetricKitConfig,
    MetricsKitRecorder,
    VoidEventRecorder,
} from './recorder';

import type {
    MetricsEnterEventType,
    MetricsExitEventType,
    SystemLoggerLevel,
} from './types';

import type {
    EnvironmentDelegates,
    WebDelegates as WebDelegatesInstance,
} from '@amp-metrics/mt-metricskit-delegates-web';
import type { ClickstreamProcessor as ClickstreamProcessorInstance } from '@amp-metrics/mt-metricskit-processor-clickstream';
import { Impressions } from './impressions';
import { buildMakeAjaxRequest } from './utils/metrics-dev-console/metrics-dev-network';
import { ImpressionFieldProvider } from './impression-provider';
import { ImpressionSnapshotFieldProvider } from './impression-snapshot-provider';
import type { ImpressionSettings } from './impressions/types';

const CONTEXT_NAME = 'metrics';

export type MetricsProvider = {
    provider: MetricsFieldsProvider;
    request: string;
};

export interface MetricSettings {
    shouldEnableImpressions?: () => boolean;
    shouldEnableFunnelKit: () => boolean;
    getConsumerId: () => Promise<string>;
    suppressMetricsKit?: boolean;
    impressions?: ImpressionSettings;
}

interface InitializedMetrics {
    clickstream: ClickstreamProcessorInstance;
    webDelegate: WebDelegatesInstance;
}

interface Config {
    baseFields: {
        appName: string;
        delegateApp: string;
        appVersion: string;
        resourceRevNum: string;
        storageObject?: 'sessionStorage' | 'localStorage';
    };
    clickstream: MetricKitConfig;

    /**
     * `FunnelKit` configuration
     *
     * Can be `undefined` to disable the `FunnelKit` recorder entirely
     */
    funnel?: FunnelKitConfig;

    initialURL?: string | null;
}

type ClickstreamProcessorClass = typeof ClickstreamProcessorInstance;
type WebDelegatesClass = typeof WebDelegatesInstance;

export class Metrics {
    private readonly log: Logger;
    private impressions: InstanceType<typeof Impressions> | undefined;

    // Properties asynchronously set in the `init` function
    private ClickstreamProcessor!: ClickstreamProcessorClass;
    private WebDelegates!: WebDelegatesClass;

    private readonly metricsKitRecorder?: MetricsKitRecorder;
    private readonly funnelKitRecorder?: FunnelKitRecorder;
    private firstEnterRecorded: boolean = false;
    private funnelKit: ClickstreamProcessorInstance | undefined;
    private config: Config;

    public readonly metricsPipeline: MetricsPipeline;
    public currentPageMetrics: Opt<PageMetricsPresenter>;

    static load(
        loggerFactory: LoggerFactory,
        context: Map<string, unknown>,
        processEvent: (fields: MetricsFields) => Promise<LintedMetricsEvent>,
        config: Config,
        listofMetricProviders: MetricsProvider[],
        settings: MetricSettings,
    ): Metrics {
        const {
            getConsumerId,
            shouldEnableFunnelKit,
            suppressMetricsKit = false,
        } = settings;

        const log = loggerFactory.loggerFor('Metrics');

        // server
        if (typeof window === 'undefined' || suppressMetricsKit) {
            const recorder = new VoidEventRecorder();
            const metricsPipeline = new MetricsPipeline({
                aggregator: new MetricsFieldsAggregator(),
                linter: {
                    async processEvent(
                        fields: MetricsFields,
                    ): Promise<LintedMetricsEvent> {
                        return { fields };
                    },
                },
                recorder,
            });

            return new Metrics(log, metricsPipeline, config);
        }

        config.initialURL = window.location.href;

        const aggregator = setupAggregators(listofMetricProviders, context);

        let impressions: InstanceType<typeof Impressions> | undefined =
            undefined;
        if (settings.shouldEnableImpressions?.() ?? false) {
            impressions = new Impressions(
                loggerFactory,
                context,
                settings?.impressions,
            );
        }

        const metricsKitRecorder = new MetricsKitRecorder(
            loggerFactory,
            config.clickstream,
            impressions,
        );

        const recorders: MetricsEventRecorder[] = [
            new LoggingEventRecorder(loggerFactory),
            metricsKitRecorder,
        ];

        const funnelKitRecorder = config.funnel
            ? new FunnelKitRecorder(loggerFactory, config.funnel, impressions)
            : undefined;
        if (funnelKitRecorder) {
            recorders.push(funnelKitRecorder);
        }

        let recorder = new CompositeEventRecorder(recorders);

        const metricsPipeline = new MetricsPipeline({
            aggregator,
            linter: {
                processEvent: async (fields: MetricsFields) => {
                    const lintedEvent = await processEvent(fields);

                    // `dsId` is added by the LintMetricsEventIntentController in music-ui-js, but is not needed and erroneous for web
                    // https://github.pie.apple.com/music/music-ui-js/blob/50cbae83deccffad37e5b617394ea30b7e082660/src/metrics/LintMetricsEventIntentController.ts#L19-L22
                    if (lintedEvent.fields?.dsId) {
                        delete lintedEvent.fields.dsId;
                    }

                    // Consumer ID needs to be added at the time of processEvent because the ConsumerID is available after Sign In and not before sign In
                    // Using it through the delegates does not have ability to fetch it dynamically
                    const consumerId = await getConsumerId();
                    if (consumerId) {
                        lintedEvent.fields.consumerId = consumerId;
                    }

                    return lintedEvent;
                },
            },
            recorder,
        });

        const metricsInstance = new Metrics(
            log,
            metricsPipeline,
            config,
            metricsKitRecorder,
            funnelKitRecorder,
            impressions,
        );
        metricsInstance.watchEnterAndExit();

        (async () => {
            try {
                const metricsDependencies = [
                    import('@amp-metrics/mt-metricskit-processor-clickstream'),
                    import('@amp-metrics/mt-metricskit-delegates-web'),
                    impressions
                        ? import('@amp-metrics/mt-impressions-observer')
                        : undefined,
                ] as const;

                const [
                    { ClickstreamProcessor },
                    { WebDelegates },
                    impressionsDependency,
                ] = await Promise.all(metricsDependencies);

                metricsInstance.onDependenciesLoaded(
                    ClickstreamProcessor,
                    WebDelegates,
                );

                const { clickstream, webDelegate } = setupMtkit(
                    ClickstreamProcessor,
                    WebDelegates,
                    config,
                );

                if (impressions && impressionsDependency) {
                    const { newInstanceWithMetricsConfig } =
                        impressionsDependency;
                    impressions.init(newInstanceWithMetricsConfig, clickstream);
                }

                const eventRecorder = webDelegate.eventRecorder;
                metricsKitRecorder.setupEventRecorder(
                    eventRecorder,
                    clickstream,
                );

                if (shouldEnableFunnelKit()) {
                    metricsInstance.enableFunnelKit();
                }
                log.info('Metricskit loaded');
            } catch (e) {
                log.warn('Metricskit failed to load', e);
            }
        })();

        // Save Metrics Instance on Context before Returning
        context.set(CONTEXT_NAME, metricsInstance);

        return metricsInstance;
    }

    private constructor(
        log: Logger,
        metricsPipeline: MetricsPipeline,
        config: Config,
        metricsKitRecorder?: MetricsKitRecorder,
        funnelKitRecorder?: FunnelKitRecorder,
        impressions?: InstanceType<typeof Impressions>,
    ) {
        this.log = log;
        this.metricsPipeline = metricsPipeline;
        this.metricsKitRecorder = metricsKitRecorder;
        this.funnelKitRecorder = funnelKitRecorder;
        this.config = config;
        this.impressions = impressions;
    }

    /**
     * Metrics code that should get called before a page changes.
     */
    willPageTransition(): void {
        this.impressions?.setCurrentSnapshot();
    }

    async didEnterPage<
        T extends { pageMetrics: PageMetrics; canonicalURL: string },
    >(page: T | null): Promise<void> {
        if (this.currentPageMetrics) {
            await this.currentPageMetrics.didLeavePage();
            this.currentPageMetrics = null;
        }

        if (page?.pageMetrics) {
            this.currentPageMetrics = new PageMetricsPresenter(
                this.metricsPipeline,
            );
            this.currentPageMetrics.pageMetrics = page.pageMetrics;
            await this.currentPageMetrics.didEnterPage();
        } else {
            this.log.warn('No pageMetrics', page);
        }

        if (!this.firstEnterRecorded) {
            const event = document.referrer?.length > 0 ? 'link' : 'launch';
            this.enter(event, { openUrl: page?.canonicalURL });
            this.firstEnterRecorded = true;
        }
    }

    async enter(type: MetricsEnterEventType, fields?: Opt<MetricsFields>) {
        let openUrl: string = window.location.href;
        let pwaDisplayMode: PWADisplayMode | null = null;

        if (fields?.openUrl) {
            openUrl = fields?.openUrl as string;
        }

        if (type === 'launch' && this.config.initialURL) {
            openUrl = this.config.initialURL;
            // Clearing the initial URL as we don't need this post launch event
            this.config.initialURL = null;
            pwaDisplayMode = getPWADisplayMode();
        }

        this.recordCustomEvent({
            eventType: 'enter',
            extRefUrl: document.referrer ?? '',
            refUrl: document.referrer ?? '',
            openUrl,
            type,
            // only add buildFlavor property if coming from the PWA (represented by 'standalone' in the manifest.json) or android app
            ...(pwaDisplayMode === PWADisplayMode.STANDALONE ||
            pwaDisplayMode === PWADisplayMode.TWA
                ? { buildFlavor: pwaDisplayMode }
                : {}),
        });
    }

    async exit(type: MetricsExitEventType, _fields?: Opt<MetricsFields>) {
        this.recordCustomEvent({
            eventType: 'exit',
            type,
        });
    }

    async pageTransition() {
        this.log.info('triggered metrics for page transition');
        if (this.impressions) {
            this.impressions.setCurrentSnapshot();
        }
    }

    private watchEnterAndExit() {
        document.addEventListener(
            'visibilitychange',
            this.onVisibilityChange.bind(this),
        );
    }

    async onVisibilityChange() {
        if (document.visibilityState === 'visible') {
            this.enter('taskSwitch');
        } else {
            this.exit('taskSwitch');
        }
    }

    async processEvent(metricsFields: MetricsFields) {
        const metricsData: MetricsData = {
            excludingFields: [],
            includingFields: [],
            shouldFlush: false,
            fields: metricsFields,
        };
        const context: MetricsFieldsContext = {};
        await this.metricsPipeline.process(metricsData, context);
    }

    async recordCustomEvent(fields?: Opt<MetricsFields>) {
        await this.processEvent({
            ...this.currentPageMetrics?.pageMetrics?.pageFields,
            ...fields,
        });
    }

    /**
     * Sets up FunnelKit for clickstream events
     */
    private setupFunnelKit(): void {
        if (!this.config.funnel) {
            this.log.warn(
                'Tried to set up `FunnelKit` but no config was provided',
            );
            return;
        }

        const { topic } = this.config.funnel;
        const { clickstream, webDelegate } = setupStarkit(
            this.ClickstreamProcessor,
            this.WebDelegates,
            this.config.funnel,
            this.config.baseFields,
        );
        clickstream.config.setDebugSource(null);

        // Disable PII fields and cookies for the funnel topic
        webDelegate.eventRecorder.setProperties?.(topic, {
            anonymous: true,
        });

        this.funnelKitRecorder?.setupEventRecorder(clickstream);
        this.funnelKit = clickstream;
    }

    private onDependenciesLoaded(
        ClickstreamProcessor: ClickstreamProcessorClass,
        webDelegate: WebDelegatesClass,
    ): void {
        this.ClickstreamProcessor = ClickstreamProcessor;
        this.WebDelegates = webDelegate;
    }

    disableMetrics(): void {
        this.metricsKitRecorder?.disable();
    }

    enableMetrics(): void {
        this.metricsKitRecorder?.enable();
    }

    enableFunnelKit(): void {
        if (!this.funnelKit) {
            this.setupFunnelKit();
        }
        this.funnelKitRecorder?.enableFunnelKit();
    }

    disableFunnelKit(): void {
        this.funnelKitRecorder?.disableFunnelKit();
    }
}

/**
 * Shared setup for *kit, namely MetricsKit and FunnelKit
 */
function setupStarkit(
    ClickstreamProcessor: ClickstreamProcessorClass,
    WebDelegates: WebDelegatesClass,
    setupConfig: FunnelKitConfig | MetricKitConfig,
    config: Config['baseFields'],
): InitializedMetrics {
    const { topic } = setupConfig;
    const webDelegate = new WebDelegates(topic);

    if (import.meta.env.APP_SCOPE === 'internal') {
        try {
            // Temporary setup to get Network Dependency
            const networkCopy = {
                ...Object.getPrototypeOf(webDelegate.config.network),
            };

            const makeAjaxRequest = buildMakeAjaxRequest(networkCopy, topic);

            webDelegate.setNetwork({
                makeAjaxRequest,
            });
        } catch (e) {
            console.warn('failed to setup flush logger');
        }
    }

    const clickstream = new ClickstreamProcessor(webDelegate);

    const systemLoggerLevel: SystemLoggerLevel = 'none';
    clickstream.system.logger.setLevel(systemLoggerLevel);
    clickstream.init();

    setupMtkitDelegates(clickstream, setupConfig, config);
    return { clickstream, webDelegate };
}

/**
 * MetricsKit setup for main clickstream events
 */
function setupMtkit(
    ClickstreamProcessor: ClickstreamProcessorClass,
    webDelegates: WebDelegatesClass,
    config: Config,
): InitializedMetrics {
    const mtkit = setupStarkit(
        ClickstreamProcessor,
        webDelegates,
        config.clickstream,
        config.baseFields,
    );
    return mtkit;
}

function setupMtkitDelegates(
    mtkit: ClickstreamProcessorInstance,
    setupConfig: FunnelKitConfig | MetricKitConfig,
    config: Config['baseFields'],
): void {
    const { appName, delegateApp, appVersion, resourceRevNum, storageObject } =
        config;
    const additionalDelegates: EnvironmentDelegates = {
        app: () => appName,
        appVersion: () => appVersion,
        delegateApp: () => delegateApp,
        resourceRevNum: () => resourceRevNum,
    };

    if (storageObject === 'sessionStorage') {
        additionalDelegates['localStorageObject'] = () => {
            return sessionStorage;
        };
    }

    mtkit.system.environment.setDelegate(additionalDelegates);

    if (Array.isArray(setupConfig.constraintProfiles)) {
        mtkit.config.setDelegate({
            constraintProfiles: () => setupConfig.constraintProfiles,
        });
    }
}

function setupAggregators(
    metricsFieldsProviders: MetricsProvider[],
    context: Map<string, unknown>,
): MetricsFieldsAggregator {
    const aggregator = MetricsFieldsAggregator.makeDefaultAggregator();

    aggregator.addOptInProvider(
        new ImpressionFieldProvider(context),
        'impressions',
    );

    aggregator.addOptInProvider(
        new ImpressionSnapshotFieldProvider(context),
        'impressionsSnapshot',
    );

    metricsFieldsProviders.forEach((metricsFields) => {
        aggregator.addOptOutProvider(
            metricsFields.provider,
            metricsFields.request,
        );
    });

    return aggregator;
}

/**
 * Gets the current Metrics instance from the Svelte context.
 *
 * @return metrics The current instance of Metrics
 */

export function generateMetricsContextGetter(
    getContext: (context: string) => unknown,
): () => Metrics {
    return function getMetrics(): Metrics {
        const metrics = getContext(CONTEXT_NAME) as Metrics | undefined;

        if (!metrics) {
            throw new Error('getMetrics called before Metrics.load');
        }

        return metrics;
    };
}

export * from './impressions/index';
export * from './impressions/utils/svelte/impressions-svelte-action';