mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-02 08:41:25 +03:00
...
This commit is contained in:
@@ -10,6 +10,7 @@ const ChildLogger = require('leekslazylogger').ChildLogger;
|
||||
const log = new ChildLogger();
|
||||
const lineReader = require('line-reader');
|
||||
const fs = require('fs');
|
||||
const dtf = require('@eartharoid/dtf');
|
||||
const config = require('../../user/config');
|
||||
|
||||
module.exports.create = (client, channel) => {
|
||||
@@ -27,24 +28,73 @@ module.exports.create = (client, channel) => {
|
||||
};
|
||||
|
||||
|
||||
module.exports.addMessage = (client, channel, message) => {
|
||||
// if !entities.users.user, add
|
||||
module.exports.addMessage = async (client, message) => {
|
||||
|
||||
if(config.transcripts.text.enabled) { // text transcripts
|
||||
let path = `user/transcripts/text/${message.channel.id}.txt`,
|
||||
time = dtf('HH:mm:ss n_D MMM YY', message.createdAt),
|
||||
msg = message.cleanContent;
|
||||
message.attachments.each(a => msg += '\n' + a.url);
|
||||
let string = `[${time}] [${message.author.tag}] :> ${msg}`;
|
||||
fs.appendFileSync(path, string + '\n');
|
||||
}
|
||||
|
||||
if(config.transcripts.web.enabled) { // web archives
|
||||
let raw = `user/transcripts/raw/${message.channel.id}.log`,
|
||||
json = `user/transcripts/raw/entities/${message.channel.id}.json`;
|
||||
|
||||
let embeds = [];
|
||||
for (let embed in message.embeds)
|
||||
embeds.push(message.embeds[embed].toJSON());
|
||||
|
||||
// message
|
||||
fs.appendFileSync(raw, JSON.stringify({
|
||||
id: message.id,
|
||||
author: message.author.id,
|
||||
content: message.content, // do not use cleanContent!
|
||||
time: message.createdTimestamp,
|
||||
embeds: embeds,
|
||||
attachments: [...message.attachments.values()]
|
||||
}) + '\n');
|
||||
|
||||
// channel entities
|
||||
if(!fs.existsSync(json))
|
||||
await fs.writeFileSync(json, '{}');
|
||||
|
||||
let entities = await JSON.parse(fs.readFileSync(json));
|
||||
|
||||
if(!entities.users[message.author.id]) {
|
||||
entities.users[message.author.id] = {
|
||||
avatar: message.author.avatarURL(),
|
||||
username: message.author.username,
|
||||
discriminator: message.author.discriminator,
|
||||
displayName: message.member.displayName,
|
||||
color: message.member.displayColor,
|
||||
badge: message.author.bot ? 'bot' : null
|
||||
};
|
||||
}
|
||||
|
||||
message.mentions.channels.each(c => entities.channels[c.id].name = c.name);
|
||||
|
||||
message.mentions.roles.each(r => entities.roles[r.id] = {
|
||||
name: r.name,
|
||||
color: r.color
|
||||
});
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.export = (client, channel) => {
|
||||
let path = `user/transcripts/raw/${channel.id}.log`;
|
||||
if(config.transcripts.web.enabled && fs.existsSync(path)) {
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
if(!config.transcripts.web.enabled || !fs.existsSync(path))
|
||||
return reject(false);
|
||||
|
||||
lineReader.eachLine(path, (line, last) => {
|
||||
console.log(line);
|
||||
//if raw id exists, overwrite previous
|
||||
// if raw id exists, overwrite previous
|
||||
// also: channel_name
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @TODO users, roles, etc
|
||||
* check channel.members again!
|
||||
* */
|
||||
});
|
||||
};
|
@@ -1,180 +0,0 @@
|
||||
/**
|
||||
*
|
||||
* @name DiscordTickets
|
||||
* @author eartharoid <contact@eartharoid.me>
|
||||
* @license GNU-GPLv3
|
||||
*
|
||||
*/
|
||||
|
||||
const ChildLogger = require('leekslazylogger').ChildLogger;
|
||||
const log = new ChildLogger();
|
||||
const Discord = require('discord.js');
|
||||
const fs = require('fs');
|
||||
const config = require('../../user/config');
|
||||
|
||||
module.exports = async (client, Ticket, Setting) => {
|
||||
|
||||
let panelID = await Setting.findOne({ where: { key: 'panel_msg_id' } });
|
||||
if (!panelID) return;
|
||||
|
||||
let chanID = await Setting.findOne({ where: { key: 'panel_chan_id' } });
|
||||
if (!chanID) return;
|
||||
|
||||
let channel = client.channels.cache.get(chanID.get('value'));
|
||||
if (!channel)
|
||||
return Setting.destroy({ where: { key: 'panel_chan_id' } });
|
||||
|
||||
let panel = channel.messages.cache.get(panelID.get('value'));
|
||||
if(!panel)
|
||||
return Setting.destroy({ where: { key: 'panel_msg_id' } });
|
||||
|
||||
|
||||
const collector = panel.createReactionCollector(
|
||||
(r, u) => r.emoji.name === config.panel.reaction && u.id !== client.user.id);
|
||||
|
||||
collector.on('collect', async (r, u) => {
|
||||
await r.users.remove(u.id); // effectively cancel reaction
|
||||
|
||||
const supportRole = channel.guild.roles.cache.get(config.staff_role);
|
||||
if (!supportRole)
|
||||
return channel.send(
|
||||
new Discord.MessageEmbed()
|
||||
.setColor(config.err_colour)
|
||||
.setTitle(':x: **Error**')
|
||||
.setDescription(`${config.name} has not been set up correctly. Could not find a 'support team' role with the id \`${config.staff_role}\``)
|
||||
.setFooter(channel.guild.name, channel.guild.iconURL())
|
||||
);
|
||||
|
||||
let tickets = await Ticket.findAndCountAll({
|
||||
where: {
|
||||
creator: u.id,
|
||||
open: true
|
||||
},
|
||||
limit: config.tickets.max
|
||||
});
|
||||
|
||||
if (tickets.count >= config.tickets.max) {
|
||||
let ticketList = [];
|
||||
for (let t in tickets.rows) {
|
||||
let desc = tickets.rows[t].topic.substring(0, 30);
|
||||
ticketList
|
||||
.push(`<#${tickets.rows[t].channel}>: \`${desc}${desc.length > 30 ? '...' : ''}\``);
|
||||
}
|
||||
let dm = u.dmChannel || await u.createDM();
|
||||
|
||||
let m = await dm.send(
|
||||
new Discord.MessageEmbed()
|
||||
.setColor(config.err_colour)
|
||||
.setAuthor(u.username, u.displayAvatarURL())
|
||||
.setTitle(`:x: **You already have ${tickets.count} or more open tickets**`)
|
||||
.setDescription(`Use \`${config.prefix}close\` to close unneeded tickets.\n\n${ticketList.join(',\n')}`)
|
||||
.setFooter(channel.guild.name + ' | This message will be deleted in 15 seconds', channel.guild.iconURL())
|
||||
);
|
||||
|
||||
return m.delete({ timeout: 15000 });
|
||||
}
|
||||
|
||||
let topic = 'No topic given (created via panel)';
|
||||
|
||||
let ticket = await Ticket.create({
|
||||
channel: '',
|
||||
creator: u.id,
|
||||
open: true,
|
||||
archived: false,
|
||||
topic: topic
|
||||
});
|
||||
|
||||
let name = 'ticket-' + ticket.get('id');
|
||||
|
||||
channel.guild.channels.create(name, {
|
||||
type: 'text',
|
||||
topic: `${u} | ${topic}`,
|
||||
parent: config.tickets.category,
|
||||
permissionOverwrites: [{
|
||||
id: channel.guild.roles.everyone,
|
||||
deny: ['VIEW_CHANNEL', 'SEND_MESSAGES']
|
||||
},
|
||||
{
|
||||
id: channel.guild.member(u),
|
||||
allow: ['VIEW_CHANNEL', 'SEND_MESSAGES', 'ATTACH_FILES', 'READ_MESSAGE_HISTORY']
|
||||
},
|
||||
{
|
||||
id: supportRole,
|
||||
allow: ['VIEW_CHANNEL', 'SEND_MESSAGES', 'ATTACH_FILES', 'READ_MESSAGE_HISTORY']
|
||||
}
|
||||
],
|
||||
reason: 'User requested a new support ticket channel'
|
||||
}).then(async c => {
|
||||
|
||||
Ticket.update({
|
||||
channel: c.id
|
||||
}, {
|
||||
where: {
|
||||
id: ticket.id
|
||||
}
|
||||
});
|
||||
|
||||
let ping;
|
||||
switch (config.tickets.ping) {
|
||||
case 'staff':
|
||||
ping = `<@&${config.staff_role}>,\n`;
|
||||
break;
|
||||
case false:
|
||||
ping = '';
|
||||
break;
|
||||
default:
|
||||
ping = `@${config.tickets.ping},\n`;
|
||||
}
|
||||
|
||||
await c.send(ping + `${u} has created a new ticket`);
|
||||
|
||||
if (config.tickets.send_img) {
|
||||
const images = fs.readdirSync('user/images');
|
||||
await c.send({
|
||||
files: [
|
||||
'user/images/' +
|
||||
images[Math.floor(Math.random() * images.length)]
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
let text = config.tickets.text
|
||||
.replace('{{ name }}', u.username)
|
||||
.replace('{{ tag }}', u);
|
||||
|
||||
|
||||
let w = await c.send(
|
||||
new Discord.MessageEmbed()
|
||||
.setColor(config.colour)
|
||||
.setAuthor(u.username, u.displayAvatarURL())
|
||||
.setDescription(text)
|
||||
.addField('Topic', `\`${topic}\``)
|
||||
.setFooter(channel.guild.name, channel.guild.iconURL())
|
||||
);
|
||||
|
||||
if (config.tickets.pin)
|
||||
await w.pin();
|
||||
// await w.pin().then(m => m.delete()); // oopsie, this deletes the pinned message
|
||||
|
||||
if (config.logs.discord.enabled)
|
||||
client.channels.cache.get(config.logs.discord.channel).send(
|
||||
new Discord.MessageEmbed()
|
||||
.setColor(config.colour)
|
||||
.setAuthor(u.username, u.displayAvatarURL())
|
||||
.setTitle('New ticket (via panel)')
|
||||
.setDescription(`\`${topic}\``)
|
||||
.addField('Creator', u, true)
|
||||
.addField('Channel', c, true)
|
||||
.setFooter(channel.guild.name, channel.guild.iconURL())
|
||||
.setTimestamp()
|
||||
);
|
||||
|
||||
log.info(`${u.tag} created a new ticket (#${name}) via panel`);
|
||||
|
||||
|
||||
}).catch(log.error);
|
||||
|
||||
|
||||
});
|
||||
|
||||
};
|
Reference in New Issue
Block a user