1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-01 10:50:57 +00:00
emailjs/smtp/client.ts

300 lines
7.0 KiB
TypeScript
Raw Normal View History

import addressparser from 'addressparser';
2020-04-23 04:26:49 +00:00
import { Message } from './message';
2020-05-24 14:47:49 +00:00
import type { MessageAttachment, MessageHeaders } from './message';
import { SMTPConnection, SMTPState } from './smtp';
2020-05-24 14:47:49 +00:00
import type { SMTPConnectionOptions } from './smtp';
export interface MessageStack {
2020-04-21 03:20:06 +00:00
callback: (error: Error | null, message: Message) => void;
message: Message;
attachment: MessageAttachment;
text: string;
returnPath: string;
from: string;
to: ReturnType<typeof addressparser>;
cc: string[];
bcc: string[];
}
2020-04-21 03:20:06 +00:00
export class Client {
public readonly smtp: SMTPConnection;
public readonly queue: MessageStack[] = [];
protected sending = false;
protected ready = false;
protected timer: NodeJS.Timer | null = null;
2018-06-29 00:55:20 +00:00
/**
2020-05-01 20:29:07 +00:00
* @param {SMTPConnectionOptions} server smtp options
2018-06-29 00:55:20 +00:00
*/
constructor(server: Partial<SMTPConnectionOptions>) {
this.smtp = new SMTPConnection(server);
2018-05-27 04:25:08 +00:00
//this.smtp.debug(1);
}
2020-05-02 00:33:07 +00:00
/**
* @public
* @param {Message} msg the message to send
* @param {function(err: Error, msg: Message): void} callback sss
* @returns {void}
*/
public send(msg: Message, callback: (err: Error, msg: Message) => void) {
2020-04-21 03:20:06 +00:00
const message: Message | null =
2018-07-06 20:31:45 +00:00
msg instanceof Message
? msg
: this._canMakeMessage(msg)
2020-04-23 04:26:49 +00:00
? new Message(msg)
: null;
2018-07-06 20:31:45 +00:00
if (message == null) {
2020-04-21 03:20:06 +00:00
callback(new Error('message is not a valid Message instance'), msg);
2018-07-06 20:31:45 +00:00
return;
}
message.valid((valid, why) => {
if (valid) {
const stack = {
message,
to: addressparser(message.header.to),
from: addressparser(message.header.from)[0].address,
2020-05-24 14:47:49 +00:00
callback: (
callback ||
function () {
/* ø */
}
).bind(this),
2020-04-21 03:20:06 +00:00
} as MessageStack;
2018-07-06 20:31:45 +00:00
if (message.header.cc) {
stack.to = stack.to.concat(addressparser(message.header.cc));
}
if (message.header.bcc) {
stack.to = stack.to.concat(addressparser(message.header.bcc));
}
if (
message.header['return-path'] &&
addressparser(message.header['return-path']).length
) {
stack.returnPath = addressparser(
message.header['return-path']
)[0].address;
}
this.queue.push(stack);
this._poll();
} else {
callback(new Error(why), msg);
2018-07-06 20:31:45 +00:00
}
});
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _poll() {
if (this.timer != null) {
clearTimeout(this.timer);
}
2020-05-01 16:25:32 +00:00
if (this.queue.length) {
if (this.smtp.state() == SMTPState.NOTCONNECTED) {
this._connect(this.queue[0]);
} else if (
this.smtp.state() == SMTPState.CONNECTED &&
2018-05-27 04:25:08 +00:00
!this.sending &&
this.ready
) {
2020-04-21 03:20:06 +00:00
this._sendmail(this.queue.shift() as MessageStack);
}
2018-05-27 04:25:08 +00:00
}
2018-06-04 16:40:23 +00:00
// wait around 1 seconds in case something does come in,
// otherwise close out SMTP connection if still open
else if (this.smtp.state() == SMTPState.CONNECTED) {
2018-05-27 04:25:08 +00:00
this.timer = setTimeout(() => this.smtp.quit(), 1000);
2018-06-04 16:40:23 +00:00
}
2018-05-27 04:25:08 +00:00
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _connect(stack: MessageStack) {
2018-06-29 00:55:20 +00:00
/**
* @param {Error} err callback error
* @returns {void}
*/
2020-04-26 16:20:56 +00:00
const connect = (err: Error) => {
2018-05-27 04:25:08 +00:00
if (!err) {
2020-04-21 03:20:06 +00:00
const begin = (err: Error) => {
2018-05-27 04:25:08 +00:00
if (!err) {
this.ready = true;
this._poll();
} else {
stack.callback(err, stack.message);
// clear out the queue so all callbacks can be called with the same error message
this.queue.shift();
this._poll();
}
};
2020-05-01 16:25:32 +00:00
if (!this.smtp.authorized()) {
this.smtp.login(begin);
2020-05-01 16:25:32 +00:00
} else {
this.smtp.ehlo_or_helo_if_needed(begin);
2018-06-04 16:40:23 +00:00
}
2018-05-27 04:25:08 +00:00
} else {
stack.callback(err, stack.message);
// clear out the queue so all callbacks can be called with the same error message
this.queue.shift();
this._poll();
}
};
this.ready = false;
this.smtp.connect(connect);
}
/**
2020-05-02 00:33:07 +00:00
* @protected
* @param {MessageStack} msg message stack
* @returns {boolean} can make message
*/
2020-05-02 00:33:07 +00:00
protected _canMakeMessage(msg: MessageHeaders) {
2020-05-01 16:25:32 +00:00
return (
msg.from &&
(msg.to || msg.cc || msg.bcc) &&
(msg.text !== undefined || this._containsInlinedHtml(msg.attachment))
);
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {*} attachment attachment
* @returns {*} whether the attachment contains inlined html
2018-06-29 00:55:20 +00:00
*/
2020-05-02 00:33:07 +00:00
protected _containsInlinedHtml(
attachment: MessageAttachment | MessageAttachment[]
) {
2018-05-27 04:25:08 +00:00
if (Array.isArray(attachment)) {
2020-04-23 04:26:49 +00:00
return attachment.some((att) => {
2018-06-29 00:55:20 +00:00
return this._isAttachmentInlinedHtml(att);
2018-05-27 04:25:08 +00:00
});
} else {
return this._isAttachmentInlinedHtml(attachment);
}
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
* @param {MessageAttachment} attachment attachment
* @returns {boolean} whether the attachment is inlined html
2018-06-29 00:55:20 +00:00
*/
2020-05-02 00:33:07 +00:00
protected _isAttachmentInlinedHtml(attachment: MessageAttachment) {
2018-05-27 04:25:08 +00:00
return (
attachment &&
(attachment.data || attachment.path) &&
attachment.alternative === true
);
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
2018-06-29 03:44:54 +00:00
* @param {function(MessageStack): void} next next
* @returns {function(Error): void} callback
2018-06-29 00:55:20 +00:00
*/
2020-05-02 00:33:07 +00:00
protected _sendsmtp(stack: MessageStack, next: (msg: MessageStack) => void) {
2018-06-29 00:55:20 +00:00
/**
* @param {Error} [err] error
* @returns {void}
*/
2020-05-01 16:25:32 +00:00
return (err: Error) => {
2018-05-27 04:25:08 +00:00
if (!err && next) {
next.apply(this, [stack]);
} else {
// if we snag on SMTP commands, call done, passing the error
// but first reset SMTP state so queue can continue polling
this.smtp.rset(() => this._senddone(err, stack));
}
};
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _sendmail(stack: MessageStack) {
2018-05-27 04:25:08 +00:00
const from = stack.returnPath || stack.from;
this.sending = true;
this.smtp.mail(this._sendsmtp(stack, this._sendrcpt), '<' + from + '>');
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _sendrcpt(stack: MessageStack) {
2018-07-06 17:42:59 +00:00
if (stack.to == null || typeof stack.to === 'string') {
throw new TypeError('stack.to must be array');
}
2020-05-24 14:47:49 +00:00
const to = stack.to.shift()?.address;
2018-05-27 04:25:08 +00:00
this.smtp.rcpt(
2020-05-01 16:25:32 +00:00
this._sendsmtp(stack, stack.to.length ? this._sendrcpt : this._senddata),
2018-07-06 17:42:59 +00:00
`<${to}>`
2018-05-27 04:25:08 +00:00
);
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _senddata(stack: MessageStack) {
2018-05-27 04:25:08 +00:00
this.smtp.data(this._sendsmtp(stack, this._sendmessage));
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _sendmessage(stack: MessageStack) {
2018-05-27 04:25:08 +00:00
const stream = stack.message.stream();
2020-04-23 04:26:49 +00:00
stream.on('data', (data) => this.smtp.message(data));
2018-05-27 04:25:08 +00:00
stream.on('end', () => {
this.smtp.data_end(
this._sendsmtp(stack, () => this._senddone(null, stack))
);
});
// there is no way to cancel a message while in the DATA portion,
// so we have to close the socket to prevent a bad email from going out
2020-04-23 04:26:49 +00:00
stream.on('error', (err) => {
2018-05-27 04:25:08 +00:00
this.smtp.close();
this._senddone(err, stack);
});
}
2018-06-29 00:55:20 +00:00
/**
2020-05-02 00:33:07 +00:00
* @protected
2018-06-29 00:55:20 +00:00
* @param {Error} err err
* @param {MessageStack} stack stack
* @returns {void}
*/
2020-05-02 00:33:07 +00:00
protected _senddone(err: Error | null, stack: MessageStack) {
2018-05-27 04:25:08 +00:00
this.sending = false;
stack.callback(err, stack.message);
this._poll();
}
}