jws-backend/src/controllers/keycloak-controller.ts
2024-04-05 11:31:33 +07:00

51 lines
1.6 KiB
TypeScript

import { Body, Controller, Delete, Get, Path, Post, Route, Security, Tags } from "tsoa";
import { addUserRoles, createUser, getRoles, removeUserRoles } from "../services/keycloak";
@Route("api/keycloak")
@Tags("Keycloak")
@Security("keycloak")
export class KeycloakController extends Controller {
@Post("user")
async createUser(
@Body() body: { username: string; password: string; firstName?: string; lastName?: string },
) {
return await createUser(body.username, body.password, {
firstName: body.firstName,
lastName: body.lastName,
});
}
@Get("role")
async getRole() {
const role = await getRoles();
if (Array.isArray(role)) return role;
throw new Error("Failed. Cannot get role.");
}
@Post("{userId}/role")
async addRole(@Path() userId: string, @Body() body: { role: string[] }) {
const list = await getRoles();
if (!Array.isArray(list)) throw new Error("Failed. Cannot get role(s) data from the server.");
const result = await addUserRoles(
userId,
list.filter((v) => body.role.includes(v.id)),
);
if (!result) throw new Error("Failed. Cannot set user's role.");
}
@Delete("{userId}/role/{roleId}")
async deleteRole(@Path() userId: string, @Path() roleId: string) {
const list = await getRoles();
if (!Array.isArray(list)) throw new Error("Failed. Cannot get role(s) data from the server.");
const result = await removeUserRoles(
userId,
list.filter((v) => roleId === v.id),
);
if (!result) throw new Error("Failed. Cannot remove user's role.");
}
}