author | Michael Krelin <hacker@klever.net> | 2013-11-25 20:52:38 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2013-11-25 20:52:38 (UTC) |
commit | 352f2216eec032efce4bdeddd2ffe5a9e326a99d (patch) (unidiff) | |
tree | 902272eaff4d42c0e732cc446baa3b5958cfae73 | |
parent | c79ee694f71f787e896fe3f954316723ef0f5544 (diff) | |
download | clipperz-352f2216eec032efce4bdeddd2ffe5a9e326a99d.zip clipperz-352f2216eec032efce4bdeddd2ffe5a9e326a99d.tar.gz clipperz-352f2216eec032efce4bdeddd2ffe5a9e326a99d.tar.bz2 |
postgresql-based clipperz own session store
the use thereof is not mandatory, but may come in handy for the
standalone deployment
-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'); | |||
19 | 19 | ||
20 | |||
21 | var CLIPPERZ = require('./clipperz'); | ||
22 | var CONF = require('./conf'); | ||
23 | var clipperz = CLIPPERZ({ | ||
24 | psql: CONF.psql||'postgresql:///clipperz', | ||
25 | logger: LOGGER, | ||
26 | dump_template: PATH.join(__dirname,'htdocs/beta/index.html') | ||
27 | }); | ||
28 | |||
29 | |||
20 | var app = EXPRESS(); | 30 | var app = EXPRESS(); |
@@ -26,3 +36,3 @@ app.use(EXPRESS.methodOverride()); | |||
26 | app.use(EXPRESS.cookieParser('your secret here')); | 36 | app.use(EXPRESS.cookieParser('your secret here')); |
27 | app.use(EXPRESS.session()); | 37 | app.use(EXPRESS.session({secret:'99 little bugs in the code', key:'sid', store: clipperz.session_store() })); |
28 | app.use(app.router); | 38 | app.use(app.router); |
@@ -34,10 +44,2 @@ if ('development' == app.get('env')) { | |||
34 | 44 | ||
35 | var CLIPPERZ = require('./clipperz'); | ||
36 | var CONF = require('./conf'); | ||
37 | var clipperz = CLIPPERZ({ | ||
38 | psql: CONF.psql||'postgresql:///clipperz', | ||
39 | logger: LOGGER, | ||
40 | dump_template: PATH.join(__dirname,'htdocs/beta/index.html') | ||
41 | }); | ||
42 | |||
43 | app.post('/json',clipperz.json); | 45 | 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'); | |||
5 | 5 | ||
6 | var express_store = require('express').session.Store; | ||
7 | |||
6 | function clipperz_hash(v) { | 8 | function clipperz_hash(v) { |
@@ -14,2 +16,31 @@ function clipperz_random() { | |||
14 | }; | 16 | }; |
17 | function clipperz_store(PG) { | ||
18 | var rv = function(o) { express_store.call(this,o); } | ||
19 | rv.prototype.get = function(sid,cb) { PG.Q( | ||
20 | "SELECT s_data FROM clipperz.thesession WHERE s_id=$1",[sid], | ||
21 | function(e,r) { cb(e,(e||!r.rowCount)?null:r.rows[0].s_data); } | ||
22 | ) }; | ||
23 | rv.prototype.set = function(sid,data,cb) { PG.Q( | ||
24 | "UPDATE clipperz.thesession SET s_data=$1, s_mtime=current_timestamp" | ||
25 | +" WHERE s_id=$2",[data,sid], function(e,r) { | ||
26 | if(e) return cb(e); | ||
27 | if(r.rowCount) return cb(); | ||
28 | PG.Q("INSERT INTO clipperz.thesession (s_id,s_data) VALUES ($1,$2)",[sid,data],cb); | ||
29 | } | ||
30 | ) }; | ||
31 | rv.prototype.destroy = function(sid,cb) { PG.Q( | ||
32 | "DELETE FROM clipperz.thesession WHERE s_id=$1",[sid],cb | ||
33 | ) }; | ||
34 | rv.prototype.length = function(cb) { PG.Q( | ||
35 | "SELECT count(*) AS c FROM clipperz.thesession", function(e,r) { | ||
36 | cb(e,e?null:r.rows[0].c); | ||
37 | } | ||
38 | ) }; | ||
39 | rv.prototype.length = function(cb) { PQ.Q( | ||
40 | "DELETE FROM clipperz.thesession", cb | ||
41 | ) }; | ||
42 | rv.prototype.__proto__ = express_store.prototype; | ||
43 | return rv; | ||
44 | } | ||
45 | |||
15 | var srp_g = BIGNUM(2); | 46 | var srp_g = BIGNUM(2); |
@@ -78,3 +109,3 @@ var CLIPPERZ = module.exports = function(CONFIG) { | |||
78 | 109 | ||
79 | return { | 110 | var rv = { |
80 | 111 | ||
@@ -534,3 +565,7 @@ var CLIPPERZ = module.exports = function(CONFIG) { | |||
534 | } | 565 | } |
566 | |||
535 | }; | 567 | }; |
568 | rv.__defineGetter__('session_store',function(){ return function(o) { return new (clipperz_store(PG))(o) } }); | ||
569 | |||
570 | return rv; | ||
536 | 571 | ||
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 ( | |||
60 | ); | 60 | ); |
61 | |||
62 | CREATE TABLE clipperz.thesession ( | ||
63 | s_id varchar PRIMARY KEY, | ||
64 | s_data json, | ||
65 | s_ctime timestamp DEFAULT current_timestamp, | ||
66 | s_mtime timestamp DEFAULT current_timestamp | ||
67 | ); | ||