You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
762 lines
22 KiB
JavaScript
762 lines
22 KiB
JavaScript
/*@flow*/
|
|
/* Use Nacl for checking signatures of messages */
|
|
var Nacl = require("tweetnacl");
|
|
|
|
/* globals Buffer*/
|
|
/* globals process */
|
|
|
|
var Fs = require("fs");
|
|
var Path = require("path");
|
|
|
|
var RPC = module.exports;
|
|
|
|
var Store = require("./storage/file");
|
|
|
|
var isValidChannel = function (chan) {
|
|
return /^[a-fA-F0-9]/.test(chan);
|
|
};
|
|
|
|
var uint8ArrayToHex = function (a) {
|
|
// call slice so Uint8Arrays work as expected
|
|
return Array.prototype.slice.call(a).map(function (e) {
|
|
var n = Number(e & 0xff).toString(16);
|
|
if (n === 'NaN') {
|
|
throw new Error('invalid input resulted in NaN');
|
|
}
|
|
|
|
switch (n.length) {
|
|
case 0: return '00'; // just being careful, shouldn't happen
|
|
case 1: return '0' + n;
|
|
case 2: return n;
|
|
default: throw new Error('unexpected value');
|
|
}
|
|
}).join('');
|
|
};
|
|
|
|
var createChannelId = function () {
|
|
var id = uint8ArrayToHex(Nacl.randomBytes(16));
|
|
if (id.length !== 32 || /[^a-f0-9]/.test(id)) {
|
|
throw new Error('channel ids must consist of 32 hex characters');
|
|
}
|
|
return id;
|
|
};
|
|
|
|
var makeToken = function () {
|
|
return Number(Math.floor(Math.random() * Number.MAX_SAFE_INTEGER))
|
|
.toString(16);
|
|
};
|
|
|
|
var makeCookie = function (token) {
|
|
var time = (+new Date());
|
|
time -= time % 5000;
|
|
|
|
return [
|
|
time,
|
|
process.pid,
|
|
token
|
|
];
|
|
};
|
|
|
|
var parseCookie = function (cookie) {
|
|
if (!(cookie && cookie.split)) { return null; }
|
|
|
|
var parts = cookie.split('|');
|
|
if (parts.length !== 3) { return null; }
|
|
|
|
var c = {};
|
|
c.time = new Date(parts[0]);
|
|
c.pid = Number(parts[1]);
|
|
c.seq = parts[2];
|
|
return c;
|
|
};
|
|
|
|
var beginSession = function (Sessions, key) {
|
|
if (Sessions[key]) {
|
|
Sessions[key].atime = +new Date();
|
|
return Sessions[key];
|
|
}
|
|
var user = Sessions[key] = {};
|
|
user.atime = +new Date();
|
|
user.tokens = [
|
|
makeToken()
|
|
];
|
|
return user;
|
|
};
|
|
|
|
var isTooOld = function (time, now) {
|
|
return (now - time) > 300000;
|
|
};
|
|
|
|
var expireSessions = function (Sessions) {
|
|
var now = +new Date();
|
|
Object.keys(Sessions).forEach(function (key) {
|
|
var session = Sessions[key];
|
|
if (isTooOld(Sessions[key].atime, now)) {
|
|
if (session.blobstage) {
|
|
session.blobstage.close();
|
|
}
|
|
delete Sessions[key];
|
|
}
|
|
});
|
|
};
|
|
|
|
var addTokenForKey = function (Sessions, publicKey, token) {
|
|
if (!Sessions[publicKey]) { throw new Error('undefined user'); }
|
|
|
|
var user = Sessions[publicKey];
|
|
user.tokens.push(token);
|
|
user.atime = +new Date();
|
|
if (user.tokens.length > 2) { user.tokens.shift(); }
|
|
};
|
|
|
|
var isValidCookie = function (Sessions, publicKey, cookie) {
|
|
var parsed = parseCookie(cookie);
|
|
if (!parsed) { return false; }
|
|
|
|
var now = +new Date();
|
|
|
|
if (!parsed.time) { return false; }
|
|
if (isTooOld(parsed.time, now)) {
|
|
return false;
|
|
}
|
|
|
|
// different process. try harder
|
|
if (process.pid !== parsed.pid) {
|
|
return false;
|
|
}
|
|
|
|
var user = Sessions[publicKey];
|
|
if (!user) { return false; }
|
|
|
|
var idx = user.tokens.indexOf(parsed.seq);
|
|
if (idx === -1) { return false; }
|
|
|
|
if (idx > 0) {
|
|
// make a new token
|
|
addTokenForKey(Sessions, publicKey, makeToken());
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
var checkSignature = function (signedMsg, signature, publicKey) {
|
|
if (!(signedMsg && publicKey)) { return false; }
|
|
|
|
var signedBuffer;
|
|
var pubBuffer;
|
|
var signatureBuffer;
|
|
|
|
try {
|
|
signedBuffer = Nacl.util.decodeUTF8(signedMsg);
|
|
} catch (e) {
|
|
console.log('invalid signedBuffer');
|
|
console.log(signedMsg);
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
pubBuffer = Nacl.util.decodeBase64(publicKey);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
signatureBuffer = Nacl.util.decodeBase64(signature);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
if (pubBuffer.length !== 32) {
|
|
console.log('public key length: ' + pubBuffer.length);
|
|
console.log(publicKey);
|
|
return false;
|
|
}
|
|
|
|
if (signatureBuffer.length !== 64) {
|
|
return false;
|
|
}
|
|
|
|
return Nacl.sign.detached.verify(signedBuffer, signatureBuffer, pubBuffer);
|
|
};
|
|
|
|
var loadUserPins = function (store, Sessions, publicKey, cb) {
|
|
var session = beginSession(Sessions, publicKey);
|
|
|
|
if (session.channels) {
|
|
return cb(session.channels);
|
|
}
|
|
|
|
// if channels aren't in memory. load them from disk
|
|
var pins = {};
|
|
|
|
var pin = function (channel) {
|
|
pins[channel] = true;
|
|
};
|
|
|
|
var unpin = function (channel) {
|
|
pins[channel] = false;
|
|
};
|
|
|
|
store.getMessages(publicKey, function (msg) {
|
|
// handle messages...
|
|
var parsed;
|
|
try {
|
|
parsed = JSON.parse(msg);
|
|
|
|
switch (parsed[0]) {
|
|
case 'PIN':
|
|
parsed[1].forEach(pin);
|
|
break;
|
|
case 'UNPIN':
|
|
parsed[1].forEach(unpin);
|
|
break;
|
|
case 'RESET':
|
|
Object.keys(pins).forEach(unpin);
|
|
|
|
if (parsed[1] && parsed[1].length) {
|
|
parsed[1].forEach(pin);
|
|
}
|
|
break;
|
|
default:
|
|
console.error('invalid message read from store');
|
|
}
|
|
} catch (e) {
|
|
console.log('invalid message read from store');
|
|
console.error(e);
|
|
}
|
|
}, function () {
|
|
// no more messages
|
|
|
|
// only put this into the cache if it completes
|
|
session.channels = pins;
|
|
cb(pins);
|
|
});
|
|
};
|
|
|
|
var truthyKeys = function (O) {
|
|
return Object.keys(O).filter(function (k) {
|
|
return O[k];
|
|
});
|
|
};
|
|
|
|
var getChannelList = function (store, Sessions, publicKey, cb) {
|
|
loadUserPins(store, Sessions, publicKey, function (pins) {
|
|
cb(truthyKeys(pins));
|
|
});
|
|
};
|
|
|
|
var getFileSize = function (store, channel, cb) {
|
|
if (!isValidChannel(channel)) { return void cb('INVALID_CHAN'); }
|
|
if (typeof(store.getChannelSize) !== 'function') {
|
|
return cb('GET_CHANNEL_SIZE_UNSUPPORTED');
|
|
}
|
|
|
|
return void store.getChannelSize(channel, function (e, size) {
|
|
if (e) { return void cb(e.code); }
|
|
cb(void 0, size);
|
|
});
|
|
};
|
|
|
|
var getMultipleFileSize = function (store, channels, cb) {
|
|
|
|
if (!Array.isArray(channels)) { return cb('INVALID_LIST'); }
|
|
if (typeof(store.getChannelSize) !== 'function') {
|
|
return cb('GET_CHANNEL_SIZE_UNSUPPORTED');
|
|
}
|
|
|
|
var i = channels.length;
|
|
var counts = {};
|
|
|
|
var done = function () {
|
|
i--;
|
|
if (i === 0) { return cb(void 0, counts); }
|
|
};
|
|
|
|
channels.forEach(function (channel) {
|
|
if (!isValidChannel(channel)) {
|
|
counts[channel] = -1;
|
|
return done();
|
|
}
|
|
store.getChannelSize(channel, function (e, size) {
|
|
if (e) {
|
|
counts[channel] = -1;
|
|
return done();
|
|
}
|
|
|
|
counts[channel] = size;
|
|
done();
|
|
});
|
|
});
|
|
};
|
|
|
|
var getTotalSize = function (pinStore, messageStore, Sessions, publicKey, cb) {
|
|
var bytes = 0;
|
|
|
|
return void getChannelList(pinStore, Sessions, publicKey, function (channels) {
|
|
if (!channels) { cb('NO_ARRAY'); } // unexpected
|
|
|
|
var count = channels.length;
|
|
if (!count) { cb(void 0, 0); }
|
|
|
|
channels.forEach(function (channel) {
|
|
return messageStore.getChannelSize(channel, function (e, size) {
|
|
count--;
|
|
if (!e) { bytes += size; }
|
|
if (count === 0) { return cb(void 0, bytes); }
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
var hashChannelList = function (A) {
|
|
var uniques = [];
|
|
|
|
A.forEach(function (a) {
|
|
if (uniques.indexOf(a) === -1) { uniques.push(a); }
|
|
});
|
|
uniques.sort();
|
|
|
|
var hash = Nacl.util.encodeBase64(Nacl.hash(Nacl
|
|
.util.decodeUTF8(JSON.stringify(uniques))));
|
|
|
|
return hash;
|
|
};
|
|
|
|
var getHash = function (store, Sessions, publicKey, cb) {
|
|
getChannelList(store, Sessions, publicKey, function (channels) {
|
|
cb(void 0, hashChannelList(channels));
|
|
});
|
|
};
|
|
|
|
/* var storeMessage = function (store, publicKey, msg, cb) {
|
|
store.message(publicKey, JSON.stringify(msg), cb);
|
|
}; */
|
|
|
|
var pinChannel = function (store, Sessions, publicKey, channels, cb) {
|
|
if (!channels && channels.filter) {
|
|
// expected array
|
|
return void cb('[TYPE_ERROR] pin expects channel list argument');
|
|
}
|
|
|
|
getChannelList(store, Sessions, publicKey, function (pinned) {
|
|
var session = beginSession(Sessions, publicKey);
|
|
|
|
// only pin channels which are not already pinned
|
|
var toStore = channels.filter(function (channel) {
|
|
return pinned.indexOf(channel) === -1;
|
|
});
|
|
|
|
if (toStore.length === 0) {
|
|
return void getHash(store, Sessions, publicKey, cb);
|
|
}
|
|
|
|
store.message(publicKey, JSON.stringify(['PIN', toStore]),
|
|
function (e) {
|
|
if (e) { return void cb(e); }
|
|
toStore.forEach(function (channel) {
|
|
session.channels[channel] = true;
|
|
});
|
|
getHash(store, Sessions, publicKey, cb);
|
|
});
|
|
});
|
|
};
|
|
|
|
var unpinChannel = function (store, Sessions, publicKey, channels, cb) {
|
|
if (!channels && channels.filter) {
|
|
// expected array
|
|
return void cb('[TYPE_ERROR] unpin expects channel list argument');
|
|
}
|
|
|
|
getChannelList(store, Sessions, publicKey, function (pinned) {
|
|
var session = beginSession(Sessions, publicKey);
|
|
|
|
// only unpin channels which are pinned
|
|
var toStore = channels.filter(function (channel) {
|
|
return pinned.indexOf(channel) !== -1;
|
|
});
|
|
|
|
if (toStore.length === 0) {
|
|
return void getHash(store, Sessions, publicKey, cb);
|
|
}
|
|
|
|
store.message(publicKey, JSON.stringify(['UNPIN', toStore]),
|
|
function (e) {
|
|
if (e) { return void cb(e); }
|
|
toStore.forEach(function (channel) {
|
|
delete session.channels[channel]; // = false;
|
|
});
|
|
|
|
getHash(store, Sessions, publicKey, cb);
|
|
});
|
|
});
|
|
};
|
|
|
|
var resetUserPins = function (store, Sessions, publicKey, channelList, cb) {
|
|
var session = beginSession(Sessions, publicKey);
|
|
|
|
var pins = session.channels = {};
|
|
|
|
store.message(publicKey, JSON.stringify(['RESET', channelList]),
|
|
function (e) {
|
|
if (e) { return void cb(e); }
|
|
channelList.forEach(function (channel) {
|
|
pins[channel] = true;
|
|
});
|
|
|
|
getHash(store, Sessions, publicKey, function (e, hash) {
|
|
cb(e, hash);
|
|
});
|
|
});
|
|
};
|
|
|
|
var getPrivilegedUserList = function (cb) {
|
|
Fs.readFile('./privileged.conf', 'utf8', function (e, body) {
|
|
if (e) {
|
|
if (e.code === 'ENOENT') {
|
|
return void cb(void 0, []);
|
|
}
|
|
return void (e.code);
|
|
}
|
|
var list = body.split(/\n/)
|
|
.map(function (line) {
|
|
return line.replace(/#.*$/, '').trim();
|
|
})
|
|
.filter(function (x) { return x; });
|
|
cb(void 0, list);
|
|
});
|
|
};
|
|
|
|
var isPrivilegedUser = function (publicKey, cb) {
|
|
getPrivilegedUserList(function (e, list) {
|
|
if (e) { return void cb(false); }
|
|
cb(list.indexOf(publicKey) !== -1);
|
|
});
|
|
};
|
|
|
|
var getLimit = function (cb) {
|
|
cb = cb; // TODO
|
|
};
|
|
|
|
var safeMkdir = function (path, cb) {
|
|
Fs.mkdir(path, function (e) {
|
|
if (!e || e.code === 'EEXIST') { return void cb(); }
|
|
cb(e);
|
|
});
|
|
};
|
|
|
|
var makeFilePath = function (root, id) {
|
|
if (typeof(id) !== 'string' || id.length <= 2) { return null; }
|
|
return Path.join(root, id.slice(0, 2), id);
|
|
};
|
|
|
|
var makeFileStream = function (root, id, cb) {
|
|
var stub = id.slice(0, 2);
|
|
var full = makeFilePath(root, id);
|
|
safeMkdir(Path.join(root, stub), function (e) {
|
|
if (e) { return void cb(e); }
|
|
|
|
try {
|
|
var stream = Fs.createWriteStream(full, {
|
|
flags: 'a',
|
|
encoding: 'binary',
|
|
});
|
|
stream.on('open', function () {
|
|
cb(void 0, stream);
|
|
});
|
|
} catch (err) {
|
|
cb('BAD_STREAM');
|
|
}
|
|
});
|
|
};
|
|
|
|
var upload = function (stagingPath, Sessions, publicKey, content, cb) {
|
|
var dec = new Buffer(Nacl.util.decodeBase64(content)); // jshint ignore:line
|
|
|
|
var session = Sessions[publicKey];
|
|
session.atime = +new Date();
|
|
if (!session.blobstage) {
|
|
makeFileStream(stagingPath, publicKey, function (e, stream) {
|
|
if (e) { return void cb(e); }
|
|
|
|
var blobstage = session.blobstage = stream;
|
|
blobstage.write(dec);
|
|
cb(void 0, dec.length);
|
|
});
|
|
} else {
|
|
session.blobstage.write(dec);
|
|
cb(void 0, dec.length);
|
|
}
|
|
};
|
|
|
|
var upload_cancel = function (stagingPath, Sessions, publicKey, cb) {
|
|
var path = makeFilePath(stagingPath, publicKey);
|
|
if (!path) {
|
|
console.log(stagingPath, publicKey);
|
|
console.log(path);
|
|
return void cb('NO_FILE');
|
|
}
|
|
|
|
Fs.unlink(path, function (e) {
|
|
if (e) { return void cb('E_UNLINK'); }
|
|
cb(void 0);
|
|
});
|
|
};
|
|
|
|
var isFile = function (filePath, cb) {
|
|
Fs.stat(filePath, function (e, stats) {
|
|
if (e) {
|
|
if (e.code === 'ENOENT') { return void cb(void 0, false); }
|
|
return void cb(e.message);
|
|
}
|
|
return void cb(void 0, stats.isFile());
|
|
});
|
|
};
|
|
|
|
var upload_complete = function (stagingPath, storePath, Sessions, publicKey, cb) {
|
|
var session = Sessions[publicKey];
|
|
|
|
if (session.blobstage && session.blobstage.close) {
|
|
session.blobstage.close();
|
|
delete session.blobstage;
|
|
}
|
|
|
|
var oldPath = makeFilePath(stagingPath, publicKey);
|
|
|
|
var tryRandomLocation = function (cb) {
|
|
var id = createChannelId();
|
|
var prefix = id.slice(0, 2);
|
|
var newPath = makeFilePath(storePath, id);
|
|
|
|
safeMkdir(Path.join(storePath, prefix), function (e) {
|
|
if (e) {
|
|
console.error(e);
|
|
return void cb('RENAME_ERR');
|
|
}
|
|
isFile(newPath, function (e, yes) {
|
|
if (e) {
|
|
console.error(e);
|
|
return void cb(e);
|
|
}
|
|
if (yes) {
|
|
return void tryRandomLocation(cb);
|
|
}
|
|
|
|
cb(void 0, newPath, id);
|
|
});
|
|
});
|
|
};
|
|
|
|
tryRandomLocation(function (e, newPath, id) {
|
|
Fs.rename(oldPath, newPath, function (e) {
|
|
if (e) {
|
|
console.error(e);
|
|
return cb(e);
|
|
}
|
|
|
|
cb(void 0, id);
|
|
});
|
|
});
|
|
};
|
|
|
|
var upload_status = function (stagingPath, Sessions, publicKey, cb) {
|
|
var filePath = makeFilePath(stagingPath, publicKey);
|
|
if (!filePath) { return void cb('E_INVALID_PATH'); }
|
|
isFile(filePath, function (e, yes) {
|
|
cb(e, yes);
|
|
});
|
|
};
|
|
|
|
/*::const ConfigType = require('./config.example.js');*/
|
|
RPC.create = function (config /*:typeof(ConfigType)*/, cb /*:(?Error, ?Function)=>void*/) {
|
|
// load pin-store...
|
|
console.log('loading rpc module...');
|
|
|
|
var Sessions = {};
|
|
|
|
var keyOrDefaultString = function (key, def) {
|
|
return typeof(config[key]) === 'string'? config[key]: def;
|
|
};
|
|
|
|
var pinPath = keyOrDefaultString('pinPath', './pins');
|
|
var blobPath = keyOrDefaultString('blobPath', './blob');
|
|
var blobStagingPath = keyOrDefaultString('blobStagingPath', './blobstage');
|
|
|
|
var store;
|
|
|
|
var rpc = function (
|
|
ctx /*:{ store: Object }*/,
|
|
data /*:Array<Array<any>>*/,
|
|
respond /*:(?string, ?Array<any>)=>void*/)
|
|
{
|
|
if (!Array.isArray(data)) {
|
|
return void respond('INVALID_ARG_FORMAT');
|
|
}
|
|
|
|
if (!data.length) {
|
|
return void respond("INSUFFICIENT_ARGS");
|
|
} else if (data.length !== 1) {
|
|
console.log('[UNEXPECTED_ARGUMENTS_LENGTH] %s', data.length);
|
|
}
|
|
|
|
var msg = data[0].slice(0);
|
|
|
|
if (!Array.isArray(msg)) {
|
|
return void respond('INVALID_ARG_FORMAT');
|
|
}
|
|
|
|
var signature = msg.shift();
|
|
var publicKey = msg.shift();
|
|
|
|
// make sure a user object is initialized in the cookie jar
|
|
beginSession(Sessions, publicKey);
|
|
|
|
var cookie = msg[0];
|
|
|
|
if (!isValidCookie(Sessions, publicKey, cookie)) {
|
|
// no cookie is fine if the RPC is to get a cookie
|
|
if (msg[1] !== 'COOKIE') {
|
|
return void respond('NO_COOKIE');
|
|
}
|
|
}
|
|
|
|
var serialized = JSON.stringify(msg);
|
|
|
|
if (!(serialized && typeof(publicKey) === 'string')) {
|
|
return void respond('INVALID_MESSAGE_OR_PUBLIC_KEY');
|
|
}
|
|
|
|
if (checkSignature(serialized, signature, publicKey) !== true) {
|
|
return void respond("INVALID_SIGNATURE_OR_PUBLIC_KEY");
|
|
}
|
|
|
|
var safeKey = publicKey.replace(/\//g, '-');
|
|
/* If you have gotten this far, you have signed the message with the
|
|
public key which you provided.
|
|
|
|
We can safely modify the state for that key
|
|
*/
|
|
|
|
// discard validated cookie from message
|
|
msg.shift();
|
|
|
|
var Respond = function (e, msg) {
|
|
var token = Sessions[publicKey].tokens.slice(-1)[0];
|
|
var cookie = makeCookie(token).join('|');
|
|
respond(e, [cookie].concat(typeof(msg) !== 'undefined' ?msg: []));
|
|
};
|
|
|
|
if (typeof(msg) !== 'object' || !msg.length) {
|
|
return void Respond('INVALID_MSG');
|
|
}
|
|
|
|
var deny = function () {
|
|
Respond('E_ACCESS_DENIED');
|
|
};
|
|
|
|
var handleMessage = function (privileged) {
|
|
switch (msg[0]) {
|
|
case 'COOKIE': return void Respond(void 0);
|
|
case 'RESET':
|
|
return resetUserPins(store, Sessions, safeKey, msg[1], function (e, hash) {
|
|
return void Respond(e, hash);
|
|
});
|
|
case 'PIN': // TODO don't pin if over the limit
|
|
// if over, send error E_OVER_LIMIT
|
|
return pinChannel(store, Sessions, safeKey, msg[1], function (e, hash) {
|
|
Respond(e, hash);
|
|
});
|
|
case 'UNPIN':
|
|
return unpinChannel(store, Sessions, safeKey, msg[1], function (e, hash) {
|
|
Respond(e, hash);
|
|
});
|
|
case 'GET_HASH':
|
|
return void getHash(store, Sessions, safeKey, function (e, hash) {
|
|
Respond(e, hash);
|
|
});
|
|
case 'GET_TOTAL_SIZE': // TODO cache this, since it will get called quite a bit
|
|
return getTotalSize(store, ctx.store, Sessions, safeKey, function (e, size) {
|
|
if (e) { return void Respond(e); }
|
|
Respond(e, size);
|
|
});
|
|
case 'GET_FILE_SIZE':
|
|
return void getFileSize(ctx.store, msg[1], Respond);
|
|
case 'GET_LIMIT': // TODO implement this and cache it per-user
|
|
return void getLimit(function (e, limit) {
|
|
limit = limit;
|
|
Respond('NOT_IMPLEMENTED');
|
|
});
|
|
case 'GET_MULTIPLE_FILE_SIZE':
|
|
return void getMultipleFileSize(ctx.store, msg[1], function (e, dict) {
|
|
if (e) { return void Respond(e); }
|
|
Respond(void 0, dict);
|
|
});
|
|
|
|
|
|
// restricted to privileged users...
|
|
case 'UPLOAD':
|
|
if (!privileged) { return deny(); }
|
|
return void upload(blobStagingPath, Sessions, safeKey, msg[1], function (e, len) {
|
|
Respond(e, len);
|
|
});
|
|
case 'UPLOAD_STATUS':
|
|
if (!privileged) { return deny(); }
|
|
return void upload_status(blobStagingPath, Sessions, safeKey, function (e, stat) {
|
|
Respond(e, stat);
|
|
});
|
|
case 'UPLOAD_COMPLETE':
|
|
if (!privileged) { return deny(); }
|
|
return void upload_complete(blobStagingPath, blobPath, Sessions, safeKey, function (e, hash) {
|
|
Respond(e, hash);
|
|
});
|
|
case 'UPLOAD_CANCEL':
|
|
if (!privileged) { return deny(); }
|
|
return void upload_cancel(blobStagingPath, Sessions, safeKey, function (e) {
|
|
Respond(e);
|
|
});
|
|
default:
|
|
return void Respond('UNSUPPORTED_RPC_CALL', msg);
|
|
}
|
|
};
|
|
|
|
// reject uploads unless explicitly enabled
|
|
if (config.enableUploads !== true) {
|
|
return void handleMessage(false);
|
|
}
|
|
|
|
// restrict upload capability unless explicitly disabled
|
|
if (config.restrictUploads === false) {
|
|
return void handleMessage(true);
|
|
}
|
|
|
|
// if session has not been authenticated, do so
|
|
var session = Sessions[publicKey];
|
|
if (typeof(session.privilege) !== 'boolean') {
|
|
return void isPrivilegedUser(publicKey, function (yes) {
|
|
session.privilege = yes;
|
|
handleMessage(yes);
|
|
});
|
|
}
|
|
|
|
// if authenticated, proceed
|
|
handleMessage(session.privilege);
|
|
};
|
|
|
|
Store.create({
|
|
filePath: pinPath,
|
|
}, function (s) {
|
|
store = s;
|
|
|
|
safeMkdir(blobPath, function (e) {
|
|
if (e) { throw e; }
|
|
safeMkdir(blobStagingPath, function (e) {
|
|
if (e) { throw e; }
|
|
cb(void 0, rpc);
|
|
// expire old sessions once per minute
|
|
setInterval(function () {
|
|
expireSessions(Sessions);
|
|
}, 60000);
|
|
});
|
|
});
|
|
});
|
|
};
|