-
Notifications
You must be signed in to change notification settings - Fork 365
/
base-command.ts
763 lines (674 loc) · 28.1 KB
/
base-command.ts
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
import { existsSync } from 'fs'
import { join, relative, resolve } from 'path'
import process from 'process'
import { format } from 'util'
import { DefaultLogger, Project } from '@netlify/build-info'
import { NodeFS, NoopLogger } from '@netlify/build-info/node'
import { resolveConfig } from '@netlify/config'
import { isCI } from 'ci-info'
import { Command, Help, Option } from 'commander'
// @ts-expect-error TS(7016) FIXME: Could not find a declaration file for module 'debu... Remove this comment to see the full error message
import debug from 'debug'
import { findUp } from 'find-up'
import inquirer from 'inquirer'
// @ts-expect-error TS(7016) FIXME: Could not find a declaration file for module 'inqu... Remove this comment to see the full error message
import inquirerAutocompletePrompt from 'inquirer-autocomplete-prompt'
import merge from 'lodash/merge.js'
import { NetlifyAPI } from 'netlify'
import { getAgent } from '../lib/http-agent.js'
import {
NETLIFY_CYAN,
USER_AGENT,
chalk,
error,
exit,
getToken,
log,
version,
normalizeConfig,
padLeft,
pollForToken,
sortOptions,
warn,
} from '../utils/command-helpers.js'
import { FeatureFlags } from '../utils/feature-flags.js'
import { getFrameworksAPIPaths } from '../utils/frameworks-api.js'
import getGlobalConfig from '../utils/get-global-config.js'
import { getSiteByName } from '../utils/get-site.js'
import openBrowser from '../utils/open-browser.js'
import StateConfig from '../utils/state-config.js'
import { identify, reportError, track } from '../utils/telemetry/index.js'
import { type NetlifyOptions } from './types.js'
type Analytics = {
startTime: bigint
payload?: Record<string, unknown>
}
// load the autocomplete plugin
inquirer.registerPrompt('autocomplete', inquirerAutocompletePrompt)
/** Netlify CLI client id. Lives in [email protected] */
// TODO: setup client for multiple environments
const CLIENT_ID = 'd6f37de6614df7ae58664cfca524744d73807a377f5ee71f1a254f78412e3750'
const NANO_SECS_TO_MSECS = 1e6
/** The fallback width for the help terminal */
const FALLBACK_HELP_CMD_WIDTH = 80
const HELP_$ = NETLIFY_CYAN('$')
/** indent on commands or description on the help page */
const HELP_INDENT_WIDTH = 2
/** separator width between term and description */
const HELP_SEPARATOR_WIDTH = 5
/**
* A list of commands where we don't have to perform the workspace selection at.
* Those commands work with the system or are not writing any config files that need to be
* workspace aware.
*/
const COMMANDS_WITHOUT_WORKSPACE_OPTIONS = new Set(['api', 'recipes', 'completion', 'status', 'switch', 'login', 'lm'])
/**
* A list of commands where we need to fetch featureflags for config resolution
*/
const COMMANDS_WITH_FEATURE_FLAGS = new Set(['build', 'dev', 'deploy'])
/** Formats a help list correctly with the correct indent */
const formatHelpList = (textArray: string[]) => textArray.join('\n').replace(/^/gm, ' '.repeat(HELP_INDENT_WIDTH))
/** Get the duration between a start time and the current time */
const getDuration = (startTime: bigint) => {
const durationNs = process.hrtime.bigint() - startTime
return Math.round(Number(durationNs / BigInt(NANO_SECS_TO_MSECS)))
}
/**
* Retrieves a workspace package based of the filter flag that is provided.
* If the filter flag does not match a workspace package or is not defined then it will prompt with an autocomplete to select a package
*/
async function selectWorkspace(project: Project, filter?: string): Promise<string> {
// don't show prompt for workspace selection if there is only one package
if (project.workspace?.packages && project.workspace.packages.length === 1) {
return project.workspace.packages[0].path
}
const selected = project.workspace?.packages.find((pkg) => {
if (
project.relativeBaseDirectory &&
project.relativeBaseDirectory.length !== 0 &&
pkg.path.startsWith(project.relativeBaseDirectory)
) {
return true
}
return (pkg.name && pkg.name === filter) || pkg.path === filter
})
if (!selected) {
log()
log(chalk.cyan(`We've detected multiple sites inside your repository`))
if (isCI) {
throw new Error(
`Sites detected: ${(project.workspace?.packages || [])
.map((pkg) => pkg.name || pkg.path)
.join(
', ',
)}. Configure the site you want to work with and try again. Refer to https://ntl.fyi/configure-site for more information.`,
)
}
const { result } = await inquirer.prompt({
name: 'result',
// @ts-expect-error TS(2769) FIXME: No overload matches this call.
type: 'autocomplete',
message: 'Select the site you want to work with',
// @ts-expect-error TS(7006) FIXME: Parameter '_' implicitly has an 'any' type.
source: (/** @type {string} */ _, input = '') =>
(project.workspace?.packages || [])
.filter((pkg) => pkg.path.includes(input))
.map((pkg) => ({
name: `${pkg.name ? `${chalk.bold(pkg.name)} ` : ''}${pkg.path} ${chalk.dim(
`--filter ${pkg.name || pkg.path}`,
)}`,
value: pkg.path,
})),
})
return result
}
return selected.path
}
async function getRepositoryRoot(cwd?: string): Promise<string | undefined> {
const res = await findUp('.git', { cwd, type: 'directory' })
if (res) {
return join(res, '..')
}
}
/** Base command class that provides tracking and config initialization */
export default class BaseCommand extends Command {
/** The netlify object inside each command with the state */
// @ts-expect-error This will be set for each command, TypeScript is just not able to infer it
netlify: NetlifyOptions
analytics: Analytics = { startTime: process.hrtime.bigint() }
// @ts-expect-error This will be set for each command, TypeScript is just not able to infer it
project: Project
/**
* The working directory that is used for reading the `netlify.toml` file and storing the state.
* In a monorepo context this must not be the process working directory and can be an absolute path to the
* Package/Site that should be worked in.
*/
// here we actually want to disable the lint rule as its value is set
// eslint-disable-next-line workspace/no-process-cwd
workingDir = process.cwd()
/**
* The workspace root if inside a mono repository.
* Must not be the repository root!
*/
jsWorkspaceRoot?: string
/** The current workspace package we should execute the commands in */
workspacePackage?: string
featureFlags: FeatureFlags = {}
siteId?: string
accountId?: string
/**
* IMPORTANT this function will be called for each command!
* Don't do anything expensive in there.
*/
createCommand(name: string): BaseCommand {
const base = new BaseCommand(name)
// If --silent or --json flag passed disable logger
// .addOption(new Option('--force', 'Force command to run. Bypasses prompts for certain destructive commands.'))
.addOption(new Option('--json', 'Output return values as JSON').hideHelp(true))
.addOption(new Option('--silent', 'Silence CLI output').hideHelp(true))
.addOption(new Option('--cwd <cwd>').hideHelp(true))
.addOption(new Option('-o, --offline').hideHelp(true))
.addOption(new Option('--auth <token>', 'Netlify auth token').hideHelp(true))
.addOption(
new Option('--httpProxy [address]', 'Old, prefer --http-proxy. Proxy server address to route requests through.')
.default(process.env.HTTP_PROXY || process.env.HTTPS_PROXY)
.hideHelp(true),
)
.addOption(
new Option(
'--httpProxyCertificateFilename [file]',
'Old, prefer --http-proxy-certificate-filename. Certificate file to use when connecting using a proxy server.',
)
.default(process.env.NETLIFY_PROXY_CERTIFICATE_FILENAME)
.hideHelp(true),
)
.addOption(
new Option(
'--http-proxy-certificate-filename [file]',
'Certificate file to use when connecting using a proxy server',
)
.default(process.env.NETLIFY_PROXY_CERTIFICATE_FILENAME)
.hideHelp(true),
)
.addOption(
new Option('--httpProxy [address]', 'Proxy server address to route requests through.')
.default(process.env.HTTP_PROXY || process.env.HTTPS_PROXY)
.hideHelp(true),
)
.option('--debug', 'Print debugging information')
// only add the `--filter` option to commands that are workspace aware
if (!COMMANDS_WITHOUT_WORKSPACE_OPTIONS.has(name)) {
base.option('--filter <app>', 'For monorepos, specify the name of the application to run the command in')
}
return base.hook('preAction', async (_parentCommand, actionCommand) => {
if (actionCommand.opts()?.debug) {
process.env.DEBUG = '*'
}
debug(`${name}:preAction`)('start')
this.analytics = { startTime: process.hrtime.bigint() }
await this.init(actionCommand as BaseCommand)
debug(`${name}:preAction`)('end')
})
}
#noBaseOptions = false
/** don't show help options on command overview (mostly used on top commands like `addons` where options only apply on children) */
noHelpOptions() {
this.#noBaseOptions = true
return this
}
/** The examples list for the command (used inside doc generation and help page) */
examples: string[] = []
/** Set examples for the command */
addExamples(examples: string[]) {
this.examples = examples
return this
}
/** Overrides the help output of commander with custom styling */
createHelp(): Help {
const help = super.createHelp()
help.commandUsage = (command) => {
const term =
this.name() === 'netlify'
? `${HELP_$} ${command.name()} [COMMAND]`
: `${HELP_$} ${command.parent?.name()} ${command.name()} ${command.usage()}`
return padLeft(term, HELP_INDENT_WIDTH)
}
// eslint-disable-next-line unicorn/consistent-function-scoping
const getCommands = (command: BaseCommand) => {
const parentCommand = this.name() === 'netlify' ? command : command.parent
return (
parentCommand?.commands
.filter((cmd) => {
if ((cmd as any)._hidden) return false
// the root command
if (this.name() === 'netlify') {
// don't include subcommands on the main page
return !cmd.name().includes(':')
}
return cmd.name().startsWith(`${command.name()}:`)
})
// eslint-disable-next-line id-length
.sort((a, b) => a.name().localeCompare(b.name())) || []
)
}
help.longestSubcommandTermLength = (command: BaseCommand): number =>
getCommands(command).reduce((max, cmd) => Math.max(max, cmd.name().length), 0)
/** override the longestOptionTermLength to react on hide options flag */
help.longestOptionTermLength = (command: BaseCommand, helper: Help): number =>
// @ts-expect-error TS(2551) FIXME: Property 'noBaseOptions' does not exist on type 'C... Remove this comment to see the full error message
(command.noBaseOptions === false &&
helper.visibleOptions(command).reduce((max, option) => Math.max(max, helper.optionTerm(option).length), 0)) ||
0
help.formatHelp = (command: BaseCommand, helper: Help): string => {
const parentCommand = this.name() === 'netlify' ? command : command.parent
const termWidth = helper.padWidth(command, helper)
const helpWidth = helper.helpWidth || FALLBACK_HELP_CMD_WIDTH
// formats a term correctly
const formatItem = (term: string, description?: string, isCommand = false): string => {
const bang = isCommand ? `${HELP_$} ` : ''
if (description) {
const pad = termWidth + HELP_SEPARATOR_WIDTH
const fullText = `${bang}${term.padEnd(pad - (isCommand ? 2 : 0))}${chalk.grey(description)}`
return helper.wrap(fullText, helpWidth - HELP_INDENT_WIDTH, pad)
}
return `${bang}${term}`
}
let output: string[] = []
// Description
const [topDescription, ...commandDescription] = (helper.commandDescription(command) || '').split('\n')
if (topDescription.length !== 0) {
output = [...output, topDescription, '']
}
// on the parent help command the version should be displayed
if (this.name() === 'netlify') {
output = [...output, chalk.bold('VERSION'), formatHelpList([formatItem(USER_AGENT)]), '']
}
// Usage
output = [...output, chalk.bold('USAGE'), helper.commandUsage(command), '']
// Arguments
const argumentList = helper
.visibleArguments(command)
.map((argument) => formatItem(helper.argumentTerm(argument), helper.argumentDescription(argument)))
if (argumentList.length !== 0) {
output = [...output, chalk.bold('ARGUMENTS'), formatHelpList(argumentList), '']
}
if (command.#noBaseOptions === false) {
// Options
const optionList = helper
.visibleOptions(command)
.sort(sortOptions)
.map((option) => formatItem(helper.optionTerm(option), helper.optionDescription(option)))
if (optionList.length !== 0) {
output = [...output, chalk.bold('OPTIONS'), formatHelpList(optionList), '']
}
}
// Description
if (commandDescription.length !== 0) {
output = [...output, chalk.bold('DESCRIPTION'), formatHelpList(commandDescription), '']
}
// Aliases
// @ts-expect-error TS(2551) FIXME: Property '_aliases' does not exist on type 'Comman... Remove this comment to see the full error message
if (command._aliases.length !== 0) {
// @ts-expect-error TS(2551) FIXME: Property '_aliases' does not exist on type 'Comman... Remove this comment to see the full error message
const aliases = command._aliases.map((alias) => formatItem(`${parentCommand.name()} ${alias}`, null, true))
output = [...output, chalk.bold('ALIASES'), formatHelpList(aliases), '']
}
if (command.examples.length !== 0) {
output = [
...output,
chalk.bold('EXAMPLES'),
formatHelpList(command.examples.map((example) => `${HELP_$} ${example}`)),
'',
]
}
const commandList = getCommands(command).map((cmd) =>
formatItem(cmd.name(), helper.subcommandDescription(cmd).split('\n')[0], true),
)
if (commandList.length !== 0) {
output = [...output, chalk.bold('COMMANDS'), formatHelpList(commandList), '']
}
return [...output, ''].join('\n')
}
return help
}
/** Will be called on the end of an action to track the metrics */
async onEnd(error_?: unknown) {
const { payload = {}, startTime } = this.analytics
const duration = getDuration(startTime)
const status = error_ === undefined ? 'success' : 'error'
const command = Array.isArray(this.args) ? this.args[0] : this.name()
debug(`${this.name()}:onEnd`)(`Command: ${command}. Status: ${status}. Duration: ${duration}ms`)
try {
await track('command', {
...payload,
command,
duration,
status,
})
} catch {}
if (error_ !== undefined) {
error(error_ instanceof Error ? error_ : format(error_), { exit: false })
exit(1)
}
}
async authenticate(tokenFromFlag?: string) {
const [token] = await getToken(tokenFromFlag)
if (token) {
return token
}
return this.expensivelyAuthenticate()
}
async expensivelyAuthenticate() {
const webUI = process.env.NETLIFY_WEB_UI || 'https://app.netlify.com'
log(`Logging into your Netlify account...`)
// Create ticket for auth
const ticket = await this.netlify.api.createTicket({
clientId: CLIENT_ID,
})
// Open browser for authentication
const authLink = `${webUI}/authorize?response_type=ticket&ticket=${ticket.id}`
log(`Opening ${authLink}`)
// @ts-expect-error TS(2345) FIXME: Argument of type '{ url: string; }' is not assigna... Remove this comment to see the full error message
await openBrowser({ url: authLink })
const accessToken = await pollForToken({
api: this.netlify.api,
ticket,
})
const { email, full_name: name, id: userId } = await this.netlify.api.getCurrentUser()
const userData = merge(this.netlify.globalConfig.get(`users.${userId}`), {
id: userId,
name,
email,
auth: {
token: accessToken,
github: {
user: undefined,
token: undefined,
},
},
})
// Set current userId
this.netlify.globalConfig.set('userId', userId)
// Set user data
this.netlify.globalConfig.set(`users.${userId}`, userData)
await identify({
name,
email,
userId,
})
await track('user_login', {
email,
})
// Log success
log()
log(`${chalk.greenBright('You are now logged into your Netlify account!')}`)
log()
log(`Run ${chalk.cyanBright('netlify status')} for account details`)
log()
log(`To see all available commands run: ${chalk.cyanBright('netlify help')}`)
log()
return accessToken
}
/** Adds some data to the analytics payload */
setAnalyticsPayload(payload: Record<string, unknown>) {
this.analytics = {
...this.analytics,
payload: { ...this.analytics.payload, ...payload },
}
}
/**
* Initializes the options and parses the configuration needs to be called on start of a command function
*/
private async init(actionCommand: BaseCommand) {
debug(`${actionCommand.name()}:init`)('start')
const flags = actionCommand.opts()
// here we actually want to use the process.cwd as we are setting the workingDir
// eslint-disable-next-line workspace/no-process-cwd
this.workingDir = flags.cwd ? resolve(flags.cwd) : process.cwd()
// ==================================================
// Create a Project and run the Heuristics to detect
// if we are running inside a monorepo or not.
// ==================================================
// retrieve the repository root
const rootDir = await getRepositoryRoot()
// Get framework, add to analytics payload for every command, if a framework is set
const fs = new NodeFS()
// disable logging inside the project and FS if not in debug mode
fs.logger = actionCommand.opts()?.debug ? new DefaultLogger('debug') : new NoopLogger()
this.project = new Project(fs, this.workingDir, rootDir)
.setEnvironment(process.env)
.setNodeVersion(process.version)
// eslint-disable-next-line promise/prefer-await-to-callbacks
.setReportFn((err, reportConfig) => {
reportError(err, {
severity: reportConfig?.severity || 'error',
metadata: reportConfig?.metadata,
})
})
const frameworks = await this.project.detectFrameworks()
let packageConfig: string | undefined = flags.config ? resolve(flags.config) : undefined
// check if we have detected multiple projects inside which one we have to perform our operations.
// only ask to select one if on the workspace root and no --cwd was provided
if (
!flags.cwd &&
!COMMANDS_WITHOUT_WORKSPACE_OPTIONS.has(actionCommand.name()) &&
this.project.workspace?.packages.length &&
this.project.workspace.isRoot
) {
this.workspacePackage = await selectWorkspace(this.project, actionCommand.opts().filter)
this.workingDir = join(this.project.jsWorkspaceRoot, this.workspacePackage)
}
if (this.project.workspace?.packages.length && !this.project.workspace.isRoot) {
// set the package path even though we are not in the workspace root
// as the build command will set the process working directory to the workspace root
this.workspacePackage = this.project.relativeBaseDirectory
}
this.jsWorkspaceRoot = this.project.jsWorkspaceRoot
// detect if a toml exists in this package.
const tomlFile = join(this.workingDir, 'netlify.toml')
if (!packageConfig && existsSync(tomlFile)) {
packageConfig = tomlFile
}
// ==================================================
// Retrieve Site id and build state from the state.json
// ==================================================
const state = new StateConfig(this.workingDir)
const [token] = await getToken(flags.auth)
const apiUrlOpts: {
userAgent: string
scheme?: string
host?: string
pathPrefix?: string
} = {
userAgent: USER_AGENT,
}
if (process.env.NETLIFY_API_URL) {
const apiUrl = new URL(process.env.NETLIFY_API_URL)
apiUrlOpts.scheme = apiUrl.protocol.slice(0, -1)
apiUrlOpts.host = apiUrl.host
apiUrlOpts.pathPrefix =
process.env.NETLIFY_API_URL === `${apiUrl.protocol}//${apiUrl.host}` ? '/api/v1' : apiUrl.pathname
}
const agent = await getAgent({
httpProxy: flags.httpProxy,
certificateFile: flags.httpProxyCertificateFilename,
})
const apiOpts = { ...apiUrlOpts, agent }
// TODO: remove typecast once we have proper types for the API
const api = new NetlifyAPI(token || '', apiOpts) as NetlifyOptions['api']
actionCommand.siteId = flags.siteId || (typeof flags.site === 'string' && flags.site) || state.get('siteId')
const needsFeatureFlagsToResolveConfig = COMMANDS_WITH_FEATURE_FLAGS.has(actionCommand.name())
if (api.accessToken && !flags.offline && needsFeatureFlagsToResolveConfig && actionCommand.siteId) {
try {
const site = await api.getSite({ siteId: actionCommand.siteId, feature_flags: 'cli' })
actionCommand.featureFlags = site.feature_flags
actionCommand.accountId = site.account_id
} catch {
// if the site is not found, that could mean that the user passed a site name, not an ID
}
}
// ==================================================
// Start retrieving the configuration through the
// configuration file and the API
// ==================================================
const cachedConfig = await actionCommand.getConfig({
cwd: flags.cwd ? this.workingDir : this.jsWorkspaceRoot || this.workingDir,
repositoryRoot: rootDir,
packagePath: this.workspacePackage,
// The config flag needs to be resolved from the actual process working directory
configFilePath: packageConfig,
token,
...apiUrlOpts,
})
const { buildDir, config, configPath, repositoryRoot, siteInfo } = cachedConfig
let { env } = cachedConfig
if (flags.offlineEnv) {
env = {}
}
env.NETLIFY_CLI_VERSION = { sources: ['internal'], value: version }
const normalizedConfig = normalizeConfig(config)
// If a user passes a site name as an option instead of a site ID to options.site, the siteInfo object
// will only have the property siteInfo.id. Checking for one of the other properties ensures that we can do
// a re-call of the api.getSite() that is done in @netlify/config so we have the proper site object in all
// commands.
// options.site as a site name (and not just site id) was introduced for the deploy command, so users could
// deploy by name along with by id
let siteData = siteInfo
if (!siteData.url && flags.site) {
siteData = await getSiteByName(api, flags.site)
}
const globalConfig = await getGlobalConfig()
// ==================================================
// Perform analytics reporting
// ==================================================
const frameworkIDs = frameworks?.map((framework) => framework.id)
if (frameworkIDs?.length !== 0) {
this.setAnalyticsPayload({ frameworks: frameworkIDs })
}
this.setAnalyticsPayload({
monorepo: Boolean(this.project.workspace),
packageManager: this.project.packageManager?.name,
buildSystem: this.project.buildSystems.map(({ id }) => id),
})
// set the project and the netlify api object on the command,
// to be accessible inside each command.
actionCommand.project = this.project
actionCommand.workingDir = this.workingDir
actionCommand.workspacePackage = this.workspacePackage
actionCommand.jsWorkspaceRoot = this.jsWorkspaceRoot
// Either an existing configuration file from `@netlify/config` or a file path
// that should be used for creating it.
const configFilePath = configPath || join(this.workingDir, 'netlify.toml')
actionCommand.netlify = {
// api methods
api,
apiOpts,
// The absolute repository root (detected through @netlify/config)
repositoryRoot,
configFilePath,
relConfigFilePath: relative(repositoryRoot, configFilePath),
// current site context
site: {
root: buildDir,
configPath,
get id() {
return state.get('siteId')
},
set id(id) {
state.set('siteId', id)
},
},
// Site information retrieved using the API (api.getSite())
siteInfo: siteData,
// Configuration from netlify.[toml/yml]
config: normalizedConfig,
// Used to avoid calling @netlify/config again
cachedConfig: {
...cachedConfig,
env,
},
// global cli config
globalConfig,
// state of current site dir
state,
frameworksAPIPaths: getFrameworksAPIPaths(buildDir, this.workspacePackage),
}
debug(`${this.name()}:init`)('end')
}
/** Find and resolve the Netlify configuration */
async getConfig(config: {
cwd: string
token?: string | null
offline?: boolean
/** An optional path to the netlify configuration file e.g. netlify.toml */
configFilePath?: string
packagePath?: string
repositoryRoot?: string
host?: string
pathPrefix?: string
scheme?: string
}): ReturnType<typeof resolveConfig> {
// the flags that are passed to the command like `--debug` or `--offline`
const flags = this.opts()
try {
return await resolveConfig({
accountId: this.accountId,
config: config.configFilePath,
packagePath: config.packagePath,
repositoryRoot: config.repositoryRoot,
cwd: config.cwd,
context: flags.context || process.env.CONTEXT || this.getDefaultContext(),
debug: flags.debug,
siteId: this.siteId,
token: config.token,
mode: 'cli',
host: config.host,
pathPrefix: config.pathPrefix,
scheme: config.scheme,
offline: config.offline ?? flags.offline,
siteFeatureFlagPrefix: 'cli',
featureFlags: this.featureFlags,
})
} catch (error_) {
// @ts-expect-error TS(2571) FIXME: Object is of type 'unknown'.
const isUserError = error_.customErrorInfo !== undefined && error_.customErrorInfo.type === 'resolveConfig'
// If we're failing due to an error thrown by us, it might be because the token we're using is invalid.
// To account for that, we try to retrieve the config again, this time without a token, to avoid making
// any API calls.
//
// @todo Replace this with a mechanism for calling `resolveConfig` with more granularity (i.e. having
// the option to say that we don't need API data.)
if (isUserError && !config.offline && config.token) {
if (flags.debug) {
error(error_, { exit: false })
warn('Failed to resolve config, falling back to offline resolution')
}
// recursive call with trying to resolve offline
return this.getConfig({ ...config, offline: true })
}
// @ts-expect-error TS(2571) FIXME: Object is of type 'unknown'.
const message = isUserError ? error_.message : error_.stack
error(message, { exit: true })
}
}
/**
* get a path inside the `.netlify` project folder resolving with the workspace package
*/
getPathInProject(...paths: string[]): string {
return join(this.workspacePackage || '', '.netlify', ...paths)
}
/**
* Returns the context that should be used in case one hasn't been explicitly
* set. The default context is `dev` most of the time, but some commands may
* wish to override that.
*/
getDefaultContext(): 'production' | 'dev' {
return this.name() === 'serve' ? 'production' : 'dev'
}
/**
* Retrieve feature flags for this site
*/
getFeatureFlag<T = null | boolean | string>(flagName: string): T {
return this.netlify.siteInfo.feature_flags?.[flagName] || null
}
}