1 |
const MessageEmbed = require("../src/MessageEmbed"); |
2 |
const { setTimeoutv2 } = require("../src/setTimeout"); |
3 |
const path = require('path'); |
4 |
const ms = require("ms"); |
5 |
|
6 |
module.exports = { |
7 |
async handle(msg, cm) { |
8 |
if (typeof cm.args[2] === 'undefined') { |
9 |
await msg.reply({ |
10 |
embeds: [ |
11 |
new MessageEmbed() |
12 |
.setColor('#f14a60') |
13 |
.setDescription(`This command requires at least three arguments.`) |
14 |
] |
15 |
}); |
16 |
|
17 |
return; |
18 |
} |
19 |
|
20 |
const time1 = ms(cm.args[0]); |
21 |
const time2 = ms(cm.args[1]); |
22 |
|
23 |
if (!time1 || !time2) { |
24 |
await msg.reply({ |
25 |
embeds: [ |
26 |
new MessageEmbed() |
27 |
.setColor('#f14a60') |
28 |
.setDescription(`Invalid time interval given.`) |
29 |
] |
30 |
}); |
31 |
|
32 |
return; |
33 |
} |
34 |
|
35 |
var ch = await msg.mentions?.channels?.last(); |
36 |
let text; |
37 |
let args = [...cm.args]; |
38 |
args.shift(); |
39 |
args.shift(); |
40 |
|
41 |
if (typeof ch !== 'object' || ch === null) { |
42 |
ch = msg.channel; |
43 |
} |
44 |
else { |
45 |
args.pop(); |
46 |
} |
47 |
|
48 |
text = args.join(' '); |
49 |
|
50 |
try { |
51 |
const timeout = await setTimeoutv2('send-expire.js', time1, text, ch.id, msg.guild.id, time2); |
52 |
|
53 |
await msg.reply({ |
54 |
embeds: [ |
55 |
new MessageEmbed() |
56 |
.setDescription('A queue job has been added.') |
57 |
.setFooter({ |
58 |
text: 'ID: ' + timeout.row.id |
59 |
}) |
60 |
] |
61 |
}); |
62 |
} |
63 |
catch(e) { |
64 |
console.log(e); |
65 |
|
66 |
await msg.reply({ |
67 |
embeds: [ |
68 |
new MessageEmbed() |
69 |
.setColor('#f14a60') |
70 |
.setDescription(`I don't have enough permission to send messages on this channel.`) |
71 |
] |
72 |
}); |
73 |
|
74 |
return; |
75 |
} |
76 |
|
77 |
await msg.react('⏰'); |
78 |
} |
79 |
}; |