-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgit.js
107 lines (95 loc) · 3.13 KB
/
git.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
var async = require('async');
var childProcess = require('child_process');
var debug = require('debug')('strong-deploy:git');
var getDeployEndpoint = require('./deploy-endpoint').get;
var g = require('strong-globalize');
var shell = require('shelljs');
var util = require('util');
var urlParse = require('url').parse;
var urlFormat = require('url').format;
function getCurrentBranch(workingDir) {
if (!shell.pushd(workingDir)) {
return g.Error('Directory %s does not exist', workingDir);
}
var output = shell.exec('git symbolic-ref --short HEAD', {silent: true});
shell.popd();
if (output.code !== 0) {
return g.Error(
'This directory does not contain a valid {{git}} repository');
}
return output.output.trim();
}
function isValidBranch(workingDir, branchName, callback) {
var cmd = util.format('git rev-parse --abbrev-ref %s', branchName);
debug(cmd);
var options = {cwd: workingDir};
childProcess.exec(cmd, options, function(err, stdout, stderr) {
debug('stdout: ' + stdout);
debug('stderr: ' + stderr);
if (err) {
debug(err);
g.error('Branch `%s` is not available in this repository',
branchName);
err = g.Error('invalid branch');
}
callback(err);
});
}
function isValidGitURL(workingDir, url, callback) {
var cmd = util.format('git ls-remote %s', url);
debug(cmd);
var options = {cwd: workingDir};
childProcess.exec(cmd, options, function(err, stdout, stderr) {
debug('stdout: ' + stdout);
debug('stderr: ' + stderr);
if (err) {
debug(err);
if (urlFormat(urlParse(url)) !== url) {
g.error('URL `%s` is not valid', url);
}
err = g.Error('invalid url');
}
callback(err);
});
}
function doGitPush(workingDir, gitURL, branch, callback) {
var cmd = 'git';
var args = ['push', '-f', gitURL, branch + ':' + branch];
debug(cmd, args);
var options = {cwd: workingDir, stdio: [0, 1, 2]};
var child = childProcess.spawn(cmd, args, options);
// Based on node docs, `exit` event may or may not fire afetr `error`.
child.once('error', function(err) {
if (!callback) return;
callback(err);
callback = null;
});
child.once('exit', function(code) {
if (!callback) return;
if (code !== 0) return callback(g.Error('{{git push}} failed'));
callback();
callback = null;
});
}
function performGitDeployment(options, callback) {
getDeployEndpoint(options.baseURL, options.serviceName, options.clusterSize,
function(err, deployUrl, service) {
if (err) return callback(err);
_performGitDeployment(service, options.workingDir, deployUrl,
options.branchOrPack, callback);
});
}
function _performGitDeployment(service, workingDir, baseUrl, branch, callback) {
var deployURL = baseUrl + '/default';
async.series([
isValidBranch.bind(null, workingDir, branch),
isValidGitURL.bind(null, workingDir, deployURL),
doGitPush.bind(null, workingDir, deployURL, branch)
], function(err) {
if (err) return callback(err);
return callback(null, service);
});
}
exports.performGitDeployment = performGitDeployment;
// for unit tests
exports._getCurrentBranch = getCurrentBranch;