浏览代码

Prevent snowflakes from demoting/disabling themselves

Pitu 6 年之前
父节点
当前提交
197e69f2f2

+ 2 - 1
src/api/routes/admin/userDemote.js

@@ -5,10 +5,11 @@ class userDemote extends Route {
 		super('/admin/users/demote', 'post', { adminOnly: true });
 	}
 
-	async run(req, res, db) {
+	async run(req, res, db, user) {
 		if (!req.body) return res.status(400).json({ message: 'No body provided' });
 		const { id } = req.body;
 		if (!id) return res.status(400).json({ message: 'No id provided' });
+		if (id === user.id) return res.status(400).json({ message: 'You can\'t apply this action to yourself' });
 
 		try {
 			await db.table('users')

+ 1 - 0
src/api/routes/admin/userDisable.js

@@ -9,6 +9,7 @@ class userDisable extends Route {
 		if (!req.body) return res.status(400).json({ message: 'No body provided' });
 		const { id } = req.body;
 		if (!id) return res.status(400).json({ message: 'No id provided' });
+		if (id === user.id) return res.status(400).json({ message: 'You can\'t apply this action to yourself' });
 
 		try {
 			await db.table('users')

+ 1 - 0
src/api/routes/admin/userEnable.js

@@ -9,6 +9,7 @@ class userEnable extends Route {
 		if (!req.body) return res.status(400).json({ message: 'No body provided' });
 		const { id } = req.body;
 		if (!id) return res.status(400).json({ message: 'No id provided' });
+		if (id === user.id) return res.status(400).json({ message: 'You can\'t apply this action to yourself' });
 
 		try {
 			await db.table('users')

+ 1 - 0
src/api/routes/admin/userPromote.js

@@ -9,6 +9,7 @@ class userPromote extends Route {
 		if (!req.body) return res.status(400).json({ message: 'No body provided' });
 		const { id } = req.body;
 		if (!id) return res.status(400).json({ message: 'No id provided' });
+		if (id === user.id) return res.status(400).json({ message: 'You can\'t apply this action to yourself' });
 
 		try {
 			await db.table('users')