You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/emailer.js

156 lines
4.0 KiB
JavaScript

"use strict";
9 years ago
var async = require('async'),
winston = require('winston'),
9 years ago
nconf = require('nconf'),
templates = require('templates.js'),
9 years ago
nodemailer = require('nodemailer'),
htmlToText = require('html-to-text'),
9 years ago
url = require('url'),
User = require('./user'),
Plugins = require('./plugins'),
meta = require('./meta'),
translator = require('../public/src/modules/translator'),
transports = {
direct: nodemailer.createTransport('direct'),
gmail: undefined
},
app;
(function(Emailer) {
Emailer.registerApp = function(expressApp) {
app = expressApp;
// Enable Gmail transport if enabled in ACP
if (parseInt(meta.config['email:GmailTransport:enabled'], 10) === 1) {
transports.gmail = nodemailer.createTransport('SMTP', {
service: 'Gmail',
auth: {
user: meta.config['email:GmailTransport:user'],
pass: meta.config['email:GmailTransport:pass']
}
});
}
return Emailer;
};
Emailer.send = function(template, uid, params, callback) {
10 years ago
callback = callback || function() {};
if (!app) {
winston.warn('[emailer] App not ready!');
return callback();
}
10 years ago
async.waterfall([
function(next) {
async.parallel({
email: async.apply(User.getUserField, uid, 'email'),
settings: async.apply(User.getSettings, uid)
}, next);
},
function(results, next) {
if (!results.email) {
winston.warn('uid : ' + uid + ' has no email, not sending.');
return next();
}
params.uid = uid;
Emailer.sendToEmail(template, results.email, results.settings.userLang, params, next);
}
], callback);
};
Emailer.sendToEmail = function(template, email, language, params, callback) {
callback = callback || function() {};
var lang = language || meta.config.defaultLang || 'en_GB';
10 years ago
async.waterfall([
function (next) {
async.parallel({
html: function(next) {
9 years ago
renderAndTranslate('emails/' + template, params, lang, next);
},
subject: function(next) {
translator.translate(params.subject, lang, function(translated) {
next(null, translated);
});
}
}, next);
},
function (results, next) {
var data = {
to: email,
9 years ago
from: meta.config['email:from'] || 'no-reply@' + getHostname(),
from_name: meta.config['email:from_name'] || 'NodeBB',
subject: results.subject,
html: results.html,
plaintext: htmlToText.fromString(results.html, {
ignoreImage: true
}),
template: template,
uid: params.uid,
pid: params.pid,
fromUid: params.fromUid
};
9 years ago
Plugins.fireHook('filter:email.modify', data, next);
},
function (data, next) {
9 years ago
if (Plugins.hasListeners('filter:email.send')) {
Plugins.fireHook('filter:email.send', data, next);
} else {
Emailer.sendViaFallback(data, next);
}
}
9 years ago
], function (err) {
callback(err);
});
};
10 years ago
9 years ago
Emailer.sendViaFallback = function(data, callback) {
// Some minor alterations to the data to conform to nodemailer standard
data.text = data.plaintext;
delete data.plaintext;
10 years ago
winston.verbose('[emailer] Sending email to uid ' + data.uid);
transports[transports.gmail ? 'gmail' : 'direct'].sendMail(data, callback);
9 years ago
};
function render(tpl, params, next) {
if (meta.config['email:custom:' + tpl.replace('emails/', '')]) {
var text = templates.parse(meta.config['email:custom:' + tpl.replace('emails/', '')], params);
next(null, text);
} else {
app.render(tpl, params, next);
}
}
function renderAndTranslate(tpl, params, lang, callback) {
async.waterfall([
function(next) {
render('emails/partials/footer' + (tpl.indexOf('_plaintext') !== -1 ? '_plaintext' : ''), params, next);
},
function(footer, next) {
params.footer = footer;
render(tpl, params, next);
},
function(html, next) {
translator.translate(html, lang, function(translated) {
next(null, translated);
});
}
], callback);
}
10 years ago
9 years ago
function getHostname() {
var configUrl = nconf.get('url'),
parsed = url.parse(configUrl);
return parsed.hostname;
};
}(module.exports));