-rw-r--r-- | backend/node/src/app.js | 20 | ||||
-rw-r--r-- | backend/node/src/clipperz.js | 37 | ||||
-rw-r--r-- | backend/node/src/clipperz.schema.sql | 7 |
3 files changed, 54 insertions, 10 deletions
diff --git a/backend/node/src/app.js b/backend/node/src/app.js index d4d60c2..61c2c72 100644 --- a/backend/node/src/app.js +++ b/backend/node/src/app.js @@ -19,2 +19,12 @@ var PATH = require('path'); + +var CLIPPERZ = require('./clipperz'); +var CONF = require('./conf'); +var clipperz = CLIPPERZ({ + psql: CONF.psql||'postgresql:///clipperz', + logger: LOGGER, + dump_template: PATH.join(__dirname,'htdocs/beta/index.html') +}); + + var app = EXPRESS(); @@ -26,3 +36,3 @@ app.use(EXPRESS.methodOverride()); app.use(EXPRESS.cookieParser('your secret here')); -app.use(EXPRESS.session()); +app.use(EXPRESS.session({secret:'99 little bugs in the code', key:'sid', store: clipperz.session_store() })); app.use(app.router); @@ -34,10 +44,2 @@ if ('development' == app.get('env')) { -var CLIPPERZ = require('./clipperz'); -var CONF = require('./conf'); -var clipperz = CLIPPERZ({ - psql: CONF.psql||'postgresql:///clipperz', - logger: LOGGER, - dump_template: PATH.join(__dirname,'htdocs/beta/index.html') -}); - app.post('/json',clipperz.json); diff --git a/backend/node/src/clipperz.js b/backend/node/src/clipperz.js index eebd5bf..73af0a0 100644 --- a/backend/node/src/clipperz.js +++ b/backend/node/src/clipperz.js @@ -5,2 +5,4 @@ var ASYNC = require('async'); +var express_store = require('express').session.Store; + function clipperz_hash(v) { @@ -14,2 +16,31 @@ function clipperz_random() { }; +function clipperz_store(PG) { + var rv = function(o) { express_store.call(this,o); } + rv.prototype.get = function(sid,cb) { PG.Q( + "SELECT s_data FROM clipperz.thesession WHERE s_id=$1",[sid], + function(e,r) { cb(e,(e||!r.rowCount)?null:r.rows[0].s_data); } + ) }; + rv.prototype.set = function(sid,data,cb) { PG.Q( + "UPDATE clipperz.thesession SET s_data=$1, s_mtime=current_timestamp" + +" WHERE s_id=$2",[data,sid], function(e,r) { + if(e) return cb(e); + if(r.rowCount) return cb(); + PG.Q("INSERT INTO clipperz.thesession (s_id,s_data) VALUES ($1,$2)",[sid,data],cb); + } + ) }; + rv.prototype.destroy = function(sid,cb) { PG.Q( + "DELETE FROM clipperz.thesession WHERE s_id=$1",[sid],cb + ) }; + rv.prototype.length = function(cb) { PG.Q( + "SELECT count(*) AS c FROM clipperz.thesession", function(e,r) { + cb(e,e?null:r.rows[0].c); + } + ) }; + rv.prototype.length = function(cb) { PQ.Q( + "DELETE FROM clipperz.thesession", cb + ) }; + rv.prototype.__proto__ = express_store.prototype; + return rv; +} + var srp_g = BIGNUM(2); @@ -78,3 +109,3 @@ var CLIPPERZ = module.exports = function(CONFIG) { - return { + var rv = { @@ -534,3 +565,7 @@ var CLIPPERZ = module.exports = function(CONFIG) { } + }; + rv.__defineGetter__('session_store',function(){ return function(o) { return new (clipperz_store(PG))(o) } }); + + return rv; diff --git a/backend/node/src/clipperz.schema.sql b/backend/node/src/clipperz.schema.sql index ba6f482..1c2305c 100644 --- a/backend/node/src/clipperz.schema.sql +++ b/backend/node/src/clipperz.schema.sql @@ -60 +60,8 @@ CREATE TABLE clipperz.theotp ( ); + +CREATE TABLE clipperz.thesession ( + s_id varchar PRIMARY KEY, + s_data json, + s_ctime timestamp DEFAULT current_timestamp, + s_mtime timestamp DEFAULT current_timestamp +); |