forked from jerrysu/gulp-rsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (114 loc) · 3.31 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
/*jshint strict: false*/
'use strict';
var gutil = require('gulp-util');
var log = require('./log.js');
var path = require('path');
var rsync = require('./rsync.js');
var through = require('through2');
var PluginError = gutil.PluginError;
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: {
'R': options.relative !== false,
'c': options.incremental,
'd': options.emptyDirectories,
'e': shell,
'r': options.recursive,
't': options.times,
'u': options.update,
'v': !options.silent,
'z': options.compress,
'exclude': options.exclude,
'include': options.include,
'progress': options.progress
},
source: sources.map(function(source) {
return path.relative(cwd, source.path) || '.';
}),
destination: destination,
cwd: cwd
};
if (options.clean) {
if (!options.recursive) {
this.emit(
'error',
new PluginError('gulp-rsync', 'clean requires recursive 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;
gutil.log('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.silent) {
gutil.log('gulp-rsync:', 'Completed rsync.');
}
cb();
}.bind(this));
});
};