forked from drakonen/ftp-srv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
connection.js
202 lines (188 loc) · 6.12 KB
/
connection.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
const _ = require("lodash");
const uuid = require("uuid");
const Promise = require("bluebird");
const EventEmitter = require("events");
const BaseConnector = require("./connector/base");
const FileSystem = require("./fs");
const Commands = require("./commands");
const errors = require("./errors");
const DEFAULT_MESSAGE = require("./messages");
class FtpConnection extends EventEmitter {
constructor(server, options) {
super();
this.server = server;
this.id = uuid.v4();
this.log = options.log.child({ id: this.id, ip: this.ip });
this.commands = new Commands(this);
this.transferType = "binary";
this.encoding = "utf8";
this.bufferSize = false;
this._restByteCount = 0;
this._secure = false;
this.connector = new BaseConnector(this);
this._buffer = "";
this.commandSocket = options.socket;
this.commandSocket.on("error", (err) => {
this.log.error(err, "Client error");
this.server.emit("client-error", {
connection: this,
context: "commandSocket",
error: err,
});
});
this.commandSocket.on("data", this._handleData.bind(this));
this.commandSocket.on("timeout", () => {
this.log.trace("Client timeout");
this.close();
});
this.commandSocket.on("close", () => {
if (this.connector) this.connector.end();
if (this.commandSocket && !this.commandSocket.destroyed)
this.commandSocket.destroy();
this.removeAllListeners();
});
}
_handleData(data) {
if (!data.toString(this.encoding).match(/\r\n$/)) {
this._buffer += data.toString(this.encoding);
return;
}
const messages = _.compact(
(this._buffer + data.toString(this.encoding)).split("\r\n")
);
this._buffer = "";
this.log.trace(messages);
return Promise.mapSeries(messages, (message) =>
this.commands.handle(message)
);
}
get ip() {
try {
return this.commandSocket ? this.commandSocket.remoteAddress : undefined;
} catch (ex) {
return null;
}
}
get restByteCount() {
return this._restByteCount > 0 ? this._restByteCount : undefined;
}
set restByteCount(rbc) {
this._restByteCount = rbc;
}
get secure() {
return this.server.isTLS || this._secure;
}
set secure(sec) {
this._secure = sec;
}
close(code = 421, message = "Closing connection") {
return Promise.resolve(code)
.then((_code) => _code && this.reply(_code, message))
.finally(() => this.commandSocket && this.commandSocket.destroy());
}
login(username, password) {
return Promise.try(() => {
const loginListeners = this.server.listeners("login");
if (!loginListeners || !loginListeners.length) {
if (!this.server.options.anonymous)
throw new errors.GeneralError('No "login" listener setup', 500);
} else {
return this.server.emitPromise("login", {
connection: this,
username,
password,
});
}
}).then(({ root, cwd, fs, blacklist = [], whitelist = [] } = {}) => {
this.authenticated = true;
this.commands.blacklist = _.concat(this.commands.blacklist, blacklist);
this.commands.whitelist = _.concat(this.commands.whitelist, whitelist);
this.fs = fs || new FileSystem(this, { root, cwd });
});
}
reply(options = {}, ...letters) {
const satisfyParameters = () => {
if (typeof options === "number") options = { code: options }; // allow passing in code as first param
if (!Array.isArray(letters)) letters = [letters];
if (!letters.length) letters = [{}];
return Promise.map(letters, (promise, index) => {
return Promise.resolve(promise).then((letter) => {
if (!letter) letter = {};
else if (typeof letter === "string") letter = { message: letter }; // allow passing in message as first param
if (!letter.socket)
letter.socket = options.socket
? options.socket
: this.commandSocket;
if (!options.useEmptyMessage) {
if (!letter.message)
letter.message =
DEFAULT_MESSAGE[options.code] || "No information";
if (!letter.encoding) letter.encoding = this.encoding;
}
return Promise.resolve(letter.message) // allow passing in a promise as a message
.then((message) => {
if (!options.useEmptyMessage) {
const seperator = !options.hasOwnProperty("eol")
? letters.length - 1 === index
? " "
: "-"
: options.eol
? " "
: "-";
message = !letter.raw
? _.compact([letter.code || options.code, message]).join(
seperator
)
: message;
letter.message = message;
} else {
letter.message = "";
}
return letter;
});
});
});
};
const processLetter = (letter) => {
return new Promise((resolve, reject) => {
if (letter.socket && letter.socket.writable) {
this.log.trace(
{
port: letter.socket.address().port,
encoding: letter.encoding,
message: letter.message,
},
"Reply"
);
letter.socket.write(
letter.message + "\r\n",
letter.encoding,
(err) => {
if (err) {
this.log.error(err);
return reject(err);
}
resolve();
}
);
} else {
this.log.trace(
{ message: letter.message },
"Could not write message"
);
reject(new errors.SocketError("Socket not writable"));
}
});
};
return satisfyParameters()
.then((satisfiedLetters) =>
Promise.mapSeries(satisfiedLetters, (letter, index) => {
return processLetter(letter, index);
})
)
.catch((err) => {
this.log.error(err);
});
}
}
module.exports = FtpConnection;