1 |
const History = require("../src/History"); |
2 |
const MessageEmbed = require("../src/MessageEmbed"); |
3 |
const { getUser } = require("../src/UserInput"); |
4 |
|
5 |
module.exports = { |
6 |
async handle(msg, cm) { |
7 |
if (typeof cm.args[1] === 'undefined') { |
8 |
await msg.reply({ |
9 |
embeds: [ |
10 |
new MessageEmbed() |
11 |
.setColor('#f14a60') |
12 |
.setDescription(`This command requires at least two arguments.`) |
13 |
] |
14 |
}); |
15 |
|
16 |
return; |
17 |
} |
18 |
try { |
19 |
var user = await getUser(cm.args[0], msg); |
20 |
|
21 |
console.log(user); |
22 |
|
23 |
if (!user) { |
24 |
throw new Error('Invalid User'); |
25 |
} |
26 |
} |
27 |
catch (e) { |
28 |
console.log(e); |
29 |
|
30 |
await msg.reply({ |
31 |
embeds: [ |
32 |
new MessageEmbed() |
33 |
.setColor('#f14a60') |
34 |
.setDescription(`Invalid user given.`) |
35 |
] |
36 |
}); |
37 |
|
38 |
return; |
39 |
} |
40 |
|
41 |
let content; |
42 |
|
43 |
let args = [...cm.args]; |
44 |
args.shift(); |
45 |
|
46 |
await (content = args.join(' ')); |
47 |
|
48 |
await History.create(user.id, msg.guild, 'note', msg.author.id, null, async (data2) => { |
49 |
this.note(user, content, msg); |
50 |
}); |
51 |
|
52 |
await msg.reply({ |
53 |
embeds: [ |
54 |
new MessageEmbed() |
55 |
.setDescription(`A note has been added for ${user.user.tag}`) // TODO |
56 |
] |
57 |
}); |
58 |
}, |
59 |
async note(user, content, msg) { |
60 |
await app.db.get("INSERT INTO notes(user_id, guild_id, content, date) VALUES(?, ?, ?, ?)", [user.id, msg.guild.id, content, (new Date().toISOString())], async (err) => { |
61 |
if (err) { |
62 |
console.log(err); |
63 |
} |
64 |
}); |
65 |
} |
66 |
}; |