fix function signature for trimHistory RPC
This commit is contained in:
parent
49b082c032
commit
5808c534b5
@ -93,7 +93,15 @@ Channel.removeOwnedChannel = function (Env, safeKey, channelId, cb) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
Channel.removeOwnedChannelHistory = function (Env, channelId, unsafeKey, hash, cb) { // XXX UNSAFE
|
Channel.trimHistory = function (Env, safeKey, data, cb) {
|
||||||
|
if (!(data && typeof(data.channel) === 'string' && typeof(data.hash) === 'string' && data.hash.length === 64)) {
|
||||||
|
return void cb('INVALID_ARGS');
|
||||||
|
}
|
||||||
|
|
||||||
|
var channelId = data.channel;
|
||||||
|
var unsafeKey = Util.unescapeKeyCharacters(safeKey);
|
||||||
|
var hash = data.hash;
|
||||||
|
|
||||||
nThen(function (w) {
|
nThen(function (w) {
|
||||||
Metadata.getMetadata(Env, channelId, w(function (err, metadata) {
|
Metadata.getMetadata(Env, channelId, w(function (err, metadata) {
|
||||||
if (err) { return void cb(err); }
|
if (err) { return void cb(err); }
|
||||||
|
|||||||
@ -118,6 +118,7 @@ const AUTHENTICATED_USER_TARGETED = {
|
|||||||
UNPIN: Pinning.unpinChannel,
|
UNPIN: Pinning.unpinChannel,
|
||||||
CLEAR_OWNED_CHANNEL: Channel.clearOwnedChannel,
|
CLEAR_OWNED_CHANNEL: Channel.clearOwnedChannel,
|
||||||
REMOVE_OWNED_CHANNEL: Channel.removeOwnedChannel,
|
REMOVE_OWNED_CHANNEL: Channel.removeOwnedChannel,
|
||||||
|
TRIM_HISTORY: Channel.trimHistory,
|
||||||
UPLOAD_STATUS: Upload.status,
|
UPLOAD_STATUS: Upload.status,
|
||||||
UPLOAD: Upload.upload,
|
UPLOAD: Upload.upload,
|
||||||
UPLOAD_COMPLETE: Upload.complete,
|
UPLOAD_COMPLETE: Upload.complete,
|
||||||
@ -166,11 +167,6 @@ var handleAuthenticatedMessage = function (Env, map) {
|
|||||||
|
|
||||||
switch (msg[0]) {
|
switch (msg[0]) {
|
||||||
case 'COOKIE': return void Respond(void 0);
|
case 'COOKIE': return void Respond(void 0);
|
||||||
case 'TRIM_OWNED_CHANNEL_HISTORY':
|
|
||||||
return void Channel.removeOwnedChannelHistory(Env, msg[1], publicKey, msg[2], function (e) { // XXX USER_TARGETED_DOUBLE
|
|
||||||
if (e) { return void Respond(e); }
|
|
||||||
Respond(void 0, 'OK');
|
|
||||||
});
|
|
||||||
case 'WRITE_LOGIN_BLOCK':
|
case 'WRITE_LOGIN_BLOCK':
|
||||||
return void Block.writeLoginBlock(Env, msg[1], function (e) { // XXX SPECIAL
|
return void Block.writeLoginBlock(Env, msg[1], function (e) { // XXX SPECIAL
|
||||||
if (e) {
|
if (e) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user