summary refs log tree commit diff
path: root/src/api/routes/stop.ts
blob: fb77b4f3e903af2295decf9a7d6d172e1e65b126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { route } from "@fosscord/api";
import { User } from "@fosscord/util";
import { Request, Response, Router } from "express";

const router: Router = Router();

router.post("/", route({}), async (req: Request, res: Response) => {
	//EXPERIMENTAL: have an "OPERATOR" platform permission implemented for this API route
	const user = await User.findOneOrFail({ where: { id: req.user_id }, select: ["rights"] });
	if ((Number(user.rights) << Number(0)) % Number(2) == Number(1)) {
		console.log("user that POSTed to the API was ALLOWED");
		console.log(user.rights);
		res.sendStatus(200);
		process.kill(process.pid, "SIGTERM");
	} else {
		console.log("operation failed");
		console.log(user.rights);
		res.sendStatus(403);
	}
});

export default router;

//THIS API CAN ONLY BE USED BY USERS WITH THE 'OPERATOR' RIGHT (which is the value of 1) ONLY IF ANY OTHER RIGHTS ARE ADDED OR IF THE USER DOESNT HAVE PERMISSION,
//THE REQUEST WILL RETURN 403 'FORBIDDEN'