utneque 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.editorconfig +10 -0
- package/.eslintrc.isomorphic.js +26 -0
- package/.eslintrc.js +86 -0
- package/.gitattributes +1 -0
- package/.github/workflows/ci.yml +33 -0
- package/.github/workflows/deploy-browser-cdn-candidate.yml +51 -0
- package/.github/workflows/deploy-releases.yml +178 -0
- package/.nvmrc +1 -0
- package/.prettierrc +7 -0
- package/.vscode/extensions.json +3 -0
- package/.vscode/launch.json +81 -0
- package/.vscode/settings.json +41 -0
- package/.yarn/plugins/@yarnpkg/plugin-constraints.cjs +52 -0
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +546 -0
- package/.yarn/plugins/@yarnpkg/plugin-typescript.cjs +9 -0
- package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
- package/.yarn/releases/yarn-3.4.1.cjs +873 -0
- package/.yarnrc.yml +15 -0
- package/jest.config.js +18 -0
- package/package.json +59 -0
- package/packages/browser/.eslintrc.js +9 -0
- package/packages/browser/.lintstagedrc.js +1 -0
- package/packages/browser/ARCHITECTURE.md +48 -0
- package/packages/browser/LICENSE.MD +45 -0
- package/packages/browser/Makefile +64 -0
- package/packages/browser/README.md +227 -0
- package/packages/browser/e2e-tests/local-server.ts +28 -0
- package/packages/browser/e2e-tests/performance/ajs-perf-browser.test.ts +75 -0
- package/packages/browser/jest.config.js +15 -0
- package/packages/browser/jest.setup.js +10 -0
- package/packages/browser/package.json +106 -0
- package/packages/browser/qa/README.md +41 -0
- package/packages/browser/qa/__fixtures__/snippets.ts +148 -0
- package/packages/browser/qa/__tests__/backwards-compatibility.test.ts +180 -0
- package/packages/browser/qa/__tests__/destinations.test.ts +101 -0
- package/packages/browser/qa/__tests__/smoke.test.ts +170 -0
- package/packages/browser/qa/lib/benchmark.ts +36 -0
- package/packages/browser/qa/lib/browser.ts +28 -0
- package/packages/browser/qa/lib/jest-reporter.js +57 -0
- package/packages/browser/qa/lib/runner.ts +142 -0
- package/packages/browser/qa/lib/schema.ts +59 -0
- package/packages/browser/qa/lib/server.ts +54 -0
- package/packages/browser/qa/lib/stats.ts +52 -0
- package/packages/browser/scripts/build-prep.sh +7 -0
- package/packages/browser/scripts/ci.sh +15 -0
- package/packages/browser/scripts/release.js +121 -0
- package/packages/browser/scripts/release.sh +9 -0
- package/packages/browser/scripts/run.sh +8 -0
- package/packages/browser/src/browser/__tests__/analytics-lazy-init.integration.test.ts +51 -0
- package/packages/browser/src/browser/__tests__/analytics-pre-init.integration.test.ts +440 -0
- package/packages/browser/src/browser/__tests__/anon-id-and-reset.integration.test.ts +73 -0
- package/packages/browser/src/browser/__tests__/cdn.test.ts +53 -0
- package/packages/browser/src/browser/__tests__/csp-detection.test.ts +140 -0
- package/packages/browser/src/browser/__tests__/inspector.integration.test.ts +121 -0
- package/packages/browser/src/browser/__tests__/integration.test.ts +1213 -0
- package/packages/browser/src/browser/__tests__/integrations.integration.test.ts +260 -0
- package/packages/browser/src/browser/__tests__/page-enrichment.integration.test.ts +216 -0
- package/packages/browser/src/browser/__tests__/query-string.integration.test.ts +116 -0
- package/packages/browser/src/browser/__tests__/standalone-analytics.test.ts +303 -0
- package/packages/browser/src/browser/__tests__/standalone-errors.test.ts +136 -0
- package/packages/browser/src/browser/__tests__/standalone.test.ts +97 -0
- package/packages/browser/src/browser/__tests__/typedef-tests/analytics-browser.ts +150 -0
- package/packages/browser/src/browser/__tests__/update-cdn-settings.test.ts +71 -0
- package/packages/browser/src/browser/browser-umd.ts +19 -0
- package/packages/browser/src/browser/index.ts +486 -0
- package/packages/browser/src/browser/standalone-analytics.ts +62 -0
- package/packages/browser/src/browser/standalone-interface.ts +11 -0
- package/packages/browser/src/browser/standalone.ts +92 -0
- package/packages/browser/src/core/__tests__/track-form.test.ts +193 -0
- package/packages/browser/src/core/__tests__/track-link.test.ts +252 -0
- package/packages/browser/src/core/analytics/__tests__/integration.test.ts +334 -0
- package/packages/browser/src/core/analytics/__tests__/test-plugins.ts +94 -0
- package/packages/browser/src/core/analytics/index.ts +672 -0
- package/packages/browser/src/core/analytics/interfaces.ts +100 -0
- package/packages/browser/src/core/arguments-resolver/__tests__/index.test.ts +524 -0
- package/packages/browser/src/core/arguments-resolver/index.ts +200 -0
- package/packages/browser/src/core/auto-track.ts +152 -0
- package/packages/browser/src/core/buffer/__tests__/index.test.ts +455 -0
- package/packages/browser/src/core/buffer/index.ts +371 -0
- package/packages/browser/src/core/callback/index.ts +1 -0
- package/packages/browser/src/core/connection/__tests__/index.test.ts +25 -0
- package/packages/browser/src/core/connection/index.ts +13 -0
- package/packages/browser/src/core/constants/index.ts +1 -0
- package/packages/browser/src/core/context/__tests__/index.test.ts +201 -0
- package/packages/browser/src/core/context/index.ts +21 -0
- package/packages/browser/src/core/environment/index.ts +7 -0
- package/packages/browser/src/core/events/__tests__/index.test.ts +450 -0
- package/packages/browser/src/core/events/index.ts +280 -0
- package/packages/browser/src/core/events/interfaces.ts +36 -0
- package/packages/browser/src/core/inspector/index.ts +14 -0
- package/packages/browser/src/core/page/__tests__/index.test.ts +130 -0
- package/packages/browser/src/core/page/add-page-context.ts +33 -0
- package/packages/browser/src/core/page/get-page-context.ts +140 -0
- package/packages/browser/src/core/page/index.ts +2 -0
- package/packages/browser/src/core/plugin/index.ts +12 -0
- package/packages/browser/src/core/query-string/__tests__/gracefulDecodeURIComponent.test.ts +17 -0
- package/packages/browser/src/core/query-string/__tests__/index.test.ts +149 -0
- package/packages/browser/src/core/query-string/__tests__/pickPrefix.test.ts +31 -0
- package/packages/browser/src/core/query-string/__tests__/useQueryString.test.ts +60 -0
- package/packages/browser/src/core/query-string/gracefulDecodeURIComponent.ts +16 -0
- package/packages/browser/src/core/query-string/index.ts +64 -0
- package/packages/browser/src/core/query-string/pickPrefix.ts +20 -0
- package/packages/browser/src/core/queue/__tests__/event-queue.test.ts +82 -0
- package/packages/browser/src/core/queue/event-queue.ts +22 -0
- package/packages/browser/src/core/session/__tests__/index.test.ts +41 -0
- package/packages/browser/src/core/session/index.ts +107 -0
- package/packages/browser/src/core/stats/__tests__/index.test.ts +15 -0
- package/packages/browser/src/core/stats/__tests__/remote-metrics.test.ts +189 -0
- package/packages/browser/src/core/stats/index.ts +15 -0
- package/packages/browser/src/core/stats/remote-metrics.ts +144 -0
- package/packages/browser/src/core/storage/__tests__/cookieStorage.test.ts +58 -0
- package/packages/browser/src/core/storage/__tests__/localStorage.test.ts +70 -0
- package/packages/browser/src/core/storage/__tests__/test-helpers.ts +26 -0
- package/packages/browser/src/core/storage/__tests__/universalStorage.test.ts +167 -0
- package/packages/browser/src/core/storage/cookieStorage.ts +80 -0
- package/packages/browser/src/core/storage/index.ts +64 -0
- package/packages/browser/src/core/storage/localStorage.ts +45 -0
- package/packages/browser/src/core/storage/memoryStorage.ts +22 -0
- package/packages/browser/src/core/storage/settings.ts +23 -0
- package/packages/browser/src/core/storage/types.ts +49 -0
- package/packages/browser/src/core/storage/universalStorage.ts +78 -0
- package/packages/browser/src/core/user/__tests__/index.test.ts +922 -0
- package/packages/browser/src/core/user/__tests__/migrate.test.ts +101 -0
- package/packages/browser/src/core/user/__tests__/session.test.ts +136 -0
- package/packages/browser/src/core/user/__tests__/tld.test.ts +36 -0
- package/packages/browser/src/core/user/index.ts +399 -0
- package/packages/browser/src/core/user/migrate.ts +126 -0
- package/packages/browser/src/core/user/tld.ts +65 -0
- package/packages/browser/src/core/user/vendor/crypto-es/LICENSE +53 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/aes.ts +302 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/cipher-core.ts +922 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/core.ts +806 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/enc-base64.ts +110 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/evpkdf.ts +110 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/md5.ts +238 -0
- package/packages/browser/src/core/user/vendor/readme.md +7 -0
- package/packages/browser/src/generated/__tests__/version.test.ts +18 -0
- package/packages/browser/src/generated/version.ts +2 -0
- package/packages/browser/src/index.ts +13 -0
- package/packages/browser/src/lib/__tests__/embedded-write-key.test.ts +15 -0
- package/packages/browser/src/lib/__tests__/fetch.test.ts +35 -0
- package/packages/browser/src/lib/__tests__/get-process-env.test.ts +5 -0
- package/packages/browser/src/lib/__tests__/group-by.test.ts +96 -0
- package/packages/browser/src/lib/__tests__/is-plan-event-enabled.test.ts +36 -0
- package/packages/browser/src/lib/__tests__/is-thenable.test.ts +39 -0
- package/packages/browser/src/lib/__tests__/merged-options.test.ts +123 -0
- package/packages/browser/src/lib/__tests__/on-page-change.test.ts +74 -0
- package/packages/browser/src/lib/__tests__/parse-cdn.test.ts +88 -0
- package/packages/browser/src/lib/__tests__/pick.test.ts +34 -0
- package/packages/browser/src/lib/__tests__/pick.typedef.ts +39 -0
- package/packages/browser/src/lib/bind-all.ts +19 -0
- package/packages/browser/src/lib/browser-polyfill.ts +23 -0
- package/packages/browser/src/lib/client-hints/__tests__/index.test.ts +66 -0
- package/packages/browser/src/lib/client-hints/index.ts +16 -0
- package/packages/browser/src/lib/client-hints/interfaces.ts +42 -0
- package/packages/browser/src/lib/create-deferred.ts +16 -0
- package/packages/browser/src/lib/csp-detection.ts +8 -0
- package/packages/browser/src/lib/embedded-write-key.ts +24 -0
- package/packages/browser/src/lib/fetch.ts +10 -0
- package/packages/browser/src/lib/get-global.ts +16 -0
- package/packages/browser/src/lib/get-process-env.ts +11 -0
- package/packages/browser/src/lib/global-analytics-helper.ts +31 -0
- package/packages/browser/src/lib/group-by.ts +30 -0
- package/packages/browser/src/lib/is-plan-event-enabled.ts +20 -0
- package/packages/browser/src/lib/is-thenable.ts +9 -0
- package/packages/browser/src/lib/load-script.ts +66 -0
- package/packages/browser/src/lib/merged-options.ts +46 -0
- package/packages/browser/src/lib/on-page-change.ts +29 -0
- package/packages/browser/src/lib/p-while.ts +12 -0
- package/packages/browser/src/lib/parse-cdn.ts +56 -0
- package/packages/browser/src/lib/pick.ts +28 -0
- package/packages/browser/src/lib/priority-queue/__tests__/backoff.test.ts +23 -0
- package/packages/browser/src/lib/priority-queue/__tests__/index.test.ts +158 -0
- package/packages/browser/src/lib/priority-queue/__tests__/persisted.test.ts +228 -0
- package/packages/browser/src/lib/priority-queue/backoff.ts +24 -0
- package/packages/browser/src/lib/priority-queue/index.ts +6 -0
- package/packages/browser/src/lib/priority-queue/persisted.ts +127 -0
- package/packages/browser/src/lib/sleep.ts +4 -0
- package/packages/browser/src/lib/to-facade.ts +53 -0
- package/packages/browser/src/lib/version-type.ts +10 -0
- package/packages/browser/src/node/__tests__/node-integration.test.ts +19 -0
- package/packages/browser/src/node/index.ts +36 -0
- package/packages/browser/src/node/node.browser.ts +7 -0
- package/packages/browser/src/plugins/ajs-destination/__tests__/index.test.ts +834 -0
- package/packages/browser/src/plugins/ajs-destination/index.ts +392 -0
- package/packages/browser/src/plugins/ajs-destination/loader.ts +129 -0
- package/packages/browser/src/plugins/ajs-destination/types.ts +44 -0
- package/packages/browser/src/plugins/ajs-destination/utils.ts +32 -0
- package/packages/browser/src/plugins/analytics-node/__tests__/index.test.ts +69 -0
- package/packages/browser/src/plugins/analytics-node/index.ts +67 -0
- package/packages/browser/src/plugins/env-enrichment/__tests__/index.test.ts +421 -0
- package/packages/browser/src/plugins/env-enrichment/index.ts +208 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/batched-dispatcher.test.ts +299 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/index.test.ts +317 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/normalize.test.ts +181 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/retries.test.ts +82 -0
- package/packages/browser/src/plugins/hightouchio/batched-dispatcher.ts +127 -0
- package/packages/browser/src/plugins/hightouchio/fetch-dispatcher.ts +27 -0
- package/packages/browser/src/plugins/hightouchio/index.ts +147 -0
- package/packages/browser/src/plugins/hightouchio/normalize.ts +71 -0
- package/packages/browser/src/plugins/hightouchio/schedule-flush.ts +58 -0
- package/packages/browser/src/plugins/legacy-video-plugins/__tests__/index.test.ts +48 -0
- package/packages/browser/src/plugins/legacy-video-plugins/index.ts +16 -0
- package/packages/browser/src/plugins/middleware/__tests__/index.test.ts +268 -0
- package/packages/browser/src/plugins/middleware/index.ts +131 -0
- package/packages/browser/src/plugins/remote-loader/__tests__/index.test.ts +943 -0
- package/packages/browser/src/plugins/remote-loader/index.ts +256 -0
- package/packages/browser/src/plugins/remote-middleware/__tests__/index.test.ts +116 -0
- package/packages/browser/src/plugins/remote-middleware/index.ts +44 -0
- package/packages/browser/src/plugins/routing-middleware/__tests__/index.test.ts +64 -0
- package/packages/browser/src/plugins/routing-middleware/index.ts +37 -0
- package/packages/browser/src/plugins/schema-filter/__tests__/index.test.ts +520 -0
- package/packages/browser/src/plugins/schema-filter/index.ts +90 -0
- package/packages/browser/src/plugins/validation/__tests__/index.test.ts +78 -0
- package/packages/browser/src/plugins/validation/index.ts +44 -0
- package/packages/browser/src/test-helpers/browser-storage.ts +75 -0
- package/packages/browser/src/test-helpers/factories.ts +18 -0
- package/packages/browser/src/test-helpers/fetch-parse.ts +8 -0
- package/packages/browser/src/test-helpers/fixtures/cdn-settings.ts +301 -0
- package/packages/browser/src/test-helpers/fixtures/classic-destination.ts +25 -0
- package/packages/browser/src/test-helpers/fixtures/client-hints.ts +28 -0
- package/packages/browser/src/test-helpers/fixtures/create-fetch-method.ts +30 -0
- package/packages/browser/src/test-helpers/fixtures/index.ts +4 -0
- package/packages/browser/src/test-helpers/fixtures/page-context.ts +11 -0
- package/packages/browser/src/test-helpers/test-writekeys.ts +5 -0
- package/packages/browser/src/test-helpers/type-assertions.ts +11 -0
- package/packages/browser/src/tester/__fixtures__/hightouch-snippet.ts +64 -0
- package/packages/browser/src/tester/__fixtures__/index.html +8 -0
- package/packages/browser/src/tester/ajs-perf.ts +30 -0
- package/packages/browser/src/tester/ajs-tester.ts +119 -0
- package/packages/browser/src/tester/server.js +16 -0
- package/packages/browser/tsconfig.build.json +9 -0
- package/packages/browser/tsconfig.json +13 -0
- package/packages/browser/webpack.config.js +106 -0
- package/packages/config/package.json +10 -0
- package/packages/config/src/index.js +4 -0
- package/packages/config/src/jest/config.js +50 -0
- package/packages/config/src/jest/get-module-map.js +34 -0
- package/packages/config/src/lint-staged/config.js +4 -0
- package/packages/config-webpack/package.json +20 -0
- package/packages/config-webpack/webpack.config.common.js +75 -0
- package/packages/consent/consent-tools/.eslintrc.js +7 -0
- package/packages/consent/consent-tools/.lintstagedrc.js +1 -0
- package/packages/consent/consent-tools/LICENSE +45 -0
- package/packages/consent/consent-tools/README.md +104 -0
- package/packages/consent/consent-tools/jest.config.js +6 -0
- package/packages/consent/consent-tools/jest.setup.js +4 -0
- package/packages/consent/consent-tools/package.json +48 -0
- package/packages/consent/consent-tools/src/domain/__tests__/assertions/integrations-assertions.ts +37 -0
- package/packages/consent/consent-tools/src/domain/__tests__/consent-stamping.test.ts +45 -0
- package/packages/consent/consent-tools/src/domain/__tests__/create-wrapper.test.ts +816 -0
- package/packages/consent/consent-tools/src/domain/__tests__/typedef-tests.ts +21 -0
- package/packages/consent/consent-tools/src/domain/consent-changed.ts +51 -0
- package/packages/consent/consent-tools/src/domain/consent-stamping.ts +19 -0
- package/packages/consent/consent-tools/src/domain/create-wrapper.ts +238 -0
- package/packages/consent/consent-tools/src/domain/get-initialized-analytics.ts +25 -0
- package/packages/consent/consent-tools/src/domain/load-cancellation.ts +31 -0
- package/packages/consent/consent-tools/src/domain/validation/__tests__/options-validators.test.ts +77 -0
- package/packages/consent/consent-tools/src/domain/validation/__tests__/validation-error.test.ts +15 -0
- package/packages/consent/consent-tools/src/domain/validation/common-validators.ts +19 -0
- package/packages/consent/consent-tools/src/domain/validation/index.ts +1 -0
- package/packages/consent/consent-tools/src/domain/validation/options-validators.ts +74 -0
- package/packages/consent/consent-tools/src/domain/validation/validation-error.ts +11 -0
- package/packages/consent/consent-tools/src/index.ts +16 -0
- package/packages/consent/consent-tools/src/types/errors.ts +14 -0
- package/packages/consent/consent-tools/src/types/index.ts +3 -0
- package/packages/consent/consent-tools/src/types/settings.ts +121 -0
- package/packages/consent/consent-tools/src/types/wrapper.ts +107 -0
- package/packages/consent/consent-tools/src/utils/index.ts +4 -0
- package/packages/consent/consent-tools/src/utils/pick.ts +18 -0
- package/packages/consent/consent-tools/src/utils/pipe.ts +14 -0
- package/packages/consent/consent-tools/src/utils/resolve-when.ts +32 -0
- package/packages/consent/consent-tools/src/utils/uniq.ts +4 -0
- package/packages/consent/consent-tools/tsconfig.build.json +9 -0
- package/packages/consent/consent-tools/tsconfig.json +12 -0
- package/packages/consent/consent-wrapper-onetrust/.eslintrc.js +7 -0
- package/packages/consent/consent-wrapper-onetrust/.lintstagedrc.js +1 -0
- package/packages/consent/consent-wrapper-onetrust/LICENSE +45 -0
- package/packages/consent/consent-wrapper-onetrust/README.md +125 -0
- package/packages/consent/consent-wrapper-onetrust/img/onetrust-cat-id.jpg +0 -0
- package/packages/consent/consent-wrapper-onetrust/img/onetrust-popup.jpg +0 -0
- package/packages/consent/consent-wrapper-onetrust/jest.config.js +6 -0
- package/packages/consent/consent-wrapper-onetrust/jest.setup.js +4 -0
- package/packages/consent/consent-wrapper-onetrust/package.json +60 -0
- package/packages/consent/consent-wrapper-onetrust/src/domain/__tests__/wrapper.test.ts +151 -0
- package/packages/consent/consent-wrapper-onetrust/src/domain/wrapper.ts +61 -0
- package/packages/consent/consent-wrapper-onetrust/src/index.ts +6 -0
- package/packages/consent/consent-wrapper-onetrust/src/index.umd.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/__tests__/onetrust-api.test.ts +181 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/onetrust-api.ts +155 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/validation/index.ts +1 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/validation/onetrust-api-error.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/mocks.ts +23 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/onetrust-globals.d.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/utils.ts +3 -0
- package/packages/consent/consent-wrapper-onetrust/tsconfig.build.json +9 -0
- package/packages/consent/consent-wrapper-onetrust/tsconfig.json +11 -0
- package/packages/consent/consent-wrapper-onetrust/webpack.config.js +25 -0
- package/packages/core/.eslintrc.js +4 -0
- package/packages/core/.lintstagedrc.js +1 -0
- package/packages/core/LICENSE.MD +45 -0
- package/packages/core/README.md +3 -0
- package/packages/core/jest.config.js +5 -0
- package/packages/core/jest.setup.js +10 -0
- package/packages/core/package.json +40 -0
- package/packages/core/src/analytics/__tests__/dispatch.test.ts +95 -0
- package/packages/core/src/analytics/dispatch.ts +58 -0
- package/packages/core/src/analytics/index.ts +11 -0
- package/packages/core/src/callback/__tests__/index.test.ts +85 -0
- package/packages/core/src/callback/index.ts +51 -0
- package/packages/core/src/context/index.ts +123 -0
- package/packages/core/src/emitter/__tests__/emitter.test.ts +74 -0
- package/packages/core/src/emitter/index.ts +65 -0
- package/packages/core/src/emitter/interface.ts +31 -0
- package/packages/core/src/events/__tests__/index.test.ts +394 -0
- package/packages/core/src/events/index.ts +280 -0
- package/packages/core/src/events/interfaces.ts +475 -0
- package/packages/core/src/index.ts +19 -0
- package/packages/core/src/logger/__tests__/index.test.ts +66 -0
- package/packages/core/src/logger/index.ts +74 -0
- package/packages/core/src/plugins/index.ts +43 -0
- package/packages/core/src/priority-queue/__tests__/backoff.test.ts +23 -0
- package/packages/core/src/priority-queue/__tests__/index.test.ts +158 -0
- package/packages/core/src/priority-queue/backoff.ts +24 -0
- package/packages/core/src/priority-queue/index.ts +103 -0
- package/packages/core/src/queue/__tests__/event-queue.test.ts +678 -0
- package/packages/core/src/queue/__tests__/extension-flushing.test.ts +416 -0
- package/packages/core/src/queue/delivery.ts +73 -0
- package/packages/core/src/queue/event-queue.ts +318 -0
- package/packages/core/src/stats/__tests__/index.test.ts +103 -0
- package/packages/core/src/stats/index.ts +88 -0
- package/packages/core/src/task/__tests__/task-group.test.ts +26 -0
- package/packages/core/src/task/task-group.ts +31 -0
- package/packages/core/src/user/index.ts +7 -0
- package/packages/core/src/utils/__tests__/group-by.test.ts +96 -0
- package/packages/core/src/utils/__tests__/is-plain-object.test.ts +27 -0
- package/packages/core/src/utils/__tests__/is-thenable.test.ts +39 -0
- package/packages/core/src/utils/bind-all.ts +19 -0
- package/packages/core/src/utils/get-global.ts +17 -0
- package/packages/core/src/utils/group-by.ts +30 -0
- package/packages/core/src/utils/has-properties.ts +7 -0
- package/packages/core/src/utils/is-plain-object.ts +26 -0
- package/packages/core/src/utils/is-thenable.ts +9 -0
- package/packages/core/src/utils/p-while.ts +12 -0
- package/packages/core/src/utils/pick.ts +8 -0
- package/packages/core/src/utils/ts-helpers.ts +13 -0
- package/packages/core/src/validation/__tests__/assertions.test.ts +155 -0
- package/packages/core/src/validation/assertions.ts +72 -0
- package/packages/core/src/validation/errors.ts +8 -0
- package/packages/core/src/validation/helpers.ts +23 -0
- package/packages/core/test-helpers/index.ts +2 -0
- package/packages/core/test-helpers/test-ctx.ts +7 -0
- package/packages/core/test-helpers/test-event-queue.ts +7 -0
- package/packages/core/tsconfig.build.json +9 -0
- package/packages/core/tsconfig.json +11 -0
- package/packages/node/.eslintrc.js +7 -0
- package/packages/node/.lintstagedrc.js +1 -0
- package/packages/node/LICENSE +45 -0
- package/packages/node/README.md +138 -0
- package/packages/node/jest.config.js +5 -0
- package/packages/node/jest.setup.js +4 -0
- package/packages/node/package.json +50 -0
- package/packages/node/scripts/version.sh +11 -0
- package/packages/node/src/__tests__/callback.test.ts +47 -0
- package/packages/node/src/__tests__/disable.integration.test.ts +42 -0
- package/packages/node/src/__tests__/emitter.integration.test.ts +45 -0
- package/packages/node/src/__tests__/graceful-shutdown-integration.test.ts +244 -0
- package/packages/node/src/__tests__/http-client.integration.test.ts +69 -0
- package/packages/node/src/__tests__/http-integration.test.ts +362 -0
- package/packages/node/src/__tests__/integration.test.ts +357 -0
- package/packages/node/src/__tests__/plugins.test.ts +16 -0
- package/packages/node/src/__tests__/settings.test.ts +9 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/http-request-event.ts +13 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/index.ts +2 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/segment-http-api.ts +43 -0
- package/packages/node/src/__tests__/test-helpers/create-test-analytics.ts +42 -0
- package/packages/node/src/__tests__/test-helpers/factories.ts +17 -0
- package/packages/node/src/__tests__/test-helpers/is-valid-date.ts +6 -0
- package/packages/node/src/__tests__/test-helpers/resolve-ctx.ts +19 -0
- package/packages/node/src/__tests__/test-helpers/resolve-emitter.ts +11 -0
- package/packages/node/src/__tests__/test-helpers/sleep.ts +3 -0
- package/packages/node/src/__tests__/test-helpers/test-plugin.ts +16 -0
- package/packages/node/src/__tests__/typedef-tests.ts +120 -0
- package/packages/node/src/app/analytics-node.ts +299 -0
- package/packages/node/src/app/context.ts +11 -0
- package/packages/node/src/app/dispatch-emit.ts +42 -0
- package/packages/node/src/app/emitter.ts +23 -0
- package/packages/node/src/app/event-factory.ts +20 -0
- package/packages/node/src/app/event-queue.ts +23 -0
- package/packages/node/src/app/settings.ts +49 -0
- package/packages/node/src/app/types/index.ts +3 -0
- package/packages/node/src/app/types/params.ts +76 -0
- package/packages/node/src/app/types/plugin.ts +5 -0
- package/packages/node/src/app/types/segment-event.ts +7 -0
- package/packages/node/src/generated/version.ts +2 -0
- package/packages/node/src/index.ts +26 -0
- package/packages/node/src/lib/__tests__/abort.test.ts +54 -0
- package/packages/node/src/lib/__tests__/create-url.test.ts +35 -0
- package/packages/node/src/lib/__tests__/env.test.ts +52 -0
- package/packages/node/src/lib/__tests__/get-message-id.test.ts +21 -0
- package/packages/node/src/lib/abort.ts +77 -0
- package/packages/node/src/lib/base-64-encode.ts +8 -0
- package/packages/node/src/lib/create-url.ts +11 -0
- package/packages/node/src/lib/env.ts +45 -0
- package/packages/node/src/lib/extract-promise-parts.ts +21 -0
- package/packages/node/src/lib/fetch.ts +16 -0
- package/packages/node/src/lib/get-message-id.ts +10 -0
- package/packages/node/src/lib/http-client.ts +95 -0
- package/packages/node/src/lib/uuid.ts +1 -0
- package/packages/node/src/plugins/segmentio/__tests__/methods.test.ts +223 -0
- package/packages/node/src/plugins/segmentio/__tests__/publisher.test.ts +411 -0
- package/packages/node/src/plugins/segmentio/context-batch.ts +71 -0
- package/packages/node/src/plugins/segmentio/index.ts +66 -0
- package/packages/node/src/plugins/segmentio/publisher.ts +265 -0
- package/packages/node/tsconfig.build.json +9 -0
- package/packages/node/tsconfig.json +10 -0
- package/packages/test-helpers/.eslintrc.js +7 -0
- package/packages/test-helpers/.lintstagedrc.js +1 -0
- package/packages/test-helpers/jest.config.js +3 -0
- package/packages/test-helpers/package.json +26 -0
- package/packages/test-helpers/src/analytics/cdn-settings-builder.ts +79 -0
- package/packages/test-helpers/src/analytics/index.ts +1 -0
- package/packages/test-helpers/src/index.ts +2 -0
- package/packages/test-helpers/src/utils/index.ts +1 -0
- package/packages/test-helpers/src/utils/sleep.ts +4 -0
- package/packages/test-helpers/tsconfig.build.json +9 -0
- package/packages/test-helpers/tsconfig.json +11 -0
- package/tsconfig.json +21 -0
- package/turbo.json +39 -0
- package/typings/get-monorepo-packages.d.ts +9 -0
- package/typings/spawn.d.ts +10 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
import { Plugin } from '../../core/plugin'
|
2
|
+
import { Context } from '../../core/context'
|
3
|
+
import { HightouchEvent } from '../../core/events'
|
4
|
+
import fetch from 'node-fetch'
|
5
|
+
import { version } from '../../generated/version'
|
6
|
+
|
7
|
+
interface AnalyticsNodeSettings {
|
8
|
+
writeKey: string
|
9
|
+
name: string
|
10
|
+
type: Plugin['type']
|
11
|
+
version: string
|
12
|
+
}
|
13
|
+
|
14
|
+
const btoa = (val: string): string => Buffer.from(val).toString('base64')
|
15
|
+
|
16
|
+
export async function post(
|
17
|
+
event: HightouchEvent,
|
18
|
+
writeKey: string
|
19
|
+
): Promise<HightouchEvent> {
|
20
|
+
const res = await fetch(
|
21
|
+
`https://us-east-1.hightouch-events.com/v1/${event.type}`,
|
22
|
+
{
|
23
|
+
method: 'POST',
|
24
|
+
headers: {
|
25
|
+
'Content-Type': 'application/json',
|
26
|
+
'User-Agent': 'analytics-node-next/latest',
|
27
|
+
Authorization: `Basic ${btoa(writeKey)}`,
|
28
|
+
},
|
29
|
+
body: JSON.stringify(event),
|
30
|
+
}
|
31
|
+
)
|
32
|
+
|
33
|
+
if (!res.ok) {
|
34
|
+
throw new Error('Message Rejected')
|
35
|
+
}
|
36
|
+
|
37
|
+
return event
|
38
|
+
}
|
39
|
+
|
40
|
+
export function analyticsNode(settings: AnalyticsNodeSettings): Plugin {
|
41
|
+
const send = async (ctx: Context): Promise<Context> => {
|
42
|
+
ctx.updateEvent('context.library.name', 'analytics-node-next')
|
43
|
+
ctx.updateEvent('context.library.version', version)
|
44
|
+
ctx.updateEvent('_metadata.nodeVersion', process.versions.node)
|
45
|
+
|
46
|
+
await post(ctx.event, settings.writeKey)
|
47
|
+
return ctx
|
48
|
+
}
|
49
|
+
|
50
|
+
const plugin: Plugin = {
|
51
|
+
name: settings.name,
|
52
|
+
type: settings.type,
|
53
|
+
version: settings.version,
|
54
|
+
|
55
|
+
load: (ctx) => Promise.resolve(ctx),
|
56
|
+
isLoaded: () => true,
|
57
|
+
|
58
|
+
track: send,
|
59
|
+
identify: send,
|
60
|
+
page: send,
|
61
|
+
alias: send,
|
62
|
+
group: send,
|
63
|
+
screen: send,
|
64
|
+
}
|
65
|
+
|
66
|
+
return plugin
|
67
|
+
}
|
@@ -0,0 +1,421 @@
|
|
1
|
+
import cookie from 'js-cookie'
|
2
|
+
import assert from 'assert'
|
3
|
+
import { Analytics } from '../../../core/analytics'
|
4
|
+
import { envEnrichment } from '..'
|
5
|
+
import { HightouchioSettings } from '../../hightouchio'
|
6
|
+
import { CoreExtraContext } from '@ht-sdks/events-sdk-js-core'
|
7
|
+
import { UADataValues } from '../../../lib/client-hints/interfaces'
|
8
|
+
import {
|
9
|
+
highEntropyTestData,
|
10
|
+
lowEntropyTestData,
|
11
|
+
} from '../../../test-helpers/fixtures/client-hints'
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Filters out the calls made for probing cookie availability
|
15
|
+
*/
|
16
|
+
const ignoreProbeCookieWrites = (
|
17
|
+
fn: jest.SpyInstance<
|
18
|
+
string | undefined,
|
19
|
+
[
|
20
|
+
name: string,
|
21
|
+
value: string | object,
|
22
|
+
options?: cookie.CookieAttributes | undefined
|
23
|
+
]
|
24
|
+
>
|
25
|
+
) => fn.mock.calls.filter((c) => c[0] !== 'ajs_cookies_check')
|
26
|
+
|
27
|
+
describe('Other visitor metadata', () => {
|
28
|
+
let options: HightouchioSettings
|
29
|
+
let analytics: Analytics
|
30
|
+
;(window.navigator as any).userAgentData = {
|
31
|
+
...lowEntropyTestData,
|
32
|
+
getHighEntropyValues: jest
|
33
|
+
.fn()
|
34
|
+
.mockImplementation((hints: string[]): Promise<UADataValues> => {
|
35
|
+
let result = {}
|
36
|
+
Object.entries(highEntropyTestData).forEach(([k, v]) => {
|
37
|
+
if (hints.includes(k)) {
|
38
|
+
result = {
|
39
|
+
...result,
|
40
|
+
[k]: v,
|
41
|
+
}
|
42
|
+
}
|
43
|
+
})
|
44
|
+
return Promise.resolve({
|
45
|
+
...lowEntropyTestData,
|
46
|
+
...result,
|
47
|
+
})
|
48
|
+
}),
|
49
|
+
toJSON: jest.fn(() => {
|
50
|
+
return lowEntropyTestData
|
51
|
+
}),
|
52
|
+
}
|
53
|
+
|
54
|
+
const amendSearchParams = (search?: any): CoreExtraContext => ({
|
55
|
+
page: { search },
|
56
|
+
})
|
57
|
+
|
58
|
+
beforeEach(async () => {
|
59
|
+
options = { apiKey: 'foo' }
|
60
|
+
analytics = new Analytics({ writeKey: options.apiKey })
|
61
|
+
|
62
|
+
await analytics.register(envEnrichment)
|
63
|
+
})
|
64
|
+
|
65
|
+
afterEach(() => {
|
66
|
+
analytics.reset()
|
67
|
+
Object.keys(cookie.get()).map((k) => cookie.remove(k))
|
68
|
+
|
69
|
+
if (window.localStorage) {
|
70
|
+
window.localStorage.clear()
|
71
|
+
}
|
72
|
+
})
|
73
|
+
|
74
|
+
it('should add .timezone', async () => {
|
75
|
+
const ctx = await analytics.track('test')
|
76
|
+
assert(typeof ctx.event.context?.timezone === 'string')
|
77
|
+
})
|
78
|
+
|
79
|
+
it('should add .library', async () => {
|
80
|
+
const ctx = await analytics.track('test')
|
81
|
+
assert(ctx.event.context?.library)
|
82
|
+
assert(ctx.event.context?.library.name === 'events-sdk-js')
|
83
|
+
// TODO fix why version isn't showing up in this test
|
84
|
+
// assert(ctx.event.context?.library.version === `npm:next-${version}`)
|
85
|
+
})
|
86
|
+
|
87
|
+
it('should allow override of .library', async () => {
|
88
|
+
const customContext = {
|
89
|
+
library: {
|
90
|
+
name: 'analytics-wordpress',
|
91
|
+
version: '1.0.3',
|
92
|
+
},
|
93
|
+
}
|
94
|
+
|
95
|
+
const ctx = await analytics.track('test', {}, { context: customContext })
|
96
|
+
|
97
|
+
assert(ctx.event.context?.library)
|
98
|
+
assert(ctx.event.context?.library.name === 'analytics-wordpress')
|
99
|
+
assert(ctx.event.context?.library.version === '1.0.3')
|
100
|
+
})
|
101
|
+
|
102
|
+
it('should add .userAgent', async () => {
|
103
|
+
const ctx = await analytics.track('test')
|
104
|
+
const removeVersionNum = (agent: string) => agent.replace(/jsdom\/.*/, '')
|
105
|
+
const userAgent1 = removeVersionNum(ctx.event.context?.userAgent as string)
|
106
|
+
const userAgent2 = removeVersionNum(navigator.userAgent)
|
107
|
+
assert(userAgent1 === userAgent2)
|
108
|
+
})
|
109
|
+
|
110
|
+
it('should add .userAgentData when available', async () => {
|
111
|
+
const ctx = await analytics.track('event')
|
112
|
+
expect(ctx.event.context?.userAgentData).toEqual(lowEntropyTestData)
|
113
|
+
})
|
114
|
+
|
115
|
+
it('should add .locale', async () => {
|
116
|
+
const ctx = await analytics.track('test')
|
117
|
+
assert(ctx.event.context?.locale === navigator.language)
|
118
|
+
})
|
119
|
+
|
120
|
+
it('should not replace .locale if provided', async () => {
|
121
|
+
const customContext = {
|
122
|
+
locale: 'foobar',
|
123
|
+
}
|
124
|
+
|
125
|
+
const ctx = await analytics.track('test', {}, { context: customContext })
|
126
|
+
assert(ctx.event.context?.locale === 'foobar')
|
127
|
+
})
|
128
|
+
|
129
|
+
it('should add .campaign', async () => {
|
130
|
+
const ctx = await analytics.track(
|
131
|
+
'test',
|
132
|
+
{},
|
133
|
+
{
|
134
|
+
context: amendSearchParams(
|
135
|
+
'utm_source=source&utm_medium=medium&utm_term=term&utm_content=content&utm_campaign=name'
|
136
|
+
),
|
137
|
+
}
|
138
|
+
)
|
139
|
+
|
140
|
+
assert(ctx.event)
|
141
|
+
assert(ctx.event.context)
|
142
|
+
assert(ctx.event.context.campaign)
|
143
|
+
assert(ctx.event.context.campaign.source === 'source')
|
144
|
+
assert(ctx.event.context.campaign.medium === 'medium')
|
145
|
+
assert(ctx.event.context.campaign.term === 'term')
|
146
|
+
assert(ctx.event.context.campaign.content === 'content')
|
147
|
+
assert(ctx.event.context.campaign.name === 'name')
|
148
|
+
})
|
149
|
+
|
150
|
+
it('should decode query params', async () => {
|
151
|
+
const ctx = await analytics.track(
|
152
|
+
'test',
|
153
|
+
{},
|
154
|
+
{
|
155
|
+
context: amendSearchParams('?utm_source=%5BFoo%5D'),
|
156
|
+
}
|
157
|
+
)
|
158
|
+
|
159
|
+
assert(ctx.event)
|
160
|
+
assert(ctx.event.context)
|
161
|
+
assert(ctx.event.context.campaign)
|
162
|
+
assert(ctx.event.context.campaign.source === '[Foo]')
|
163
|
+
})
|
164
|
+
|
165
|
+
it('should guard against undefined utm params', async () => {
|
166
|
+
const ctx = await analytics.track(
|
167
|
+
'test',
|
168
|
+
{},
|
169
|
+
{
|
170
|
+
context: amendSearchParams('?utm_source'),
|
171
|
+
}
|
172
|
+
)
|
173
|
+
|
174
|
+
assert(ctx.event)
|
175
|
+
assert(ctx.event.context)
|
176
|
+
assert(ctx.event.context.campaign)
|
177
|
+
assert(ctx.event.context.campaign.source === '')
|
178
|
+
})
|
179
|
+
|
180
|
+
it('should guard against empty utm params', async () => {
|
181
|
+
const ctx = await analytics.track(
|
182
|
+
'test',
|
183
|
+
{},
|
184
|
+
{
|
185
|
+
context: amendSearchParams('?utm_source='),
|
186
|
+
}
|
187
|
+
)
|
188
|
+
|
189
|
+
assert(ctx.event)
|
190
|
+
assert(ctx.event.context)
|
191
|
+
assert(ctx.event.context.campaign)
|
192
|
+
assert(ctx.event.context.campaign.source === '')
|
193
|
+
})
|
194
|
+
|
195
|
+
it('only parses utm params suffixed with _', async () => {
|
196
|
+
const ctx = await analytics.track(
|
197
|
+
'test',
|
198
|
+
{},
|
199
|
+
{
|
200
|
+
context: amendSearchParams('?utm'),
|
201
|
+
}
|
202
|
+
)
|
203
|
+
|
204
|
+
assert(ctx.event)
|
205
|
+
assert(ctx.event.context)
|
206
|
+
assert.deepStrictEqual(ctx.event.context.campaign, {})
|
207
|
+
})
|
208
|
+
|
209
|
+
it('should guard against short utm params', async () => {
|
210
|
+
const ctx = await analytics.track(
|
211
|
+
'test',
|
212
|
+
{},
|
213
|
+
{
|
214
|
+
context: amendSearchParams('?utm_'),
|
215
|
+
}
|
216
|
+
)
|
217
|
+
|
218
|
+
assert(ctx.event)
|
219
|
+
assert(ctx.event.context)
|
220
|
+
assert.deepStrictEqual(ctx.event.context.campaign, {})
|
221
|
+
})
|
222
|
+
|
223
|
+
it('should allow override of .campaign', async () => {
|
224
|
+
const ctx = await analytics.track(
|
225
|
+
'test',
|
226
|
+
{},
|
227
|
+
{
|
228
|
+
context: {
|
229
|
+
...amendSearchParams(
|
230
|
+
'?utm_source=source&utm_medium=medium&utm_term=term&utm_content=content&utm_campaign=name'
|
231
|
+
),
|
232
|
+
campaign: {
|
233
|
+
source: 'overrideSource',
|
234
|
+
medium: 'overrideMedium',
|
235
|
+
term: 'overrideTerm',
|
236
|
+
content: 'overrideContent',
|
237
|
+
name: 'overrideName',
|
238
|
+
},
|
239
|
+
},
|
240
|
+
}
|
241
|
+
)
|
242
|
+
|
243
|
+
assert(ctx.event)
|
244
|
+
assert(ctx.event.context)
|
245
|
+
assert(ctx.event.context.campaign)
|
246
|
+
assert(ctx.event.context.campaign.source === 'overrideSource')
|
247
|
+
assert(ctx.event.context.campaign.medium === 'overrideMedium')
|
248
|
+
assert(ctx.event.context.campaign.term === 'overrideTerm')
|
249
|
+
assert(ctx.event.context.campaign.content === 'overrideContent')
|
250
|
+
assert(ctx.event.context.campaign.name === 'overrideName')
|
251
|
+
})
|
252
|
+
|
253
|
+
it('should allow override of .search with object', async () => {
|
254
|
+
const searchParams = {
|
255
|
+
something_else: 'bar',
|
256
|
+
utm_custom: 'foo',
|
257
|
+
utm_campaign: 'hello',
|
258
|
+
}
|
259
|
+
const ctx = await analytics.track(
|
260
|
+
'test',
|
261
|
+
{},
|
262
|
+
{
|
263
|
+
context: amendSearchParams(searchParams),
|
264
|
+
}
|
265
|
+
)
|
266
|
+
assert(ctx.event)
|
267
|
+
assert(ctx.event.context)
|
268
|
+
assert(ctx.event.context.referrer === undefined)
|
269
|
+
assert(ctx.event.context.campaign)
|
270
|
+
assert(ctx.event.context.page?.search)
|
271
|
+
expect(ctx.event.context.page.search).toEqual(searchParams)
|
272
|
+
expect(ctx.event.context.campaign).toEqual({ name: 'hello', custom: 'foo' })
|
273
|
+
})
|
274
|
+
|
275
|
+
it('should not throw an error if the object is invalid', async () => {
|
276
|
+
const searchParams = {
|
277
|
+
invalidNested: {
|
278
|
+
foo: {
|
279
|
+
bar: null,
|
280
|
+
},
|
281
|
+
},
|
282
|
+
}
|
283
|
+
const ctx = await analytics.track(
|
284
|
+
'test',
|
285
|
+
{},
|
286
|
+
{
|
287
|
+
context: amendSearchParams(searchParams),
|
288
|
+
}
|
289
|
+
)
|
290
|
+
assert(ctx.event)
|
291
|
+
assert(ctx.event.context)
|
292
|
+
assert(ctx.event.context.referrer === undefined)
|
293
|
+
expect(ctx.event.context.page?.search).toEqual(searchParams)
|
294
|
+
})
|
295
|
+
|
296
|
+
test.each([
|
297
|
+
{
|
298
|
+
bar: ['123', '456'],
|
299
|
+
utm_campaign: 'hello',
|
300
|
+
utm_custom: ['foo', 'bar'],
|
301
|
+
},
|
302
|
+
'?bar=123&bar=456&utm_campaign=hello&utm_custom=foo&utm_custom=bar',
|
303
|
+
])(
|
304
|
+
'should work as expected if there are multiple values for the same param (%p)',
|
305
|
+
async (params) => {
|
306
|
+
const ctx = await analytics.track(
|
307
|
+
'test',
|
308
|
+
{},
|
309
|
+
{
|
310
|
+
context: amendSearchParams(params),
|
311
|
+
}
|
312
|
+
)
|
313
|
+
assert(ctx.event)
|
314
|
+
assert(ctx.event.context)
|
315
|
+
assert(ctx.event.context.referrer === undefined)
|
316
|
+
expect(ctx.event.context.page?.search).toEqual(params)
|
317
|
+
expect(ctx.event.context.campaign).toEqual({
|
318
|
+
name: 'hello',
|
319
|
+
custom: 'bar',
|
320
|
+
})
|
321
|
+
}
|
322
|
+
)
|
323
|
+
|
324
|
+
it('should add .referrer.id and .referrer.type (cookies)', async () => {
|
325
|
+
const ctx = await analytics.track(
|
326
|
+
'test',
|
327
|
+
{},
|
328
|
+
{
|
329
|
+
context: amendSearchParams('?utm_source=source&urid=medium'),
|
330
|
+
}
|
331
|
+
)
|
332
|
+
|
333
|
+
assert(ctx.event)
|
334
|
+
assert(ctx.event.context)
|
335
|
+
assert(ctx.event.context.referrer)
|
336
|
+
expect(ctx.event.context.referrer.id).toBe('medium')
|
337
|
+
assert(ctx.event.context.referrer.type === 'millennial-media')
|
338
|
+
expect(cookie.get('s:context.referrer')).toEqual(
|
339
|
+
JSON.stringify({
|
340
|
+
id: 'medium',
|
341
|
+
type: 'millennial-media',
|
342
|
+
})
|
343
|
+
)
|
344
|
+
})
|
345
|
+
|
346
|
+
it('should add .referrer.id and .referrer.type (cookieless)', async () => {
|
347
|
+
const setCookieSpy = jest.spyOn(cookie, 'set')
|
348
|
+
analytics = new Analytics(
|
349
|
+
{ writeKey: options.apiKey },
|
350
|
+
{ disableClientPersistence: true }
|
351
|
+
)
|
352
|
+
|
353
|
+
await analytics.register(envEnrichment)
|
354
|
+
|
355
|
+
const ctx = await analytics.track(
|
356
|
+
'test',
|
357
|
+
{},
|
358
|
+
{
|
359
|
+
context: amendSearchParams('utm_source=source&urid=medium'),
|
360
|
+
}
|
361
|
+
)
|
362
|
+
|
363
|
+
assert(ctx.event)
|
364
|
+
assert(ctx.event.context)
|
365
|
+
assert(ctx.event.context.referrer)
|
366
|
+
expect(ctx.event.context.referrer.id).toEqual('medium')
|
367
|
+
assert(ctx.event.context.referrer.type === 'millennial-media')
|
368
|
+
expect(cookie.get('s:context.referrer')).toBeUndefined()
|
369
|
+
expect(ignoreProbeCookieWrites(setCookieSpy).length).toBe(0)
|
370
|
+
})
|
371
|
+
|
372
|
+
it('should add .referrer.id and .referrer.type from cookie', async () => {
|
373
|
+
cookie.set('s:context.referrer', '{"id":"baz","type":"millennial-media"}')
|
374
|
+
const ctx = await analytics.track('test')
|
375
|
+
|
376
|
+
assert(ctx.event)
|
377
|
+
assert(ctx.event.context)
|
378
|
+
assert(ctx.event.context.referrer)
|
379
|
+
assert(ctx.event.context.referrer.id === 'baz')
|
380
|
+
assert(ctx.event.context.referrer.type === 'millennial-media')
|
381
|
+
})
|
382
|
+
|
383
|
+
it('should add .referrer.id and .referrer.type from cookie when no query is given', async () => {
|
384
|
+
cookie.set(
|
385
|
+
's:context.referrer',
|
386
|
+
'{"id":"medium","type":"millennial-media"}'
|
387
|
+
)
|
388
|
+
const ctx = await analytics.track('test')
|
389
|
+
|
390
|
+
assert(ctx.event)
|
391
|
+
assert(ctx.event.context)
|
392
|
+
assert(ctx.event.context.referrer)
|
393
|
+
assert(ctx.event.context.referrer.id === 'medium')
|
394
|
+
assert(ctx.event.context.referrer.type === 'millennial-media')
|
395
|
+
})
|
396
|
+
|
397
|
+
it('shouldnt add non amp ga cookie', async () => {
|
398
|
+
cookie.set('_ga', 'some-nonamp-id')
|
399
|
+
const ctx = await analytics.track('test')
|
400
|
+
assert(ctx.event)
|
401
|
+
assert(ctx.event.context)
|
402
|
+
assert(!ctx.event.context.amp)
|
403
|
+
})
|
404
|
+
|
405
|
+
it('should add .amp.id from store', async () => {
|
406
|
+
cookie.set('_ga', 'amp-foo')
|
407
|
+
const ctx = await analytics.track('test')
|
408
|
+
assert(ctx.event)
|
409
|
+
assert(ctx.event.context)
|
410
|
+
assert(ctx.event.context.amp)
|
411
|
+
assert(ctx.event.context.amp.id === 'amp-foo')
|
412
|
+
})
|
413
|
+
|
414
|
+
it('should not add .amp if theres no _ga', async () => {
|
415
|
+
cookie.remove('_ga')
|
416
|
+
const ctx = await analytics.track('test')
|
417
|
+
assert(ctx.event)
|
418
|
+
assert(ctx.event.context)
|
419
|
+
assert(!ctx.event.context.amp)
|
420
|
+
})
|
421
|
+
})
|
@@ -0,0 +1,208 @@
|
|
1
|
+
import jar from 'js-cookie'
|
2
|
+
import type { Context } from '../../core/context'
|
3
|
+
import type { Plugin } from '../../core/plugin'
|
4
|
+
import { version } from '../../generated/version'
|
5
|
+
import { HightouchEvent } from '../../core/events'
|
6
|
+
import { Campaign, PluginType } from '@ht-sdks/events-sdk-js-core'
|
7
|
+
import { getVersionType } from '../../lib/version-type'
|
8
|
+
import { tld } from '../../core/user/tld'
|
9
|
+
import { gracefulDecodeURIComponent } from '../../core/query-string/gracefulDecodeURIComponent'
|
10
|
+
import { CookieStorage, UniversalStorage } from '../../core/storage'
|
11
|
+
import { Analytics } from '../../core/analytics'
|
12
|
+
import { clientHints } from '../../lib/client-hints'
|
13
|
+
import { UADataValues } from '../../lib/client-hints/interfaces'
|
14
|
+
|
15
|
+
let cookieOptions: jar.CookieAttributes | undefined
|
16
|
+
function getCookieOptions(): jar.CookieAttributes {
|
17
|
+
if (cookieOptions) {
|
18
|
+
return cookieOptions
|
19
|
+
}
|
20
|
+
|
21
|
+
const domain = tld(window.location.href)
|
22
|
+
cookieOptions = {
|
23
|
+
expires: 31536000000, // 1 year
|
24
|
+
secure: false,
|
25
|
+
path: '/',
|
26
|
+
}
|
27
|
+
if (domain) {
|
28
|
+
cookieOptions.domain = domain
|
29
|
+
}
|
30
|
+
|
31
|
+
return cookieOptions
|
32
|
+
}
|
33
|
+
|
34
|
+
type Ad = { id: string; type: string }
|
35
|
+
|
36
|
+
function ads(query: string): Ad | undefined {
|
37
|
+
const queryIds: Record<string, string> = {
|
38
|
+
btid: 'dataxu',
|
39
|
+
urid: 'millennial-media',
|
40
|
+
}
|
41
|
+
|
42
|
+
if (query.startsWith('?')) {
|
43
|
+
query = query.substring(1)
|
44
|
+
}
|
45
|
+
query = query.replace(/\?/g, '&')
|
46
|
+
const parts = query.split('&')
|
47
|
+
|
48
|
+
for (const part of parts) {
|
49
|
+
const [k, v] = part.split('=')
|
50
|
+
if (queryIds[k]) {
|
51
|
+
return {
|
52
|
+
id: v,
|
53
|
+
type: queryIds[k],
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
export function utm(query: string): Campaign {
|
60
|
+
if (query.startsWith('?')) {
|
61
|
+
query = query.substring(1)
|
62
|
+
}
|
63
|
+
query = query.replace(/\?/g, '&')
|
64
|
+
|
65
|
+
return query.split('&').reduce((acc, str) => {
|
66
|
+
const [k, v = ''] = str.split('=')
|
67
|
+
if (k.includes('utm_') && k.length > 4) {
|
68
|
+
let utmParam = k.slice(4) as keyof Campaign
|
69
|
+
if (utmParam === 'campaign') {
|
70
|
+
utmParam = 'name'
|
71
|
+
}
|
72
|
+
acc[utmParam] = gracefulDecodeURIComponent(v)
|
73
|
+
}
|
74
|
+
return acc
|
75
|
+
}, {} as Campaign)
|
76
|
+
}
|
77
|
+
|
78
|
+
export function ampId(): string | undefined {
|
79
|
+
const ampId = jar.get('_ga')
|
80
|
+
if (ampId && ampId.startsWith('amp')) {
|
81
|
+
return ampId
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
function referrerId(
|
86
|
+
query: string,
|
87
|
+
ctx: HightouchEvent['context'],
|
88
|
+
disablePersistance: boolean
|
89
|
+
): void {
|
90
|
+
const storage = new UniversalStorage<{
|
91
|
+
's:context.referrer': Ad
|
92
|
+
}>(disablePersistance ? [] : [new CookieStorage(getCookieOptions())])
|
93
|
+
|
94
|
+
const stored = storage.get('s:context.referrer')
|
95
|
+
|
96
|
+
const ad = ads(query) ?? stored
|
97
|
+
|
98
|
+
if (!ad) {
|
99
|
+
return
|
100
|
+
}
|
101
|
+
|
102
|
+
if (ctx) {
|
103
|
+
ctx.referrer = { ...ctx.referrer, ...ad }
|
104
|
+
}
|
105
|
+
|
106
|
+
storage.set('s:context.referrer', ad)
|
107
|
+
}
|
108
|
+
|
109
|
+
/**
|
110
|
+
*
|
111
|
+
* @param obj e.g. { foo: 'b', bar: 'd', baz: ['123', '456']}
|
112
|
+
* @returns e.g. 'foo=b&bar=d&baz=123&baz=456'
|
113
|
+
*/
|
114
|
+
const objectToQueryString = (
|
115
|
+
obj: Record<string, string | string[]>
|
116
|
+
): string => {
|
117
|
+
try {
|
118
|
+
const searchParams = new URLSearchParams()
|
119
|
+
Object.entries(obj).forEach(([k, v]) => {
|
120
|
+
if (Array.isArray(v)) {
|
121
|
+
v.forEach((value) => searchParams.append(k, value))
|
122
|
+
} else {
|
123
|
+
searchParams.append(k, v)
|
124
|
+
}
|
125
|
+
})
|
126
|
+
return searchParams.toString()
|
127
|
+
} catch {
|
128
|
+
return ''
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
class EnvironmentEnrichmentPlugin implements Plugin {
|
133
|
+
private instance!: Analytics
|
134
|
+
private userAgentData: UADataValues | undefined
|
135
|
+
|
136
|
+
name = 'Page Enrichment'
|
137
|
+
type: PluginType = 'before'
|
138
|
+
version = '0.1.0'
|
139
|
+
isLoaded = () => true
|
140
|
+
load = async (_ctx: Context, instance: Analytics) => {
|
141
|
+
this.instance = instance
|
142
|
+
try {
|
143
|
+
this.userAgentData = await clientHints(
|
144
|
+
this.instance.options.highEntropyValuesClientHints
|
145
|
+
)
|
146
|
+
} catch (_) {
|
147
|
+
// if client hints API doesn't return anything leave undefined
|
148
|
+
}
|
149
|
+
return Promise.resolve()
|
150
|
+
}
|
151
|
+
|
152
|
+
private enrich = (ctx: Context): Context => {
|
153
|
+
// Note: Types are off - context should never be undefined here, since it is set as part of event creation.
|
154
|
+
const evtCtx = ctx.event.context!
|
155
|
+
|
156
|
+
const search = evtCtx.page!.search || ''
|
157
|
+
|
158
|
+
const query =
|
159
|
+
typeof search === 'object' ? objectToQueryString(search) : search
|
160
|
+
|
161
|
+
evtCtx.userAgent = navigator.userAgent
|
162
|
+
evtCtx.userAgentData = this.userAgentData
|
163
|
+
|
164
|
+
// @ts-ignore
|
165
|
+
const locale = navigator.userLanguage || navigator.language
|
166
|
+
|
167
|
+
if (typeof evtCtx.locale === 'undefined' && typeof locale !== 'undefined') {
|
168
|
+
evtCtx.locale = locale
|
169
|
+
}
|
170
|
+
|
171
|
+
evtCtx.library ??= {
|
172
|
+
name: 'events-sdk-js',
|
173
|
+
version: `${getVersionType() === 'web' ? 'web' : 'npm'}-${version}`,
|
174
|
+
}
|
175
|
+
|
176
|
+
if (query && !evtCtx.campaign) {
|
177
|
+
evtCtx.campaign = utm(query)
|
178
|
+
}
|
179
|
+
|
180
|
+
const amp = ampId()
|
181
|
+
if (amp) {
|
182
|
+
evtCtx.amp = { id: amp }
|
183
|
+
}
|
184
|
+
|
185
|
+
referrerId(
|
186
|
+
query,
|
187
|
+
evtCtx,
|
188
|
+
this.instance.options.disableClientPersistence ?? false
|
189
|
+
)
|
190
|
+
|
191
|
+
try {
|
192
|
+
evtCtx.timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
|
193
|
+
} catch (_) {
|
194
|
+
// If browser doesn't have support leave timezone undefined
|
195
|
+
}
|
196
|
+
|
197
|
+
return ctx
|
198
|
+
}
|
199
|
+
|
200
|
+
track = this.enrich
|
201
|
+
identify = this.enrich
|
202
|
+
page = this.enrich
|
203
|
+
group = this.enrich
|
204
|
+
alias = this.enrich
|
205
|
+
screen = this.enrich
|
206
|
+
}
|
207
|
+
|
208
|
+
export const envEnrichment = new EnvironmentEnrichmentPlugin()
|