Some cleaning 😢

This commit is contained in:
Thomas FORGIONE
2015-11-13 10:36:54 +01:00
parent 59518eb702
commit 5e0a6c3121
113 changed files with 433 additions and 67 deletions

View File

@@ -0,0 +1,27 @@
var pg = require('pg');
var secret = require('../../private');
var Log = require('../../lib/NodeLog.js');
module.exports.index = function(req, res) {
pg.connect(secret.url, function(err, client, release) {
client.query(
"INSERT INTO hovered(exp_id, time, start, arrow_id)" +
"VALUES($1, to_timestamp($2), $3, $4);" ,
[
req.session.expId,
req.body.time,
req.body.start ? true : false,
req.body.arrowId
],
function(err, result) {
if (err !== null)
Log.dberror(err + ' in hovered');
release();
}
);
});
res.setHeader('Content-Type', 'text/html');
res.send("");
};

View File

@@ -0,0 +1,3 @@
module.exports = {
'/posts/hovered': 'index'
};