@codaco/analytics 0.5.0-alpha → 1.0.0-alpha-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
 
2
- > @codaco/analytics@0.5.0-alpha build /Users/buckhalt/Code/complexdatacollective/error-analytics-microservice/packages/analytics
3
- > tsup src/index.ts --format esm --dts --minify --clean --sourcemap
2
+ > @codaco/analytics@1.0.0-alpha-1 build /Users/jmh629/Projects/error-analytics-microservice/packages/analytics
3
+ > tsup src/index.ts --format esm --dts --clean --sourcemap
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
@@ -8,9 +8,9 @@ CLI tsup v7.2.0
8
8
  CLI Target: es2022
9
9
  CLI Cleaning output folder
10
10
  ESM Build start
11
- ESM dist/index.mjs 1.73 KB
12
- ESM dist/index.mjs.map 6.35 KB
13
- ESM ⚡️ Build success in 16ms
11
+ ESM dist/index.mjs 2.05 KB
12
+ ESM dist/index.mjs.map 5.21 KB
13
+ ESM ⚡️ Build success in 11ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 733ms
16
- DTS dist/index.d.mts 1.49 KB
15
+ DTS ⚡️ Build success in 551ms
16
+ DTS dist/index.d.mts 1.64 KB
@@ -0,0 +1,31 @@
1
+
2
+ > @codaco/analytics@0.6.0-alpha test /Users/jmh629/Projects/error-analytics-microservice/packages/analytics
3
+ > NODE_OPTIONS=--experimental-vm-modules jest "--watch"
4
+
5
+ (node:55883) ExperimentalWarning: VM Modules is an experimental feature and might change at any time
6
+ (Use `node --trace-warnings ...` to show where the warning was created)
7
+ FAIL src/index.test.mjs
8
+ Analytics client package
9
+ ✕ should be able to create a new client (1 ms)
10
+
11
+ ● Analytics client package › should be able to create a new client
12
+
13
+ TypeError: Cannot read properties of undefined (reading 'platformUrl')
14
+
15
+ 50 | private platformUrl?: string = "https://analytics.networkcanvas.dev";
16
+ 51 | private installationId: string | null = null;
17
+ > 52 |
18
+ | ^
19
+ 53 | private dispatchQueue: QueueObject<AnalyticsEventOrError>;
20
+ 54 |
21
+ 55 | private enabled: boolean = true;
22
+
23
+ at new s (src/index.ts:52:11)
24
+ at Object.<anonymous> (src/index.test.mjs:6:20)
25
+
26
+ Test Suites: 1 failed, 1 total
27
+ Tests: 1 failed, 1 total
28
+ Snapshots: 0 total
29
+ Time: 0.215 s, estimated 1 s
30
+ Ran all test suites related to changed files.
31
+
package/README.md CHANGED
@@ -2,40 +2,8 @@
2
2
 
3
3
  This npm package implements methods and types for sending analytics and errors from Fresco instances to a custom error and analytics microservice.
4
4
 
5
- It exports two methods:
5
+ It exports two functions:
6
6
 
7
- 1. trackEvent - sends an event payload to the microservice.
7
+ **createRouteHandler** - A function that creates a NextJs route handler which geolocates requests, and forwards the event payload to the microservice.
8
8
 
9
- ```ts
10
- type EventPayload = {
11
- type:
12
- | "InterviewCompleted"
13
- | "InterviewStarted"
14
- | "ProtocolInstalled"
15
- | "AppSetup";
16
- metadata?: string;
17
- timestamp?: string;
18
- isocode?: string;
19
- installationid: string;
20
- };
21
-
22
- trackEvent(event: EventPayload);
23
-
24
- ```
25
-
26
- 2. trackError - sends an error payload to the microservice.
27
-
28
- ```ts
29
- type ErrorPayload = {
30
- code: number;
31
- message: string;
32
- details: string;
33
- stacktrace: string;
34
- installationid: string;
35
- timestamp?: string;
36
- path: string;
37
- };
38
-
39
- trackError(error: ErrorPayload);
40
-
41
- ```
9
+ **makeEventTracker** - A function that returns a `trackEvent` function, which attaches timestamp data to an event, and then calls the route handler.
package/dist/index.d.mts CHANGED
@@ -1,14 +1,14 @@
1
- import { WebServiceClient } from '@maxmind/geoip2-node';
2
1
  import { NextRequest } from 'next/server';
2
+ import { WebServiceClient } from '@maxmind/geoip2-node';
3
3
 
4
4
  type GeoLocation = {
5
5
  countryCode: string;
6
6
  };
7
7
  type AnalyticsEventBase = {
8
- type: "InterviewCompleted" | "InterviewStarted" | "ProtocolInstalled" | "AppSetup" | "Error";
8
+ type: "InterviewCompleted" | "InterviewStarted" | "ProtocolInstalled" | "AppSetup" | "Error" | string;
9
9
  };
10
10
  type AnalyticsEvent = AnalyticsEventBase & {
11
- type: "InterviewCompleted" | "InterviewStarted" | "ProtocolInstalled" | "AppSetup";
11
+ type: "InterviewCompleted" | "InterviewStarted" | "ProtocolInstalled" | "AppSetup" | string;
12
12
  metadata?: Record<string, unknown>;
13
13
  };
14
14
  type AnalyticsError = AnalyticsEventBase & {
@@ -21,26 +21,23 @@ type AnalyticsError = AnalyticsEventBase & {
21
21
  };
22
22
  };
23
23
  type AnalyticsEventOrError = AnalyticsEvent | AnalyticsError;
24
- type DispatchableAnalyticsEvent = AnalyticsEventOrError & {
24
+ type AnalyticsEventOrErrorWithTimestamp = AnalyticsEventOrError & {
25
+ timestamp: Date;
26
+ };
27
+ type DispatchableAnalyticsEvent = AnalyticsEventOrErrorWithTimestamp & {
25
28
  installationId: string;
26
29
  geolocation?: GeoLocation;
27
- timestamp: Date;
28
30
  };
29
- type AnalyticsClientConfiguration = {
31
+ type RouteHandlerConfiguration = {
32
+ maxMindAccountId: string;
33
+ maxMindLicenseKey: string;
30
34
  platformUrl?: string;
35
+ getInstallationId: () => Promise<string>;
36
+ WebServiceClient: typeof WebServiceClient;
31
37
  };
32
- declare class AnalyticsClient {
33
- private platformUrl?;
34
- private installationId;
35
- private dispatchQueue;
36
- private enabled;
37
- constructor(configuration: AnalyticsClientConfiguration);
38
- createRouteHandler: (maxMindClient: WebServiceClient) => (req: NextRequest) => Promise<Response>;
39
- private processEvent;
40
- trackEvent(payload: AnalyticsEventOrError): void;
41
- setInstallationId(installationId: string): void;
42
- disable(): void;
43
- get isEnabled(): boolean;
44
- }
38
+ declare const createRouteHandler: ({ maxMindAccountId, maxMindLicenseKey, platformUrl, getInstallationId, WebServiceClient, }: RouteHandlerConfiguration) => (request: NextRequest) => Promise<Response>;
39
+ declare const makeEventTracker: ({ endpoint }: {
40
+ endpoint: string;
41
+ }) => (event: AnalyticsEventOrError) => void;
45
42
 
46
- export { AnalyticsClient, AnalyticsError, AnalyticsEvent, AnalyticsEventBase, AnalyticsEventOrError, DispatchableAnalyticsEvent };
43
+ export { AnalyticsError, AnalyticsEvent, AnalyticsEventBase, AnalyticsEventOrError, AnalyticsEventOrErrorWithTimestamp, DispatchableAnalyticsEvent, createRouteHandler, makeEventTracker };
package/dist/index.mjs CHANGED
@@ -1,2 +1,83 @@
1
- import{queue as o}from"async";var s=class{platformUrl="https://analytics.networkcanvas.dev";installationId=null;dispatchQueue;enabled=!0;constructor(e){e.platformUrl&&(this.platformUrl=e.platformUrl),this.dispatchQueue=o(this.processEvent,1),this.dispatchQueue.pause()}createRouteHandler=e=>async r=>{let n=(r.headers.get("x-forwarded-for")??"127.0.0.1").split(",")[0];if(n==="::1")return new Response(null,{status:200});if(!n)return console.error("No IP address provided for geolocation"),new Response(null,{status:500});try{let t=await e.country(n);return new Response(t?.country?.isoCode,{headers:{"Content-Type":"application/json"}})}catch(t){return console.error("Error getting country code",t),new Response(null,{status:500})}};processEvent=async e=>{try{let r=await fetch("api/analytics/geolocate");r.ok||console.error("Geolocation request failed");let n=await r.text(),t={...e,installationId:this.installationId??"",timestamp:new Date,geolocation:{countryCode:n??""}};if(!(await fetch(`${this.platformUrl}/api/event`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)})).ok){console.info(`\u{1F6AB} Event "${t.type}" failed to send to analytics microservice.`);return}console.info(`\u{1F680} Event "${t.type}" successfully sent to analytics microservice`)}catch(r){console.error("Error sending event to analytics microservice",r);return}};trackEvent(e){console.info(`\u{1F560} Event ${e.type} queued for dispatch...`),this.dispatchQueue.push(e)}setInstallationId(e){this.enabled&&(this.installationId=e),this.dispatchQueue.resume()}disable(){console.info("\u{1F4C8} Analytics disabled"),this.enabled=!1,this.dispatchQueue.pause()}get isEnabled(){return this.enabled}};export{s as AnalyticsClient};
1
+ // src/utils.ts
2
+ function ensureError(value) {
3
+ if (!value)
4
+ return new Error("No value was thrown");
5
+ if (value instanceof Error)
6
+ return value;
7
+ if (value.isPrototypeOf(Error))
8
+ return value;
9
+ let stringified = "[Unable to stringify the thrown value]";
10
+ try {
11
+ stringified = JSON.stringify(value);
12
+ } catch {
13
+ }
14
+ const error = new Error(
15
+ `This value was thrown as is, not through an Error: ${stringified}`
16
+ );
17
+ return error;
18
+ }
19
+
20
+ // src/index.ts
21
+ var createRouteHandler = ({
22
+ maxMindAccountId,
23
+ maxMindLicenseKey,
24
+ platformUrl = "https://analytics.networkcanvas.com",
25
+ getInstallationId,
26
+ WebServiceClient
27
+ }) => {
28
+ return async (request) => {
29
+ const maxMindClient = new WebServiceClient(
30
+ maxMindAccountId,
31
+ maxMindLicenseKey,
32
+ {
33
+ host: "geolite.info"
34
+ }
35
+ );
36
+ const installationId = await getInstallationId();
37
+ const event = await request.json();
38
+ const ip = await fetch("https://api64.ipify.org").then((res) => res.text());
39
+ const { country } = await maxMindClient.country(ip);
40
+ const countryCode = country?.isoCode ?? "Unknown";
41
+ const dispatchableEvent = {
42
+ ...event,
43
+ installationId,
44
+ geolocation: {
45
+ countryCode
46
+ }
47
+ };
48
+ console.log(dispatchableEvent);
49
+ void fetch(`${platformUrl}/api/event`, {
50
+ keepalive: true,
51
+ method: "POST",
52
+ headers: {
53
+ "Content-Type": "application/json"
54
+ },
55
+ body: JSON.stringify(dispatchableEvent)
56
+ });
57
+ return Response.json({
58
+ message: "This is the API route"
59
+ });
60
+ };
61
+ };
62
+ var makeEventTracker = ({ endpoint }) => (event) => {
63
+ const eventWithTimeStamp = {
64
+ ...event,
65
+ timestamp: /* @__PURE__ */ new Date()
66
+ };
67
+ fetch(endpoint, {
68
+ method: "POST",
69
+ keepalive: true,
70
+ body: JSON.stringify(eventWithTimeStamp),
71
+ headers: {
72
+ "Content-Type": "application/json"
73
+ }
74
+ }).catch((e) => {
75
+ const error = ensureError(e);
76
+ console.error("Error sending analytics event:", error.message);
77
+ });
78
+ };
79
+ export {
80
+ createRouteHandler,
81
+ makeEventTracker
82
+ };
2
83
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { WebServiceClient } from \"@maxmind/geoip2-node\";\nimport { QueueObject, queue } from \"async\";\nimport type { NextRequest } from \"next/server\";\n\ntype GeoLocation = {\n countryCode: string;\n};\n\nexport type AnalyticsEventBase = {\n type:\n | \"InterviewCompleted\"\n | \"InterviewStarted\"\n | \"ProtocolInstalled\"\n | \"AppSetup\"\n | \"Error\";\n};\n\nexport type AnalyticsEvent = AnalyticsEventBase & {\n type:\n | \"InterviewCompleted\"\n | \"InterviewStarted\"\n | \"ProtocolInstalled\"\n | \"AppSetup\";\n metadata?: Record<string, unknown>;\n};\n\nexport type AnalyticsError = AnalyticsEventBase & {\n type: \"Error\";\n error: {\n message: string;\n details: string;\n stacktrace: string;\n path: string;\n };\n};\n\nexport type AnalyticsEventOrError = AnalyticsEvent | AnalyticsError;\n\nexport type DispatchableAnalyticsEvent = AnalyticsEventOrError & {\n installationId: string;\n geolocation?: GeoLocation;\n timestamp: Date;\n};\n\ntype AnalyticsClientConfiguration = {\n platformUrl?: string;\n};\n\nexport class AnalyticsClient {\n private platformUrl?: string = \"https://analytics.networkcanvas.dev\";\n private installationId: string | null = null;\n\n private dispatchQueue: QueueObject<AnalyticsEventOrError>;\n\n private enabled: boolean = true;\n\n constructor(configuration: AnalyticsClientConfiguration) {\n if (configuration.platformUrl) {\n this.platformUrl = configuration.platformUrl;\n }\n\n this.dispatchQueue = queue(this.processEvent, 1);\n this.dispatchQueue.pause(); // Start the queue paused so we can set the installation ID\n }\n\n public createRouteHandler =\n (maxMindClient: WebServiceClient) =>\n async (req: NextRequest): Promise<Response> => {\n const ip = (req.headers.get(\"x-forwarded-for\") ?? \"127.0.0.1\").split(\n \",\"\n )[0];\n\n if (ip === \"::1\") {\n // This is a localhost request, so we can't geolocate it.\n return new Response(null, { status: 200 });\n }\n\n if (!ip) {\n console.error(\"No IP address provided for geolocation\");\n return new Response(null, { status: 500 });\n }\n\n try {\n const response = await maxMindClient.country(ip);\n\n return new Response(response?.country?.isoCode, {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n });\n } catch (error) {\n // eslint-disable-next-line no-console\n console.error(\"Error getting country code\", error);\n return new Response(null, { status: 500 });\n }\n };\n\n private processEvent = async (event: AnalyticsEventOrError) => {\n // Todo: we need to think about client vs server geolocation. If we want\n // client, does this get us that? If we want server, we can get it once,\n // and simply store it.\n // Todo: use fetchWithZod?\n try {\n const response = await fetch(\"api/analytics/geolocate\");\n if (!response.ok) {\n console.error(\"Geolocation request failed\");\n }\n\n const countryCode: string | null = await response.text();\n\n const eventWithRequiredProperties: DispatchableAnalyticsEvent = {\n ...event,\n installationId: this.installationId ?? \"\",\n timestamp: new Date(),\n geolocation: {\n countryCode: countryCode ?? \"\",\n },\n };\n\n // We could validate against a zod schema here.\n\n // Send event to microservice.\n\n const result = await fetch(`${this.platformUrl}/api/event`, {\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(eventWithRequiredProperties),\n });\n\n if (!result.ok) {\n console.info(\n `🚫 Event \"${eventWithRequiredProperties.type}\" failed to send to analytics microservice.`\n );\n return;\n }\n\n console.info(\n `🚀 Event \"${eventWithRequiredProperties.type}\" successfully sent to analytics microservice`\n );\n } catch (error) {\n console.error(\"Error sending event to analytics microservice\", error);\n return;\n }\n };\n\n public trackEvent(payload: AnalyticsEventOrError) {\n console.info(`🕠 Event ${payload.type} queued for dispatch...`);\n this.dispatchQueue.push(payload);\n }\n\n public setInstallationId(installationId: string) {\n if (this.enabled) {\n this.installationId = installationId;\n }\n this.dispatchQueue.resume();\n }\n\n public disable() {\n console.info(\"📈 Analytics disabled\");\n this.enabled = false;\n this.dispatchQueue.pause();\n }\n\n get isEnabled() {\n return this.enabled;\n }\n}\n"],"mappings":"AACA,OAAsB,SAAAA,MAAa,QA+C5B,IAAMC,EAAN,KAAsB,CACnB,YAAuB,sCACvB,eAAgC,KAEhC,cAEA,QAAmB,GAE3B,YAAYC,EAA6C,CACnDA,EAAc,cAChB,KAAK,YAAcA,EAAc,aAGnC,KAAK,cAAgBF,EAAM,KAAK,aAAc,CAAC,EAC/C,KAAK,cAAc,MAAM,CAC3B,CAEO,mBACJG,GACD,MAAOC,GAAwC,CAC7C,IAAMC,GAAMD,EAAI,QAAQ,IAAI,iBAAiB,GAAK,aAAa,MAC7D,GACF,EAAE,CAAC,EAEH,GAAIC,IAAO,MAET,OAAO,IAAI,SAAS,KAAM,CAAE,OAAQ,GAAI,CAAC,EAG3C,GAAI,CAACA,EACH,eAAQ,MAAM,wCAAwC,EAC/C,IAAI,SAAS,KAAM,CAAE,OAAQ,GAAI,CAAC,EAG3C,GAAI,CACF,IAAMC,EAAW,MAAMH,EAAc,QAAQE,CAAE,EAE/C,OAAO,IAAI,SAASC,GAAU,SAAS,QAAS,CAC9C,QAAS,CACP,eAAgB,kBAClB,CACF,CAAC,CACH,OAASC,EAAO,CAEd,eAAQ,MAAM,6BAA8BA,CAAK,EAC1C,IAAI,SAAS,KAAM,CAAE,OAAQ,GAAI,CAAC,CAC3C,CACF,EAEM,aAAe,MAAOC,GAAiC,CAK7D,GAAI,CACF,IAAMF,EAAW,MAAM,MAAM,yBAAyB,EACjDA,EAAS,IACZ,QAAQ,MAAM,4BAA4B,EAG5C,IAAMG,EAA6B,MAAMH,EAAS,KAAK,EAEjDI,EAA0D,CAC9D,GAAGF,EACH,eAAgB,KAAK,gBAAkB,GACvC,UAAW,IAAI,KACf,YAAa,CACX,YAAaC,GAAe,EAC9B,CACF,EAcA,GAAI,EARW,MAAM,MAAM,GAAG,KAAK,WAAW,aAAc,CAC1D,OAAQ,OACR,QAAS,CACP,eAAgB,kBAClB,EACA,KAAM,KAAK,UAAUC,CAA2B,CAClD,CAAC,GAEW,GAAI,CACd,QAAQ,KACN,oBAAaA,EAA4B,IAAI,6CAC/C,EACA,MACF,CAEA,QAAQ,KACN,oBAAaA,EAA4B,IAAI,+CAC/C,CACF,OAASH,EAAO,CACd,QAAQ,MAAM,gDAAiDA,CAAK,EACpE,MACF,CACF,EAEO,WAAWI,EAAgC,CAChD,QAAQ,KAAK,mBAAYA,EAAQ,IAAI,yBAAyB,EAC9D,KAAK,cAAc,KAAKA,CAAO,CACjC,CAEO,kBAAkBC,EAAwB,CAC3C,KAAK,UACP,KAAK,eAAiBA,GAExB,KAAK,cAAc,OAAO,CAC5B,CAEO,SAAU,CACf,QAAQ,KAAK,8BAAuB,EACpC,KAAK,QAAU,GACf,KAAK,cAAc,MAAM,CAC3B,CAEA,IAAI,WAAY,CACd,OAAO,KAAK,OACd,CACF","names":["queue","AnalyticsClient","configuration","maxMindClient","req","ip","response","error","event","countryCode","eventWithRequiredProperties","payload","installationId"]}
1
+ {"version":3,"sources":["../src/utils.ts","../src/index.ts"],"sourcesContent":["// Helper function that ensures that a value is an Error\nexport function ensureError(value: unknown): Error {\n if (!value) return new Error(\"No value was thrown\");\n\n if (value instanceof Error) return value;\n\n // Test if value inherits from Error\n if (value.isPrototypeOf(Error)) return value as Error & typeof value;\n\n let stringified = \"[Unable to stringify the thrown value]\";\n try {\n stringified = JSON.stringify(value);\n } catch {}\n\n const error = new Error(\n `This value was thrown as is, not through an Error: ${stringified}`\n );\n return error;\n}\n","import type { NextRequest } from \"next/server\";\nimport { WebServiceClient } from \"@maxmind/geoip2-node\";\nimport { ensureError } from \"./utils\";\n\ntype GeoLocation = {\n countryCode: string;\n};\n\nexport type AnalyticsEventBase = {\n type:\n | \"InterviewCompleted\"\n | \"InterviewStarted\"\n | \"ProtocolInstalled\"\n | \"AppSetup\"\n | \"Error\"\n | string;\n};\n\nexport type AnalyticsEvent = AnalyticsEventBase & {\n type:\n | \"InterviewCompleted\"\n | \"InterviewStarted\"\n | \"ProtocolInstalled\"\n | \"AppSetup\"\n | string;\n metadata?: Record<string, unknown>;\n};\n\nexport type AnalyticsError = AnalyticsEventBase & {\n type: \"Error\";\n error: {\n message: string;\n details: string;\n stacktrace: string;\n path: string;\n };\n};\n\nexport type AnalyticsEventOrError = AnalyticsEvent | AnalyticsError;\n\nexport type AnalyticsEventOrErrorWithTimestamp = AnalyticsEventOrError & {\n timestamp: Date;\n};\n\nexport type DispatchableAnalyticsEvent = AnalyticsEventOrErrorWithTimestamp & {\n installationId: string;\n geolocation?: GeoLocation;\n};\n\ntype RouteHandlerConfiguration = {\n maxMindAccountId: string;\n maxMindLicenseKey: string;\n platformUrl?: string;\n getInstallationId: () => Promise<string>;\n WebServiceClient: typeof WebServiceClient;\n};\n\nexport const createRouteHandler = ({\n maxMindAccountId,\n maxMindLicenseKey,\n platformUrl = \"https://analytics.networkcanvas.com\",\n getInstallationId,\n WebServiceClient,\n}: RouteHandlerConfiguration) => {\n return async (request: NextRequest) => {\n const maxMindClient = new WebServiceClient(\n maxMindAccountId,\n maxMindLicenseKey,\n {\n host: \"geolite.info\",\n }\n );\n\n const installationId = await getInstallationId();\n\n const event = (await request.json()) as AnalyticsEventOrErrorWithTimestamp;\n\n const ip = await fetch(\"https://api64.ipify.org\").then((res) => res.text());\n\n const { country } = await maxMindClient.country(ip);\n const countryCode = country?.isoCode ?? \"Unknown\";\n\n const dispatchableEvent: DispatchableAnalyticsEvent = {\n ...event,\n installationId,\n geolocation: {\n countryCode,\n },\n };\n\n console.log(dispatchableEvent);\n\n // Forward to microservice\n void fetch(`${platformUrl}/api/event`, {\n keepalive: true,\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n },\n body: JSON.stringify(dispatchableEvent),\n });\n\n return Response.json({\n message: \"This is the API route\",\n });\n };\n};\n\nexport const makeEventTracker =\n ({ endpoint }: { endpoint: string }) =>\n (event: AnalyticsEventOrError) => {\n const eventWithTimeStamp = {\n ...event,\n timestamp: new Date(),\n };\n\n fetch(endpoint, {\n method: \"POST\",\n keepalive: true,\n body: JSON.stringify(eventWithTimeStamp),\n headers: {\n \"Content-Type\": \"application/json\",\n },\n }).catch((e) => {\n const error = ensureError(e);\n\n // eslint-disable-next-line no-console\n console.error(\"Error sending analytics event:\", error.message);\n });\n };\n"],"mappings":";AACO,SAAS,YAAY,OAAuB;AACjD,MAAI,CAAC;AAAO,WAAO,IAAI,MAAM,qBAAqB;AAElD,MAAI,iBAAiB;AAAO,WAAO;AAGnC,MAAI,MAAM,cAAc,KAAK;AAAG,WAAO;AAEvC,MAAI,cAAc;AAClB,MAAI;AACF,kBAAc,KAAK,UAAU,KAAK;AAAA,EACpC,QAAQ;AAAA,EAAC;AAET,QAAM,QAAQ,IAAI;AAAA,IAChB,sDAAsD,WAAW;AAAA,EACnE;AACA,SAAO;AACT;;;ACuCO,IAAM,qBAAqB,CAAC;AAAA,EACjC;AAAA,EACA;AAAA,EACA,cAAc;AAAA,EACd;AAAA,EACA;AACF,MAAiC;AAC/B,SAAO,OAAO,YAAyB;AACrC,UAAM,gBAAgB,IAAI;AAAA,MACxB;AAAA,MACA;AAAA,MACA;AAAA,QACE,MAAM;AAAA,MACR;AAAA,IACF;AAEA,UAAM,iBAAiB,MAAM,kBAAkB;AAE/C,UAAM,QAAS,MAAM,QAAQ,KAAK;AAElC,UAAM,KAAK,MAAM,MAAM,yBAAyB,EAAE,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC;AAE1E,UAAM,EAAE,QAAQ,IAAI,MAAM,cAAc,QAAQ,EAAE;AAClD,UAAM,cAAc,SAAS,WAAW;AAExC,UAAM,oBAAgD;AAAA,MACpD,GAAG;AAAA,MACH;AAAA,MACA,aAAa;AAAA,QACX;AAAA,MACF;AAAA,IACF;AAEA,YAAQ,IAAI,iBAAiB;AAG7B,SAAK,MAAM,GAAG,WAAW,cAAc;AAAA,MACrC,WAAW;AAAA,MACX,QAAQ;AAAA,MACR,SAAS;AAAA,QACP,gBAAgB;AAAA,MAClB;AAAA,MACA,MAAM,KAAK,UAAU,iBAAiB;AAAA,IACxC,CAAC;AAED,WAAO,SAAS,KAAK;AAAA,MACnB,SAAS;AAAA,IACX,CAAC;AAAA,EACH;AACF;AAEO,IAAM,mBACX,CAAC,EAAE,SAAS,MACZ,CAAC,UAAiC;AAChC,QAAM,qBAAqB;AAAA,IACzB,GAAG;AAAA,IACH,WAAW,oBAAI,KAAK;AAAA,EACtB;AAEA,QAAM,UAAU;AAAA,IACd,QAAQ;AAAA,IACR,WAAW;AAAA,IACX,MAAM,KAAK,UAAU,kBAAkB;AAAA,IACvC,SAAS;AAAA,MACP,gBAAgB;AAAA,IAClB;AAAA,EACF,CAAC,EAAE,MAAM,CAAC,MAAM;AACd,UAAM,QAAQ,YAAY,CAAC;AAG3B,YAAQ,MAAM,kCAAkC,MAAM,OAAO;AAAA,EAC/D,CAAC;AACH;","names":[]}
package/jest.config.js ADDED
@@ -0,0 +1,198 @@
1
+ /**
2
+ * For a detailed explanation regarding each configuration property, visit:
3
+ * https://jestjs.io/docs/configuration
4
+ */
5
+
6
+ /** @type {import('jest').Config} */
7
+ const config = {
8
+ // All imported modules in your tests should be mocked automatically
9
+ // automock: false,
10
+
11
+ // Stop running tests after `n` failures
12
+ // bail: 0,
13
+
14
+ // The directory where Jest should store its cached dependency information
15
+ // cacheDirectory: "/private/var/folders/vc/szx71k5j5sqcmrljl1w44ryddl7zmw/T/jest_pb0330",
16
+
17
+ // Automatically clear mock calls, instances, contexts and results before every test
18
+ // clearMocks: false,
19
+
20
+ // Indicates whether the coverage information should be collected while executing the test
21
+ // collectCoverage: false,
22
+
23
+ // An array of glob patterns indicating a set of files for which coverage information should be collected
24
+ // collectCoverageFrom: undefined,
25
+
26
+ // The directory where Jest should output its coverage files
27
+ // coverageDirectory: undefined,
28
+
29
+ // An array of regexp pattern strings used to skip coverage collection
30
+ // coveragePathIgnorePatterns: [
31
+ // "/node_modules/"
32
+ // ],
33
+
34
+ // Indicates which provider should be used to instrument code for coverage
35
+ coverageProvider: "v8",
36
+
37
+ // A list of reporter names that Jest uses when writing coverage reports
38
+ // coverageReporters: [
39
+ // "json",
40
+ // "text",
41
+ // "lcov",
42
+ // "clover"
43
+ // ],
44
+
45
+ // An object that configures minimum threshold enforcement for coverage results
46
+ // coverageThreshold: undefined,
47
+
48
+ // A path to a custom dependency extractor
49
+ // dependencyExtractor: undefined,
50
+
51
+ // Make calling deprecated APIs throw helpful error messages
52
+ // errorOnDeprecated: false,
53
+
54
+ // The default configuration for fake timers
55
+ // fakeTimers: {
56
+ // "enableGlobally": false
57
+ // },
58
+
59
+ // Force coverage collection from ignored files using an array of glob patterns
60
+ // forceCoverageMatch: [],
61
+
62
+ // A path to a module which exports an async function that is triggered once before all test suites
63
+ // globalSetup: undefined,
64
+
65
+ // A path to a module which exports an async function that is triggered once after all test suites
66
+ // globalTeardown: undefined,
67
+
68
+ // A set of global variables that need to be available in all test environments
69
+ // globals: {},
70
+
71
+ // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
72
+ // maxWorkers: "50%",
73
+
74
+ // An array of directory names to be searched recursively up from the requiring module's location
75
+ // moduleDirectories: [
76
+ // "node_modules"
77
+ // ],
78
+
79
+ // An array of file extensions your modules use
80
+ // moduleFileExtensions: [
81
+ // "js",
82
+ // "mjs",
83
+ // "cjs",
84
+ // "jsx",
85
+ // "ts",
86
+ // "tsx",
87
+ // "json",
88
+ // "node"
89
+ // ],
90
+
91
+ // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
92
+ // moduleNameMapper: {},
93
+
94
+ // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
95
+ // modulePathIgnorePatterns: [],
96
+
97
+ // Activates notifications for test results
98
+ // notify: false,
99
+
100
+ // An enum that specifies notification mode. Requires { notify: true }
101
+ // notifyMode: "failure-change",
102
+
103
+ // A preset that is used as a base for Jest's configuration
104
+ // preset: undefined,
105
+
106
+ // Run tests from one or more projects
107
+ // projects: undefined,
108
+
109
+ // Use this configuration option to add custom reporters to Jest
110
+ // reporters: undefined,
111
+
112
+ // Automatically reset mock state before every test
113
+ // resetMocks: false,
114
+
115
+ // Reset the module registry before running each individual test
116
+ // resetModules: false,
117
+
118
+ // A path to a custom resolver
119
+ // resolver: undefined,
120
+
121
+ // Automatically restore mock state and implementation before every test
122
+ // restoreMocks: false,
123
+
124
+ // The root directory that Jest should scan for tests and modules within
125
+ // rootDir: undefined,
126
+
127
+ // A list of paths to directories that Jest should use to search for files in
128
+ // roots: [
129
+ // "<rootDir>"
130
+ // ],
131
+
132
+ // Allows you to use a custom runner instead of Jest's default test runner
133
+ // runner: "jest-runner",
134
+
135
+ // The paths to modules that run some code to configure or set up the testing environment before each test
136
+ // setupFiles: [],
137
+
138
+ // A list of paths to modules that run some code to configure or set up the testing framework before each test
139
+ // setupFilesAfterEnv: [],
140
+
141
+ // The number of seconds after which a test is considered as slow and reported as such in the results.
142
+ // slowTestThreshold: 5,
143
+
144
+ // A list of paths to snapshot serializer modules Jest should use for snapshot testing
145
+ // snapshotSerializers: [],
146
+
147
+ // The test environment that will be used for testing
148
+ testEnvironment: "node",
149
+
150
+ // Options that will be passed to the testEnvironment
151
+ // testEnvironmentOptions: {},
152
+
153
+ // Adds a location field to test results
154
+ // testLocationInResults: false,
155
+
156
+ // The glob patterns Jest uses to detect test files
157
+ testMatch: [
158
+ "**/__tests__/**/*.[jt]s?(x)",
159
+ "**/?(*.)+(spec|test).m[tj]s?(x)"
160
+ ],
161
+
162
+ // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
163
+ // testPathIgnorePatterns: [
164
+ // "/node_modules/"
165
+ // ],
166
+
167
+ // The regexp pattern or array of patterns that Jest uses to detect test files
168
+ // testRegex: [],
169
+
170
+ // This option allows the use of a custom results processor
171
+ // testResultsProcessor: undefined,
172
+
173
+ // This option allows use of a custom test runner
174
+ // testRunner: "jest-circus/runner",
175
+
176
+ // A map from regular expressions to paths to transformers
177
+ // transform: undefined,
178
+
179
+ // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
180
+ // transformIgnorePatterns: [
181
+ // "/node_modules/",
182
+ // "\\.pnp\\.[^\\/]+$"
183
+ // ],
184
+
185
+ // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
186
+ // unmockedModulePathPatterns: undefined,
187
+
188
+ // Indicates whether each individual test should be reported during the run
189
+ // verbose: undefined,
190
+
191
+ // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
192
+ // watchPathIgnorePatterns: [],
193
+
194
+ // Whether to use watchman for file crawling
195
+ // watchman: true,
196
+ };
197
+
198
+ module.exports = config;
package/package.json CHANGED
@@ -1,33 +1,25 @@
1
1
  {
2
2
  "name": "@codaco/analytics",
3
- "version": "0.5.0-alpha",
3
+ "version": "1.0.0-alpha-1",
4
4
  "module": "./dist/index.mjs",
5
5
  "types": "./dist/index.d.mts",
6
6
  "author": "Complex Data Collective <developers@coda.co>",
7
7
  "description": "Utilities for tracking analytics and error reporting in Fresco",
8
- "dependencies": {
9
- "@maxmind/geoip2-node": "^5.0.0",
10
- "async": "^3.2.5",
11
- "zod-fetch": "^0.1.1"
8
+ "scripts": {
9
+ "build": "tsup src/index.ts --format esm --dts --clean --sourcemap",
10
+ "lint": "eslint .",
11
+ "dev": "npm run build -- --watch"
12
12
  },
13
13
  "peerDependencies": {
14
- "next": "14.0.1"
14
+ "next": "13 || 14"
15
15
  },
16
16
  "devDependencies": {
17
- "@types/async": "^3.2.24",
18
- "@types/node": "^20.5.2",
19
- "@types/react": "^18.2.0",
20
- "@types/react-dom": "^18.2.0",
21
- "react": "^18.2.0",
17
+ "eslint-config-custom": "workspace:*",
18
+ "tsconfig": "workspace:*",
22
19
  "tsup": "^7.2.0",
23
- "typescript": "^5.3.2",
24
- "zod": "^3.22.4",
25
- "eslint-config-custom": "0.0.0",
26
- "tsconfig": "0.0.0"
20
+ "typescript": "^5.3.2"
27
21
  },
28
- "scripts": {
29
- "build": "tsup src/index.ts --format esm --dts --minify --clean --sourcemap",
30
- "lint": "eslint .",
31
- "dev": "npm run build -- --watch"
22
+ "dependencies": {
23
+ "@maxmind/geoip2-node": "^5.0.0"
32
24
  }
33
- }
25
+ }
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { WebServiceClient } from "@maxmind/geoip2-node";
2
- import { QueueObject, queue } from "async";
3
1
  import type { NextRequest } from "next/server";
2
+ import { WebServiceClient } from "@maxmind/geoip2-node";
3
+ import { ensureError } from "./utils";
4
4
 
5
5
  type GeoLocation = {
6
6
  countryCode: string;
@@ -12,7 +12,8 @@ export type AnalyticsEventBase = {
12
12
  | "InterviewStarted"
13
13
  | "ProtocolInstalled"
14
14
  | "AppSetup"
15
- | "Error";
15
+ | "Error"
16
+ | string;
16
17
  };
17
18
 
18
19
  export type AnalyticsEvent = AnalyticsEventBase & {
@@ -20,7 +21,8 @@ export type AnalyticsEvent = AnalyticsEventBase & {
20
21
  | "InterviewCompleted"
21
22
  | "InterviewStarted"
22
23
  | "ProtocolInstalled"
23
- | "AppSetup";
24
+ | "AppSetup"
25
+ | string;
24
26
  metadata?: Record<string, unknown>;
25
27
  };
26
28
 
@@ -36,134 +38,93 @@ export type AnalyticsError = AnalyticsEventBase & {
36
38
 
37
39
  export type AnalyticsEventOrError = AnalyticsEvent | AnalyticsError;
38
40
 
39
- export type DispatchableAnalyticsEvent = AnalyticsEventOrError & {
41
+ export type AnalyticsEventOrErrorWithTimestamp = AnalyticsEventOrError & {
42
+ timestamp: Date;
43
+ };
44
+
45
+ export type DispatchableAnalyticsEvent = AnalyticsEventOrErrorWithTimestamp & {
40
46
  installationId: string;
41
47
  geolocation?: GeoLocation;
42
- timestamp: Date;
43
48
  };
44
49
 
45
- type AnalyticsClientConfiguration = {
50
+ type RouteHandlerConfiguration = {
51
+ maxMindAccountId: string;
52
+ maxMindLicenseKey: string;
46
53
  platformUrl?: string;
54
+ getInstallationId: () => Promise<string>;
55
+ WebServiceClient: typeof WebServiceClient;
47
56
  };
48
57
 
49
- export class AnalyticsClient {
50
- private platformUrl?: string = "https://analytics.networkcanvas.dev";
51
- private installationId: string | null = null;
52
-
53
- private dispatchQueue: QueueObject<AnalyticsEventOrError>;
54
-
55
- private enabled: boolean = true;
56
-
57
- constructor(configuration: AnalyticsClientConfiguration) {
58
- if (configuration.platformUrl) {
59
- this.platformUrl = configuration.platformUrl;
60
- }
58
+ export const createRouteHandler = ({
59
+ maxMindAccountId,
60
+ maxMindLicenseKey,
61
+ platformUrl = "https://analytics.networkcanvas.com",
62
+ getInstallationId,
63
+ WebServiceClient,
64
+ }: RouteHandlerConfiguration) => {
65
+ return async (request: NextRequest) => {
66
+ const maxMindClient = new WebServiceClient(
67
+ maxMindAccountId,
68
+ maxMindLicenseKey,
69
+ {
70
+ host: "geolite.info",
71
+ }
72
+ );
61
73
 
62
- this.dispatchQueue = queue(this.processEvent, 1);
63
- this.dispatchQueue.pause(); // Start the queue paused so we can set the installation ID
64
- }
74
+ const installationId = await getInstallationId();
65
75
 
66
- public createRouteHandler =
67
- (maxMindClient: WebServiceClient) =>
68
- async (req: NextRequest): Promise<Response> => {
69
- const ip = (req.headers.get("x-forwarded-for") ?? "127.0.0.1").split(
70
- ","
71
- )[0];
76
+ const event = (await request.json()) as AnalyticsEventOrErrorWithTimestamp;
72
77
 
73
- if (ip === "::1") {
74
- // This is a localhost request, so we can't geolocate it.
75
- return new Response(null, { status: 200 });
76
- }
78
+ const ip = await fetch("https://api64.ipify.org").then((res) => res.text());
77
79
 
78
- if (!ip) {
79
- console.error("No IP address provided for geolocation");
80
- return new Response(null, { status: 500 });
81
- }
80
+ const { country } = await maxMindClient.country(ip);
81
+ const countryCode = country?.isoCode ?? "Unknown";
82
82
 
83
- try {
84
- const response = await maxMindClient.country(ip);
85
-
86
- return new Response(response?.country?.isoCode, {
87
- headers: {
88
- "Content-Type": "application/json",
89
- },
90
- });
91
- } catch (error) {
92
- // eslint-disable-next-line no-console
93
- console.error("Error getting country code", error);
94
- return new Response(null, { status: 500 });
95
- }
83
+ const dispatchableEvent: DispatchableAnalyticsEvent = {
84
+ ...event,
85
+ installationId,
86
+ geolocation: {
87
+ countryCode,
88
+ },
96
89
  };
97
90
 
98
- private processEvent = async (event: AnalyticsEventOrError) => {
99
- // Todo: we need to think about client vs server geolocation. If we want
100
- // client, does this get us that? If we want server, we can get it once,
101
- // and simply store it.
102
- // Todo: use fetchWithZod?
103
- try {
104
- const response = await fetch("api/analytics/geolocate");
105
- if (!response.ok) {
106
- console.error("Geolocation request failed");
107
- }
91
+ console.log(dispatchableEvent);
92
+
93
+ // Forward to microservice
94
+ void fetch(`${platformUrl}/api/event`, {
95
+ keepalive: true,
96
+ method: "POST",
97
+ headers: {
98
+ "Content-Type": "application/json",
99
+ },
100
+ body: JSON.stringify(dispatchableEvent),
101
+ });
102
+
103
+ return Response.json({
104
+ message: "This is the API route",
105
+ });
106
+ };
107
+ };
108
108
 
109
- const countryCode: string | null = await response.text();
110
-
111
- const eventWithRequiredProperties: DispatchableAnalyticsEvent = {
112
- ...event,
113
- installationId: this.installationId ?? "",
114
- timestamp: new Date(),
115
- geolocation: {
116
- countryCode: countryCode ?? "",
117
- },
118
- };
119
-
120
- // We could validate against a zod schema here.
121
-
122
- // Send event to microservice.
123
-
124
- const result = await fetch(`${this.platformUrl}/api/event`, {
125
- method: "POST",
126
- headers: {
127
- "Content-Type": "application/json",
128
- },
129
- body: JSON.stringify(eventWithRequiredProperties),
130
- });
131
-
132
- if (!result.ok) {
133
- console.info(
134
- `🚫 Event "${eventWithRequiredProperties.type}" failed to send to analytics microservice.`
135
- );
136
- return;
137
- }
109
+ export const makeEventTracker =
110
+ ({ endpoint }: { endpoint: string }) =>
111
+ (event: AnalyticsEventOrError) => {
112
+ const eventWithTimeStamp = {
113
+ ...event,
114
+ timestamp: new Date(),
115
+ };
138
116
 
139
- console.info(
140
- `🚀 Event "${eventWithRequiredProperties.type}" successfully sent to analytics microservice`
141
- );
142
- } catch (error) {
143
- console.error("Error sending event to analytics microservice", error);
144
- return;
145
- }
117
+ fetch(endpoint, {
118
+ method: "POST",
119
+ keepalive: true,
120
+ body: JSON.stringify(eventWithTimeStamp),
121
+ headers: {
122
+ "Content-Type": "application/json",
123
+ },
124
+ }).catch((e) => {
125
+ const error = ensureError(e);
126
+
127
+ // eslint-disable-next-line no-console
128
+ console.error("Error sending analytics event:", error.message);
129
+ });
146
130
  };
147
-
148
- public trackEvent(payload: AnalyticsEventOrError) {
149
- console.info(`🕠 Event ${payload.type} queued for dispatch...`);
150
- this.dispatchQueue.push(payload);
151
- }
152
-
153
- public setInstallationId(installationId: string) {
154
- if (this.enabled) {
155
- this.installationId = installationId;
156
- }
157
- this.dispatchQueue.resume();
158
- }
159
-
160
- public disable() {
161
- console.info("📈 Analytics disabled");
162
- this.enabled = false;
163
- this.dispatchQueue.pause();
164
- }
165
-
166
- get isEnabled() {
167
- return this.enabled;
168
- }
169
- }
package/src/utils.ts ADDED
@@ -0,0 +1,19 @@
1
+ // Helper function that ensures that a value is an Error
2
+ export function ensureError(value: unknown): Error {
3
+ if (!value) return new Error("No value was thrown");
4
+
5
+ if (value instanceof Error) return value;
6
+
7
+ // Test if value inherits from Error
8
+ if (value.isPrototypeOf(Error)) return value as Error & typeof value;
9
+
10
+ let stringified = "[Unable to stringify the thrown value]";
11
+ try {
12
+ stringified = JSON.stringify(value);
13
+ } catch {}
14
+
15
+ const error = new Error(
16
+ `This value was thrown as is, not through an Error: ${stringified}`
17
+ );
18
+ return error;
19
+ }
@@ -1,5 +0,0 @@
1
-
2
- > @codaco/analytics@0.5.0-alpha lint /Users/buckhalt/Code/complexdatacollective/error-analytics-microservice/packages/analytics
3
- > eslint .
4
-
5
- Pages directory cannot be found at /Users/buckhalt/Code/complexdatacollective/error-analytics-microservice/packages/analytics/pages or /Users/buckhalt/Code/complexdatacollective/error-analytics-microservice/packages/analytics/src/pages. If using a custom path, please configure with the `no-html-link-for-pages` rule in your eslint config file.