-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.js
166 lines (144 loc) · 4.27 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
/*jshint strict: false*/
'use strict';
var PluginError = require('plugin-error');
var fancylog = require('fancy-log');
var log = require('./log.js');
var path = require('path');
var rsync = require('./rsync.js');
var through = require('through2');
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 ||
( options.recursive
&& ( source.path === cwd
|| source.path.substr(0, cwd.length + 1) === (cwd + path.sep)
)
);
});
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));
}
options.relative = options.relative !== false;
var config = {
options: {
'a': options.archive,
'c': options.incremental,
'd': options.emptyDirectories,
'e': shell,
'n': options.dryrun,
'r': options.recursive && !options.archive,
'R': options.relative,
't': options.times && !options.archive,
'u': options.update,
'v': !options.silent,
'z': options.compress,
'omit-dir-times': options.omit_dir_times,
'no-perms': options.no_perms,
'chmod': options.chmod,
'chown': options.chown,
'exclude': options.exclude,
'include': options.include,
'progress': options.progress,
'links': options.links
},
source: sources.map(function(source) {
var loc = options.relative
? (path.relative(cwd, source.path) || '.' )
: source.path;
if(process.platform === 'win32') {
loc = loc.replace(/\\/g, '/');
if(!options.relative) {
loc = loc.replace(/^([A-Z]):/,
function(match, p1, p2){
return '/cygdrive/' + p1.toLowerCase();
}
);
}
}
return loc;
}),
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().trim().replace(/\r\n/, '\n')
.split('\n').forEach(function (line) {
gutil.log('gulp-rsync:', line);
});
};
config.stdoutHandler = handler;
config.stderrHandler = handler;
fancylog('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) {
fancylog(command);
}
if (!options.silent) {
fancylog('gulp-rsync:', 'Completed rsync.');
}
cb();
}.bind(this));
});
};