-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcustomer.ts
41 lines (35 loc) · 1.45 KB
/
customer.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import {Controller} from './controller';
import {HttpServer} from '../server/httpServer';
import {Request, Response} from 'restify';
import {customerService} from '../services/customer';
export class CustomerController implements Controller {
public initialize(httpServer: HttpServer): void {
httpServer.get('customers', this.list.bind(this));
httpServer.get('customer/:id', this.getById.bind(this));
httpServer.post('customer', this.create.bind(this));
httpServer.put('customer/:id', this.update.bind(this));
httpServer.del('customer/:id', this.remove.bind(this));
}
private async list(req: Request, res: Response): Promise<void> {
res.send(await customerService.list());
}
private async getById(req: Request, res: Response): Promise<void> {
const customer = await customerService.getById(req.params.id);
res.send(customer ? 200 : 404, customer);
}
private async create(req: Request, res: Response): Promise<void> {
res.send(await customerService.create(req.body));
}
private async update(req: Request, res: Response): Promise<void> {
res.send(await customerService.update({...req.body, id: req.params.id}));
}
private async remove(req: Request, res: Response): Promise<void> {
try {
await customerService.delete(req.params.id);
res.send(200);
}
catch (e) {
res.send(500);
}
}
}