-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbin.ts
More file actions
271 lines (257 loc) · 7.67 KB
/
bin.ts
File metadata and controls
271 lines (257 loc) · 7.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#!/usr/bin/env node
import { satisfies } from 'semver';
import { red } from './src/utils/logging';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import chalk from 'chalk';
const NODE_VERSION_RANGE = '>=18.17.0';
// Have to run this above the other imports because they are importing clack that
// has the problematic imports.
if (!satisfies(process.version, NODE_VERSION_RANGE)) {
red(
`PostHog wizard requires Node.js ${NODE_VERSION_RANGE}. You are using Node.js ${process.version}. Please upgrade your Node.js version.`,
);
process.exit(1);
}
import { runMCPInstall, runMCPRemove } from './src/mcp';
import type { CloudRegion, WizardOptions } from './src/utils/types';
import { runWizard } from './src/run';
import { runEventSetupWizard } from './src/nextjs/event-setup';
import {
runMigrationWizard,
getAvailableMigrationProviders,
type MigrationOptions,
} from './src/migrate';
import {
readEnvironment,
isNonInteractiveEnvironment,
} from './src/utils/environment';
import path from 'path';
import clack from './src/utils/clack';
if (isNonInteractiveEnvironment()) {
clack.intro(chalk.inverse(`PostHog Wizard`));
clack.log.error(
'This installer requires an interactive terminal (TTY) to run.\n' +
'It appears you are running in a non-interactive environment.\n' +
'Please run the wizard in an interactive terminal.',
);
process.exit(1);
}
if (process.env.NODE_ENV === 'test') {
void (async () => {
try {
const { server } = await import('./e2e-tests/mocks/server.js');
server.listen({
onUnhandledRequest: 'bypass',
});
} catch (error) {
// Mock server import failed - this can happen during non-E2E tests
}
})();
}
yargs(hideBin(process.argv))
.env('POSTHOG_WIZARD')
// global options
.options({
debug: {
default: false,
describe: 'Enable verbose logging\nenv: POSTHOG_WIZARD_DEBUG',
type: 'boolean',
},
region: {
describe: 'PostHog cloud region\nenv: POSTHOG_WIZARD_REGION',
choices: ['us', 'eu'],
type: 'string',
},
default: {
default: true,
describe:
'Use default options for all prompts\nenv: POSTHOG_WIZARD_DEFAULT',
type: 'boolean',
},
signup: {
default: false,
describe:
'Create a new PostHog account during setup\nenv: POSTHOG_WIZARD_SIGNUP',
type: 'boolean',
},
'local-mcp': {
default: false,
describe:
'Use local MCP server at http://localhost:8787/mcp\nenv: POSTHOG_WIZARD_LOCAL_MCP',
type: 'boolean',
},
})
.command(
['$0'],
'Run the PostHog setup wizard',
(yargs) => {
return yargs.options({
'force-install': {
default: false,
describe:
'Force install packages even if peer dependency checks fail\nenv: POSTHOG_WIZARD_FORCE_INSTALL',
type: 'boolean',
},
'install-dir': {
describe:
'Directory to install PostHog in\nenv: POSTHOG_WIZARD_INSTALL_DIR',
type: 'string',
},
integration: {
describe: 'Integration to set up',
choices: ['nextjs', 'astro', 'react', 'svelte', 'react-native'],
type: 'string',
},
});
},
(argv) => {
const options = { ...argv };
void runWizard(options as unknown as WizardOptions);
},
)
.command(
'event-setup',
'Run the event setup wizard',
(yargs) => {
return yargs.options({
'install-dir': {
describe:
'Directory to run the wizard in\nenv: POSTHOG_WIZARD_INSTALL_DIR',
type: 'string',
},
});
},
(argv) => {
const finalArgs = {
...argv,
...readEnvironment(),
} as any;
let resolvedInstallDir: string;
if (finalArgs.installDir) {
if (path.isAbsolute(finalArgs.installDir)) {
resolvedInstallDir = finalArgs.installDir;
} else {
resolvedInstallDir = path.join(process.cwd(), finalArgs.installDir);
}
} else {
resolvedInstallDir = process.cwd();
}
const wizardOptions: WizardOptions = {
debug: finalArgs.debug ?? false,
installDir: resolvedInstallDir,
cloudRegion: finalArgs.region as CloudRegion | undefined,
default: finalArgs.default ?? false,
signup: finalArgs.signup ?? false,
forceInstall: false,
localMcp: finalArgs.localMcp ?? false,
};
void runEventSetupWizard(wizardOptions);
},
)
.command(
'migrate',
'Migrate from another analytics provider to PostHog',
(yargs) => {
const availableProviders = getAvailableMigrationProviders();
return yargs
.options({
'install-dir': {
describe:
'Directory to run the migration in\nenv: POSTHOG_WIZARD_INSTALL_DIR',
type: 'string',
},
'force-install': {
default: false,
describe:
'Force install packages even if peer dependency checks fail\nenv: POSTHOG_WIZARD_FORCE_INSTALL',
type: 'boolean',
},
from: {
describe: 'Analytics provider to migrate from',
choices: availableProviders,
default: 'amplitude',
type: 'string',
},
});
},
(argv) => {
const finalArgs = {
...argv,
...readEnvironment(),
} as any;
let resolvedInstallDir: string;
if (finalArgs.installDir) {
if (path.isAbsolute(finalArgs.installDir)) {
resolvedInstallDir = finalArgs.installDir;
} else {
resolvedInstallDir = path.join(process.cwd(), finalArgs.installDir);
}
} else {
resolvedInstallDir = process.cwd();
}
const migrationOptions: MigrationOptions = {
debug: finalArgs.debug ?? false,
installDir: resolvedInstallDir,
cloudRegion: finalArgs.region as CloudRegion | undefined,
default: finalArgs.default ?? false,
signup: finalArgs.signup ?? false,
forceInstall: finalArgs.forceInstall ?? false,
localMcp: finalArgs.localMcp ?? false,
};
void runMigrationWizard(migrationOptions, finalArgs.from as string);
},
)
.command('mcp <command>', 'MCP server management commands', (yargs) => {
return yargs
.command(
'add',
'Install PostHog MCP server to supported clients',
(yargs) => {
return yargs.options({
local: {
default: false,
describe:
'Add local development MCP server (http://localhost:8787)',
type: 'boolean',
},
});
},
(argv) => {
const options = { ...argv };
void runMCPInstall(
options as unknown as {
signup: boolean;
region?: CloudRegion;
local?: boolean;
debug?: boolean;
},
);
},
)
.command(
'remove',
'Remove PostHog MCP server from supported clients',
(yargs) => {
return yargs.options({
local: {
default: false,
describe:
'Remove local development MCP server (http://localhost:8787)',
type: 'boolean',
},
});
},
(argv) => {
const options = { ...argv };
void runMCPRemove(options as { local?: boolean });
},
)
.demandCommand(1, 'You must specify a subcommand (add or remove)')
.help();
})
.help()
.alias('help', 'h')
.version()
.alias('version', 'v')
.wrap(process.stdout.isTTY ? yargs.terminalWidth() : 80).argv;