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,392 @@
|
|
1
|
+
import { Integrations, JSONObject } from '../../core/events'
|
2
|
+
import { Alias, Facade, Group, Identify, Page, Track } from '@segment/facade'
|
3
|
+
import { Analytics, InitOptions } from '../../core/analytics'
|
4
|
+
import { LegacySettings } from '../../browser'
|
5
|
+
import { isOffline, isOnline } from '../../core/connection'
|
6
|
+
import { Context, ContextCancelation } from '../../core/context'
|
7
|
+
import { isServer } from '../../core/environment'
|
8
|
+
import { DestinationPlugin, Plugin } from '../../core/plugin'
|
9
|
+
import { attempt } from '@ht-sdks/events-sdk-js-core'
|
10
|
+
import { isPlanEventEnabled } from '../../lib/is-plan-event-enabled'
|
11
|
+
import { mergedOptions } from '../../lib/merged-options'
|
12
|
+
import { pWhile } from '../../lib/p-while'
|
13
|
+
import { PriorityQueue } from '../../lib/priority-queue'
|
14
|
+
import { PersistedPriorityQueue } from '../../lib/priority-queue/persisted'
|
15
|
+
import {
|
16
|
+
applyDestinationMiddleware,
|
17
|
+
DestinationMiddlewareFunction,
|
18
|
+
} from '../middleware'
|
19
|
+
import {
|
20
|
+
buildIntegration,
|
21
|
+
loadIntegration,
|
22
|
+
resolveIntegrationNameFromSource,
|
23
|
+
resolveVersion,
|
24
|
+
unloadIntegration,
|
25
|
+
} from './loader'
|
26
|
+
import { LegacyIntegration, ClassicIntegrationSource } from './types'
|
27
|
+
import { isPlainObject } from '@ht-sdks/events-sdk-js-core'
|
28
|
+
import {
|
29
|
+
isDisabledIntegration as shouldSkipIntegration,
|
30
|
+
isInstallableIntegration,
|
31
|
+
} from './utils'
|
32
|
+
|
33
|
+
export type ClassType<T> = new (...args: unknown[]) => T
|
34
|
+
|
35
|
+
async function flushQueue(
|
36
|
+
xt: Plugin,
|
37
|
+
queue: PriorityQueue<Context>
|
38
|
+
): Promise<PriorityQueue<Context>> {
|
39
|
+
const failedQueue: Context[] = []
|
40
|
+
|
41
|
+
if (isOffline()) {
|
42
|
+
return queue
|
43
|
+
}
|
44
|
+
|
45
|
+
await pWhile(
|
46
|
+
() => queue.length > 0 && isOnline(),
|
47
|
+
async () => {
|
48
|
+
const ctx = queue.pop()
|
49
|
+
if (!ctx) {
|
50
|
+
return
|
51
|
+
}
|
52
|
+
|
53
|
+
const result = await attempt(ctx, xt)
|
54
|
+
const success = result instanceof Context
|
55
|
+
if (!success) {
|
56
|
+
failedQueue.push(ctx)
|
57
|
+
}
|
58
|
+
}
|
59
|
+
)
|
60
|
+
|
61
|
+
// re-add failed tasks
|
62
|
+
failedQueue.map((failed) => queue.pushWithBackoff(failed))
|
63
|
+
return queue
|
64
|
+
}
|
65
|
+
|
66
|
+
export class LegacyDestination implements DestinationPlugin {
|
67
|
+
name: string
|
68
|
+
version: string
|
69
|
+
settings: JSONObject
|
70
|
+
options: InitOptions = {}
|
71
|
+
type: Plugin['type'] = 'destination'
|
72
|
+
middleware: DestinationMiddlewareFunction[] = []
|
73
|
+
|
74
|
+
private _ready = false
|
75
|
+
private _initialized = false
|
76
|
+
private onReady: Promise<unknown> | undefined
|
77
|
+
private onInitialize: Promise<unknown> | undefined
|
78
|
+
private disableAutoISOConversion: boolean
|
79
|
+
|
80
|
+
integrationSource?: ClassicIntegrationSource
|
81
|
+
integration: LegacyIntegration | undefined
|
82
|
+
|
83
|
+
buffer: PriorityQueue<Context>
|
84
|
+
flushing = false
|
85
|
+
|
86
|
+
constructor(
|
87
|
+
name: string,
|
88
|
+
version: string,
|
89
|
+
writeKey: string,
|
90
|
+
settings: JSONObject = {},
|
91
|
+
options: InitOptions,
|
92
|
+
integrationSource?: ClassicIntegrationSource
|
93
|
+
) {
|
94
|
+
this.name = name
|
95
|
+
this.version = version
|
96
|
+
this.settings = { ...settings }
|
97
|
+
this.disableAutoISOConversion = options.disableAutoISOConversion || false
|
98
|
+
this.integrationSource = integrationSource
|
99
|
+
|
100
|
+
// AJS-Renderer sets an extraneous `type` setting that clobbers
|
101
|
+
// existing type defaults. We need to remove it if it's present
|
102
|
+
if (this.settings['type'] && this.settings['type'] === 'browser') {
|
103
|
+
delete this.settings['type']
|
104
|
+
}
|
105
|
+
|
106
|
+
this.options = options
|
107
|
+
this.buffer = options.disableClientPersistence
|
108
|
+
? new PriorityQueue(4, [])
|
109
|
+
: new PersistedPriorityQueue(4, `${writeKey}:dest-${name}`)
|
110
|
+
|
111
|
+
this.scheduleFlush()
|
112
|
+
}
|
113
|
+
|
114
|
+
isLoaded(): boolean {
|
115
|
+
return this._ready
|
116
|
+
}
|
117
|
+
|
118
|
+
ready(): Promise<unknown> {
|
119
|
+
return this.onReady ?? Promise.resolve()
|
120
|
+
}
|
121
|
+
|
122
|
+
async load(ctx: Context, analyticsInstance: Analytics): Promise<void> {
|
123
|
+
if (this._ready || this.onReady !== undefined) {
|
124
|
+
return
|
125
|
+
}
|
126
|
+
|
127
|
+
const integrationSource =
|
128
|
+
this.integrationSource ??
|
129
|
+
(await loadIntegration(
|
130
|
+
ctx,
|
131
|
+
this.name,
|
132
|
+
this.version,
|
133
|
+
this.options.obfuscate
|
134
|
+
))
|
135
|
+
|
136
|
+
this.integration = buildIntegration(
|
137
|
+
integrationSource,
|
138
|
+
this.settings,
|
139
|
+
analyticsInstance
|
140
|
+
)
|
141
|
+
|
142
|
+
this.onReady = new Promise((resolve) => {
|
143
|
+
const onReadyFn = (): void => {
|
144
|
+
this._ready = true
|
145
|
+
resolve(true)
|
146
|
+
}
|
147
|
+
|
148
|
+
this.integration!.once('ready', onReadyFn)
|
149
|
+
})
|
150
|
+
|
151
|
+
this.onInitialize = new Promise((resolve) => {
|
152
|
+
const onInit = (): void => {
|
153
|
+
this._initialized = true
|
154
|
+
resolve(true)
|
155
|
+
}
|
156
|
+
|
157
|
+
this.integration!.on('initialize', onInit)
|
158
|
+
})
|
159
|
+
|
160
|
+
try {
|
161
|
+
ctx.stats.increment('analytics_js.integration.invoke', 1, [
|
162
|
+
`method:initialize`,
|
163
|
+
`integration_name:${this.name}`,
|
164
|
+
])
|
165
|
+
|
166
|
+
this.integration.initialize()
|
167
|
+
} catch (error) {
|
168
|
+
ctx.stats.increment('analytics_js.integration.invoke.error', 1, [
|
169
|
+
`method:initialize`,
|
170
|
+
`integration_name:${this.name}`,
|
171
|
+
])
|
172
|
+
|
173
|
+
throw error
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
unload(_ctx: Context, _analyticsInstance: Analytics): Promise<void> {
|
178
|
+
return unloadIntegration(this.name, this.version, this.options.obfuscate)
|
179
|
+
}
|
180
|
+
|
181
|
+
addMiddleware(...fn: DestinationMiddlewareFunction[]): void {
|
182
|
+
this.middleware = this.middleware.concat(...fn)
|
183
|
+
}
|
184
|
+
|
185
|
+
shouldBuffer(ctx: Context): boolean {
|
186
|
+
return (
|
187
|
+
// page events can't be buffered because of destinations that automatically add page views
|
188
|
+
ctx.event.type !== 'page' &&
|
189
|
+
(isOffline() || this._ready === false || this._initialized === false)
|
190
|
+
)
|
191
|
+
}
|
192
|
+
|
193
|
+
private async send<T extends Facade>(
|
194
|
+
ctx: Context,
|
195
|
+
clz: ClassType<T>,
|
196
|
+
eventType: 'track' | 'identify' | 'page' | 'alias' | 'group'
|
197
|
+
): Promise<Context> {
|
198
|
+
if (this.shouldBuffer(ctx)) {
|
199
|
+
this.buffer.push(ctx)
|
200
|
+
this.scheduleFlush()
|
201
|
+
return ctx
|
202
|
+
}
|
203
|
+
|
204
|
+
const plan = this.options?.plan?.track
|
205
|
+
const ev = ctx.event.event
|
206
|
+
|
207
|
+
if (plan && ev && this.name !== 'Hightouch.io') {
|
208
|
+
// events are always sent to hightouch (legacy behavior)
|
209
|
+
const planEvent = plan[ev]
|
210
|
+
if (!isPlanEventEnabled(plan, planEvent)) {
|
211
|
+
ctx.updateEvent('integrations', {
|
212
|
+
...ctx.event.integrations,
|
213
|
+
All: false,
|
214
|
+
'Hightouch.io': true,
|
215
|
+
})
|
216
|
+
ctx.cancel(
|
217
|
+
new ContextCancelation({
|
218
|
+
retry: false,
|
219
|
+
reason: `Event ${ev} disabled for integration ${this.name} in tracking plan`,
|
220
|
+
type: 'Dropped by plan',
|
221
|
+
})
|
222
|
+
)
|
223
|
+
return ctx
|
224
|
+
} else {
|
225
|
+
ctx.updateEvent('integrations', {
|
226
|
+
...ctx.event.integrations,
|
227
|
+
...planEvent?.integrations,
|
228
|
+
})
|
229
|
+
}
|
230
|
+
|
231
|
+
if (planEvent?.enabled && planEvent?.integrations![this.name] === false) {
|
232
|
+
ctx.cancel(
|
233
|
+
new ContextCancelation({
|
234
|
+
retry: false,
|
235
|
+
reason: `Event ${ev} disabled for integration ${this.name} in tracking plan`,
|
236
|
+
type: 'Dropped by plan',
|
237
|
+
})
|
238
|
+
)
|
239
|
+
return ctx
|
240
|
+
}
|
241
|
+
}
|
242
|
+
|
243
|
+
const afterMiddleware = await applyDestinationMiddleware(
|
244
|
+
this.name,
|
245
|
+
ctx.event,
|
246
|
+
this.middleware
|
247
|
+
)
|
248
|
+
|
249
|
+
if (afterMiddleware === null) {
|
250
|
+
return ctx
|
251
|
+
}
|
252
|
+
|
253
|
+
const event = new clz(afterMiddleware, {
|
254
|
+
traverse: !this.disableAutoISOConversion,
|
255
|
+
})
|
256
|
+
|
257
|
+
ctx.stats.increment('analytics_js.integration.invoke', 1, [
|
258
|
+
`method:${eventType}`,
|
259
|
+
`integration_name:${this.name}`,
|
260
|
+
])
|
261
|
+
|
262
|
+
try {
|
263
|
+
if (this.integration) {
|
264
|
+
await this.integration.invoke.call(this.integration, eventType, event)
|
265
|
+
}
|
266
|
+
} catch (err) {
|
267
|
+
ctx.stats.increment('analytics_js.integration.invoke.error', 1, [
|
268
|
+
`method:${eventType}`,
|
269
|
+
`integration_name:${this.name}`,
|
270
|
+
])
|
271
|
+
throw err
|
272
|
+
}
|
273
|
+
|
274
|
+
return ctx
|
275
|
+
}
|
276
|
+
|
277
|
+
async track(ctx: Context): Promise<Context> {
|
278
|
+
return this.send(ctx, Track as ClassType<Track>, 'track')
|
279
|
+
}
|
280
|
+
|
281
|
+
async page(ctx: Context): Promise<Context> {
|
282
|
+
if (this.integration?._assumesPageview && !this._initialized) {
|
283
|
+
this.integration.initialize()
|
284
|
+
}
|
285
|
+
|
286
|
+
return this.onInitialize!.then(() => {
|
287
|
+
return this.send(ctx, Page as ClassType<Page>, 'page')
|
288
|
+
})
|
289
|
+
}
|
290
|
+
|
291
|
+
async identify(ctx: Context): Promise<Context> {
|
292
|
+
return this.send(ctx, Identify as ClassType<Identify>, 'identify')
|
293
|
+
}
|
294
|
+
|
295
|
+
async alias(ctx: Context): Promise<Context> {
|
296
|
+
return this.send(ctx, Alias as ClassType<Alias>, 'alias')
|
297
|
+
}
|
298
|
+
|
299
|
+
async group(ctx: Context): Promise<Context> {
|
300
|
+
return this.send(ctx, Group as ClassType<Group>, 'group')
|
301
|
+
}
|
302
|
+
|
303
|
+
private scheduleFlush(): void {
|
304
|
+
if (this.flushing) {
|
305
|
+
return
|
306
|
+
}
|
307
|
+
|
308
|
+
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
309
|
+
setTimeout(async () => {
|
310
|
+
this.flushing = true
|
311
|
+
this.buffer = await flushQueue(this, this.buffer)
|
312
|
+
this.flushing = false
|
313
|
+
|
314
|
+
if (this.buffer.todo > 0) {
|
315
|
+
this.scheduleFlush()
|
316
|
+
}
|
317
|
+
}, Math.random() * 5000)
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
export function ajsDestinations(
|
322
|
+
writeKey: string,
|
323
|
+
settings: LegacySettings,
|
324
|
+
globalIntegrations: Integrations = {},
|
325
|
+
options: InitOptions = {},
|
326
|
+
routingMiddleware?: DestinationMiddlewareFunction,
|
327
|
+
legacyIntegrationSources?: ClassicIntegrationSource[]
|
328
|
+
): LegacyDestination[] {
|
329
|
+
if (isServer()) {
|
330
|
+
return []
|
331
|
+
}
|
332
|
+
|
333
|
+
if (settings.plan) {
|
334
|
+
options = options ?? {}
|
335
|
+
options.plan = settings.plan
|
336
|
+
}
|
337
|
+
|
338
|
+
const routingRules = settings.middlewareSettings?.routingRules ?? []
|
339
|
+
const remoteIntegrationsConfig = settings.integrations
|
340
|
+
const localIntegrationsConfig = options.integrations
|
341
|
+
// merged remote CDN settings with user provided options
|
342
|
+
const integrationOptions = mergedOptions(settings, options ?? {}) as Record<
|
343
|
+
string,
|
344
|
+
JSONObject
|
345
|
+
>
|
346
|
+
|
347
|
+
const adhocIntegrationSources = legacyIntegrationSources?.reduce(
|
348
|
+
(acc, integrationSource) => ({
|
349
|
+
...acc,
|
350
|
+
[resolveIntegrationNameFromSource(integrationSource)]: integrationSource,
|
351
|
+
}),
|
352
|
+
{} as Record<string, ClassicIntegrationSource>
|
353
|
+
)
|
354
|
+
|
355
|
+
const installableIntegrations = new Set([
|
356
|
+
// Remotely configured installable integrations
|
357
|
+
...Object.keys(remoteIntegrationsConfig).filter((name) =>
|
358
|
+
isInstallableIntegration(name, remoteIntegrationsConfig[name])
|
359
|
+
),
|
360
|
+
|
361
|
+
// Directly provided integration sources are only installable if settings for them are available
|
362
|
+
...Object.keys(adhocIntegrationSources || {}).filter(
|
363
|
+
(name) =>
|
364
|
+
isPlainObject(remoteIntegrationsConfig[name]) ||
|
365
|
+
isPlainObject(localIntegrationsConfig?.[name])
|
366
|
+
),
|
367
|
+
])
|
368
|
+
|
369
|
+
return Array.from(installableIntegrations)
|
370
|
+
.filter((name) => !shouldSkipIntegration(name, globalIntegrations))
|
371
|
+
.map((name) => {
|
372
|
+
const integrationSettings = remoteIntegrationsConfig[name]
|
373
|
+
const version = resolveVersion(integrationSettings)
|
374
|
+
const destination = new LegacyDestination(
|
375
|
+
name,
|
376
|
+
version,
|
377
|
+
writeKey,
|
378
|
+
integrationOptions[name],
|
379
|
+
options,
|
380
|
+
adhocIntegrationSources?.[name]
|
381
|
+
)
|
382
|
+
|
383
|
+
const routing = routingRules.filter(
|
384
|
+
(rule) => rule.destinationName === name
|
385
|
+
)
|
386
|
+
if (routing.length > 0 && routingMiddleware) {
|
387
|
+
destination.addMiddleware(routingMiddleware)
|
388
|
+
}
|
389
|
+
|
390
|
+
return destination
|
391
|
+
})
|
392
|
+
}
|
@@ -0,0 +1,129 @@
|
|
1
|
+
import { Analytics } from '../../core/analytics'
|
2
|
+
import { LegacyIntegrationConfiguration } from '../../browser'
|
3
|
+
import { getNextIntegrationsURL } from '../../lib/parse-cdn'
|
4
|
+
import { Context } from '../../core/context'
|
5
|
+
import { User } from '../../core/user'
|
6
|
+
import { loadScript, unloadScript } from '../../lib/load-script'
|
7
|
+
import {
|
8
|
+
LegacyIntegration,
|
9
|
+
ClassicIntegrationBuilder,
|
10
|
+
ClassicIntegrationSource,
|
11
|
+
} from './types'
|
12
|
+
|
13
|
+
function normalizeName(name: string): string {
|
14
|
+
return name.toLowerCase().replace('.', '').replace(/\s+/g, '-')
|
15
|
+
}
|
16
|
+
|
17
|
+
function obfuscatePathName(pathName: string, obfuscate = false): string | void {
|
18
|
+
return obfuscate ? btoa(pathName).replace(/=/g, '') : undefined
|
19
|
+
}
|
20
|
+
|
21
|
+
export function resolveIntegrationNameFromSource(
|
22
|
+
integrationSource: ClassicIntegrationSource
|
23
|
+
) {
|
24
|
+
return (
|
25
|
+
'Integration' in integrationSource
|
26
|
+
? integrationSource.Integration
|
27
|
+
: integrationSource
|
28
|
+
).prototype.name
|
29
|
+
}
|
30
|
+
|
31
|
+
function recordLoadMetrics(fullPath: string, ctx: Context, name: string): void {
|
32
|
+
try {
|
33
|
+
const [metric] =
|
34
|
+
window?.performance?.getEntriesByName(fullPath, 'resource') ?? []
|
35
|
+
// we assume everything that took under 100ms is cached
|
36
|
+
metric &&
|
37
|
+
ctx.stats.gauge('legacy_destination_time', Math.round(metric.duration), [
|
38
|
+
name,
|
39
|
+
...(metric.duration < 100 ? ['cached'] : []),
|
40
|
+
])
|
41
|
+
} catch (_) {
|
42
|
+
// not available
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
export function buildIntegration(
|
47
|
+
integrationSource: ClassicIntegrationSource,
|
48
|
+
integrationSettings: { [key: string]: any },
|
49
|
+
analyticsInstance: Analytics
|
50
|
+
): LegacyIntegration {
|
51
|
+
let integrationCtr: ClassicIntegrationBuilder
|
52
|
+
// GA and Appcues use a different interface to instantiating integrations
|
53
|
+
if ('Integration' in integrationSource) {
|
54
|
+
const analyticsStub = {
|
55
|
+
user: (): User => analyticsInstance.user(),
|
56
|
+
addIntegration: (): void => {},
|
57
|
+
}
|
58
|
+
|
59
|
+
integrationSource(analyticsStub)
|
60
|
+
integrationCtr = integrationSource.Integration
|
61
|
+
} else {
|
62
|
+
integrationCtr = integrationSource
|
63
|
+
}
|
64
|
+
|
65
|
+
const integration = new integrationCtr(integrationSettings)
|
66
|
+
integration.analytics = analyticsInstance
|
67
|
+
return integration
|
68
|
+
}
|
69
|
+
|
70
|
+
export async function loadIntegration(
|
71
|
+
ctx: Context,
|
72
|
+
name: string,
|
73
|
+
version: string,
|
74
|
+
obfuscate?: boolean
|
75
|
+
): Promise<ClassicIntegrationSource> {
|
76
|
+
const pathName = normalizeName(name)
|
77
|
+
const obfuscatedPathName = obfuscatePathName(pathName, obfuscate)
|
78
|
+
const path = getNextIntegrationsURL()
|
79
|
+
|
80
|
+
const fullPath = `${path}/integrations/${
|
81
|
+
obfuscatedPathName ?? pathName
|
82
|
+
}/${version}/${obfuscatedPathName ?? pathName}.dynamic.js.gz`
|
83
|
+
|
84
|
+
try {
|
85
|
+
await loadScript(fullPath)
|
86
|
+
recordLoadMetrics(fullPath, ctx, name)
|
87
|
+
} catch (err) {
|
88
|
+
ctx.stats.gauge('legacy_destination_time', -1, [`plugin:${name}`, `failed`])
|
89
|
+
throw err
|
90
|
+
}
|
91
|
+
|
92
|
+
// @ts-ignore
|
93
|
+
const deps: string[] = window[`${pathName}Deps`]
|
94
|
+
await Promise.all(deps.map((dep) => loadScript(path + dep + '.gz')))
|
95
|
+
|
96
|
+
// @ts-ignore
|
97
|
+
window[`${pathName}Loader`]()
|
98
|
+
|
99
|
+
return window[
|
100
|
+
// @ts-ignore
|
101
|
+
`${pathName}Integration`
|
102
|
+
] as ClassicIntegrationSource
|
103
|
+
}
|
104
|
+
|
105
|
+
export async function unloadIntegration(
|
106
|
+
name: string,
|
107
|
+
version: string,
|
108
|
+
obfuscate?: boolean
|
109
|
+
): Promise<void> {
|
110
|
+
const path = getNextIntegrationsURL()
|
111
|
+
const pathName = normalizeName(name)
|
112
|
+
const obfuscatedPathName = obfuscatePathName(name, obfuscate)
|
113
|
+
|
114
|
+
const fullPath = `${path}/integrations/${
|
115
|
+
obfuscatedPathName ?? pathName
|
116
|
+
}/${version}/${obfuscatedPathName ?? pathName}.dynamic.js.gz`
|
117
|
+
|
118
|
+
return unloadScript(fullPath)
|
119
|
+
}
|
120
|
+
|
121
|
+
export function resolveVersion(
|
122
|
+
settings?: LegacyIntegrationConfiguration
|
123
|
+
): string {
|
124
|
+
return (
|
125
|
+
settings?.versionSettings?.override ??
|
126
|
+
settings?.versionSettings?.version ??
|
127
|
+
'latest'
|
128
|
+
)
|
129
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { Group, Identify, Track, Page, Alias } from '@segment/facade'
|
2
|
+
import { Analytics } from '../../core/analytics'
|
3
|
+
import { Emitter } from '@ht-sdks/events-sdk-js-core'
|
4
|
+
import { User } from '../../core/user'
|
5
|
+
|
6
|
+
export interface LegacyIntegration extends Emitter {
|
7
|
+
name: string
|
8
|
+
analytics?: Analytics
|
9
|
+
initialize: () => void
|
10
|
+
loaded: () => boolean
|
11
|
+
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
13
|
+
invoke: (method: string, ...args: any[]) => unknown
|
14
|
+
|
15
|
+
track?: (event: Track) => void | Promise<void>
|
16
|
+
identify?: (event: Identify) => void | Promise<void>
|
17
|
+
page?: (event: Page) => void | Promise<void>
|
18
|
+
alias?: (event: Alias) => void | Promise<void>
|
19
|
+
group?: (event: Group) => void | Promise<void>
|
20
|
+
|
21
|
+
// Hightouch.io specific
|
22
|
+
ontrack?: (event: Track) => void | Promise<void>
|
23
|
+
onidentify?: (event: Identify) => void | Promise<void>
|
24
|
+
onpage?: (event: Page) => void | Promise<void>
|
25
|
+
onalias?: (event: Alias) => void | Promise<void>
|
26
|
+
ongroup?: (event: Group) => void | Promise<void>
|
27
|
+
|
28
|
+
_assumesPageview?: boolean
|
29
|
+
options?: object
|
30
|
+
}
|
31
|
+
|
32
|
+
export interface ClassicIntegrationBuilder {
|
33
|
+
new (options: object): LegacyIntegration
|
34
|
+
prototype: LegacyIntegration
|
35
|
+
}
|
36
|
+
|
37
|
+
export interface ClassicIntegrationGenerator {
|
38
|
+
(analytics: { user: () => User; addIntegration: () => void }): void
|
39
|
+
Integration: ClassicIntegrationBuilder
|
40
|
+
}
|
41
|
+
|
42
|
+
export type ClassicIntegrationSource =
|
43
|
+
| ClassicIntegrationGenerator
|
44
|
+
| ClassicIntegrationBuilder
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { Integrations } from '@ht-sdks/events-sdk-js-core'
|
2
|
+
import { LegacyIntegrationConfiguration } from '../..'
|
3
|
+
|
4
|
+
export const isInstallableIntegration = (
|
5
|
+
name: string,
|
6
|
+
integrationSettings: LegacyIntegrationConfiguration
|
7
|
+
) => {
|
8
|
+
const { type, bundlingStatus, versionSettings } = integrationSettings
|
9
|
+
// We use `!== 'unbundled'` (versus `=== 'bundled'`) to be inclusive of
|
10
|
+
// destinations without a defined value for `bundlingStatus`
|
11
|
+
const deviceMode =
|
12
|
+
bundlingStatus !== 'unbundled' &&
|
13
|
+
(type === 'browser' || versionSettings?.componentTypes?.includes('browser'))
|
14
|
+
|
15
|
+
// checking for iterable is a quick fix we need in place to prevent
|
16
|
+
// errors showing Iterable as a failed destiantion. Ideally, we should
|
17
|
+
// fix the Iterable metadata instead, but that's a longer process.
|
18
|
+
return !name.startsWith('Hightouch') && name !== 'Iterable' && deviceMode
|
19
|
+
}
|
20
|
+
|
21
|
+
export const isDisabledIntegration = (
|
22
|
+
integrationName: string,
|
23
|
+
globalIntegrations: Integrations
|
24
|
+
) => {
|
25
|
+
const allDisableAndNotDefined =
|
26
|
+
globalIntegrations.All === false &&
|
27
|
+
globalIntegrations[integrationName] === undefined
|
28
|
+
|
29
|
+
return (
|
30
|
+
globalIntegrations[integrationName] === false || allDisableAndNotDefined
|
31
|
+
)
|
32
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
const fetcher = jest.fn()
|
2
|
+
jest.mock('node-fetch', () => fetcher)
|
3
|
+
|
4
|
+
import { Analytics } from '../../../core/analytics'
|
5
|
+
import { AnalyticsNode } from '../../..'
|
6
|
+
|
7
|
+
const myDate = new Date('2016')
|
8
|
+
const _Date = Date
|
9
|
+
|
10
|
+
describe('Analytics Node', () => {
|
11
|
+
let ajs: Analytics
|
12
|
+
|
13
|
+
beforeEach(async () => {
|
14
|
+
jest.resetAllMocks()
|
15
|
+
|
16
|
+
const [analytics] = await AnalyticsNode.load({
|
17
|
+
writeKey: 'abc123',
|
18
|
+
})
|
19
|
+
|
20
|
+
ajs = analytics
|
21
|
+
|
22
|
+
// @ts-ignore
|
23
|
+
global.Date = jest.fn(() => myDate)
|
24
|
+
/* eslint-disable @typescript-eslint/unbound-method */
|
25
|
+
global.Date.UTC = _Date.UTC
|
26
|
+
global.Date.parse = _Date.parse
|
27
|
+
global.Date.now = _Date.now
|
28
|
+
})
|
29
|
+
|
30
|
+
describe('AJS', () => {
|
31
|
+
test('fireEvent instantiates the right event types', async () => {
|
32
|
+
await ajs.track('track')
|
33
|
+
expect(fetcher).toHaveBeenCalledWith(
|
34
|
+
'https://us-east-1.hightouch-events.com/v1/track',
|
35
|
+
expect.anything()
|
36
|
+
)
|
37
|
+
|
38
|
+
await ajs.identify('identify')
|
39
|
+
expect(fetcher).toHaveBeenCalledWith(
|
40
|
+
'https://us-east-1.hightouch-events.com/v1/identify',
|
41
|
+
expect.anything()
|
42
|
+
)
|
43
|
+
|
44
|
+
await ajs.page('page')
|
45
|
+
expect(fetcher).toHaveBeenCalledWith(
|
46
|
+
'https://us-east-1.hightouch-events.com/v1/page',
|
47
|
+
expect.anything()
|
48
|
+
)
|
49
|
+
|
50
|
+
await ajs.group('group')
|
51
|
+
expect(fetcher).toHaveBeenCalledWith(
|
52
|
+
'https://us-east-1.hightouch-events.com/v1/group',
|
53
|
+
expect.anything()
|
54
|
+
)
|
55
|
+
|
56
|
+
await ajs.alias('alias')
|
57
|
+
expect(fetcher).toHaveBeenCalledWith(
|
58
|
+
'https://us-east-1.hightouch-events.com/v1/alias',
|
59
|
+
expect.anything()
|
60
|
+
)
|
61
|
+
|
62
|
+
await ajs.screen('screen')
|
63
|
+
expect(fetcher).toHaveBeenCalledWith(
|
64
|
+
'https://us-east-1.hightouch-events.com/v1/screen',
|
65
|
+
expect.anything()
|
66
|
+
)
|
67
|
+
})
|
68
|
+
})
|
69
|
+
})
|