2012-04-05 05:21:56 +00:00
|
|
|
var express = require('express')
|
|
|
|
, app = express.createServer()
|
|
|
|
, nodemailer = require('nodemailer')
|
2012-04-06 22:33:12 +00:00
|
|
|
, config = require('./config.js')
|
2012-04-06 21:52:10 +00:00
|
|
|
|
|
|
|
var redis;
|
|
|
|
if (process.env.NODE_ENV == 'production')
|
|
|
|
redis = require('redis-url').connect(process.env.REDISTOGO_URL);
|
|
|
|
else
|
|
|
|
redis = require('redis-url').connect();
|
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());
|
|
|
|
|
|
|
|
// App
|
|
|
|
|
|
|
|
/* Homepage */
|
|
|
|
app.get('/', function(req, res) {
|
2012-04-06 21:52:45 +00:00
|
|
|
res.send("it's running");
|
2012-04-05 05:21:56 +00:00
|
|
|
});
|
|
|
|
|
2012-04-06 19:44:51 +00:00
|
|
|
app.post('/text', function(req, res) {
|
2012-04-06 21:22:23 +00:00
|
|
|
var keystr = req.connection.remoteAddress + '_' + dateStr();
|
|
|
|
|
2012-04-06 21:52:10 +00:00
|
|
|
redis.incr(keystr, function(err, num) {
|
2012-04-06 21:22:23 +00:00
|
|
|
if (err) {
|
|
|
|
res.send({success:false,msg:'Could not validate IP quota.'});
|
|
|
|
return;
|
|
|
|
}
|
2012-04-06 21:52:10 +00:00
|
|
|
|
2012-04-06 21:22:23 +00:00
|
|
|
if (num < 51) {
|
|
|
|
sendText(req.body.number, req.body.msg, function(err) {
|
|
|
|
if (err)
|
|
|
|
res.send({success:false,msg:'Communication with SMS gateway failed.'});
|
|
|
|
else
|
|
|
|
res.send({success:true});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
res.send({success:false,msg:'Exceeded quota.'});
|
|
|
|
}
|
|
|
|
});
|
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-06 19:44:51 +00:00
|
|
|
function sendText(phone, msg, cb) {
|
2012-04-05 07:30:47 +00:00
|
|
|
var transport = nodemailer.createTransport("SES", {
|
|
|
|
AWSAccessKeyID: config.aws.access,
|
2012-04-06 19:44:51 +00:00
|
|
|
AWSSecretKey: config.aws.secret,
|
2012-04-05 07:30:47 +00:00
|
|
|
});
|
2012-04-05 05:21:56 +00:00
|
|
|
|
2012-04-05 07:30:47 +00:00
|
|
|
var mailOptions = {
|
|
|
|
transport: transport, // transport method to use
|
2012-04-06 19:44:51 +00:00
|
|
|
from: "txt@textbelt.com", // sender address
|
2012-04-05 07:30:47 +00:00
|
|
|
to: '9147727429@vtext.com',
|
|
|
|
subject: '', // Subject line
|
2012-04-06 19:44:51 +00:00
|
|
|
text: msg,
|
2012-04-05 05:21:56 +00:00
|
|
|
}
|
2012-04-05 07:30:47 +00:00
|
|
|
|
|
|
|
nodemailer.sendMail(mailOptions, function(error){
|
|
|
|
if (error) {
|
|
|
|
console.log(error);
|
2012-04-06 19:44:51 +00:00
|
|
|
cb(true);
|
2012-04-05 07:30:47 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log("Message sent!");
|
2012-04-06 19:44:51 +00:00
|
|
|
cb(false);
|
2012-04-05 07:30:47 +00:00
|
|
|
}
|
|
|
|
transport.close(function(){}); // shut down the connection pool
|
|
|
|
});
|
2012-04-06 19:44:51 +00:00
|
|
|
}
|
2012-04-05 05:21:56 +00:00
|
|
|
|
|
|
|
var port = process.env.PORT || 8080;
|
|
|
|
app.listen(port, function() {
|
|
|
|
console.log('Listening on', port);
|
|
|
|
});
|