salix/print/lib/emailEngine.js

153 lines
4.5 KiB
JavaScript
Raw Normal View History

2019-01-22 08:55:35 +00:00
const Vue = require('vue');
const VueI18n = require('vue-i18n');
const renderer = require('vue-server-renderer').createRenderer();
const fs = require('fs-extra');
const juice = require('juice');
const smtp = require('./smtp');
2019-01-25 14:08:11 +00:00
const fallbackLocale = 'es';
2019-01-22 08:55:35 +00:00
if (!process.env.OPENSSL_CONF)
process.env.OPENSSL_CONF = '/etc/ssl/';
2019-01-25 14:08:11 +00:00
Vue.use(VueI18n);
2019-01-22 08:55:35 +00:00
module.exports = {
2019-01-25 14:08:11 +00:00
path: `${appPath}/report`,
2019-01-22 08:55:35 +00:00
/**
* Renders a report component
*
* @param {String} name - Report name
* @param {Object} ctx - Request context
*/
async render(name, ctx) {
const component = require(`${this.path}/${name}`);
2019-01-25 14:08:11 +00:00
const result = await this.preFetch(component, ctx);
const i18n = new VueI18n({
locale: 'es',
fallbackLocale
2019-01-22 08:55:35 +00:00
});
2019-01-25 14:08:11 +00:00
const app = new Vue({i18n,
render: h => h(result.component)});
2019-01-22 08:55:35 +00:00
return renderer.renderToString(app).then(renderedHtml => {
return {
html: renderedHtml,
2019-01-25 14:08:11 +00:00
data: result.mergedData,
2019-01-22 08:55:35 +00:00
};
});
},
/**
* Prefetch all component data from asyncData method
*
2019-01-25 14:08:11 +00:00
* @param {Object} orgComponent - Component object
2019-01-22 08:55:35 +00:00
* @param {Object} ctx - Request context
*/
2019-01-25 14:08:11 +00:00
async preFetch(orgComponent, ctx) {
let component = Object.create(orgComponent);
2019-01-23 08:33:58 +00:00
let mergedData = {attachments: []};
let asyncData = {};
2019-01-22 08:55:35 +00:00
let data = {};
2019-01-23 08:33:58 +00:00
let params = {};
2019-01-22 08:55:35 +00:00
if (Object.keys(ctx.body).length > 0)
params = ctx.body;
if (Object.keys(ctx.query).length > 0)
params = ctx.query;
await this.attachAssets(component);
2019-01-25 14:08:11 +00:00
if (orgComponent.hasOwnProperty('data'))
data = orgComponent.data();
2019-01-22 08:55:35 +00:00
2019-01-25 14:08:11 +00:00
if (orgComponent.hasOwnProperty('asyncData')) {
asyncData = await orgComponent.asyncData(ctx, params);
2019-01-22 08:55:35 +00:00
if (asyncData.locale) {
2019-01-25 14:08:11 +00:00
let locale = component.i18n.messages[asyncData.locale];
if (!locale)
locale = component.i18n.messages[fallbackLocale];
2019-01-23 08:33:58 +00:00
mergedData.subject = locale.subject;
2019-01-22 08:55:35 +00:00
}
2019-01-23 08:33:58 +00:00
}
2019-01-22 08:55:35 +00:00
2019-01-23 08:33:58 +00:00
mergedData = Object.assign(mergedData, data, asyncData);
2019-01-22 08:55:35 +00:00
2019-01-23 08:33:58 +00:00
component.data = function data() {
return mergedData;
};
2019-01-22 08:55:35 +00:00
2019-01-23 08:33:58 +00:00
if (data.hasOwnProperty('files')) {
const files = data.files;
files.forEach(file => {
2019-01-25 14:08:11 +00:00
const componentPath = `${this.path}/${orgComponent.name}`;
2019-01-23 08:33:58 +00:00
let fileSrc = componentPath + file;
2019-01-22 08:55:35 +00:00
2019-01-28 11:28:22 +00:00
if (file.slice(0, 4) === 'http' || file.slice(0, 5) === 'https')
2019-01-23 08:33:58 +00:00
fileSrc = file;
2019-01-22 08:55:35 +00:00
2019-01-23 08:33:58 +00:00
const fileName = file.split('/').pop();
mergedData.attachments.push({
2019-01-22 08:55:35 +00:00
filename: fileName,
path: fileSrc,
2019-01-23 08:33:58 +00:00
cid: file,
2019-01-22 08:55:35 +00:00
});
});
}
2019-01-25 14:08:11 +00:00
const components = orgComponent.components;
if (components) {
2019-01-22 08:55:35 +00:00
const promises = [];
2019-01-25 14:08:11 +00:00
const childNames = [];
component.components = {};
2019-01-22 08:55:35 +00:00
2019-01-25 14:08:11 +00:00
Object.keys(components).forEach(childName => {
childNames.push(childName);
promises.push(this.preFetch(components[childName], ctx));
2019-01-22 08:55:35 +00:00
});
2019-01-25 14:08:11 +00:00
await Promise.all(promises).then(results => {
results.forEach((result, i) => {
result.mergedData.attachments.forEach(atth => {
2019-01-23 08:33:58 +00:00
mergedData.attachments.push(atth);
2019-01-22 08:55:35 +00:00
});
2019-01-25 14:08:11 +00:00
component.components[childNames[i]] = result.component;
2019-01-22 08:55:35 +00:00
});
});
}
2019-01-25 14:08:11 +00:00
return {component, mergedData};
2019-01-22 08:55:35 +00:00
},
async attachAssets(component) {
const localePath = `${this.path}/${component.name}/locale.js`;
const templatePath = `${this.path}/${component.name}/index.html`;
const stylePath = `${this.path}/${component.name}/assets/css/index.js`;
2019-01-22 08:55:35 +00:00
const template = await fs.readFile(templatePath, 'utf8');
const css = require(stylePath);
2019-01-22 08:55:35 +00:00
component.i18n = require(localePath);
component.template = juice.inlineContent(template, css);
},
async toEmail(name, ctx) {
const rendered = await this.render(name, ctx);
const data = rendered.data;
const options = {
to: data.recipient,
subject: data.subject,
html: rendered.html,
attachments: data.attachments,
};
return smtp.send(options);
},
};