forked from netlify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.js
More file actions
268 lines (220 loc) · 8.01 KB
/
init.js
File metadata and controls
268 lines (220 loc) · 8.01 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
const { flags } = require('@oclif/command')
const chalk = require('chalk')
const get = require('lodash.get')
const Command = require('@netlify/cli-utils')
const SitesWatchCommand = require('./watch')
const configManual = require('../utils/init/config-manual')
const configGithub = require('../utils/init/config-github')
const getRepoData = require('../utils/get-repo-data')
const { ensureNetlifyIgnore } = require('../utils/gitignore')
const inquirer = require('inquirer')
const SitesCreateCommand = require('./sites/create')
const LinkCommand = require('./link')
const { track } = require('../utils/telemetry')
class InitCommand extends Command {
async run() {
const { flags } = this.parse(InitCommand)
const { site, api, state } = this.netlify
// Check logged in status
await this.authenticate()
const siteId = site.id
await this.config.runHook('analytics', {
eventName: 'command',
payload: {
command: "init",
manual: flags.manual,
watch: flags.watch,
force: flags.force,
},
});
// const hasFlags = !isEmpty(flags)
let siteData
try {
siteData = await api.getSite({ siteId })
} catch (e) {
// silent api error
// TODO handle expected errors
// Throw unexpected ones
}
// Add .netlify to .gitignore file
await ensureNetlifyIgnore(site.root)
if (siteId && siteData && get(siteData, 'build_settings.repo_url') && !flags.force) {
const repoUrl = get(siteData, 'build_settings.repo_url')
this.log()
this.log(`This site has been initialized`)
this.log()
this.log(`Site Name: ${chalk.cyan(siteData.name)}`)
this.log(`Site Url: ${chalk.cyan(siteData.ssl_url || siteData.url)}`)
if (repoUrl) {
this.log(`Site Repo: ${chalk.cyan(repoUrl)}`)
}
this.log(`Site Id: ${chalk.cyan(siteData.id)}`)
this.log(`Admin URL: ${chalk.cyan(siteData.admin_url)}`)
this.log()
this.log(`To disconnect this directory and create a new site (or link to another siteId)`)
this.log(`1. Run ${chalk.cyanBright.bold('netlify unlink')}`)
this.log(`2. Then run ${chalk.cyanBright.bold('netlify init')} again`)
// TODO remove this.log(`Or delete the siteId from ${this.siteData.path}`)
this.exit()
}
// Look for local repo
const repo = await getRepoData()
if (repo.error) {
console.log()
console.log(`${chalk.yellow('No git remote was found, would you like to set one up?')}`)
console.log(`
It is recommended that you initialize a site that has a remote repository in GitHub.
This will allow for Netlify Continuous deployment to build branch & PR previews.
For more details on Netlify CI checkout the docs: http://bit.ly/2N0Jhy5
`)
let message
switch (repo.error) {
case "Couldn't find origin url": {
message = `Unable to find a remote origin URL. Please add a git remote.
git remote add origin https://github.com/YourUserName/RepoName.git
`
break
}
}
if (message) {
console.log(message)
}
const NEW_SITE_NO_GIT = 'Yes, create and deploy site manually'
const NO_ABORT = 'No, I will connect this directory with GitHub first'
const { noGitRemoteChoice } = await inquirer.prompt([
{
type: 'list',
name: 'noGitRemoteChoice',
message: 'Do you want to create a Netlify site without a git repository?',
choices: [NEW_SITE_NO_GIT, NO_ABORT]
}
])
// create site or search for one
if (noGitRemoteChoice === NEW_SITE_NO_GIT) {
// run site:create command
siteData = await SitesCreateCommand.run([])
console.log(`"${siteData.name}" site was created`)
console.log()
this.log(`To deploy to this site. Run your site build and then ${chalk.cyanBright.bold('netlify deploy')}`)
// Save to .netlify/state.json file
state.set('siteId', siteData.id)
// no github remote
this.exit()
} else if (noGitRemoteChoice === NO_ABORT) {
console.log()
console.log(`${chalk.bold('To initialize a new git repo follow the steps below.')}
1. Initialize a new repo:
${chalk.cyanBright.bold('git init')}
2. Commit your files
${chalk.cyanBright.bold('git add .')}
3. Commit your files
${chalk.cyanBright.bold("git commit -m 'initial commit'")}
4. Create a new repo in GitHub ${chalk.cyanBright.bold('https://github.com/new')}
5. Link the remote repo with this local directory
${chalk.cyanBright.bold('git remote add origin git@github.com:YourGithubName/your-repo-slug.git')}
6. Push up your files
${chalk.cyanBright.bold('git push -u origin master')}
7. Initialize your Netlify Site
${chalk.cyanBright.bold('netlify init')}
`)
this.exit()
}
// Throw github remote error
this.error(repo.error)
}
if (!siteData) {
const NEW_SITE = '+ Create & configure a new site'
const EXISTING_SITE = '⇄ Connect this directory to an existing Netlify site'
const initializeOpts = [EXISTING_SITE, NEW_SITE]
const { initChoice } = await inquirer.prompt([
{
type: 'list',
name: 'initChoice',
message: 'What would you like to do?',
choices: initializeOpts
}
])
// create site or search for one
if (initChoice === NEW_SITE) {
await track('sites_initStarted', {
type: 'new site'
})
// run site:create command
siteData = await SitesCreateCommand.run([])
} else if (initChoice === EXISTING_SITE) {
// run link command
siteData = await LinkCommand.run([], false)
}
}
// Check for existing CI setup
const remoteBuildRepo = get(siteData, 'build_settings.repo_url')
if (remoteBuildRepo && !flags.force) {
this.log()
this.log(chalk.underline.bold(`Success`))
const siteName = get(siteData, 'name')
this.log(`This site "${siteName}" is configured to automatically deploy via ${remoteBuildRepo}`)
// TODO add support for changing github repo in site:config command
if (flags.watch) {
await SitesWatchCommand.run([])
}
this.exit()
}
// Save to .netlify/state.json file
state.set('siteId', siteData.id)
if (flags.manual) {
await configManual(this, siteData, repo)
} else {
switch (repo.provider) {
case 'github': {
try {
await configGithub(this, siteData, repo)
} catch (e) {
this.warn(`GitHub error: ${e.status}`)
if (e.code === 404) {
this.error(
`Does the repository ${
repo.repo_path
} exist and do you have the correct permissions to set up deploy keys?`
)
} else {
throw e
}
}
break
}
case 'gitlab':
default: {
this.error('No configurator found for the git hosting service')
}
}
}
// Success Message
this.log()
this.log(chalk.greenBright.bold.underline(`Success! Netlify CI/CD Configured!`))
this.log()
this.log(`This site is now configured to automatically deploy from ${repo.provider} branches & pull requests`)
this.log()
this.log(`Next steps:
${chalk.cyanBright.bold('git push')} Push to your git repository to trigger new site builds
${chalk.cyanBright.bold('netlify open')} Open the Netlify admin URL of your site
`)
if (flags.watch) {
await SitesWatchCommand.run([])
}
}
}
InitCommand.description = `Configure continuous deployment for a new or existing site`
InitCommand.flags = {
manual: flags.boolean({
char: 'm',
description: 'Manually configure a git remote for CI'
}),
watch: flags.boolean({
char: 'w',
description: 'Make the CLI wait for the first deploy to complete after setting up CI'
}),
force: flags.boolean({
description: 'Reinitialize CI hooks if the linked site is already configured to use CI'
})
}
module.exports = InitCommand