budibase/packages/cli/src/analytics/index.js

65 lines
1.7 KiB
JavaScript
Raw Normal View History

2021-03-29 18:40:17 +02:00
const Command = require("../structures/Command")
2021-03-30 11:50:42 +02:00
const { CommandWords, InitTypes, BUDIBASE_POSTHOG_URL } = require("../constants")
2021-03-29 18:40:17 +02:00
const { lookpath } = require("lookpath")
const {
success,
2021-03-30 11:50:42 +02:00
error,
2021-03-29 18:40:17 +02:00
info,
parseEnv,
} = require("../utils")
const { confirmation } = require("../questions")
const fs = require("fs")
const axios = require("axios")
2021-03-30 11:50:42 +02:00
const AnalyticsClient = require("./Client")
2021-03-29 18:40:17 +02:00
const client = new AnalyticsClient()
async function optOut() {
try {
// opt them out
2021-03-30 11:50:42 +02:00
client.disable()
2021-03-29 18:40:17 +02:00
console.log(success("Successfully opted out of budibase analytics. You can opt in at any time by running 'budi analytics opt-in'"))
} catch (err) {
2021-03-30 11:50:42 +02:00
console.log(error("Error opting out of budibase analytics. Please try again later.", err))
2021-03-29 18:40:17 +02:00
}
}
async function optIn() {
try {
// opt them in
client.enable()
2021-03-30 11:50:42 +02:00
console.log(success("Successfully opted in to budibase analytics. Thank you for helping us make budibase better!"))
2021-03-29 18:40:17 +02:00
} catch (err) {
console.log(error("Error opting in to budibase analytics. Please try again later."))
}
}
async function status() {
try {
console.log(success(`Budibase analytics ${client.status()}`))
} catch (err) {
console.log(error("Error fetching analytics status. Please try again later."))
}
}
const command = new Command(`${CommandWords.ANALYTICS}`)
.addHelp("Control the analytics you send to budibase.")
.addSubOption(
"--optin",
"Opt in to sending analytics to budibase",
optIn
)
.addSubOption(
"--optout",
"Opt out of sending analytics to budibase.",
optOut
)
.addSubOption(
"--status",
"Check whether you are currently opted in to budibase analytics.",
status
)
exports.command = command