loopback/lib/connectors/mail.js

194 lines
5.0 KiB
JavaScript
Raw Normal View History

2016-05-03 22:50:21 +00:00
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
/**
* Dependencies.
*/
2016-09-16 19:31:48 +00:00
var g = require('../globalize');
var mailer = require('nodemailer');
var assert = require('assert');
var debug = require('debug')('loopback:connector:mail');
var loopback = require('../loopback');
/**
* Export the MailConnector class.
*/
module.exports = MailConnector;
/**
* Create an instance of the connector with the given `settings`.
*/
function MailConnector(settings) {
2014-07-08 15:54:13 +00:00
assert(typeof settings === 'object', 'cannot initialize MailConnector without a settings object');
var transports = settings.transports;
//if transports is not in settings object AND settings.transport exists
if (!transports && settings.transport) {
//then wrap single transport in an array and assign to transports
transports = [settings.transport];
}
if (!transports) {
transports = [];
}
this.transportsIndex = {};
this.transports = [];
2014-02-12 00:01:51 +00:00
if (loopback.isServer) {
2014-02-12 00:01:51 +00:00
transports.forEach(this.setupTransport.bind(this));
}
}
MailConnector.initialize = function(dataSource, callback) {
dataSource.connector = new MailConnector(dataSource.settings);
callback();
2014-10-16 22:54:40 +00:00
};
MailConnector.prototype.DataAccessObject = Mailer;
/**
* Add a transport to the available transports. See https://github.com/andris9/Nodemailer#setting-up-a-transport-method.
*
* Example:
*
* Email.setupTransport({
* type: "SMTP",
* host: "smtp.gmail.com", // hostname
* secureConnection: true, // use SSL
* port: 465, // port for secure SMTP
* alias: "gmail", // optional alias for use with 'transport' option when sending
* auth: {
* user: "gmail.user@gmail.com",
* pass: "userpass"
* }
* });
*
*/
MailConnector.prototype.setupTransport = function(setting) {
var connector = this;
connector.transports = connector.transports || [];
connector.transportsIndex = connector.transportsIndex || {};
2014-07-15 23:46:43 +00:00
2014-07-24 05:09:24 +00:00
var transport;
var transportType = (setting.type || 'STUB').toLowerCase();
if (transportType === 'direct') {
transport = mailer.createTransport();
} else if (transportType === 'smtp') {
transport = mailer.createTransport(setting);
} else {
var transportModuleName = 'nodemailer-' + transportType + '-transport';
var transportModule = require(transportModuleName);
transport = mailer.createTransport(transportModule(setting));
}
2014-07-15 23:46:43 +00:00
connector.transportsIndex[setting.alias || setting.type] = transport;
connector.transports.push(transport);
2014-10-16 22:54:40 +00:00
};
function Mailer() {
}
2014-01-14 03:04:21 +00:00
/**
* Get a transport by name.
*
* @param {String} name
* @return {Transport} transport
*/
MailConnector.prototype.transportForName = function(name) {
return this.transportsIndex[name];
2014-10-16 22:54:40 +00:00
};
2014-01-14 03:04:21 +00:00
/**
* Get the default transport.
*
* @return {Transport} transport
*/
2014-01-22 00:41:48 +00:00
MailConnector.prototype.defaultTransport = function() {
return this.transports[0] || this.stubTransport;
2014-10-16 22:54:40 +00:00
};
2014-01-14 03:04:21 +00:00
/**
* Send an email with the given `options`.
*
* Example Options:
*
* {
* from: "Fred Foo ✔ <foo@blurdybloop.com>", // sender address
* to: "bar@blurdybloop.com, baz@blurdybloop.com", // list of receivers
* subject: "Hello ✔", // Subject line
* text: "Hello world ✔", // plaintext body
* html: "<b>Hello world ✔</b>", // html body
* transport: "gmail", // See 'alias' option above in setupTransport
* }
*
* See https://github.com/andris9/Nodemailer for other supported options.
*
* @param {Object} options
* @param {Function} callback Called after the e-mail is sent or the sending failed
*/
Mailer.send = function(options, fn) {
var dataSource = this.dataSource;
var settings = dataSource && dataSource.settings;
var connector = dataSource.connector;
assert(connector, 'Cannot send mail without a connector!');
2014-01-14 03:04:21 +00:00
var transport = connector.transportForName(options.transport);
if (!transport) {
2014-01-14 03:04:21 +00:00
transport = connector.defaultTransport();
}
if (debug.enabled || settings && settings.debug) {
2016-06-07 14:48:28 +00:00
g.log('Sending Mail:');
if (options.transport) {
2016-06-07 14:48:28 +00:00
console.log(g.f('\t TRANSPORT:%s', options.transport));
}
2016-06-07 14:48:28 +00:00
g.log('\t TO:%s', options.to);
g.log('\t FROM:%s', options.from);
g.log('\t SUBJECT:%s', options.subject);
g.log('\t TEXT:%s', options.text);
g.log('\t HTML:%s', options.html);
}
if (transport) {
assert(transport.sendMail,
'You must supply an Email.settings.transports containing a valid transport');
transport.sendMail(options, fn);
} else {
2016-06-07 14:48:28 +00:00
g.warn('Warning: No email transport specified for sending email.' +
' Setup a transport to send mail messages.');
process.nextTick(function() {
fn(null, options);
});
}
2014-10-16 22:54:40 +00:00
};
/**
* Send an email instance using `modelInstance.send()`.
*/
Mailer.prototype.send = function(fn) {
this.constructor.send(this, fn);
2014-10-16 22:54:40 +00:00
};
/**
* Access the node mailer object.
*/
MailConnector.mailer =
MailConnector.prototype.mailer =
Mailer.mailer =
Mailer.prototype.mailer = mailer;