-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.js
234 lines (172 loc) · 6.78 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
'use strict';
var path = require('path');
var util = require('util');
var Connection = require('ssh2');
var async = require('async');
var parents = require('parents');
var assign = require('object-assign');
var fs = require('fs-extra');
var chalk = require('chalk');
var Q = require('q');
var normalizePath = function (path) {
return path.replace(/\\/g, '/');
};
module.exports = function (options, callback) {
return Q.Promise(function(resolve, reject){
options = assign({
"host": "",
"port": "36000",
"user": "",
"pass": "",
"remotePath": "",
"sourcePath": "./",
"remotePlatform": "unix"
}, options);
if (options.host === undefined || options.host === '') {
throw new Error('sftp2', '`host` required.');
}
var fileCount = 0;
var fileLength = 0;
options.password = options.password || options.pass;
options.username = options.username || options.user || 'anonymous';
var remotePath = options.remotePath;
var sourcePath = options.sourcePath.replace(/\\/g, '/');
var remotePlatform = options.remotePlatform;
var mkDirCache = {};
var finished = false;
var connectionCache = null;
var items = [];
fs.walk(sourcePath)
.on('data', function (item) {
if (!item.stats.isDirectory()) {
items.push(item);
}
})
.on('end', function () {
fileLength = items.length;
if (fileLength <= 0) {
console.log('sftp2:', chalk.yellow('No files uploaded'));
} else {
return uploadFiles(items);
}
});
function uploadFiles(files) {
connectSftp(function (sftp) {
async.eachSeries(files, function (file, done) {
var filepath = file.path.replace(/\\/g, '/');
var pathArr = sourcePath.replace(/\/$/, '').split('/');
var projectName = pathArr[pathArr.length - 1];
var relativePath = filepath.split(projectName + '/')[1];
var finalRemotePath = normalizePath(path.join(remotePath, relativePath));
var dirname = path.dirname(finalRemotePath);
var fileDirs = parents(dirname)
.map(function (d) {
return d.replace(/^\/~/, "~");
})
.map(normalizePath);
if (dirname.search(/^\//) === 0) {
fileDirs = fileDirs.map(function (dir) {
if (dir.search(/^\//) === 0) {
return dir;
}
return '/' + dir;
});
}
fileDirs = fileDirs.filter(function (d) {
return d.length >= remotePath.length && !mkDirCache[d];
});
async.whilst(function () {
return fileDirs && fileDirs.length;
}, function (next) {
var d = fileDirs.pop();
mkDirCache[d] = true;
if (remotePlatform && remotePlatform.toLowerCase().indexOf('win') !== -1) {
d = d.replace('/', '\\');
}
sftp.mkdir(d, {mode: '0755'}, function () {
next();
});
}, function () {
var readStream = fs.createReadStream(filepath);
var stream = sftp.createWriteStream(finalRemotePath, {
flags: 'w',
encoding: null,
mode: '0666',
autoClose: true
});
readStream.pipe(stream);
stream.on('close', function (err) {
if (err) {
throw new Error('sftp2', err);
} else {
fileCount++;
}
done();
});
});
}, function () {
console.log('sftp2:', chalk.green(fileCount, fileCount === 1 ? 'file' : 'files', 'uploaded successfully'));
finished = true;
if (sftp) {
sftp.end();
}
if (connectionCache) {
connectionCache.end();
}
if(callback){
callback();
}
resolve()
});
});
}
function connectSftp(callback) {
console.log('Authenticating with password.');
var c = new Connection();
connectionCache = c;
c.on('ready', function () {
c.sftp(function (err, sftp) {
if (err) {
throw err;
}
sftp.on('end', function () {
// console.log('SFTP :: SFTP session closed');
sftp = null;
if (!finished) {
console.log('error', new Error('sftp2', "SFTP abrupt closure"))
}
});
callback(sftp);
});
});
c.on('error', function (err) {
console.log('sftp2', err);
reject(err);
});
c.on('end', function () {
// console.log('Connection :: end');
});
c.on('close', function (had_error) {
if (!finished) {
console.log('sftp2', "SFTP abrupt closure");
}
// console.log('Connection :: close', had_error !== false ? "with error" : "");
});
/*
* connection options, may be a key
*/
var connection_options = {
host: options.host,
port: options.port || 22,
username: options.username
};
if (options.password) {
connection_options.password = options.password;
}
if (options.timeout) {
connection_options.readyTimeout = options.timeout;
}
c.connect(connection_options);
}
});
};