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
228 lines (178 loc) · 6.58 KB
/
Copy pathinit.js
File metadata and controls
228 lines (178 loc) · 6.58 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
const { flags: flagsLib } = require('@oclif/command')
const chalk = require('chalk')
const dotProp = require('dot-prop')
const inquirer = require('inquirer')
const isEmpty = require('lodash/isEmpty')
const Command = require('../utils/command')
const { getRepoData } = require('../utils/get-repo-data')
const { ensureNetlifyIgnore } = require('../utils/gitignore')
const { configureRepo } = require('../utils/init/config')
const { track } = require('../utils/telemetry')
const LinkCommand = require('./link')
const SitesCreateCommand = require('./sites/create')
const persistState = ({ state, siteInfo }) => {
// Save to .netlify/state.json file
state.set('siteId', siteInfo.id)
}
const getRepoUrl = ({ siteInfo }) => dotProp.get(siteInfo, 'build_settings.repo_url')
const reportAnalytics = async ({ config, flags }) => {
await config.runHook('analytics', {
eventName: 'command',
payload: {
command: 'init',
manual: flags.manual,
force: flags.force,
},
})
}
const logExistingAndExit = ({ log, exit, siteInfo }) => {
log()
log(`This site has been initialized`)
log()
log(`Site Name: ${chalk.cyan(siteInfo.name)}`)
log(`Site Url: ${chalk.cyan(siteInfo.ssl_url || siteInfo.url)}`)
log(`Site Repo: ${chalk.cyan(getRepoUrl({ siteInfo }))}`)
log(`Site Id: ${chalk.cyan(siteInfo.id)}`)
log(`Admin URL: ${chalk.cyan(siteInfo.admin_url)}`)
log()
log(`To disconnect this directory and create a new site (or link to another siteId)`)
log(`1. Run ${chalk.cyanBright.bold('netlify unlink')}`)
log(`2. Then run ${chalk.cyanBright.bold('netlify init')} again`)
exit()
}
const createNewSiteAndExit = async ({ log, exit, state }) => {
const siteInfo = await SitesCreateCommand.run([])
log(`"${siteInfo.name}" site was created`)
log()
log(`To deploy to this site. Run your site build and then ${chalk.cyanBright.bold('netlify deploy')}`)
persistState({ state, siteInfo })
exit()
}
const logGitSetupInstructionsAndExit = ({ log, exit }) => {
log()
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')}
`)
exit()
}
const handleNoGitRemoteAndExit = async ({ log, exit, error, state }) => {
log()
log(`${chalk.yellow('No git remote was found, would you like to set one up?')}`)
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
`)
if (error === "Couldn't find origin url") {
log(`Unable to find a remote origin URL. Please add a git remote.
git remote add origin https://github.com/YourUserName/RepoName.git
`)
}
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],
},
])
if (noGitRemoteChoice === NEW_SITE_NO_GIT) {
await createNewSiteAndExit({ log, exit, state })
} else if (noGitRemoteChoice === NO_ABORT) {
logGitSetupInstructionsAndExit({ log, exit })
}
}
const createOrLinkSiteToRepo = async () => {
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
return await SitesCreateCommand.run([])
}
if (initChoice === EXISTING_SITE) {
// run link command
return await LinkCommand.run([], false)
}
}
const logExistingRepoSetupAndExit = ({ log, exit, siteName, repoUrl }) => {
log()
log(chalk.underline.bold(`Success`))
log(`This site "${siteName}" is configured to automatically deploy via ${repoUrl}`)
// TODO add support for changing github repo in site:config command
exit()
}
class InitCommand extends Command {
async run() {
const { flags } = this.parse(InitCommand)
const { log, exit, config, netlify } = this
const { site, state } = netlify
let { siteInfo } = this.netlify
// Check logged in status
await this.authenticate()
await reportAnalytics({ config, flags })
// Add .netlify to .gitignore file
await ensureNetlifyIgnore(site.root)
const repoUrl = getRepoUrl({ siteInfo })
if (repoUrl && !flags.force) {
logExistingAndExit({ log, exit, siteInfo })
}
// Look for local repo
const repoData = await getRepoData({ log, remoteName: flags.gitRemoteName })
if (repoData.error) {
await handleNoGitRemoteAndExit({ log, exit, error: repoData.error, state })
}
if (isEmpty(siteInfo)) {
siteInfo = await createOrLinkSiteToRepo()
}
// Check for existing CI setup
const remoteBuildRepo = getRepoUrl({ siteInfo })
if (remoteBuildRepo && !flags.force) {
logExistingRepoSetupAndExit({ log, exit, siteName: siteInfo.name, repoUrl: remoteBuildRepo })
}
persistState({ state, siteInfo })
await configureRepo({ context: this, siteId: siteInfo.id, repoData, manual: flags.manual })
return siteInfo
}
}
InitCommand.description = `Configure continuous deployment for a new or existing site`
InitCommand.flags = {
manual: flagsLib.boolean({
char: 'm',
description: 'Manually configure a git remote for CI',
}),
force: flagsLib.boolean({
description: 'Reinitialize CI hooks if the linked site is already configured to use CI',
}),
gitRemoteName: flagsLib.string({
description: 'Name of Git remote to use. e.g. "origin"',
}),
...InitCommand.flags,
}
module.exports = InitCommand