forked from discord-tickets/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
165 lines (150 loc) · 4.71 KB
/
questions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
const { Modal } = require('@eartharoid/dbf');
const { EmbedBuilder } = require('discord.js');
const ExtendedEmbedBuilder = require('../lib/embed');
const { logTicketEvent } = require('../lib/logging');
const { reusable } = require('../lib/threads');
const { cleanCodeBlockContent } = require('discord.js');
module.exports = class QuestionsModal extends Modal {
constructor(client, options) {
super(client, {
...options,
id: 'questions',
});
}
/**
*
* @param {*} id
* @param {import("discord.js").ModalSubmitInteraction} interaction
*/
async run(id, interaction) {
/** @type {import("client")} */
const client = this.client;
if (id.edit) {
const worker = await reusable('crypto');
try {
await interaction.deferReply({ ephemeral: true });
const { category } = await client.prisma.ticket.findUnique({
select: { category: { select: { customTopic: true } } },
where: { id: interaction.channel.id },
});
const select = {
createdById: true,
guild: {
select: {
footer: true,
locale: true,
primaryColour: true,
successColour: true,
},
},
id: true,
openingMessageId: true,
questionAnswers: { include: { question: true } },
};
const original = await client.prisma.ticket.findUnique({
select,
where: { id: interaction.channel.id },
});
const plainTextAnswers = await Promise.all(
original.questionAnswers
.map(async answer => ({
after: interaction.fields.getTextInputValue(String(answer.id)),
before: answer.value ? await worker.decrypt(answer.value) : '',
id: answer.id,
question: answer.question,
})),
);
let topic;
if (category.customTopic) {
const customTopicAnswer = original.questionAnswers.find(a => a.question.id === category.customTopic);
if (!customTopicAnswer) throw new Error('Custom topic answer not found');
topic = interaction.fields.getTextInputValue(String(customTopicAnswer.id));
}
const ticket = await client.prisma.ticket.update({
data: {
questionAnswers: {
update: await Promise.all(
interaction.fields.fields
.map(async f => ({
data: { value: f.value ? await worker.encrypt(f.value) : '' },
where: { id: Number(f.customId) },
})),
),
},
topic: topic ? await worker.encrypt(topic) : null,
},
select,
where: { id: interaction.channel.id },
});
const getMessage = client.i18n.getLocale(ticket.guild.locale);
if (topic) await interaction.channel.setTopic(`<@${ticket.createdById}> | ${topic}`);
const opening = await interaction.channel.messages.fetch(ticket.openingMessageId);
if (opening && opening.embeds.length >= 2) {
const embeds = [...opening.embeds];
embeds[1] = new EmbedBuilder(embeds[1].data)
.setFields(
plainTextAnswers
.map(a => ({
name: a.question.label,
value: a.after || getMessage('ticket.answers.no_value'),
})),
);
await opening.edit({ embeds });
}
await interaction.editReply({
embeds: [
new ExtendedEmbedBuilder({
iconURL: interaction.guild.iconURL(),
text: ticket.guild.footer,
})
.setColor(ticket.guild.successColour)
.setTitle(getMessage('ticket.edited.title'))
.setDescription(getMessage('ticket.edited.description')),
],
});
const diff = {
original: {},
updated: {},
};
const inlineDiffEmbeds = [];
for (const answer of plainTextAnswers) {
diff.original[answer.question.label] = answer.before || getMessage('ticket.answers.no_value');
diff.updated[answer.question.label] = answer.after || getMessage('ticket.answers.no_value');
if (answer.before !== answer.after) {
const from = answer.before ? answer.before.replace(/^/gm, '- ') + '\n' : '';
const to = answer.after ? answer.after.replace(/^/gm, '+ ') + '\n' : '';
inlineDiffEmbeds.push(
new EmbedBuilder()
.setColor(ticket.guild.primaryColour)
.setAuthor({
iconURL: interaction.member.displayAvatarURL(),
name: interaction.user.username,
})
.setTitle(answer.question.label)
.setDescription(`\`\`\`diff\n${cleanCodeBlockContent(from + to)}\n\`\`\``),
);
}
}
if (inlineDiffEmbeds.length) {
await interaction.followUp({ embeds: inlineDiffEmbeds });
}
logTicketEvent(this.client, {
action: 'update',
diff,
target: {
id: ticket.id,
name: `<#${ticket.id}>`,
},
userId: interaction.user.id,
});
} finally {
await worker.terminate();
}
} else {
await this.client.tickets.postQuestions({
...id,
interaction,
});
}
}
};