forked from brisc/ember-cli-deploy-rsync2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
356 lines (314 loc) · 10.7 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
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
/* jshint node: true */
/* predef Promise */
'use strict';
const BasePlugin = require('ember-cli-deploy-plugin');
const Rsync = require('rsync');
const username = require('username');
const fullname = require('fullname');
const tmp = require('tmp');
const fs = require('fs');
const sysPath = require('path');
const childProcess = require('child_process');
const hasOwn = Object.prototype.hasOwnProperty;
function removeTrailingSlash(path) {
return path.replace(/[\/\\]?$/, '');
}
function unlinkCleanup(file, callback) {
const cleanup = function () {
silentlyFail(fs.unlinkSync.bind(fs, file));
if (callback) {
callback.apply(null, arguments);
}
};
if (!callback) {
cleanup();
} else {
return cleanup;
}
}
function silentlyFail(callback) {
try {
return {
return: callback()
};
} catch (e) {
return {
error: e
};
}
}
module.exports = {
name: 'ember-cli-deploy-rsync2',
createDeployPlugin(options) {
let configCache;
const DeployPlugin = BasePlugin.extend({
name: options.name,
defaultConfig: {
port: '22',
sourcePath: 'tmp/deploy-dist',
currentPath: 'current',
revisionsFile: 'revisions.json',
exclude: null,
include: null,
flags: 'rtu',
deployerFormat: '{user}',
},
requiredConfig: ['username', 'releasesPath', 'host'],
configure() {
this._super();
this._addDebug('Checking that git working directory is clean...');
[ 'revisionKey', 'didDeployMessage'].forEach(this.applyDefaultConfigProperty.bind(this));
return new Promise(function (resolve, reject) {
childProcess.exec('git diff-index --quiet HEAD --', function (err) {
if (err) {
return reject('Git working directory is not clean, commit any change before using `ember deploy`');
}
resolve();
});
});
},
didPrepare(context) {
this._addDebug('Ensuring that revision data is present in the deploy context...');
if (!context.revisionData) {
return Promise.reject(
'You must include `ember-cli-deploy-revision-data` plugin for `' + options.name + '` to work.'
);
}
},
didDeployMessage: function(context){
var revisionKey = context.revisionData && context.revisionData.revisionKey;
var activatedRevisionKey = context.revisionData && context.revisionData.activatedRevisionKey;
if (revisionKey && !activatedRevisionKey) {
return "Deployed but did not activate revision " + revisionKey + ". "
+ "To activate, run: "
+ "ember deploy:activate " + context.deployTarget + " --revision=" + revisionKey + "\n";
}
},
revisionKey: function(context) {
return context.commandOptions.revision || (context.revisionData && context.revisionData.revisionKey);
},
didDeploy: function (/* context */) {
var didDeployMessage = this.readConfig('didDeployMessage');
if (didDeployMessage) {
this._addInfo(didDeployMessage);
}
},
fetchInitialRevisions() {
return this._grabRevisionsList()
.then(function (revisions) {
return {
initialRevisions: revisions
};
});
},
fetchRevisions() {
return this._grabRevisionsList()
.then(function (revisions) {
return {
revisions: revisions.sort(function(a,b){
return new Date(b.timestamp).getTime() - new Date(a.timestamp).getTime();
})
};
});
},
_addDebug(message) {
return this.log(message, {
verbose: true
});
},
_addInfo(message) {
return this.log(message);
},
_config() {
if (!configCache) {
this._addDebug('Building configuration cache...');
const releasesPath = removeTrailingSlash(this.readConfig('releasesPath'));
const currentPath = this.readConfig('currentPath');
configCache = {
currentPath: sysPath.isAbsolute(currentPath) ? sysPath.relative(releasesPath, currentPath) : currentPath,
currentBase: sysPath.basename(currentPath),
releasesPath: releasesPath,
sourcePath: removeTrailingSlash(this.readConfig('sourcePath')),
revisionsFile: releasesPath + '/' + this.readConfig('revisionsFile'),
username: this.readConfig('username'),
host: this.readConfig('host'),
port: this.readConfig('port'),
userAtHost: this.readConfig('username') + '@' + this.readConfig('host'),
flags: this.readConfig('flags'),
exclude: this.readConfig('exclude'),
include: this.readConfig('include'),
deployerFormat: this.readConfig('deployerFormat') || 'unknown',
};
}
return configCache;
},
_grabRevisionsList() {
const plugin = this;
const config = this._config();
this._addDebug('Grabbing revision list from the server...');
return new Promise(function (resolve, reject) {
const path = tmp.tmpNameSync({
postfix: '.json'
});
plugin._rsync(
config.userAtHost + ':' + config.revisionsFile,
path,
't'
)
.then(function () {
return require(path).data;
})
.then(unlinkCleanup(path, resolve))
.catch(function (err) {
// invalid path, we are sure it's a missing file and so can create one
unlinkCleanup(path);
if (err.message === 'rsync exited with code 23') {
resolve([]);
} else {
reject(err);
}
});
});
},
_rsync(source, destination, options) {
const config = this._config();
const rsync = new Rsync()
.shell('ssh -p ' + config.port)
.source(source)
.destination(destination);
if (typeof options === 'string') {
options = {
flags: options
};
} else if (options == null) {
options = {
flags: config.flags,
exclude: config.exclude,
include: config.include,
};
}
// apply options
rsync.flags(options.flags);
if (options.exclude || options.include) {
rsync.set('exclude', options.exclude || '*');
if (options.include) {
rsync.set('include', options.include);
}
}
this._addDebug('Running rsync command: ' + rsync.command());
return new Promise(function (resolve, reject) {
rsync.execute(function (error /*, code, cmd*/) {
return error ? reject(error) : resolve();
});
});
},
_uploadRevisionsFile(revisions) {
const plugin = this;
const config = this._config();
this._addDebug('Uploading revisions file...');
return new Promise(function (resolve, reject) {
const path = tmp.tmpNameSync({
postfix: '.json'
});
try {
fs.writeFileSync(path, JSON.stringify({
data: revisions
}));
} catch (err) {
return unlinkCleanup(path, reject)(err);
}
plugin._rsync(
path,
config.userAtHost + ':' + config.revisionsFile,
't'
)
.then(unlinkCleanup(path, resolve))
.catch(unlinkCleanup(path, reject));
});
},
_activateRevision(revision) {
const plugin = this;
const config = this._config();
const currentPath = sysPath.resolve(config.releasesPath, config.currentPath);
const revPath = config.releasesPath + '/' + revision;
const link = sysPath.relative(sysPath.dirname(currentPath), revPath);
this._addInfo('Activating revision `' + revision + '`...');
return new Promise(function (resolve, reject) {
tmp.dir({
unsafeCleanup: true
}, function (err, path, cleanupCallback) {
if (err) {
return reject(err);
}
fs.symlink(link, sysPath.join(path, config.currentBase), 'dir', function (err) {
if (err) {
silentlyFail(cleanupCallback);
return reject(err);
}
plugin._rsync(path + '/*', config.userAtHost + ':' + sysPath.dirname(currentPath) + '/', 'rltI')
.then(function () {
silentlyFail(cleanupCallback);
resolve();
})
.catch(function (err) {
silentlyFail(cleanupCallback);
reject(err);
});
});
});
});
},
_formatDeployer(format, revisionData) {
const map = Object.assign({}, revisionData || {});
return fullname().then(function (name) {
map.userFullName = name;
map.userName = username.sync();
map.user = name || map.userName;
return format.replace(/\{([a-z0-9]+)}/gi, function (dummy, key) {
if (hasOwn.call(map, key)) {
return map[key];
}
return '{' + key + '}';
});
});
},
activate(context) {
let revisionKey = this.revisionKey(context);
return this._activateRevision(revisionKey);
},
upload(context) {
const plugin = this;
const config = this._config();
const rev = context.revisionData;
const revPath = config.releasesPath + '/' + rev.revisionKey;
const revisions = context.initialRevisions.filter(function (r) {
return r.revision !== rev.revisionKey;
}).map(function (r) {
return Object.assign({}, r, {
active: false
});
});
let revision;
return this._formatDeployer(config.deployerFormat, rev)
.then(function (deployer) {
revisions.push(revision = {
version: rev.scm.sha,
timestamp: rev.timestamp,
revision: rev.revisionKey,
active: true,
deployer: deployer,
});
plugin._addInfo('Uploading revision `' + rev.revisionKey + '` (deployer: ' + revision.deployer + ')...');
return Promise.all([
plugin._rsync(
config.sourcePath + '/',
config.userAtHost + ':' + revPath + '/'
),
plugin._uploadRevisionsFile(revisions),
]);
});
},
});
return new DeployPlugin();
}
};