forked from jerrysu/gulp-rsync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
142 lines (125 loc) · 3.69 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
/*jshint strict: false*/
'use strict';
var flog = require('fancy-log');
var log = require('./log.js');
var path = require('path');
var rsync = require('./rsync.js');
var through = require('through2');
var PluginError = require('plugin-error');
module.exports = function(options) {
if (typeof options !== 'object') {
this.emit(
'error',
new PluginError('gulp-rsync', 'options must be an object')
);
}
if (typeof options.destination !== 'string') {
throw new PluginError(
'gulp-rsync',
'destination must be a string to a desired path'
);
}
var sources = [];
var cwd = options.root ? path.resolve(options.root) : process.cwd();
return through.obj(function(file, enc, cb) {
if (file.isStream()) {
this.emit(
'error',
new PluginError('gulp-rsync', 'Streams are not supported!')
);
}
if (path.relative(cwd, file.path).indexOf('..') === 0) {
this.emit(
'error',
new PluginError('gulp-rsync', 'Source contains paths outside of root')
);
}
sources.push(file);
cb(null, file);
}, function(cb) {
sources = sources.filter(function(source) {
return !source.isNull() ||
options.emptyDirectories ||
(source.path === cwd && options.recursive);
});
if (sources.length === 0) {
cb();
return;
}
var shell = options.shell;
if (options.port) {
shell = 'ssh -p ' + options.port;
}
var destination = options.destination;
if (options.hostname) {
destination = options.hostname + ':' + destination;
if (options.username) {
destination = options.username + '@' + destination;
}
} else {
destination = path.relative(cwd, path.resolve(process.cwd(), destination));
}
var config = {
options: {
'a': options.archive,
'n': options.dryrun,
'R': options.relative !== false,
'c': options.incremental,
'd': options.emptyDirectories,
'e': shell,
'r': options.recursive && !options.archive,
't': options.times && !options.archive,
'u': options.update,
'v': !options.silent,
'z': options.compress,
'chmod': options.chmod,
'chown': options.chown,
'exclude': options.exclude,
'include': options.include,
'progress': options.progress,
'links': options.links
},
source: sources.map(function(source) {
return path.relative(cwd, source.path) || '.';
}),
destination: destination,
cwd: cwd
};
if (options.options) {
for (var key in options.options) { config.options[key] = options.options[key]; }
}
if (options.clean) {
if (!options.recursive && !options.archive) {
this.emit(
'error',
new PluginError('gulp-rsync', 'clean requires recursive or archive option')
);
}
config.options['delete'] = true;
}
if (!options.silent) {
var handler = function(data) {
data.toString().split('\r').forEach(function(chunk) {
chunk.split('\n').forEach(function(line, j, lines) {
log('gulp-rsync:', line, (j < lines.length - 1 ? '\n' : ''));
});
});
};
config.stdoutHandler = handler;
config.stderrHandler = handler;
flog('gulp-rsync:', 'Starting rsync to ' + destination + '...');
}
rsync(config).execute(function(error, command) {
if (error) {
this.emit('error', new PluginError('gulp-rsync', error.stack));
}
if (options.command) {
flog(command);
}
if (!options.silent) {
flog('gulp-rsync:', 'Completed rsync.');
}
cb();
}.bind(this));
});
};