2012-04-05 05:21:56 +00:00
|
|
|
var express = require('express')
|
2014-03-31 07:09:14 +00:00
|
|
|
, app = express()
|
2012-04-07 09:00:44 +00:00
|
|
|
, _ = require('underscore')
|
2012-04-07 19:26:21 +00:00
|
|
|
, fs = require('fs')
|
2012-04-07 20:13:02 +00:00
|
|
|
, mixpanel = require('mixpanel')
|
2012-04-07 02:01:24 +00:00
|
|
|
, exec = require('child_process').exec
|
2012-04-07 02:30:43 +00:00
|
|
|
, spawn = require('child_process').spawn
|
|
|
|
, Stream = require('stream')
|
2014-03-20 17:37:18 +00:00
|
|
|
, providers = require('./providers.js')
|
2014-07-01 05:28:58 +00:00
|
|
|
, redis = require('redis-url').connect()
|
|
|
|
|
|
|
|
// Optional modules
|
|
|
|
var banned_numbers;
|
|
|
|
try {
|
|
|
|
banned_numbers = require('./banned_numbers.js')
|
|
|
|
} catch(e) {
|
|
|
|
banned_numbers = {BLACKLIST: {}};
|
|
|
|
}
|
|
|
|
|
|
|
|
var mpq;
|
|
|
|
try {
|
|
|
|
mixpanel_config = require('./mixpanel_config.js')
|
|
|
|
mpq = new mixpanel.Client(mixpanel_config.api_key);
|
|
|
|
} catch(e) {
|
|
|
|
mpq = {track: function() {}};
|
|
|
|
}
|
2012-04-06 21:52:10 +00:00
|
|
|
|
2014-04-21 01:59:27 +00:00
|
|
|
var access_keys;
|
|
|
|
try {
|
2014-04-28 06:53:32 +00:00
|
|
|
// Optionally, you may specify special access keys in a keys.json file.
|
|
|
|
// These access keys are not rate-limited.
|
|
|
|
// See example_keys.json for format.
|
2014-04-21 01:59:27 +00:00
|
|
|
access_keys = require('./keys.json');
|
|
|
|
} catch (e) {
|
|
|
|
access_keys = {};
|
|
|
|
}
|
2012-04-05 05:21:56 +00:00
|
|
|
|
|
|
|
// Express config
|
|
|
|
app.set('views', __dirname + '/views');
|
|
|
|
app.set('view engine', 'jade');
|
|
|
|
|
|
|
|
app.use(express.cookieParser());
|
|
|
|
app.use(express.static(__dirname + '/public'));
|
|
|
|
app.use(express.bodyParser());
|
|
|
|
|
2014-06-19 04:57:12 +00:00
|
|
|
// App routes
|
2012-04-05 05:21:56 +00:00
|
|
|
app.get('/', function(req, res) {
|
2012-04-07 19:26:21 +00:00
|
|
|
fs.readFile(__dirname + '/views/index.html', 'utf8', function(err, text){
|
|
|
|
res.send(text);
|
|
|
|
});
|
2012-04-05 05:21:56 +00:00
|
|
|
});
|
|
|
|
|
2014-04-21 01:46:37 +00:00
|
|
|
app.get('/providers/:region', function(req, res) {
|
|
|
|
// Utility function, just to check the providers currently loaded
|
|
|
|
res.send(providers[req.params.region]);
|
2014-04-16 21:00:09 +00:00
|
|
|
});
|
|
|
|
|
2012-04-06 19:44:51 +00:00
|
|
|
app.post('/text', function(req, res) {
|
2014-03-20 17:37:18 +00:00
|
|
|
var number = stripPhone(req.body.number);
|
|
|
|
if (number.length < 9 || number.length > 10) {
|
2014-06-28 06:44:19 +00:00
|
|
|
res.send({success:false, message:'Invalid phone number.'});
|
2014-03-20 17:37:18 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-04-21 01:59:27 +00:00
|
|
|
textRequestHandler(req, res, number, 'us', req.query.key);
|
2014-03-20 17:37:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/canada', function(req, res) {
|
2014-04-21 01:59:27 +00:00
|
|
|
textRequestHandler(req, res, stripPhone(req.body.number), 'canada', req.query.key);
|
2014-03-20 17:37:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/intl', function(req, res) {
|
2014-04-21 01:59:27 +00:00
|
|
|
textRequestHandler(req, res, stripPhone(req.body.number), 'intl', req.query.key);
|
2014-03-20 17:37:18 +00:00
|
|
|
});
|
|
|
|
|
2014-06-19 04:57:12 +00:00
|
|
|
// App helper functions
|
|
|
|
|
2014-04-21 01:59:27 +00:00
|
|
|
function textRequestHandler(req, res, number, region, key) {
|
2014-07-01 05:20:48 +00:00
|
|
|
if (!number || !req.body.message) {
|
2012-04-07 22:50:08 +00:00
|
|
|
mpq.track('incomplete request');
|
2014-06-28 06:44:19 +00:00
|
|
|
res.send({success:false, message:'Number and message parameters are required.'});
|
2012-04-07 22:50:08 +00:00
|
|
|
return;
|
2014-07-01 05:25:31 +00:00
|
|
|
}
|
|
|
|
if (banned_numbers.BLACKLIST[number]) {
|
|
|
|
mpq.track('banned number');
|
|
|
|
res.send({success:false,message:'Sorry, texts to this number are disabled.'});
|
|
|
|
return;
|
2012-04-07 22:50:08 +00:00
|
|
|
}
|
2014-06-28 06:44:19 +00:00
|
|
|
var ip = req.header('X-Real-IP') || req.connection.remoteAddress;
|
2012-04-06 21:22:23 +00:00
|
|
|
|
2014-03-09 20:09:55 +00:00
|
|
|
var message = req.body.message;
|
2014-06-19 04:57:12 +00:00
|
|
|
if (message.indexOf(':') > -1) {
|
2014-04-21 01:59:27 +00:00
|
|
|
// Handle problem with vtext where message would not get sent properly if it
|
2014-06-19 04:57:12 +00:00
|
|
|
// contains a colon
|
2014-03-09 20:09:55 +00:00
|
|
|
message = ' ' + message;
|
|
|
|
}
|
|
|
|
|
2014-04-21 01:59:27 +00:00
|
|
|
var tracking_details = {
|
2014-07-01 05:20:48 +00:00
|
|
|
number: number,
|
2014-04-21 01:59:27 +00:00
|
|
|
message: req.body.message,
|
|
|
|
ip: ip
|
|
|
|
};
|
|
|
|
|
2014-04-21 02:01:21 +00:00
|
|
|
var doSendText = function(response_obj) {
|
|
|
|
response_obj = response_obj || {};
|
|
|
|
|
2014-04-21 01:59:27 +00:00
|
|
|
// Time to actually send the message
|
2014-07-01 05:20:48 +00:00
|
|
|
sendText(number, message, region, function(err) {
|
2014-04-21 01:59:27 +00:00
|
|
|
if (err) {
|
|
|
|
mpq.track('sendText failed', tracking_details);
|
2014-04-21 02:01:21 +00:00
|
|
|
res.send(_.extend(response_obj,
|
|
|
|
{
|
|
|
|
success:false,
|
|
|
|
message:'Communication with SMS gateway failed.'
|
|
|
|
}));
|
2014-04-21 01:59:27 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mpq.track('sendText success', tracking_details);
|
2014-04-21 02:01:21 +00:00
|
|
|
res.send(_.extend(response_obj, {success:true}));
|
2014-04-21 01:59:27 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// Do they have a valid access key?
|
|
|
|
if (key && key in access_keys) {
|
|
|
|
console.log('Got valid key', key, '... not applying limits.');
|
|
|
|
// Skip verification
|
|
|
|
mpq.track('sendText skipping verification', _.extend(tracking_details, {
|
|
|
|
key: key,
|
|
|
|
}));
|
2014-04-21 02:01:21 +00:00
|
|
|
doSendText({used_key: key});
|
2014-04-21 01:59:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If they don't have a special key, apply rate limiting and verification
|
2013-11-13 16:48:52 +00:00
|
|
|
var ipkey = 'textbelt:ip:' + ip + '_' + dateStr();
|
2012-04-07 19:54:52 +00:00
|
|
|
var phonekey = 'textbelt:phone:' + number;
|
|
|
|
|
|
|
|
redis.incr(phonekey, function(err, num) {
|
2012-04-06 21:22:23 +00:00
|
|
|
if (err) {
|
2012-04-07 20:13:02 +00:00
|
|
|
mpq.track('redis fail');
|
2014-04-21 01:59:27 +00:00
|
|
|
res.send({success:false, message:'Could not validate phone# quota.'});
|
2012-04-07 09:00:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(function() {
|
2012-04-07 19:54:52 +00:00
|
|
|
redis.decr(phonekey, function(err, num) {
|
2012-04-07 09:00:44 +00:00
|
|
|
if (err) {
|
2012-04-07 20:13:02 +00:00
|
|
|
mpq.track('failed to decr phone quota', {number: number});
|
2012-04-07 09:00:44 +00:00
|
|
|
console.log('*** WARNING failed to decr ' + number);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 1000*60*3);
|
|
|
|
if (num > 3) {
|
2012-04-07 20:13:02 +00:00
|
|
|
mpq.track('exceeded phone quota');
|
2014-04-21 01:59:27 +00:00
|
|
|
res.send({success:false, message:'Exceeded quota for this phone number. ' + number});
|
2012-04-06 21:22:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-04-06 21:52:10 +00:00
|
|
|
|
2012-04-07 09:00:44 +00:00
|
|
|
// now check against ip quota
|
2012-04-07 19:54:52 +00:00
|
|
|
redis.incr(ipkey, function(err, num) {
|
2012-04-07 09:00:44 +00:00
|
|
|
if (err) {
|
2012-04-07 20:13:02 +00:00
|
|
|
mpq.track('redis fail');
|
2014-04-21 01:59:27 +00:00
|
|
|
res.send({success:false, message:'Could not validate IP quota.'});
|
2012-04-07 09:00:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-04-07 20:14:32 +00:00
|
|
|
if (num > 75) {
|
2012-04-07 20:13:02 +00:00
|
|
|
mpq.track('exceeded ip quota');
|
2014-04-21 01:59:27 +00:00
|
|
|
res.send({success:false, message:'Exceeded quota for this IP address. ' + ip});
|
2012-04-07 09:00:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-11-13 18:32:04 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
redis.decr(ipkey, function(err, num) {
|
|
|
|
if (err) {
|
|
|
|
mpq.track('failed to decr ip key', {ipkey: ipkey});
|
|
|
|
console.log('*** WARNING failed to decr ' + ipkey);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 1000*60*60*24);
|
2012-04-07 09:00:44 +00:00
|
|
|
|
2014-04-21 01:59:27 +00:00
|
|
|
// Cleared to send now
|
|
|
|
doSendText();
|
|
|
|
}); // end redis ipkey incr
|
|
|
|
}); // end redis phonekey incr
|
|
|
|
} // end textRequestHandler
|
2012-04-06 19:44:51 +00:00
|
|
|
|
2012-04-06 21:22:23 +00:00
|
|
|
function dateStr() {
|
|
|
|
var today = new Date();
|
|
|
|
var dd = today.getDate();
|
|
|
|
var mm = today.getMonth()+1;
|
|
|
|
var yyyy = today.getFullYear();
|
|
|
|
return mm + '/' + dd + '/' + yyyy;
|
|
|
|
}
|
|
|
|
|
2012-04-07 09:00:44 +00:00
|
|
|
function stripPhone(phone) {
|
2012-04-07 22:50:08 +00:00
|
|
|
return (phone+'').replace(/\D/g, '');
|
2012-04-07 09:00:44 +00:00
|
|
|
}
|
2012-04-07 02:01:24 +00:00
|
|
|
|
2014-03-20 17:37:18 +00:00
|
|
|
function sendText(phone, message, region, cb) {
|
|
|
|
console.log('txting phone', phone, ':', message);
|
|
|
|
|
|
|
|
region = region || 'us';
|
|
|
|
|
|
|
|
var providers_list = providers[region];
|
2012-04-07 02:01:24 +00:00
|
|
|
|
2014-03-20 17:37:18 +00:00
|
|
|
var done = _.after(providers_list.length, function() {
|
2012-04-07 09:00:44 +00:00
|
|
|
cb(false);
|
2012-04-07 02:30:43 +00:00
|
|
|
});
|
2012-04-07 09:00:44 +00:00
|
|
|
|
2014-03-20 17:37:18 +00:00
|
|
|
_.each(providers_list, function(provider) {
|
2012-04-07 09:00:44 +00:00
|
|
|
var email = provider.replace('%s', phone);
|
|
|
|
var child = spawn('sendmail', ['-f', 'txt@textbelt.com', email]);
|
|
|
|
child.stdout.on('data', console.log);
|
|
|
|
child.stderr.on('data', console.log);
|
2012-04-07 20:13:02 +00:00
|
|
|
child.on('error', function(data) {
|
|
|
|
mpq.track('sendmail failed', {email: email, data: data});
|
2012-04-07 19:54:52 +00:00
|
|
|
done();
|
|
|
|
});
|
2012-04-07 09:00:44 +00:00
|
|
|
child.on('exit', function(code, signal) {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
child.stdin.write(message + '\n.');
|
|
|
|
child.stdin.end();
|
2012-04-07 19:54:52 +00:00
|
|
|
});
|
2012-04-06 19:44:51 +00:00
|
|
|
}
|
2012-04-05 05:21:56 +00:00
|
|
|
|
2014-06-19 04:57:12 +00:00
|
|
|
// Start server
|
2012-04-07 19:26:21 +00:00
|
|
|
var port = process.env.PORT || 9090;
|
2012-04-05 05:21:56 +00:00
|
|
|
app.listen(port, function() {
|
|
|
|
console.log('Listening on', port);
|
|
|
|
});
|