Separate text sending into it's own module.

This commit is contained in:
Taylor Russ
2014-10-05 22:37:34 -07:00
parent cfc629399a
commit ce1ded590c
2 changed files with 82 additions and 30 deletions

View File

@@ -6,8 +6,11 @@ var express = require('express')
, exec = require('child_process').exec
, spawn = require('child_process').spawn
, Stream = require('stream')
, providers = require('../lib/providers.js')
, redis = require('redis-url').connect()
, text = require('../lib/text');
// Enable log messages when sending texts.
text.debug(true);
// Optional modules
var banned_numbers;
@@ -105,7 +108,7 @@ function textRequestHandler(req, res, number, region, key) {
response_obj = response_obj || {};
// Time to actually send the message
sendText(number, message, region, function(err) {
text.send(number, message, region, function(err) {
if (err) {
mpq.track('sendText failed', tracking_details);
res.send(_.extend(response_obj,
@@ -196,34 +199,6 @@ function stripPhone(phone) {
return (phone+'').replace(/\D/g, '');
}
function sendText(phone, message, region, cb) {
console.log('txting phone', phone, ':', message);
region = region || 'us';
var providers_list = providers[region];
var done = _.after(providers_list.length, function() {
cb(false);
});
_.each(providers_list, function(provider) {
var email = provider.replace('%s', phone);
email = 'Subject: Text\r\n\r\n' + email;
var child = spawn('sendmail', ['-f', 'txt2@textbelt.com', email]);
child.stdout.on('data', console.log);
child.stderr.on('data', console.log);
child.on('error', function(data) {
mpq.track('sendmail failed', {email: email, data: data});
done();
});
child.on('exit', function(code, signal) {
done();
});
child.stdin.write(message + '\n.');
child.stdin.end();
});
}
// Start server
var port = process.env.PORT || 9090;