summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2013-11-25 19:04:15 (UTC)
committer Michael Krelin <hacker@klever.net>2013-11-25 19:04:15 (UTC)
commit8718e9094c37bde8205fd1fe3c42b4bf590486ab (patch) (side-by-side diff)
tree7e32d19a483964dc153d767cc9bbefab521deeea
parent706ed5b980c48ad807923d36741f19b21f2911a6 (diff)
downloadclipperz-8718e9094c37bde8205fd1fe3c42b4bf590486ab.zip
clipperz-8718e9094c37bde8205fd1fe3c42b4bf590486ab.tar.gz
clipperz-8718e9094c37bde8205fd1fe3c42b4bf590486ab.tar.bz2
retrieve header as a string to avoid restringification
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--backend/node/src/clipperz.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/node/src/clipperz.js b/backend/node/src/clipperz.js
index c6d776a..eebd5bf 100644
--- a/backend/node/src/clipperz.js
+++ b/backend/node/src/clipperz.js
@@ -174,65 +174,65 @@ var CLIPPERZ = module.exports = function(CONFIG) {
+" WHERE"
+" o.otp_id=otp.otp_id AND otp.otps_id=s.otps_id AND otp.otp_key=$1"
+" RETURNING otp.u_id, s.otps_code, otp.otp_id, otp.otp_key_checksum, o.otp_data, otp.otp_version",
[ ppp.oneTimePasswordKey, ppp.oneTimePasswordKeyChecksum ],
function(e,r) {
if(e) return cb(e);
if(!r.rowCount) return cb(new Error('OTP not found'));
r=r.rows[0];
if(r.otp_key_checksum!=ppp.oneTimePasswordKeyChecksum)
return cb(new Error('OTP was disabled because of checksum mismatch'));
if(r.otps_code!='ACTIVE')
return cb(new Error("OTP wasn't active, sorry"));
req.session.u=r.u_id; req.session.otp=r.otp_id;
res.res({data:r.otp_data,version:r.otp_version});
});
}
break;
case 'message':
if(!req.session.K) return res.res({result:'EXCEPTION',message:"effectively, we're missing a aconnection"});
if(req.session.K!=pp.srpSharedSecret) return res.res({error:'Wrong shared secret!'});
switch(message) {
case 'getUserDetails': return ASYNC.parallel({
u: function(cb) {
- PG.Q("SELECT u_header,u_statistics,u_version FROM clipperz.theuser WHERE u_id=$1",
+ PG.Q("SELECT u_header::varchar,u_statistics,u_version FROM clipperz.theuser WHERE u_id=$1",
[req.session.u],function(e,r) {
if(e) return cb(e);
if(!r.rowCount) return cb(new Error("user's gone AWOL"));
cb(null,r.rows[0]);
});
},
stats: function(cb) {
PG.Q("SELECT r_ref,r_mtime FROM clipperz.therecord WHERE u_id=$1",
[req.session.u],function(e,r) {
if(e) return cb(e);
cb(null,r.rows.reduce(function(p,r){p[r.r_ref]={updateDate:r.r_mtime};return p},{}));
});
}
},function(e,r) {
if(e) return cb(e);
- res.res({header:JSON.stringify(r.u.u_header),statistics:r.u.u_statistics,version:r.u.u_version,recordsStats:r.stats});
+ res.res({header:r.u.u_header,statistics:r.u.u_statistics,version:r.u.u_version,recordsStats:r.stats});
});
case 'saveChanges': return PG.T(function(e,T) {
if(e) return cb(e);
ASYNC.auto({
user: function(cb) {
T.Q(
"UPDATE clipperz.theuser"
+" SET u_header=$1, u_statistics=$2, u_version=$3, u_lock=COALESCE($4,u_lock)"
+" WHERE u_id=$5"
+" RETURNING u_lock",[ppp.user.header,ppp.user.statistics,ppp.user.version,ppp.user.lock||null,req.session.u],
function(e,r) {
if(e) return cb(e);
if(!r.rowCount) return cb(new Error("user's gone AWOL"));
cb(null,r.rows[0]);
});
},
updaterecords: function(cb) {
if(!(ppp.records && ppp.records.updated && ppp.records.updated.length)) return cb();
ASYNC.each(ppp.records.updated,function(r,cb) {
ASYNC.auto({
updater: function(cb) {
T.Q(
"UPDATE clipperz.therecord"
@@ -450,55 +450,55 @@ var CLIPPERZ = module.exports = function(CONFIG) {
case 'deleteUser': return PG.Q(
"DELETE FROM clipperz.theuser WHERE u_id=$1",
[req.session.u],function(e,r) {
if(e) return cb(e);
res.res({result:'ok'});
});
case 'echo': return res.res({result:ppp});
case 'getOneTimePasswordsDetails': return res.res({});
case 'getLoginHistory': return res.res({result:[]});
}
break;
case 'logout': return req.session.destroy(function(e){res.res({})});
}
cb();
},
dump: function(req,res,cb) {
if(!req.session.u) return cb(new Error('logging in helps'));
return ASYNC.parallel({
u: function(cb) {
PG.Q(
"SELECT"
- +" u_name, u_srp_s, u_srp_v, u_authversion, u_header, u_statistics, u_version"
+ +" u_name, u_srp_s, u_srp_v, u_authversion, u_header::varchar, u_statistics, u_version"
+" FROM clipperz.theuser WHERE u_id=$1",[req.session.u],function(e,r) {
if(e) return cb(e);
if(!r.rowCount) return cb(new Error("user's gone AWOL"));
r = r.rows[0];
return cb(null,{u:r.u_name,d:{s:r.u_srp_s,v:r.u_srp_v, version:r.u_authversion,
- maxNumberOfRecords: '100', userDetails: JSON.stringify(r.u_header),
+ maxNumberOfRecords: '100', userDetails: r.u_header,
statistics: r.u_statistics, userDetailsVersion: r.u_version
}});
});
},
records: function(cb) {
PG.Q(
"SELECT"
+" r.r_id, r.r_ref, r_data, r_version, r_ctime, r_mtime, r_atime,"
+" rv.rv_id, rv.rv_ref AS rv_ref, rv_header, rv_data, rv_version, rv_ctime, rv_mtime, rv_atime"
+" FROM"
+" clipperz.therecord AS r"
+" LEFT JOIN clipperz.therecordversion AS rv USING (r_id)"
+" WHERE r.u_id=$1"
+" ORDER BY r.r_id ASC, rv.rv_id ASC", [req.session.u],function(e,r) {
if(e) return cb(e);
var rv = {};
r.rows.forEach(function(r) {
if(!rv[r.r_ref]) rv[r.r_ref] = {
data: r.r_data, version: r.r_version,
creationDate: r.r_ctime.toString(),
updateDate: r.r_mtime.toString(),
accessDate: r.r_atime.toString(),
versions: {}
};