/[sudobot]/trunk/src/History.js
ViewVC logotype

Annotation of /trunk/src/History.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 25 - (hide annotations)
Mon Jul 29 17:28:16 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 949 byte(s)
More improvements
1 rakin 25 module.exports = class History {
2     static get(user_id, guild, callback) {
3     app.db.all('SELECT * FROM history WHERE guild_id = ? AND user_id = ?', [guild.id, user_id], (err, data) => {
4     if (err) {
5     console.log(err);
6     }
7    
8     callback(data);
9     });
10     }
11    
12     static create(user_id, guild, type, mod, callback) {
13     app.db.get('INSERT INTO history(type, user_id, guild_id, date, mod_id) VALUES(?, ?, ?, ?, ?)', [type, user_id, guild.id, new Date().toISOString(), mod], (err) => {
14     if (err) {
15     console.log(err);
16     }
17    
18     app.db.get("SELECT * FROM history WHERE type = ? AND user_id = ? AND guild_id = ? ORDER BY id DESC LIMIT 0, 1", [type, user_id, guild.id], (err, data) => {
19     if (err) {
20     console.log(err);
21     }
22    
23     callback(data);
24     });
25     });
26     }
27     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26