1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { Schema, model, Document } from 'mongoose'; |
21 |
|
|
import Counter from './Counter'; |
22 |
|
|
|
23 |
|
|
export interface IPunishment extends Document { |
24 |
|
|
user_id: string |
25 |
|
|
mod_id: string |
26 |
|
|
mod_tag: string, |
27 |
|
|
guild_id: string; |
28 |
|
|
reason?: string; |
29 |
|
|
type: string; |
30 |
|
|
numericId?: number; |
31 |
|
|
meta?: object; |
32 |
|
|
createdAt: Date; |
33 |
|
|
} |
34 |
|
|
|
35 |
|
|
const schema = new Schema({ |
36 |
|
|
numericId: { |
37 |
|
|
type: Number, |
38 |
|
|
unique: true |
39 |
|
|
}, |
40 |
|
|
user_id: { |
41 |
|
|
type: String, |
42 |
|
|
required: true, |
43 |
|
|
}, |
44 |
|
|
mod_id: { |
45 |
|
|
type: String, |
46 |
|
|
required: true, |
47 |
|
|
}, |
48 |
|
|
mod_tag: { |
49 |
|
|
type: String, |
50 |
|
|
required: true, |
51 |
|
|
}, |
52 |
|
|
guild_id: { |
53 |
|
|
type: String, |
54 |
|
|
required: true, |
55 |
|
|
}, |
56 |
|
|
reason: { |
57 |
|
|
type: String, |
58 |
|
|
required: false |
59 |
|
|
}, |
60 |
|
|
type: { |
61 |
|
|
type: String, |
62 |
|
|
required: true |
63 |
|
|
}, |
64 |
|
|
meta: { |
65 |
|
|
type: Object, |
66 |
|
|
required: true, |
67 |
|
|
default: {} |
68 |
|
|
}, |
69 |
|
|
createdAt: { |
70 |
|
|
type: Date, |
71 |
|
|
required: true, |
72 |
|
|
default: () => new Date() |
73 |
|
|
} |
74 |
|
|
}); |
75 |
|
|
|
76 |
|
|
schema.pre('save', function(next) { |
77 |
|
|
if (this.numericId === null || this.numericId === undefined || this.numericId === 0) |
78 |
|
|
Counter.findByIdAndUpdate({ _id: 'punishments_id' }, { $inc: { seq: 1 } }, { upsert: true, new: true }, (error, counter) => { |
79 |
|
|
if(error) |
80 |
|
|
return next(error); |
81 |
|
|
|
82 |
|
|
if (counter && (this.numericId === null || this.numericId === undefined || this.numericId === 0)) |
83 |
|
|
this.numericId = counter.seq; |
84 |
|
|
|
85 |
|
|
next(); |
86 |
|
|
}); |
87 |
|
|
else |
88 |
|
|
next(); |
89 |
|
|
}); |
90 |
|
|
|
91 |
|
|
export default model('Punishment', schema); |