2015-05-19 11:03:53 +02:00
|
|
|
var pg = require('pg');
|
|
|
|
var secret = require('../../private');
|
|
|
|
|
|
|
|
module.exports.index = function(req, res) {
|
|
|
|
|
|
|
|
pg.connect(secret.url, function(err, client, release) {
|
|
|
|
client.query(
|
2015-06-04 16:52:58 +02:00
|
|
|
"INSERT INTO coinclicked(exp_id, coin_id, time) VALUES($1,$2, to_timestamp($3));",
|
|
|
|
[req.session.exp_id, req.body.coin_id, req.body.time],
|
2015-05-19 11:03:53 +02:00
|
|
|
function(err, result) {
|
2015-07-01 11:31:44 +02:00
|
|
|
if (err !== null)
|
|
|
|
console.log("[DBERROR] " + err);
|
2015-05-19 11:03:53 +02:00
|
|
|
release();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
res.setHeader('Content-Type', 'text/html');
|
2015-06-04 16:52:58 +02:00
|
|
|
res.send("");
|
2015-07-01 10:14:15 +02:00
|
|
|
};
|