Skip to content
Snippets Groups Projects
Commit 0410d94f authored by Nabilsenko's avatar Nabilsenko
Browse files

feat: added login to people

parent 54e9b981
No related branches found
No related tags found
1 merge request!6feat: added login to people
import * as _config from './config.json';
import * as _config from './config.template.json';
import { IConfig } from './config.model';
const config = _config as IConfig;
......
......@@ -17,6 +17,15 @@ export class PeopleDao {
private readonly _peopleModel: Model<People>,
) {}
login = (email: string, password: string): Promise<People | void> =>
new Promise((resolve, reject) => {
this._peopleModel.findOne({email : email, passwordHash : password}, (err, value) => {
if (err) reject(err.message);
if (!value) reject(new NotFoundException('Email or password is incorrect!'));
resolve(value);
});
});
find = (): Promise<People[]> =>
new Promise((resolve, reject) => {
this._peopleModel.find({}, {}, {}, (err, value) => {
......
......@@ -16,11 +16,21 @@ import { HttpInterceptor } from '../interceptors/http.interceptor';
import { PeopleEntity } from './entities/people.entity';
import { PeopleService } from './people.service';
interface Login {
email: string;
password: string;
}
@Controller('people')
@UseInterceptors(HttpInterceptor)
export class PeopleController {
constructor(private readonly _peopleService: PeopleService) {}
@Post('/login')
login(@Body() login: Login): Promise<PeopleEntity | void> {
return this._peopleService.login(login.email, login.password);
}
@Get()
findAll(): Promise<PeopleEntity[] | void> {
return this._peopleService.findAll();
......
......@@ -8,6 +8,9 @@ import { PeopleEntity } from './entities/people.entity';
export class PeopleService {
constructor(private readonly _peopleDao: PeopleDao) {}
login = (email: string, password: string): Promise<PeopleEntity | void> =>
this._peopleDao.login(email, password);
findAll = (): Promise<PeopleEntity[] | void> => this._peopleDao.find();
findOne = (id: string): Promise<PeopleEntity | void> =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment