2020-07-14 17:00:58 +02:00
|
|
|
import * as Sentry from "@sentry/browser"
|
|
|
|
import posthog from "posthog-js"
|
2020-09-28 11:47:18 +02:00
|
|
|
import api from "builderStore/api"
|
2020-07-14 17:00:58 +02:00
|
|
|
|
2020-09-29 16:26:56 +02:00
|
|
|
const analyticsEnabled = process.env.NODE_ENV === "production"
|
|
|
|
|
2020-07-14 17:00:58 +02:00
|
|
|
function activate() {
|
2020-09-29 16:26:56 +02:00
|
|
|
if (!analyticsEnabled) return
|
2020-07-14 17:00:58 +02:00
|
|
|
Sentry.init({ dsn: process.env.SENTRY_DSN })
|
2020-08-05 16:18:28 +02:00
|
|
|
if (!process.env.POSTHOG_TOKEN) return
|
2020-07-14 17:00:58 +02:00
|
|
|
posthog.init(process.env.POSTHOG_TOKEN, {
|
|
|
|
api_host: process.env.POSTHOG_URL,
|
|
|
|
})
|
2020-09-29 16:26:56 +02:00
|
|
|
posthog.set_config({ persistence: "cookie" })
|
2020-07-14 17:00:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 11:47:18 +02:00
|
|
|
function identify(id) {
|
2020-09-29 16:26:56 +02:00
|
|
|
if (!analyticsEnabled) return
|
2020-09-28 11:47:18 +02:00
|
|
|
if (!id) return
|
|
|
|
posthog.identify(id)
|
|
|
|
Sentry.configureScope(scope => {
|
|
|
|
scope.setUser({ id: id })
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function identifyByApiKey(apiKey) {
|
2020-09-29 16:26:56 +02:00
|
|
|
if (!analyticsEnabled) return true
|
2020-09-28 11:47:18 +02:00
|
|
|
const response = await fetch(
|
|
|
|
`https://03gaine137.execute-api.eu-west-1.amazonaws.com/prod/account/id?api_key=${apiKey.trim()}`
|
|
|
|
)
|
|
|
|
|
|
|
|
if (response.status === 200) {
|
|
|
|
const id = await response.json()
|
|
|
|
|
|
|
|
await api.put("/api/keys/userId", { value: id })
|
|
|
|
identify(id)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-14 17:00:58 +02:00
|
|
|
function captureException(err) {
|
2020-09-29 16:26:56 +02:00
|
|
|
if (!analyticsEnabled) return
|
2020-07-14 17:00:58 +02:00
|
|
|
Sentry.captureException(err)
|
|
|
|
}
|
|
|
|
|
2020-09-29 16:26:56 +02:00
|
|
|
function captureEvent(eventName, props = {}) {
|
|
|
|
if (!analyticsEnabled || !process.env.POSTHOG_TOKEN) return
|
|
|
|
props.sourceApp = "builder"
|
|
|
|
posthog.capture(eventName, props)
|
2020-07-15 18:25:08 +02:00
|
|
|
}
|
|
|
|
|
2020-07-14 17:00:58 +02:00
|
|
|
export default {
|
|
|
|
activate,
|
2020-09-28 11:47:18 +02:00
|
|
|
identify,
|
|
|
|
identifyByApiKey,
|
2020-07-14 17:00:58 +02:00
|
|
|
captureException,
|
2020-07-16 16:19:46 +02:00
|
|
|
captureEvent,
|
2020-07-14 17:00:58 +02:00
|
|
|
}
|