1 |
const MessageEmbed = require("../src/MessageEmbed"); |
2 |
|
3 |
module.exports = { |
4 |
async handle(msg, cm) { |
5 |
if (typeof cm.args[0] === 'undefined') { |
6 |
await msg.reply({ |
7 |
embeds: [ |
8 |
new MessageEmbed() |
9 |
.setColor('#f14a60') |
10 |
.setDescription(`This command requires at least one argument.`) |
11 |
] |
12 |
}); |
13 |
|
14 |
return; |
15 |
} |
16 |
|
17 |
await app.db.get('SELECT * FROM warnings WHERE id = ?', [cm.args[0]], async (err, data) => { |
18 |
if (err) { |
19 |
console.log(err); |
20 |
} |
21 |
|
22 |
if (!data) { |
23 |
await msg.reply({ |
24 |
embeds: [ |
25 |
new MessageEmbed() |
26 |
.setColor('#f14a60') |
27 |
.setDescription(`No warning found.`) |
28 |
] |
29 |
}); |
30 |
|
31 |
return; |
32 |
} |
33 |
|
34 |
let user = data.user_id; |
35 |
|
36 |
console.log('here1'); |
37 |
|
38 |
try { |
39 |
user = await msg.guild.members.fetch(data.user_id); |
40 |
} |
41 |
catch(e) { |
42 |
console.log(e); |
43 |
} |
44 |
|
45 |
|
46 |
console.log('user2'); |
47 |
|
48 |
let by = data.warned_by; |
49 |
|
50 |
console.log(data); |
51 |
|
52 |
try { |
53 |
by = await msg.guild.members.fetch(data.warned_by); |
54 |
} |
55 |
catch(e) { |
56 |
console.log(e); |
57 |
} |
58 |
|
59 |
console.log('here'); |
60 |
let embed = await new MessageEmbed() |
61 |
.setDescription(data.reason === '\c\b\c' ? "*No reason provided*" : data.reason) |
62 |
.addField('ID', data.id + '') |
63 |
.addField('Warned by', typeof by === 'string' ? by : by.user.tag); |
64 |
|
65 |
if (typeof user === 'string') { |
66 |
embed.setAuthor({ |
67 |
name: `${user}` |
68 |
}); |
69 |
} |
70 |
else { |
71 |
embed.setAuthor({ |
72 |
iconURL: user.displayAvatarURL(), |
73 |
name: `${user.user.tag}` |
74 |
}) |
75 |
} |
76 |
|
77 |
|
78 |
await msg.reply({ |
79 |
embeds: [ |
80 |
embed |
81 |
] |
82 |
}); |
83 |
}); |
84 |
} |
85 |
}; |