mirror of https://github.com/xwiki-labs/cryptpad
merge staging and do a little lint compliance
This commit is contained in:
parent
f478ae725d
commit
a4be6185de
|
@ -112,6 +112,15 @@ module.exports.create = function (config, cb) {
|
|||
},
|
||||
channelOpen: function (Server, channelName, userId) {
|
||||
Env.channel_cache[channelName] = Env.channel_cache[channelName] || {};
|
||||
|
||||
|
||||
// XXX RESTRICT
|
||||
// this event is emitted whenever a user joins a channel.
|
||||
// if that channel is restricted then we should forcefully disconnect them.
|
||||
// we won't know that it's restricted until we load its metadata.
|
||||
// as long as metadata is in memory as long as anyone is sending messages to a channel
|
||||
// then we won't broadcast messages to unauthorized users
|
||||
|
||||
Server.send(userId, [
|
||||
0,
|
||||
Env.id,
|
||||
|
|
|
@ -789,9 +789,9 @@ const handleGetFullHistory = function (Env, Server, seq, userId, parsed) {
|
|||
};
|
||||
|
||||
const directMessageCommands = {
|
||||
GET_HISTORY: handleGetHistory,
|
||||
GET_HISTORY_RANGE: handleGetHistoryRange,
|
||||
GET_FULL_HISTORY: handleGetFullHistory,
|
||||
GET_HISTORY: handleGetHistory, // XXX RESTRICT
|
||||
GET_HISTORY_RANGE: handleGetHistoryRange, // XXX RESTRICT
|
||||
GET_FULL_HISTORY: handleGetFullHistory, // XXX RESTRICT
|
||||
};
|
||||
|
||||
/* onDirectMessage
|
||||
|
|
|
@ -21,16 +21,49 @@ var isValidOwner = function (owner) {
|
|||
|
||||
// ["RESTRICT_ACCESS", [true], 1561623438989]
|
||||
// ["RESTRICT_ACCESS", [false], 1561623438989]
|
||||
// commands.RESTRICT_ACCESS = function (meta, args) {};
|
||||
commands.RESTRICT_ACCESS = function (meta, args) {
|
||||
if (!Array.isArray(args) || typeof(args[0]) !== 'boolean') {
|
||||
throw new Error('INVALID_STATE');
|
||||
}
|
||||
|
||||
var bool = args[0];
|
||||
|
||||
// reject the proposed command if there is no change in state
|
||||
if (meta.restricted === bool) { return false; }
|
||||
|
||||
// apply the new state
|
||||
meta.restricted = args[0];
|
||||
|
||||
// if you're disabling access restrictions then you can assume
|
||||
// then there is nothing more to do. Leave the existing list as-is
|
||||
if (!bool) { return true; }
|
||||
|
||||
// you're all set if an allow list already exists
|
||||
if (Array.isArray(meta.allowed)) { return true; }
|
||||
|
||||
// otherwise define it
|
||||
meta.allowed = [];
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
// ["ADD_ALLOWED", ["7eEqelGso3EBr5jHlei6av4r9w2B9XZiGGwA1EgZ-5I=", ...], 1561623438989]
|
||||
// commands.ADD_ALLOWED = function (meta, args) {};
|
||||
commands.ADD_ALLOWED = function (meta, args) {
|
||||
args = args;
|
||||
throw new Error('NOT_IMPLEMENTED');
|
||||
};
|
||||
|
||||
// ["RM_ALLOWED", ["7eEqelGso3EBr5jHlei6av4r9w2B9XZiGGwA1EgZ-5I=", ...], 1561623438989]
|
||||
// commands.RM_ALLOWED = function (meta, args) {};
|
||||
commands.RM_ALLOWED = function (meta, args) {
|
||||
args = args;
|
||||
throw new Error('NOT_IMPLEMENTED');
|
||||
};
|
||||
|
||||
// ["RESET_ALLOWED", ["7eEqelGso3EBr5jHlei6av4r9w2B9XZiGGwA1EgZ-5I=", ...], 1561623438989]
|
||||
// commands.RESET_ALLOWED = function (meta, args) {};
|
||||
commands.RESET_ALLOWED = function (meta, args) {
|
||||
args = args;
|
||||
throw new Error('NOT_IMPLEMENTED');
|
||||
};
|
||||
|
||||
// ["ADD_OWNERS", ["7eEqelGso3EBr5jHlei6av4r9w2B9XZiGGwA1EgZ-5I="], 1561623438989]
|
||||
commands.ADD_OWNERS = function (meta, args) {
|
||||
|
|
|
@ -18,8 +18,8 @@ const UNAUTHENTICATED_CALLS = {
|
|||
GET_DELETED_PADS: Pinning.getDeletedPads,
|
||||
IS_CHANNEL_PINNED: Pinning.isChannelPinned,
|
||||
IS_NEW_CHANNEL: Channel.isNewChannel,
|
||||
WRITE_PRIVATE_MESSAGE: Channel.writePrivateMessage,
|
||||
GET_METADATA: Metadata.getMetadata,
|
||||
WRITE_PRIVATE_MESSAGE: Channel.writePrivateMessage, // XXX RESTRICT
|
||||
GET_METADATA: Metadata.getMetadata, // XXX RESTRICT
|
||||
};
|
||||
|
||||
var isUnauthenticateMessage = function (msg) {
|
||||
|
|
Loading…
Reference in New Issue