1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
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 { Response as ExpressResponse, NextFunction } from "express"; |
21 |
import { z } from "zod"; |
22 |
import Client from "../../core/Client"; |
23 |
import { Action } from "../../decorators/Action"; |
24 |
import { EnableGuildAccessControl } from "../../decorators/EnableGuildAccessControl"; |
25 |
import { RequireAuth } from "../../decorators/RequireAuth"; |
26 |
import { Validate } from "../../decorators/Validate"; |
27 |
import { MessageRuleSchema, MessageRuleType } from "../../types/MessageRuleSchema"; |
28 |
import Controller from "../Controller"; |
29 |
import Request from "../Request"; |
30 |
import Response from "../Response"; |
31 |
|
32 |
async function middleware(client: Client, request: Request, response: ExpressResponse, next: NextFunction) { |
33 |
if (client.configManager.config[request.params.guild]?.message_rules?.enabled) { |
34 |
response.status(400).json({ |
35 |
error: "Cannot use message rule features when it's not enabled" |
36 |
}); |
37 |
|
38 |
return; |
39 |
} |
40 |
|
41 |
next(); |
42 |
} |
43 |
|
44 |
export default class MessageRuleController extends Controller { |
45 |
@Action("POST", "/rules/:guild", [middleware]) |
46 |
@RequireAuth() |
47 |
@EnableGuildAccessControl() |
48 |
@Validate( |
49 |
z.object({ |
50 |
rule: MessageRuleSchema |
51 |
}) |
52 |
) |
53 |
public async update(request: Request) { |
54 |
if (Object.keys(request.parsedBody!).length === 0) { |
55 |
return new Response({ status: 422, body: { error: "Nothing to update!" } }); |
56 |
} |
57 |
|
58 |
this.client.configManager.config[request.params.guild]?.message_rules?.rules.push( |
59 |
request.parsedBody!.rule as unknown as MessageRuleType |
60 |
); |
61 |
|
62 |
await this.client.configManager.write(); |
63 |
await this.client.configManager.load(); |
64 |
|
65 |
return { |
66 |
success: true, |
67 |
rule: request.parsedBody!.rule |
68 |
}; |
69 |
} |
70 |
} |