improvement: translated all backend errors messages

This commit is contained in:
canove
2020-10-13 22:53:05 -03:00
parent 558475f121
commit a567614c63
45 changed files with 308 additions and 120 deletions

View File

@@ -30,7 +30,7 @@ export const update = async (
const token: string = req.cookies.jrt;
if (!token) {
throw new AppError("Invalid session. Please login.", 401);
throw new AppError("ERR_SESSION_EXPIRED", 401);
}
const { newToken, refreshToken } = await RefreshTokenService(token);

View File

@@ -8,7 +8,7 @@ import ListSettingsService from "../services/SettingServices/ListSettingsService
export const index = async (req: Request, res: Response): Promise<Response> => {
if (req.user.profile !== "admin") {
throw new AppError("Only administrators can access resource.", 403);
throw new AppError("ERR_NO_PERMISSION", 403);
}
const settings = await ListSettingsService();
@@ -21,7 +21,7 @@ export const update = async (
res: Response
): Promise<Response> => {
if (req.user.profile !== "admin") {
throw new AppError("Only administrators can access this route.", 403);
throw new AppError("ERR_NO_PERMISSION", 403);
}
const { settingKey: key } = req.params;
const { value } = req.body;

View File

@@ -17,7 +17,7 @@ type IndexQuery = {
export const index = async (req: Request, res: Response): Promise<Response> => {
if (req.user.profile !== "admin") {
throw new AppError("Only administrators can access this route.", 403); // should be handled better.
throw new AppError("ERR_NO_PERMISSION", 403); // should be handled better.
}
const { searchParam, pageNumber } = req.query as IndexQuery;
@@ -36,9 +36,9 @@ export const store = async (req: Request, res: Response): Promise<Response> => {
req.url === "/signup" &&
(await CheckSettingsHelper("userCreation")) === "disabled"
) {
throw new AppError("User creation is disabled by administrator.", 403);
throw new AppError("ERR_USER_CREATION_DISABLED", 403);
} else if (req.url !== "/signup" && req.user.profile !== "admin") {
throw new AppError("Only administrators can create users.", 403);
throw new AppError("ERR_NO_PERMISSION", 403);
}
const user = await CreateUserService({
@@ -70,7 +70,7 @@ export const update = async (
res: Response
): Promise<Response> => {
if (req.user.profile !== "admin") {
throw new AppError("Only administrators can edit users.", 403);
throw new AppError("ERR_NO_PERMISSION", 403);
}
const { userId } = req.params;
@@ -94,7 +94,7 @@ export const remove = async (
const { userId } = req.params;
if (req.user.profile !== "admin") {
throw new AppError("Only administrators can delete users.", 403);
throw new AppError("ERR_NO_PERMISSION", 403);
}
await DeleteUserService(userId);