-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailIO.js
More file actions
230 lines (197 loc) · 7.41 KB
/
emailIO.js
File metadata and controls
230 lines (197 loc) · 7.41 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
'use strict';
//
// emailIO.js
// Sending emails to users
//
// VDJServer Analysis Portal
// VDJ API Service
// https://vdjserver.org
//
// Copyright (C) 2020 The University of Texas Southwestern Medical Center
//
// Author: Scott Christley <scott.christley@utsouthwestern.edu>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
var emailSettings = require('./emailSettings');
var nodemailer = require('nodemailer');
var sendmailTransport = require('nodemailer-sendmail-transport');
//var config = require('../config/config');
var webhookIO = require('./webhookIO');
var emailIO = {};
module.exports = emailIO;
// Tapis
var tapisSettings = require('vdj-tapis-js/tapisSettings');
var tapisIO = tapisSettings.get_default_tapis();
var config = tapisSettings.config;
var transporter = null;
if (!emailSettings.relayHost) {
config.log.info('WARNING', 'emailSettings.relayHost is not defined, mail cannot be sent.');
} else {
transporter = nodemailer.createTransport({ host: emailSettings.relayHost, port: emailSettings.relayPort, secure: false });
}
emailIO.sendPasswordResetEmail = async function(recipientEmail, username, passwordResetCode) {
var context = 'emailIO.sendPasswordResetEmail';
var msg = null;
if (!transporter) {
config.log.info(context, 'no mail transporter, ignoring send email request.', true);
return Promise.resolve();
}
var passwordResetUrl = tapisSettings.vdjBackbone + '/password-reset/' + passwordResetCode;
var mailOptions = {
to: recipientEmail,
from: emailSettings.fromAddress,
replyTo: emailSettings.replyToAddress,
subject: 'VDJServer Password Reset',
generateTextFromHTML: true,
html: 'A password reset request has been submitted to vdjserver.org.'
+ '<br>'
+ '<br>'
+ 'Reset your password for account "' + username + '" with reset code: ' + passwordResetCode + ', or by clicking on the link below:'
+ '<br>'
+ '<br>'
+ 'Please go to <a href="' + passwordResetUrl + '">' + passwordResetUrl + '</a> to reset your password.'
+ '<br>'
+ '<br>'
+ 'If you have not submitted a password reset request, then please disregard this email.',
};
var info = await transporter.sendMail(mailOptions)
.catch(function(error) {
msg = 'could not send email, error: ' + error;
});
if (msg) {
msg = config.log.error(context, msg);
webhookIO.postToSlack(msg);
} else {
config.log.info(context, 'email sent: ' + info.messageId);
}
return Promise.resolve();
};
emailIO.sendFeedbackEmail = async function(recipientEmail, feedback) {
var context = 'emailIO.sendFeedbackEmail';
var msg = null;
if (!transporter) {
config.log.info(context, 'no mail transporter, ignoring send email request.', true);
return Promise.resolve();
}
var mailOptions = {
to: recipientEmail,
from: emailSettings.fromAddress,
replyTo: emailSettings.replyToAddress,
subject: 'VDJServer.org Feedback',
text: feedback,
};
var info = await transporter.sendMail(mailOptions)
.catch(function(error) {
msg = 'could not send email, error: ' + error;
});
if (msg) {
msg = config.log.error(context, msg);
webhookIO.postToSlack(msg);
} else {
config.log.info(context, 'email sent: ' + info.messageId);
}
return Promise.resolve();
};
emailIO.sendFeedbackAcknowledgementEmail = async function(recipientEmail, feedback) {
var context = 'emailIO.sendFeedbackAcknowledgementEmail';
var msg = null;
if (!transporter) {
config.log.info(context, 'no mail transporter, ignoring send email request.', true);
return Promise.resolve();
}
var mailOptions = {
to: recipientEmail,
from: emailSettings.fromAddress,
replyTo: emailSettings.replyToAddress,
subject: 'VDJServer.org Feedback',
text: 'Thank you for your feedback! Someone will respond shortly. Your feedback text is shown below\n\n-----\n\n' + feedback,
};
var info = await transporter.sendMail(mailOptions)
.catch(function(error) {
msg = 'could not send email, error: ' + error;
});
if (msg) {
msg = config.log.error(context, msg);
webhookIO.postToSlack(msg);
} else {
config.log.info(context, 'email sent: ' + info.messageId);
}
return Promise.resolve();
};
emailIO.sendWelcomeEmail = async function(recipientEmail, username, verificationId) {
var context = 'emailIO.sendWelcomeEmail';
var msg = null;
if (!transporter) {
config.log.info(context, 'no mail transporter, ignoring send email request.', true);
return Promise.resolve();
}
var vdjWebappUrl = tapisSettings.vdjBackbone
+ '/account'
+ '/verify'
+ '/' + verificationId
;
var mailOptions = {
to: recipientEmail,
from: emailSettings.fromAddress,
replyTo: emailSettings.replyToAddress,
subject: 'VDJServer Account Verification',
generateTextFromHTML: true,
html: 'Welcome to VDJServer!'
+ '<br>'
+ '<br>'
+ 'Please verify your account "' + username + '" with verification code: ' + verificationId + ', or by clicking on the link below:'
+ '<br>'
+ '<br>'
+ '<a href="' + vdjWebappUrl + '">' + vdjWebappUrl + '</a>.'
};
var info = await transporter.sendMail(mailOptions)
.catch(function(error) {
msg = 'could not send email, error: ' + error;
});
if (msg) {
msg = config.log.error(context, msg);
webhookIO.postToSlack(msg);
} else {
config.log.info(context, 'email sent: ' + info.messageId);
}
return Promise.resolve();
};
emailIO.sendGenericEmail = async function(recipientEmail, subject, message) {
var context = 'emailIO.sendGenericEmail';
var msg = null;
if (!transporter) {
config.log.info(context, 'no mail transporter, ignoring send email request.', true);
return Promise.resolve();
}
var mailOptions = {
to: recipientEmail,
from: emailSettings.fromAddress,
replyTo: emailSettings.replyToAddress,
subject: subject,
generateTextFromHTML: true,
html: message
};
var info = await transporter.sendMail(mailOptions)
.catch(function(error) {
msg = 'could not send email, error: ' + error;
});
if (msg) {
msg = config.log.error(context, msg);
webhookIO.postToSlack(msg);
} else {
config.log.info(context, 'email sent: ' + info.messageId);
}
return Promise.resolve();
};