mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-12-31 21:56:41 +01:00
「🏗️」 wip(auth): added the hability to remove user
This commit is contained in:
32
doc/auth/remove.md
Normal file
32
doc/auth/remove.md
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# remove user
|
||||||
|
|
||||||
|
Available endpoints:
|
||||||
|
- DELETE `/`
|
||||||
|
|
||||||
|
Common return:
|
||||||
|
- 500 with response
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"error": "Internal server error"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## DELETE `/`
|
||||||
|
|
||||||
|
User to remove a user from the backend
|
||||||
|
|
||||||
|
Inputs: just need a valid JWT cookie
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
- 200
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"msg": "User successfully deleted"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
- 401 || 400
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"error": "<corresponding msg>
|
||||||
|
}
|
||||||
|
```
|
||||||
@ -11,6 +11,7 @@ import { totpSetup } from './totpSetup.js';
|
|||||||
import { totpDelete } from './totpDelete.js';
|
import { totpDelete } from './totpDelete.js';
|
||||||
import { totpVerify } from './totpVerify.js';
|
import { totpVerify } from './totpVerify.js';
|
||||||
import { logout } from './logout.js';
|
import { logout } from './logout.js';
|
||||||
|
import { remove } from './remove.js';
|
||||||
|
|
||||||
const saltRounds = 10;
|
const saltRounds = 10;
|
||||||
export const appName = process.env.APP_NAME || 'knl_meowscendence';
|
export const appName = process.env.APP_NAME || 'knl_meowscendence';
|
||||||
@ -110,4 +111,6 @@ export default async function(fastify, options) {
|
|||||||
}, async (request, reply) => { return register(request, reply, saltRounds, fastify); });
|
}, async (request, reply) => { return register(request, reply, saltRounds, fastify); });
|
||||||
|
|
||||||
fastify.get('/logout', {}, async (request, reply) => { return logout(reply, fastify); })
|
fastify.get('/logout', {}, async (request, reply) => { return logout(reply, fastify); })
|
||||||
|
|
||||||
|
fastify.delete('/', { preHandler: fastify.authenticate }, async (request, reply) => { return remove(request, reply, fastify)})
|
||||||
}
|
}
|
||||||
|
|||||||
34
src/api/auth/remove.js
Normal file
34
src/api/auth/remove.js
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import authDB from '../../utils/authDB';
|
||||||
|
import { authUserRemove } from '../../utils/authUserRemove';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {import('fastify').FastifyRequest} request
|
||||||
|
* @param {import('fastify').FastifyReply} reply
|
||||||
|
* @param {import('fastify').FastifyInstance} fastify
|
||||||
|
*/
|
||||||
|
export async function remove(request, reply, fastify) {
|
||||||
|
try {
|
||||||
|
const user = request.user;
|
||||||
|
|
||||||
|
if (authDB.RESERVED_USERNAMES.includes(user)) {
|
||||||
|
return reply.code(400).send({ error: 'Reserved username' });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (authDB.checkUser(user) === false) {
|
||||||
|
return reply.code(400).send({ error: "User does not exist" });
|
||||||
|
}
|
||||||
|
|
||||||
|
authDB.rmUser(user)
|
||||||
|
|
||||||
|
authUserRemove(user, fastify)
|
||||||
|
|
||||||
|
return reply
|
||||||
|
.code(200)
|
||||||
|
.send({
|
||||||
|
msg: "User successfully deleted"
|
||||||
|
})
|
||||||
|
} catch (err) {
|
||||||
|
fastify.log.error(err);
|
||||||
|
return reply.code(500).send({ error: "Internal server error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/utils/authUserRemove.js
Normal file
19
src/utils/authUserRemove.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import axios from 'axios'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} username
|
||||||
|
* @param {import('fastify').FastifyInstance} fastify
|
||||||
|
*/
|
||||||
|
export async function authUserRemove(username, fastify) {
|
||||||
|
const url = (process.env.USER_URL || "http://localhost:3002/") + "users/" + username;
|
||||||
|
const cookie = fastify.jwt.sign({ user: "admin" });
|
||||||
|
|
||||||
|
await axios.post(
|
||||||
|
url,
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
'Cookie': 'token=' + cookie,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user