Skip to content

Commit

Permalink
6.28. Добавит создание пользователей в UserController.
Browse files Browse the repository at this point in the history
Последним шагом закончим с обработчиком `create` в `UserController`. Он отвечает за добавление новых пользователей в базу данных. Проведём похожие действия, как и при создании `CategoryController`. Сначала проверим существование пользователя. Если он существует, то вернём код `409`. Обратите внимание, мы напрямую не вызываем `send`. Вместо этого бросаем ошибку типа `HttpError`.

Если всё хорошо и пользователь создан, то вернём объект пользователя без поля «пароль». Структуру объекта для клиента предварительно описали в `UserDto`.
  • Loading branch information
AntonovIgor committed Sep 10, 2024
1 parent 417fd02 commit e878a3c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 6 deletions.
15 changes: 15 additions & 0 deletions src/shared/modules/user/rdo/user.rdo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Expose } from 'class-transformer';

export class UserRdo {
@Expose()
public email: string ;

@Expose()
public avatarPath: string;

@Expose()
public firstname: string;

@Expose()
public lastname: string;
}
29 changes: 23 additions & 6 deletions src/shared/modules/user/user.controller.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
import { inject, injectable } from 'inversify';
import { Response, NextFunction } from 'express';
import { Response } from 'express';
import { StatusCodes } from 'http-status-codes';

import { BaseController, HttpMethod } from '../../libs/rest/index.js';
import { BaseController, HttpError, HttpMethod } from '../../libs/rest/index.js';
import { Logger } from '../../libs/logger/index.js';
import { Component } from '../../types/index.js';
import { CreateUserRequest } from './create-user-request.type.js';
import { UserService } from './user-service.interface.js';
import { Config, RestSchema } from '../../libs/config/index.js';
import { fillDTO } from '../../helpers/index.js';
import { UserRdo } from './rdo/user.rdo.js';

@injectable()
export class UserController extends BaseController {
constructor(
@inject(Component.Logger) protected readonly logger: Logger,
@inject(Component.UserService) private readonly userService: UserService,
@inject(Component.Config) private readonly configService: Config<RestSchema>,
) {
super(logger);
this.logger.info('Register routes for UserController…');
Expand All @@ -18,10 +25,20 @@ export class UserController extends BaseController {
}

public async create(
_req: CreateUserRequest,
_res: Response,
_next: NextFunction
{ body }: CreateUserRequest,
res: Response,
): Promise<void> {
throw new Error('[UserController] Oops');
const existsUser = await this.userService.findByEmail(body.email);

if (existsUser) {
throw new HttpError(
StatusCodes.CONFLICT,
`User with email «${body.email}» exists.`,
'UserController'
);
}

const result = await this.userService.create(body, this.configService.get('SALT'));
this.created(res, fillDTO(UserRdo, result));
}
}

0 comments on commit e878a3c

Please sign in to comment.