forked from Supositware/Haha-Yes
Join/Leave message
This commit is contained in:
parent
7e186a07a9
commit
01a2c9bab5
2 changed files with 104 additions and 0 deletions
52
events/client/guildMemberAdd.js
Normal file
52
events/client/guildMemberAdd.js
Normal file
|
@ -0,0 +1,52 @@
|
|||
import db from '../../models/index.js';
|
||||
import { rand } from '../../utils/rand.js';
|
||||
|
||||
export default {
|
||||
name: 'guildMemberAdd',
|
||||
async execute(member, client) {
|
||||
const join = await db.joinChannel.findOne({ where: { guildID: member.guild.id } });
|
||||
|
||||
if (join) {
|
||||
const channel = client.channels.resolve(join.get('channelID'));
|
||||
|
||||
let welcomeMessage = join.get('message');
|
||||
|
||||
const invite = new RegExp(/(https?:\/\/)?(www\.)?discord(?:app\.com|\.gg)[/invite/]?(?:(?!.*[Ii10OolL]).[a-zA-Z0-9]{5,6}|[a-zA-Z0-9-]{2,32})/g);
|
||||
|
||||
|
||||
let username = member.user.username;
|
||||
let user = member.user;
|
||||
if (username.match(invite)) {
|
||||
username = username.replace(/(https?:\/\/)?(www\.)?discord(?:app\.com|\.gg)[/invite/]?(?:(?!.*[Ii10OolL]).[a-zA-Z0-9]{5,6}|[a-zA-Z0-9-]{2,32})/g, '[REDACTED]');
|
||||
user = username;
|
||||
}
|
||||
|
||||
welcomeMessage = welcomeMessage.replace(/\[member\]/g, username);
|
||||
welcomeMessage = welcomeMessage.replace(/\[memberPing\]/g, user);
|
||||
welcomeMessage = welcomeMessage.replace(/\[server\]/g, member.guild.name);
|
||||
|
||||
// add attachment
|
||||
let attach;
|
||||
if (welcomeMessage.includes('[attach:')) {
|
||||
attach = welcomeMessage.split(/(\[attach:.*?])/);
|
||||
for (let i = 0, l = attach.length; i < l; i++) {
|
||||
if (attach[i].includes('[attach:')) {
|
||||
attach = attach[i].replace('[attach:', '').slice(0, -1);
|
||||
i = attach.length;
|
||||
}
|
||||
}
|
||||
welcomeMessage = welcomeMessage.replace(/(\[attach:.*?])/, '');
|
||||
}
|
||||
|
||||
welcomeMessage = rand(welcomeMessage);
|
||||
|
||||
|
||||
if (attach) {
|
||||
return channel.send({ content: welcomeMessage, files: [attach] });
|
||||
}
|
||||
else {
|
||||
return channel.send({ content: welcomeMessage });
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
52
events/client/guildMemberRemove.js
Normal file
52
events/client/guildMemberRemove.js
Normal file
|
@ -0,0 +1,52 @@
|
|||
import db from '../../models/index.js';
|
||||
import { rand } from '../../utils/rand.js';
|
||||
|
||||
export default {
|
||||
name: 'guildMemberRemove',
|
||||
async execute(member, client) {
|
||||
const leave = await db.leaveChannel.findOne({ where: { guildID: member.guild.id } });
|
||||
|
||||
if (leave) {
|
||||
const channel = client.channels.resolve(leave.get('channelID'));
|
||||
|
||||
let welcomeMessage = leave.get('message');
|
||||
|
||||
const invite = new RegExp(/(https?:\/\/)?(www\.)?discord(?:app\.com|\.gg)[/invite/]?(?:(?!.*[Ii10OolL]).[a-zA-Z0-9]{5,6}|[a-zA-Z0-9-]{2,32})/g);
|
||||
|
||||
|
||||
let username = member.user.username;
|
||||
let user = member.user;
|
||||
if (username.match(invite)) {
|
||||
username = username.replace(/(https?:\/\/)?(www\.)?discord(?:app\.com|\.gg)[/invite/]?(?:(?!.*[Ii10OolL]).[a-zA-Z0-9]{5,6}|[a-zA-Z0-9-]{2,32})/g, '[REDACTED]');
|
||||
user = username;
|
||||
}
|
||||
|
||||
welcomeMessage = welcomeMessage.replace(/\[member\]/g, username);
|
||||
welcomeMessage = welcomeMessage.replace(/\[memberPing\]/g, user);
|
||||
welcomeMessage = welcomeMessage.replace(/\[server\]/g, member.guild.name);
|
||||
|
||||
// add attachment
|
||||
let attach;
|
||||
if (welcomeMessage.includes('[attach:')) {
|
||||
attach = welcomeMessage.split(/(\[attach:.*?])/);
|
||||
for (let i = 0, l = attach.length; i < l; i++) {
|
||||
if (attach[i].includes('[attach:')) {
|
||||
attach = attach[i].replace('[attach:', '').slice(0, -1);
|
||||
i = attach.length;
|
||||
}
|
||||
}
|
||||
welcomeMessage = welcomeMessage.replace(/(\[attach:.*?])/, '');
|
||||
}
|
||||
|
||||
welcomeMessage = rand(welcomeMessage);
|
||||
|
||||
|
||||
if (attach) {
|
||||
return channel.send({ content: welcomeMessage, files: [attach] });
|
||||
}
|
||||
else {
|
||||
return channel.send({ content: welcomeMessage });
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
Loading…
Reference in a new issue