Add syncPermissionsOnMove config option

master
Dragory 2019-03-06 20:50:24 +02:00
parent f8b5327ef6
commit cd3da4c4ec
2 changed files with 31 additions and 3 deletions

View File

@ -66,6 +66,7 @@ const defaultConfig = {
"ignoreAccidentalThreads": false, "ignoreAccidentalThreads": false,
"threadTimestamps": false, "threadTimestamps": false,
"allowMove": false, "allowMove": false,
"syncPermissionsOnMove": false,
"typingProxy": false, "typingProxy": false,
"typingProxyReverse": false, "typingProxyReverse": false,
"mentionUserInThreadHeader": false, "mentionUserInThreadHeader": false,

View File

@ -2,6 +2,7 @@ const config = require('../config');
const Eris = require('eris'); const Eris = require('eris');
const threadUtils = require('../threadUtils'); const threadUtils = require('../threadUtils');
const transliterate = require("transliteration"); const transliterate = require("transliteration");
const erisEndpoints = require('eris/lib/rest/Endpoints');
module.exports = bot => { module.exports = bot => {
const addInboxServerCommand = (...args) => threadUtils.addInboxServerCommand(bot, ...args); const addInboxServerCommand = (...args) => threadUtils.addInboxServerCommand(bot, ...args);
@ -53,9 +54,35 @@ module.exports = bot => {
const targetCategory = containsRankings[0][0]; const targetCategory = containsRankings[0][0];
await bot.editChannel(thread.channel_id, { try {
parentID: targetCategory.id await bot.editChannel(thread.channel_id, {
}); parentID: targetCategory.id
});
} catch (e) {
thread.postSystemMessage(`Failed to move thread: ${e.message}`);
return;
}
// If enabled, sync thread channel permissions with the category it's moved to
if (config.syncPermissionsOnMove) {
const newPerms = Array.from(targetCategory.permissionOverwrites.map(ow => {
return {
id: ow.id,
type: ow.type,
allow: ow.allow,
deny: ow.deny
};
}));
try {
await bot.requestHandler.request("PATCH", erisEndpoints.CHANNEL(thread.channel_id), true, {
permission_overwrites: newPerms
});
} catch (e) {
thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}, but failed to sync permissions: ${e.message}`);
return;
}
}
thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}`); thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}`);
}); });