Always return mock channel from getModmailChannel
parent
05d9653147
commit
c0b0900fa2
46
index.js
46
index.js
|
@ -207,47 +207,38 @@ function getModmailChannelInfo(channel) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This function doesn't actually return the channel object, but an object like {id, _wasCreated}
|
||||||
|
// This is because we can't trust the guild.channels list to actually contain our channel, even if it exists
|
||||||
|
// (has to do with the api events' consistency), and we only cache IDs, so we return an object that can be
|
||||||
|
// constructed from just the ID; we do this even if we find a matching channel so the returned object's signature is consistent
|
||||||
function getModmailChannel(user, allowCreate = true) {
|
function getModmailChannel(user, allowCreate = true) {
|
||||||
|
// If the channel id's in the cache, return that
|
||||||
if (modMailChannels[user.id]) {
|
if (modMailChannels[user.id]) {
|
||||||
// Cached
|
|
||||||
const channel = modMailGuild.channels.get(modMailChannels[user.id]);
|
|
||||||
if (channel) {
|
|
||||||
return Promise.resolve(channel);
|
|
||||||
} else {
|
|
||||||
// FIXME: Temp fix, return mock channel and assume it exists.. maybe
|
|
||||||
const channelId = modMailChannels[user.id];
|
|
||||||
return Promise.resolve({
|
return Promise.resolve({
|
||||||
id: channelId,
|
id: channelId,
|
||||||
name: 'temp-mock-channel',
|
_wasCreated: false,
|
||||||
createMessage: function() {
|
|
||||||
return bot.createMessage(channelId, ...arguments);
|
|
||||||
},
|
|
||||||
mention: `<#${channelId}>`,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// If the cache value was invalid, remove it
|
|
||||||
delete modMailChannels[user.id];
|
|
||||||
console.log(`[NOTE] INVALID CACHE VALUE FOR ${user.id}`);
|
|
||||||
console.log(`[DEBUG] Channels:\n` + modMailGuild.channels.map(channel => ` ${channel.id} / ${channel.name}`).join('\n'));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try to find a matching channel
|
// Try to find a matching channel
|
||||||
let candidate = modMailGuild.channels.find(c => {
|
let candidate = modMailGuild.channels.find(c => {
|
||||||
const info = getModmailChannelInfo(c);
|
const info = getModmailChannelInfo(c);
|
||||||
console.log(`[DEBUG] ${info && info.userId} === ${user.id} -> ${info && info.userId === user.id ? 'true' : 'false'}`);
|
|
||||||
return info && info.userId === user.id;
|
return info && info.userId === user.id;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (candidate) {
|
if (candidate) {
|
||||||
return Promise.resolve(candidate);
|
// If we found a matching channel, return that
|
||||||
|
return Promise.resolve({
|
||||||
|
id: candidate.id,
|
||||||
|
_wasCreated: false,
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
|
// If one is not found, create and cache it
|
||||||
if (! allowCreate) return Promise.resolve(null);
|
if (! allowCreate) return Promise.resolve(null);
|
||||||
|
|
||||||
let cleanName = user.username.replace(/[^a-zA-Z0-9]/ig, '').toLowerCase().trim();
|
let cleanName = user.username.replace(/[^a-zA-Z0-9]/ig, '').toLowerCase().trim();
|
||||||
if (cleanName === '') cleanName = 'unknown';
|
if (cleanName === '') cleanName = 'unknown';
|
||||||
|
|
||||||
// If one is not found, create and cache it
|
|
||||||
console.log(`[NOTE] Since no candidate was found, creating channel ${cleanName}-${user.discriminator}`);
|
console.log(`[NOTE] Since no candidate was found, creating channel ${cleanName}-${user.discriminator}`);
|
||||||
return modMailGuild.createChannel(`${cleanName}-${user.discriminator}`)
|
return modMailGuild.createChannel(`${cleanName}-${user.discriminator}`)
|
||||||
.then(channel => {
|
.then(channel => {
|
||||||
|
@ -262,8 +253,11 @@ function getModmailChannel(user, allowCreate = true) {
|
||||||
})
|
})
|
||||||
.then(channel => {
|
.then(channel => {
|
||||||
modMailChannels[user.id] = channel.id;
|
modMailChannels[user.id] = channel.id;
|
||||||
channel._wasCreated = true;
|
|
||||||
return channel;
|
return {
|
||||||
|
id: channel.id,
|
||||||
|
_wasCreated: true,
|
||||||
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -314,7 +308,7 @@ bot.on('messageCreate', (msg) => {
|
||||||
return getLogsByUserId(msg.author.id).then(logs => {
|
return getLogsByUserId(msg.author.id).then(logs => {
|
||||||
if (channel._wasCreated) {
|
if (channel._wasCreated) {
|
||||||
if (logs.length > 0) {
|
if (logs.length > 0) {
|
||||||
channel.createMessage(`${logs.length} previous modmail logs with this user. Use !logs ${msg.author.id} for details.`);
|
bot.createMessage(channel.id, `${logs.length} previous modmail logs with this user. Use !logs ${msg.author.id} for details.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
let creationNotificationMessage = `New modmail thread: ${channel.mention}`;
|
let creationNotificationMessage = `New modmail thread: ${channel.mention}`;
|
||||||
|
@ -333,7 +327,7 @@ bot.on('messageCreate', (msg) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const timestamp = getTimestamp();
|
const timestamp = getTimestamp();
|
||||||
channel.createMessage(`[${timestamp}] « **${msg.author.username}#${msg.author.discriminator}:** ${content}`);
|
bot.createMessage(channel.id, `[${timestamp}] « **${msg.author.username}#${msg.author.discriminator}:** ${content}`);
|
||||||
}); // getLogsByUserId
|
}); // getLogsByUserId
|
||||||
}); // formatRelayedPM
|
}); // formatRelayedPM
|
||||||
}); // getModmailChannel
|
}); // getModmailChannel
|
||||||
|
@ -354,7 +348,7 @@ bot.on('messageUpdate', (msg, oldMessage) => {
|
||||||
|
|
||||||
getModmailChannel(msg.author, false).then(channel => {
|
getModmailChannel(msg.author, false).then(channel => {
|
||||||
if (! channel) return;
|
if (! channel) return;
|
||||||
channel.createMessage(`**The user edited their message:**\n**Before:** ${oldContent}\n**After:** ${newContent}`);
|
bot.createMessage(channel.id, `**The user edited their message:**\n**Before:** ${oldContent}\n**After:** ${newContent}`);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue