1 |
rakinar2 |
577 |
/* |
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 type Controller from "../api/Controller"; |
21 |
|
|
import { RouteMetadata } from "../types/RouteMetadata"; |
22 |
|
|
|
23 |
|
|
export function Action(method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE", uri: string, middleware: Function[] = []) { |
24 |
|
|
return (target: Controller, propertyKey: string, descriptor: PropertyDescriptor) => { |
25 |
|
|
const metadata: Record<string, RouteMetadata> = Reflect.getMetadata("action_methods", target) ?? { |
26 |
|
|
[propertyKey]: { |
27 |
|
|
GET: null, |
28 |
|
|
DELETE: null, |
29 |
|
|
PATCH: null, |
30 |
|
|
POST: null, |
31 |
|
|
PUT: null |
32 |
|
|
} as RouteMetadata |
33 |
|
|
}; |
34 |
|
|
|
35 |
|
|
metadata[propertyKey] ??= { |
36 |
|
|
GET: null, |
37 |
|
|
DELETE: null, |
38 |
|
|
PATCH: null, |
39 |
|
|
POST: null, |
40 |
|
|
PUT: null |
41 |
|
|
} as RouteMetadata; |
42 |
|
|
|
43 |
|
|
const data = { handler: descriptor.value, method, path: uri, middleware }; |
44 |
|
|
|
45 |
|
|
metadata[propertyKey]![method] ??= data; |
46 |
|
|
metadata[propertyKey]![method]!.handler ??= data.handler; |
47 |
|
|
metadata[propertyKey]![method]!.method ??= data.method; |
48 |
|
|
|
49 |
|
|
if (metadata[propertyKey]![method]!.middleware?.length) { |
50 |
|
|
metadata[propertyKey]![method]!.middleware.push(...data.middleware); |
51 |
|
|
} else { |
52 |
|
|
metadata[propertyKey]![method]!.middleware = data.middleware; |
53 |
|
|
} |
54 |
|
|
|
55 |
|
|
Reflect.defineMetadata("action_methods", metadata, target); |
56 |
|
|
}; |
57 |
|
|
} |