2018-03-11 17:17:14 -04:00
|
|
|
const config = require('../config');
|
|
|
|
const Eris = require('eris');
|
|
|
|
const threadUtils = require('../threadUtils');
|
|
|
|
const transliterate = require("transliteration");
|
|
|
|
|
|
|
|
module.exports = bot => {
|
|
|
|
const addInboxServerCommand = (...args) => threadUtils.addInboxServerCommand(bot, ...args);
|
|
|
|
|
|
|
|
addInboxServerCommand('move', async (msg, args, thread) => {
|
|
|
|
if (! config.allowMove) return;
|
|
|
|
|
|
|
|
if (! thread) return;
|
|
|
|
|
|
|
|
const searchStr = args[0];
|
|
|
|
if (! searchStr || searchStr.trim() === '') return;
|
|
|
|
|
|
|
|
const normalizedSearchStr = transliterate.slugify(searchStr);
|
|
|
|
|
|
|
|
const categories = msg.channel.guild.channels.filter(c => {
|
|
|
|
// Filter to categories that are not the thread's current parent category
|
|
|
|
return (c instanceof Eris.CategoryChannel) && (c.id !== msg.channel.parentID);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (categories.length === 0) return;
|
|
|
|
|
|
|
|
// See if any category name contains a part of the search string
|
|
|
|
const containsRankings = categories.map(cat => {
|
|
|
|
const normalizedCatName = transliterate.slugify(cat.name);
|
|
|
|
|
2018-04-24 19:21:24 -04:00
|
|
|
let i = 0;
|
|
|
|
do {
|
|
|
|
if (! normalizedCatName.includes(normalizedSearchStr.slice(0, i + 1))) break;
|
|
|
|
i++;
|
|
|
|
} while (i < normalizedSearchStr.length);
|
2018-03-11 17:17:14 -04:00
|
|
|
|
|
|
|
return [cat, i];
|
|
|
|
});
|
|
|
|
|
|
|
|
// Sort by best match
|
|
|
|
containsRankings.sort((a, b) => {
|
|
|
|
return a[1] > b[1] ? -1 : 1;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (containsRankings[0][1] === 0) {
|
|
|
|
thread.postSystemMessage('No matching category');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const targetCategory = containsRankings[0][0];
|
|
|
|
|
|
|
|
await bot.editChannel(thread.channel_id, {
|
|
|
|
parentID: targetCategory.id
|
|
|
|
});
|
|
|
|
|
|
|
|
thread.postSystemMessage(`Thread moved to ${targetCategory.name.toUpperCase()}`);
|
|
|
|
});
|
|
|
|
};
|