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,181 @@
|
|
1
|
+
import assert from 'assert'
|
2
|
+
import cookie from 'js-cookie'
|
3
|
+
import { HightouchioSettings } from '..'
|
4
|
+
import { normalize } from '../normalize'
|
5
|
+
import { Analytics } from '../../../core/analytics'
|
6
|
+
import { HightouchEvent } from '../../../core/events'
|
7
|
+
import { JSDOM } from 'jsdom'
|
8
|
+
|
9
|
+
describe('before loading', () => {
|
10
|
+
let jsdom: JSDOM
|
11
|
+
|
12
|
+
beforeEach(async () => {
|
13
|
+
jest.restoreAllMocks()
|
14
|
+
jest.resetAllMocks()
|
15
|
+
|
16
|
+
const html = `
|
17
|
+
<!DOCTYPE html>
|
18
|
+
<head></head>
|
19
|
+
<body></body>
|
20
|
+
</html>
|
21
|
+
`.trim()
|
22
|
+
|
23
|
+
jsdom = new JSDOM(html, {
|
24
|
+
runScripts: 'dangerously',
|
25
|
+
resources: 'usable',
|
26
|
+
url: 'https://localhost',
|
27
|
+
})
|
28
|
+
|
29
|
+
const windowSpy = jest.spyOn(global, 'window', 'get')
|
30
|
+
windowSpy.mockImplementation(
|
31
|
+
() => jsdom.window as unknown as Window & typeof globalThis
|
32
|
+
)
|
33
|
+
})
|
34
|
+
|
35
|
+
let options: HightouchioSettings
|
36
|
+
let analytics: Analytics
|
37
|
+
|
38
|
+
beforeEach(() => {
|
39
|
+
options = { apiKey: 'foo' }
|
40
|
+
analytics = new Analytics({ writeKey: options.apiKey })
|
41
|
+
|
42
|
+
window.localStorage.clear()
|
43
|
+
})
|
44
|
+
|
45
|
+
afterEach(() => {
|
46
|
+
analytics.reset()
|
47
|
+
Object.keys(cookie.get()).map((k) => cookie.remove(k))
|
48
|
+
|
49
|
+
if (window.localStorage) {
|
50
|
+
window.localStorage.clear()
|
51
|
+
}
|
52
|
+
})
|
53
|
+
|
54
|
+
describe('#normalize', () => {
|
55
|
+
let object: HightouchEvent
|
56
|
+
let defaultCtx: any
|
57
|
+
|
58
|
+
beforeEach(() => {
|
59
|
+
cookie.remove('s:context.referrer')
|
60
|
+
defaultCtx = {
|
61
|
+
page: {
|
62
|
+
search: '',
|
63
|
+
},
|
64
|
+
}
|
65
|
+
object = {
|
66
|
+
type: 'track',
|
67
|
+
context: defaultCtx,
|
68
|
+
}
|
69
|
+
})
|
70
|
+
|
71
|
+
it('should add .anonymousId', () => {
|
72
|
+
analytics.user().anonymousId('anon-id')
|
73
|
+
normalize(analytics, object, options, {})
|
74
|
+
assert(object.anonymousId === 'anon-id')
|
75
|
+
})
|
76
|
+
|
77
|
+
it('should add .sentAt', () => {
|
78
|
+
normalize(analytics, object, options, {})
|
79
|
+
assert(object.sentAt)
|
80
|
+
// assert(type(object.sentAt) === 'date')
|
81
|
+
})
|
82
|
+
|
83
|
+
it('should add .userId', () => {
|
84
|
+
analytics.user().id('user-id')
|
85
|
+
normalize(analytics, object, options, {})
|
86
|
+
assert(object.userId === 'user-id')
|
87
|
+
})
|
88
|
+
|
89
|
+
it('should not replace the .timestamp', () => {
|
90
|
+
const timestamp = new Date()
|
91
|
+
object.timestamp = timestamp
|
92
|
+
normalize(analytics, object, options, {})
|
93
|
+
assert(object.timestamp === timestamp)
|
94
|
+
})
|
95
|
+
|
96
|
+
it('should not replace the .userId', () => {
|
97
|
+
analytics.user().id('user-id')
|
98
|
+
object.userId = 'existing-id'
|
99
|
+
normalize(analytics, object, options, {})
|
100
|
+
assert(object.userId === 'existing-id')
|
101
|
+
})
|
102
|
+
|
103
|
+
it('should always add .anonymousId even if .userId is given', () => {
|
104
|
+
object.userId = 'baz'
|
105
|
+
normalize(analytics, object, options, {})
|
106
|
+
assert(object.anonymousId?.length === 36)
|
107
|
+
})
|
108
|
+
|
109
|
+
it('should accept anonymousId being set in an event', async () => {
|
110
|
+
object.userId = 'baz'
|
111
|
+
object.anonymousId = '👻'
|
112
|
+
|
113
|
+
normalize(analytics, object, options, {})
|
114
|
+
expect(object.anonymousId).toEqual('👻')
|
115
|
+
})
|
116
|
+
|
117
|
+
it('should add .writeKey', () => {
|
118
|
+
normalize(analytics, object, options, {})
|
119
|
+
assert(object.writeKey === options.apiKey)
|
120
|
+
})
|
121
|
+
|
122
|
+
describe('unbundling', () => {
|
123
|
+
it('should add a list of bundled integrations', () => {
|
124
|
+
normalize(analytics, object, options, {
|
125
|
+
'Hightouch.io': {},
|
126
|
+
other: {
|
127
|
+
bundlingStatus: 'bundled',
|
128
|
+
},
|
129
|
+
})
|
130
|
+
|
131
|
+
assert(object)
|
132
|
+
assert(object._metadata)
|
133
|
+
assert.deepEqual(object._metadata.bundled, ['Hightouch.io', 'other'])
|
134
|
+
})
|
135
|
+
|
136
|
+
it('should add a list of bundled ids', () => {
|
137
|
+
normalize(
|
138
|
+
analytics,
|
139
|
+
object,
|
140
|
+
{
|
141
|
+
...options,
|
142
|
+
maybeBundledConfigIds: {
|
143
|
+
other: ['o_123', 'o_456'],
|
144
|
+
},
|
145
|
+
},
|
146
|
+
{
|
147
|
+
'Hightouch.io': {},
|
148
|
+
other: {
|
149
|
+
bundlingStatus: 'bundled',
|
150
|
+
},
|
151
|
+
}
|
152
|
+
)
|
153
|
+
|
154
|
+
assert(object)
|
155
|
+
assert(object._metadata)
|
156
|
+
assert.deepEqual(object._metadata.bundledIds, ['o_123', 'o_456'])
|
157
|
+
})
|
158
|
+
|
159
|
+
it('should add a list of unbundled integrations when `unbundledIntegrations` is set', () => {
|
160
|
+
options.unbundledIntegrations = ['other2']
|
161
|
+
normalize(analytics, object, options, {
|
162
|
+
other2: {
|
163
|
+
bundlingStatus: 'unbundled',
|
164
|
+
},
|
165
|
+
})
|
166
|
+
|
167
|
+
assert(object)
|
168
|
+
assert(object._metadata)
|
169
|
+
assert.deepEqual(object._metadata.unbundled, ['other2'])
|
170
|
+
})
|
171
|
+
})
|
172
|
+
|
173
|
+
it('should pick up messageId from AJS', () => {
|
174
|
+
normalize(analytics, object, options, {}) // ajs core generates the message ID here
|
175
|
+
const messageId = object.messageId
|
176
|
+
|
177
|
+
normalize(analytics, object, options, {})
|
178
|
+
assert.equal(object.messageId, messageId)
|
179
|
+
})
|
180
|
+
})
|
181
|
+
})
|
@@ -0,0 +1,82 @@
|
|
1
|
+
import { hightouchio, HightouchioSettings } from '..'
|
2
|
+
import { Analytics } from '../../../core/analytics'
|
3
|
+
// @ts-ignore isOffline mocked dependency is accused as unused
|
4
|
+
import { isOffline } from '../../../core/connection'
|
5
|
+
import { Plugin } from '../../../core/plugin'
|
6
|
+
import { envEnrichment } from '../../env-enrichment'
|
7
|
+
import { scheduleFlush } from '../schedule-flush'
|
8
|
+
import * as PPQ from '../../../lib/priority-queue/persisted'
|
9
|
+
import * as PQ from '../../../lib/priority-queue'
|
10
|
+
import { Context } from '../../../core/context'
|
11
|
+
|
12
|
+
jest.mock('../schedule-flush')
|
13
|
+
|
14
|
+
type QueueType = 'priority' | 'persisted'
|
15
|
+
|
16
|
+
describe('Hightouch.io retries', () => {
|
17
|
+
let options: HightouchioSettings
|
18
|
+
let analytics: Analytics
|
19
|
+
let hightouch: Plugin
|
20
|
+
let queue: (PPQ.PersistedPriorityQueue | PQ.PriorityQueue<Context>) & {
|
21
|
+
__type?: QueueType
|
22
|
+
}
|
23
|
+
;[false, true].forEach((persistenceIsDisabled) => {
|
24
|
+
describe(`disableClientPersistence: ${persistenceIsDisabled}`, () => {
|
25
|
+
beforeEach(async () => {
|
26
|
+
jest.resetAllMocks()
|
27
|
+
jest.restoreAllMocks()
|
28
|
+
|
29
|
+
// @ts-expect-error reassign import
|
30
|
+
isOffline = jest.fn().mockImplementation(() => true)
|
31
|
+
|
32
|
+
options = { apiKey: 'foo' }
|
33
|
+
analytics = new Analytics(
|
34
|
+
{ writeKey: options.apiKey },
|
35
|
+
{
|
36
|
+
retryQueue: true,
|
37
|
+
disableClientPersistence: persistenceIsDisabled,
|
38
|
+
}
|
39
|
+
)
|
40
|
+
|
41
|
+
if (persistenceIsDisabled) {
|
42
|
+
queue = new PQ.PriorityQueue(3, [])
|
43
|
+
queue['__type'] = 'priority'
|
44
|
+
Object.defineProperty(PQ, 'PriorityQueue', {
|
45
|
+
writable: true,
|
46
|
+
value: jest.fn().mockImplementation(() => queue),
|
47
|
+
})
|
48
|
+
} else {
|
49
|
+
queue = new PPQ.PersistedPriorityQueue(
|
50
|
+
3,
|
51
|
+
`${options.apiKey}:test-hightouch.io`
|
52
|
+
)
|
53
|
+
queue['__type'] = 'persisted'
|
54
|
+
Object.defineProperty(PPQ, 'PersistedPriorityQueue', {
|
55
|
+
writable: true,
|
56
|
+
value: jest.fn().mockImplementation(() => queue),
|
57
|
+
})
|
58
|
+
}
|
59
|
+
|
60
|
+
hightouch = await hightouchio(analytics, options, {})
|
61
|
+
|
62
|
+
await analytics.register(hightouch, envEnrichment)
|
63
|
+
})
|
64
|
+
|
65
|
+
test(`add events to the queue`, async () => {
|
66
|
+
jest.spyOn(queue, 'push')
|
67
|
+
|
68
|
+
const ctx = await analytics.track('event')
|
69
|
+
|
70
|
+
expect(scheduleFlush).toHaveBeenCalled()
|
71
|
+
/* eslint-disable @typescript-eslint/unbound-method */
|
72
|
+
expect(queue.push).toHaveBeenCalled()
|
73
|
+
expect(queue.length).toBe(1)
|
74
|
+
expect(ctx.attempts).toBe(1)
|
75
|
+
expect(isOffline).toHaveBeenCalledTimes(2)
|
76
|
+
expect(queue.__type).toBe<QueueType>(
|
77
|
+
persistenceIsDisabled ? 'priority' : 'persisted'
|
78
|
+
)
|
79
|
+
})
|
80
|
+
})
|
81
|
+
})
|
82
|
+
})
|
@@ -0,0 +1,127 @@
|
|
1
|
+
import { HightouchEvent } from '../../core/events'
|
2
|
+
import { fetch } from '../../lib/fetch'
|
3
|
+
import { onPageChange } from '../../lib/on-page-change'
|
4
|
+
|
5
|
+
export type BatchingDispatchConfig = {
|
6
|
+
size?: number
|
7
|
+
timeout?: number
|
8
|
+
}
|
9
|
+
|
10
|
+
const MAX_PAYLOAD_SIZE = 500
|
11
|
+
|
12
|
+
function kilobytes(buffer: unknown): number {
|
13
|
+
const size = encodeURI(JSON.stringify(buffer)).split(/%..|./).length - 1
|
14
|
+
return size / 1024
|
15
|
+
}
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Checks if the payload is over or close to
|
19
|
+
* the maximum payload size allowed by tracking
|
20
|
+
* API.
|
21
|
+
*/
|
22
|
+
function approachingTrackingAPILimit(buffer: unknown): boolean {
|
23
|
+
return kilobytes(buffer) >= MAX_PAYLOAD_SIZE - 50
|
24
|
+
}
|
25
|
+
|
26
|
+
function chunks(batch: object[]): Array<object[]> {
|
27
|
+
const result: object[][] = []
|
28
|
+
let index = 0
|
29
|
+
|
30
|
+
batch.forEach((item) => {
|
31
|
+
const size = kilobytes(result[index])
|
32
|
+
if (size >= 64) {
|
33
|
+
index++
|
34
|
+
}
|
35
|
+
|
36
|
+
if (result[index]) {
|
37
|
+
result[index].push(item)
|
38
|
+
} else {
|
39
|
+
result[index] = [item]
|
40
|
+
}
|
41
|
+
})
|
42
|
+
|
43
|
+
return result
|
44
|
+
}
|
45
|
+
|
46
|
+
export default function batch(
|
47
|
+
apiHost: string,
|
48
|
+
config?: BatchingDispatchConfig,
|
49
|
+
protocol = 'https'
|
50
|
+
) {
|
51
|
+
let buffer: object[] = []
|
52
|
+
let pageUnloaded = false
|
53
|
+
|
54
|
+
const limit = config?.size ?? 10
|
55
|
+
const timeout = config?.timeout ?? 5000
|
56
|
+
|
57
|
+
function sendBatch(batch: object[]) {
|
58
|
+
if (batch.length === 0) {
|
59
|
+
return
|
60
|
+
}
|
61
|
+
|
62
|
+
const writeKey = (batch[0] as HightouchEvent)?.writeKey
|
63
|
+
|
64
|
+
// Remove sentAt from every event as batching only needs a single timestamp
|
65
|
+
const updatedBatch = batch.map((event) => {
|
66
|
+
const { sentAt, ...newEvent } = event as HightouchEvent
|
67
|
+
return newEvent
|
68
|
+
})
|
69
|
+
|
70
|
+
return fetch(`${protocol}://${apiHost}/v1/batch`, {
|
71
|
+
keepalive: pageUnloaded,
|
72
|
+
headers: {
|
73
|
+
Accept: 'application/json',
|
74
|
+
'Content-Type': 'application/json',
|
75
|
+
},
|
76
|
+
method: 'post',
|
77
|
+
body: JSON.stringify({
|
78
|
+
writeKey,
|
79
|
+
batch: updatedBatch,
|
80
|
+
sentAt: new Date().toISOString(),
|
81
|
+
}),
|
82
|
+
})
|
83
|
+
}
|
84
|
+
|
85
|
+
async function flush(): Promise<unknown> {
|
86
|
+
if (buffer.length) {
|
87
|
+
const batch = buffer
|
88
|
+
buffer = []
|
89
|
+
return sendBatch(batch)
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
let schedule: NodeJS.Timeout | undefined
|
94
|
+
|
95
|
+
function scheduleFlush(): void {
|
96
|
+
if (schedule) {
|
97
|
+
return
|
98
|
+
}
|
99
|
+
|
100
|
+
schedule = setTimeout(() => {
|
101
|
+
schedule = undefined
|
102
|
+
flush().catch(console.error)
|
103
|
+
}, timeout)
|
104
|
+
}
|
105
|
+
|
106
|
+
onPageChange((unloaded) => {
|
107
|
+
pageUnloaded = unloaded
|
108
|
+
|
109
|
+
if (pageUnloaded && buffer.length) {
|
110
|
+
const reqs = chunks(buffer).map(sendBatch)
|
111
|
+
Promise.all(reqs).catch(console.error)
|
112
|
+
}
|
113
|
+
})
|
114
|
+
|
115
|
+
async function dispatch(_url: string, body: object): Promise<unknown> {
|
116
|
+
buffer.push(body)
|
117
|
+
|
118
|
+
const bufferOverflow =
|
119
|
+
buffer.length >= limit || approachingTrackingAPILimit(buffer)
|
120
|
+
|
121
|
+
return bufferOverflow || pageUnloaded ? flush() : scheduleFlush()
|
122
|
+
}
|
123
|
+
|
124
|
+
return {
|
125
|
+
dispatch,
|
126
|
+
}
|
127
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { fetch } from '../../lib/fetch'
|
2
|
+
|
3
|
+
export type Dispatcher = (url: string, body: object) => Promise<unknown>
|
4
|
+
|
5
|
+
export type StandardDispatcherConfig = {
|
6
|
+
keepalive?: boolean
|
7
|
+
}
|
8
|
+
|
9
|
+
export default function (config?: StandardDispatcherConfig): {
|
10
|
+
dispatch: Dispatcher
|
11
|
+
} {
|
12
|
+
function dispatch(url: string, body: object): Promise<unknown> {
|
13
|
+
return fetch(url, {
|
14
|
+
keepalive: config?.keepalive,
|
15
|
+
headers: {
|
16
|
+
Accept: 'application/json',
|
17
|
+
'Content-Type': 'application/json',
|
18
|
+
},
|
19
|
+
method: 'post',
|
20
|
+
body: JSON.stringify(body),
|
21
|
+
})
|
22
|
+
}
|
23
|
+
|
24
|
+
return {
|
25
|
+
dispatch,
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,147 @@
|
|
1
|
+
import { Facade } from '@segment/facade'
|
2
|
+
import { Analytics } from '../../core/analytics'
|
3
|
+
import { LegacySettings } from '../../browser'
|
4
|
+
import { isOffline } from '../../core/connection'
|
5
|
+
import { Context } from '../../core/context'
|
6
|
+
import { Plugin } from '../../core/plugin'
|
7
|
+
import { PriorityQueue } from '../../lib/priority-queue'
|
8
|
+
import { PersistedPriorityQueue } from '../../lib/priority-queue/persisted'
|
9
|
+
import { toFacade } from '../../lib/to-facade'
|
10
|
+
import batch, { BatchingDispatchConfig } from './batched-dispatcher'
|
11
|
+
import standard, { StandardDispatcherConfig } from './fetch-dispatcher'
|
12
|
+
import { normalize } from './normalize'
|
13
|
+
import { scheduleFlush } from './schedule-flush'
|
14
|
+
import { HIGHTOUCH_API_HOST } from '../../core/constants'
|
15
|
+
|
16
|
+
type DeliveryStrategy =
|
17
|
+
| {
|
18
|
+
strategy?: 'standard'
|
19
|
+
config?: StandardDispatcherConfig
|
20
|
+
}
|
21
|
+
| {
|
22
|
+
strategy?: 'batching'
|
23
|
+
config?: BatchingDispatchConfig
|
24
|
+
}
|
25
|
+
|
26
|
+
export type HightouchioSettings = {
|
27
|
+
apiKey: string
|
28
|
+
apiHost?: string
|
29
|
+
protocol?: 'http' | 'https'
|
30
|
+
|
31
|
+
addBundledMetadata?: boolean
|
32
|
+
unbundledIntegrations?: string[]
|
33
|
+
bundledConfigIds?: string[]
|
34
|
+
unbundledConfigIds?: string[]
|
35
|
+
|
36
|
+
maybeBundledConfigIds?: Record<string, string[]>
|
37
|
+
|
38
|
+
deliveryStrategy?: DeliveryStrategy
|
39
|
+
}
|
40
|
+
|
41
|
+
type JSON = ReturnType<Facade['json']>
|
42
|
+
|
43
|
+
function onAlias(analytics: Analytics, json: JSON): JSON {
|
44
|
+
const user = analytics.user()
|
45
|
+
json.previousId =
|
46
|
+
json.previousId ?? json.from ?? user.id() ?? user.anonymousId()
|
47
|
+
json.userId = json.userId ?? json.to
|
48
|
+
delete json.from
|
49
|
+
delete json.to
|
50
|
+
return json
|
51
|
+
}
|
52
|
+
|
53
|
+
export function hightouchio(
|
54
|
+
analytics: Analytics,
|
55
|
+
settings?: HightouchioSettings,
|
56
|
+
integrations?: LegacySettings['integrations']
|
57
|
+
): Plugin {
|
58
|
+
// Attach `pagehide` before buffer is created so that inflight events are added
|
59
|
+
// to the buffer before the buffer persists events in its own `pagehide` handler.
|
60
|
+
window.addEventListener('pagehide', () => {
|
61
|
+
buffer.push(...Array.from(inflightEvents))
|
62
|
+
inflightEvents.clear()
|
63
|
+
})
|
64
|
+
|
65
|
+
const writeKey = settings?.apiKey ?? ''
|
66
|
+
|
67
|
+
const buffer = analytics.options.disableClientPersistence
|
68
|
+
? new PriorityQueue<Context>(analytics.queue.queue.maxAttempts, [])
|
69
|
+
: new PersistedPriorityQueue(
|
70
|
+
analytics.queue.queue.maxAttempts,
|
71
|
+
`${writeKey}:dest-Hightouch.io`
|
72
|
+
)
|
73
|
+
|
74
|
+
const inflightEvents = new Set<Context>()
|
75
|
+
const flushing = false
|
76
|
+
|
77
|
+
const apiHost = settings?.apiHost ?? HIGHTOUCH_API_HOST
|
78
|
+
const protocol = settings?.protocol ?? 'https'
|
79
|
+
const remote = `${protocol}://${apiHost}`
|
80
|
+
|
81
|
+
const deliveryStrategy = settings?.deliveryStrategy
|
82
|
+
const client =
|
83
|
+
deliveryStrategy?.strategy === 'batching'
|
84
|
+
? batch(apiHost, deliveryStrategy.config, protocol)
|
85
|
+
: standard(deliveryStrategy?.config as StandardDispatcherConfig)
|
86
|
+
|
87
|
+
async function send(ctx: Context): Promise<Context> {
|
88
|
+
if (isOffline()) {
|
89
|
+
buffer.push(ctx)
|
90
|
+
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
91
|
+
scheduleFlush(flushing, buffer, hightouch, scheduleFlush)
|
92
|
+
return ctx
|
93
|
+
}
|
94
|
+
|
95
|
+
inflightEvents.add(ctx)
|
96
|
+
|
97
|
+
const eventType = ctx.event.type
|
98
|
+
|
99
|
+
let json = toFacade(ctx.event).json()
|
100
|
+
|
101
|
+
if (ctx.event.type === 'track') {
|
102
|
+
delete json.traits
|
103
|
+
}
|
104
|
+
|
105
|
+
if (ctx.event.type === 'alias') {
|
106
|
+
json = onAlias(analytics, json)
|
107
|
+
}
|
108
|
+
|
109
|
+
return client
|
110
|
+
.dispatch(
|
111
|
+
`${remote}/v1/${eventType}`,
|
112
|
+
normalize(analytics, json, settings, integrations)
|
113
|
+
)
|
114
|
+
.then(() => ctx)
|
115
|
+
.catch(() => {
|
116
|
+
buffer.pushWithBackoff(ctx)
|
117
|
+
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
118
|
+
scheduleFlush(flushing, buffer, hightouch, scheduleFlush)
|
119
|
+
return ctx
|
120
|
+
})
|
121
|
+
.finally(() => {
|
122
|
+
inflightEvents.delete(ctx)
|
123
|
+
})
|
124
|
+
}
|
125
|
+
|
126
|
+
const hightouch: Plugin = {
|
127
|
+
name: 'Hightouch.io',
|
128
|
+
type: 'after',
|
129
|
+
version: '0.1.0',
|
130
|
+
isLoaded: (): boolean => true,
|
131
|
+
load: (): Promise<void> => Promise.resolve(),
|
132
|
+
track: send,
|
133
|
+
identify: send,
|
134
|
+
page: send,
|
135
|
+
alias: send,
|
136
|
+
group: send,
|
137
|
+
screen: send,
|
138
|
+
}
|
139
|
+
|
140
|
+
// Buffer may already have items if they were previously stored in localStorage.
|
141
|
+
// Start flushing them immediately.
|
142
|
+
if (buffer.todo) {
|
143
|
+
scheduleFlush(flushing, buffer, hightouch, scheduleFlush)
|
144
|
+
}
|
145
|
+
|
146
|
+
return hightouch
|
147
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
import { Analytics } from '../../core/analytics'
|
2
|
+
import { LegacySettings } from '../../browser'
|
3
|
+
import { SegmentFacade } from '../../lib/to-facade'
|
4
|
+
import { HightouchioSettings } from './index'
|
5
|
+
|
6
|
+
export function normalize(
|
7
|
+
analytics: Analytics,
|
8
|
+
json: ReturnType<SegmentFacade['json']>,
|
9
|
+
settings?: HightouchioSettings,
|
10
|
+
integrations?: LegacySettings['integrations']
|
11
|
+
): object {
|
12
|
+
const user = analytics.user()
|
13
|
+
|
14
|
+
delete json.options
|
15
|
+
|
16
|
+
json.writeKey = settings?.apiKey
|
17
|
+
|
18
|
+
json.userId = json.userId || user.id()
|
19
|
+
json.anonymousId = json.anonymousId || user.anonymousId()
|
20
|
+
|
21
|
+
json.sentAt = new Date()
|
22
|
+
|
23
|
+
const failed = analytics.queue.failedInitializations || []
|
24
|
+
if (failed.length > 0) {
|
25
|
+
json._metadata = { failedInitializations: failed }
|
26
|
+
}
|
27
|
+
|
28
|
+
const bundled: string[] = []
|
29
|
+
const unbundled: string[] = []
|
30
|
+
|
31
|
+
for (const key in integrations) {
|
32
|
+
const integration = integrations[key]
|
33
|
+
if (key === 'Hightouch.io') {
|
34
|
+
bundled.push(key)
|
35
|
+
}
|
36
|
+
if (integration.bundlingStatus === 'bundled') {
|
37
|
+
bundled.push(key)
|
38
|
+
}
|
39
|
+
if (integration.bundlingStatus === 'unbundled') {
|
40
|
+
unbundled.push(key)
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
// This will make sure that the disabled cloud mode destinations will be
|
45
|
+
// included in the unbundled list.
|
46
|
+
for (const settingsUnbundled of settings?.unbundledIntegrations || []) {
|
47
|
+
if (!unbundled.includes(settingsUnbundled)) {
|
48
|
+
unbundled.push(settingsUnbundled)
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
const configIds = settings?.maybeBundledConfigIds ?? {}
|
53
|
+
const bundledConfigIds: string[] = []
|
54
|
+
|
55
|
+
bundled.sort().forEach((name) => {
|
56
|
+
;(configIds[name] ?? []).forEach((id) => {
|
57
|
+
bundledConfigIds.push(id)
|
58
|
+
})
|
59
|
+
})
|
60
|
+
|
61
|
+
if (settings?.addBundledMetadata !== false) {
|
62
|
+
json._metadata = {
|
63
|
+
...json._metadata,
|
64
|
+
bundled: bundled.sort(),
|
65
|
+
unbundled: unbundled.sort(),
|
66
|
+
bundledIds: bundledConfigIds,
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
return json
|
71
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
import { isOffline } from '../../core/connection'
|
2
|
+
import { Context } from '../../core/context'
|
3
|
+
import { Plugin } from '../../core/plugin'
|
4
|
+
import { attempt } from '@ht-sdks/events-sdk-js-core'
|
5
|
+
import { pWhile } from '../../lib/p-while'
|
6
|
+
import { PriorityQueue } from '../../lib/priority-queue'
|
7
|
+
|
8
|
+
async function flushQueue(
|
9
|
+
xt: Plugin,
|
10
|
+
queue: PriorityQueue<Context>
|
11
|
+
): Promise<PriorityQueue<Context>> {
|
12
|
+
const failedQueue: Context[] = []
|
13
|
+
if (isOffline()) {
|
14
|
+
return queue
|
15
|
+
}
|
16
|
+
|
17
|
+
await pWhile(
|
18
|
+
() => queue.length > 0 && !isOffline(),
|
19
|
+
async () => {
|
20
|
+
const ctx = queue.pop()
|
21
|
+
if (!ctx) {
|
22
|
+
return
|
23
|
+
}
|
24
|
+
|
25
|
+
const result = await attempt(ctx, xt)
|
26
|
+
const success = result instanceof Context
|
27
|
+
if (!success) {
|
28
|
+
failedQueue.push(ctx)
|
29
|
+
}
|
30
|
+
}
|
31
|
+
)
|
32
|
+
// re-add failed tasks
|
33
|
+
failedQueue.map((failed) => queue.pushWithBackoff(failed))
|
34
|
+
return queue
|
35
|
+
}
|
36
|
+
|
37
|
+
export function scheduleFlush(
|
38
|
+
flushing: boolean,
|
39
|
+
buffer: PriorityQueue<Context>,
|
40
|
+
xt: Plugin,
|
41
|
+
scheduleFlush: Function
|
42
|
+
): void {
|
43
|
+
if (flushing) {
|
44
|
+
return
|
45
|
+
}
|
46
|
+
|
47
|
+
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
48
|
+
setTimeout(async () => {
|
49
|
+
let isFlushing = true
|
50
|
+
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
51
|
+
const newBuffer = await flushQueue(xt, buffer)
|
52
|
+
isFlushing = false
|
53
|
+
|
54
|
+
if (buffer.todo > 0) {
|
55
|
+
scheduleFlush(isFlushing, newBuffer, xt, scheduleFlush)
|
56
|
+
}
|
57
|
+
}, Math.random() * 5000)
|
58
|
+
}
|