-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
executable file
·271 lines (232 loc) · 7.56 KB
/
index.js
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
const program = require('commander');
const colors = require('colors');
const download = require('download-git-repo');
const shell = require('shelljs');
const ora = require('ora');
const fs = require('fs-extra');
const ip = require('ip');
const path = require('path');
const { version } = require('./package.json');
const spinner = ora();
/**
* Returns the absolute installation path for Sonos Web
*/
function absoluteInstallPath() {
shell.cd('~');
const absolutePath = `${shell.pwd().stdout}/.sonos-web`;
return absolutePath;
}
const foreverPath = `${path.dirname(require.resolve('forever/package.json'))}/bin/forever`;
const installPath = absoluteInstallPath();
const installLogFile = `${installPath}/install.log`;
const foreverLogFile = `${installPath}/forever.log`;
const logFile = `${installPath}/sonos-web.log`;
const pidFile = `${installPath}/sonos-web.pid`;
function asyncExec(command) {
return new Promise((resolve, reject) => {
shell.exec(command, { silent: true, async: false }, (code, stdout, stderr) => {
if (shell.test('-f', installLogFile)) {
const stream = fs.createWriteStream(installLogFile, { flags: 'a' });
stream.write(stdout);
stream.write(stderr);
stream.end();
}
if (code !== 0) {
reject(code);
} else {
resolve(stdout);
}
});
});
}
function logSuccess(description) {
console.log(colors.bold.green('success ') + description);
}
function logError(description) {
console.log(colors.bold.red('error ') + description);
}
function isRunning() {
return shell.test('-f', pidFile);
}
function isInstalled() {
return shell.test('-f', `${installPath}/src/server.js`);
}
/**
* Start an existing installation of Sonos Web
*/
async function start() {
const noPortErrorMessage = 'Could not find PORT environment variable';
const alreadyRunningMessage = `${colors.yellow('Sonos Web')} is already running`;
const noInstallationFoundMessage = `No installation found...run ${colors.cyan('sonos-web install')} to get started`;
try {
if (!isInstalled()) throw new Error(noInstallationFoundMessage);
// this means that sonos-web is already running
// because forever deletes this file when it is stopped
if (isRunning()) {
throw new Error(alreadyRunningMessage);
}
shell.cd(installPath);
const envFile = await fs.readFile('.env');
const portEnv = envFile.toString().split('\n').find(env => env.includes('PORT='));
if (!portEnv) {
throw (new Error(noPortErrorMessage));
}
spinner.start(`Starting ${colors.yellow('Sonos Web')}`);
await asyncExec(`${foreverPath} --pidFile ${pidFile} -a -l ${foreverLogFile} -o ${logFile} -e ${logFile} start src/server.js`);
spinner.succeed();
// eslint-disable-next-line prefer-destructuring
const port = portEnv.split('=')[1];
const localIP = ip.address();
const sonosNetworkAddress = `http://${localIP}:${port}`;
console.log('');
logSuccess(`Open a web browser on this computer to ${colors.cyan(`http://localhost:${port}`)} to start!`);
console.log(`You can access ${colors.yellow('Sonos Web')} network-wide by going to ${colors.cyan(sonosNetworkAddress)}`);
} catch (err) {
switch (err.message) {
case noPortErrorMessage:
case noInstallationFoundMessage:
logError(err.message);
break;
case alreadyRunningMessage:
console.log(err.message);
break;
default:
spinner.fail();
logError(err);
}
shell.exit(1);
}
}
async function stop() {
if (!isRunning()) {
console.log(`${colors.yellow('Sonos Web')} isn't running`);
return;
}
spinner.start(`Stopping ${colors.yellow('Sonos Web')}`);
try {
shell.cd(installPath);
await asyncExec(`${foreverPath} stop src/server.js`);
spinner.succeed();
} catch (err) {
spinner.fail();
logError(err);
}
}
async function uninstall() {
if (!shell.test('-d', installPath)) {
console.log(`${colors.yellow('Sonos Web')} isn't installed`);
return;
}
console.log(`Stopping ${colors.yellow('Sonos Web')} if it is running...`);
// stop the server if it is running
await stop();
try {
spinner.start(`Uninstalling ${colors.yellow('Sonos Web')}`);
// Remove server files & directory
await fs.remove(installPath);
spinner.succeed();
} catch (err) {
spinner.fail();
logError('uninstall failed');
shell.exit(1);
}
}
async function install() {
if (isInstalled()) {
console.log(`${colors.bold.yellow('Sonos Web')} is already installed`);
console.log(`You may run ${colors.cyan('sonos-web update')} to remove the old installation and reinstall`);
shell.exit(1);
}
console.log(`Installing ${colors.bold.yellow('Sonos Web')}`);
if (shell.mkdir(installPath).code !== 0) {
logError('Could not create install directory');
shell.exit(1);
}
spinner.start('downloading installation files');
download('Villarrealized/sonos-web', installPath, async (err) => {
// clear log file
fs.writeFile(installLogFile, '');
if (err) {
fs.write(installLogFile, err);
spinner.fail();
shell.exit(1);
}
spinner.succeed();
// Build Vue client server for production
shell.cd(`${installPath}/client`);
try {
spinner.start('installing front-end dependencies');
await asyncExec('npm install');
spinner.succeed();
spinner.start('build front-end application');
await asyncExec('npm run build');
spinner.succeed();
spinner.start('install back-end dependencies');
shell.cd(`${installPath}/server`);
await asyncExec('npm install --only=production');
// await asyncExec('npm install forever -g');
spinner.succeed();
spinner.start('cleaning up installation files');
shell.cd(installPath);
// Move the dist folder created by `npm run build` in to the server folder
shell.mv('client/dist', 'server');
// clean up unnecessary files
shell.mv('server/.env.production', 'server/.env');
await fs.remove('.gitignore');
await fs.remove('client');
shell.cd(`${installPath}/server`);
await fs.remove('package.json');
await fs.remove('.eslintrc.js');
await fs.remove('package-lock.json');
shell.cd(installPath);
shell.mv('server/*', '.');
shell.mv('server/.*', '.');
await fs.remove('server');
spinner.succeed();
// Start the Sonos Web server
start();
} catch (code) {
spinner.fail();
logError(`installation failed...check ${installLogFile} for more details`);
shell.exit(1);
}
});
}
async function update() {
await uninstall();
await install();
}
program
.version(version)
.description(`CLI tool (v${version}) for installing Sonos Web`.cyan);
program
.command('install')
.description('Install Sonos Web to your home directory')
.action(install);
program
.command('update')
.description('Update Sonos Web to the latest version')
.action(update);
program
.command('start')
.description('Start Sonos Web after it has been installed')
.action(start);
program
.command('stop')
.description('Stop Sonos Web after it has been started')
.action(stop);
program
.command('uninstall')
.action(uninstall)
.description('Uninstall Sonos Web');
// Output help if no commands are given
if (!process.argv.slice(2).length) {
program.outputHelp();
}
// error on unknown commands
program.on('command:*', () => {
console.logError(colors.red('Invalid command: %s\nSee --help for a list of available commands.'), program.args.join(' '));
process.exit(1);
});
program.parse(process.argv);