SMAM (short for Send Me A Mail) is a free (as in freedom) contact form embedding software.

server.js 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. var pug = require('pug');
  2. var nodemailer = require('nodemailer');
  3. var crypto = require('crypto');
  4. var settings = require('./settings');
  5. // Web server
  6. var bodyParser = require('body-parser');
  7. var express = require('express');
  8. var app = express();
  9. // Logging
  10. var printit = require('printit');
  11. var log = printit({
  12. prefix: 'SMAM',
  13. date: true
  14. });
  15. // nodemailer initial configuration
  16. var transporter = nodemailer.createTransport(settings.mailserver);
  17. // Verification tokens
  18. var tokens = {};
  19. // Serve static (JS + HTML) files
  20. app.use(express.static('front'));
  21. // Body parsing
  22. app.use(bodyParser.urlencoded({ extended: true }));
  23. app.use(bodyParser.json());
  24. // A request on /register generates a token and store it, along the user's
  25. // address, on the tokens object
  26. app.get('/register', function(req, res, next) {
  27. // Get IP from express
  28. let ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
  29. if(tokens[ip] === undefined) {
  30. tokens[ip] = [];
  31. }
  32. // Generate token
  33. crypto.randomBytes(10, (err, buf) => {
  34. let token = buf.toString('hex');
  35. // Store and send the token
  36. tokens[ip].push({
  37. token: token,
  38. // A token expires after 12h
  39. expire: new Date().getTime() + 12 * 3600 * 1000
  40. });
  41. res.status(200).send(token);
  42. });
  43. });
  44. // A request on /send with user input = mail to be sent
  45. app.post('/send', function(req, res, next) {
  46. if(!checkBody(req.body)) {
  47. return res.status(400).send();
  48. }
  49. let ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
  50. if(!checkToken(ip, req.body.token)) {
  51. return res.status(403).send();
  52. }
  53. // Count the failures
  54. let status = {
  55. failed: 0,
  56. total: settings.recipients.length
  57. };
  58. // params will be used as:
  59. // - values for html generation from the pug template
  60. // - parameters for sending the mail(s)
  61. let params = {
  62. subject: req.body.subj,
  63. from: req.body.name + ' <' + req.body.addr + '>',
  64. html: req.body.text
  65. };
  66. // Replacing the mail's content with HTML from the pug template
  67. // Commenting the line below will bypass the generation and only user the
  68. // text entered by the user
  69. params.html = pug.renderFile('template.pug', params);
  70. log.info('Sending message from ' + params.from);
  71. // Send the email to all users
  72. sendMails(params, function(err, infos) {
  73. if(err) {
  74. log.error(err);
  75. }
  76. logStatus(infos);
  77. }, function() {
  78. if(status.failed === status.total) {
  79. res.status(500).send();
  80. } else {
  81. res.status(200).send();
  82. }
  83. })
  84. });
  85. // Use either the default port or the one chosen by the user (PORT env variable)
  86. var port = process.env.PORT || 1970;
  87. // Start the server
  88. app.listen(port, function() {
  89. log.info('Server started on port ' + port);
  90. });
  91. // Run the clean every hour
  92. var tokensChecks = setTimeout(cleanTokens, 3600 * 1000);
  93. // Send mails to the recipients specified in the JSON settings file
  94. // content: object containing mail params
  95. // {
  96. // subject: String
  97. // from: String (following RFC 1036 (https://tools.ietf.org/html/rfc1036#section-2.1.1))
  98. // html: String
  99. // }
  100. // update(next, infos): Called each time a mail is sent with the infos provided
  101. // by nodemailer
  102. // done(): Called once each mail has been sent
  103. function sendMails(params, update, done) {
  104. let mails = settings.recipients.map((recipient) => {
  105. // Promise for each recipient to send each mail asynchronously
  106. return new Promise((sent) => {
  107. params.to = recipient;
  108. // Send the email
  109. transporter.sendMail(params, (err, infos) => {
  110. if(err) {
  111. return update(err, recipient);
  112. }
  113. update(null, infos);
  114. // Promise callback
  115. sent();
  116. });
  117. });
  118. });
  119. // Run all the promises (= send all the mails)
  120. Promise.all(mails).then(done);
  121. }
  122. // Produces log from the infos provided by nodemailer
  123. // infos: infos provided by nodemailer
  124. // return: nothing
  125. function logStatus(infos) {
  126. if(infos.accepted.length !== 0) {
  127. log.info('Message sent to ' + infos.accepted[0]);
  128. }
  129. if(infos.rejected.length !== 0) {
  130. status.failed++;
  131. log.info('Message failed to send to ' + infos.rejected[0]);
  132. }
  133. }
  134. // Checks if the request's sender has been registered (and unregister it if not)
  135. // ip: sender's IP address
  136. // token: token used by the sender
  137. // return: true if the user was registered, false else
  138. function checkToken(ip, token) {
  139. let verified = false;
  140. // Check if there's at least one token for this IP
  141. if(tokens[ip] !== undefined) {
  142. if(tokens[ip].length !== 0) {
  143. // There's at least one element for this IP, let's check the tokens
  144. for(var i = 0; i < tokens[ip].length; i++) {
  145. if(!tokens[ip][i].token.localeCompare(token)) {
  146. // We found the right token
  147. verified = true;
  148. // Removing the token
  149. tokens[ip].pop(tokens[ip][i]);
  150. break;
  151. }
  152. }
  153. }
  154. }
  155. if(!verified) {
  156. log.warn(ip + ' just tried to send a message with an invalid token');
  157. }
  158. return verified;
  159. }
  160. // Checks if all the required fields are in the request body
  161. // body: body taken from express's request object
  162. // return: true if the body is valid, false else
  163. function checkBody(body) {
  164. let valid = false;
  165. if(body.token !== undefined && body.subj !== undefined
  166. && body.name !== undefined && body.addr !== undefined
  167. && body.text !== undefined) {
  168. valid = true;
  169. }
  170. return valid;
  171. }
  172. // Checks the tokens object to see if no token has expired
  173. // return: nothing
  174. function cleanTokens() {
  175. // Get current time for comparison
  176. let now = new Date().getTime();
  177. for(let ip in tokens) { // Check for each IP in the object
  178. for(let token of tokens[ip]) { // Check for each token of an IP
  179. if(token.expire < now) { // Token has expired
  180. tokens[ip].pop(token);
  181. }
  182. }
  183. if(tokens[ip].length === 0) { // No more element for this IP
  184. delete tokens[ip];
  185. }
  186. }
  187. log.info('Cleared expired tokens');
  188. }