-
Notifications
You must be signed in to change notification settings - Fork 10
/
todo.controller.ts
147 lines (137 loc) · 3.82 KB
/
todo.controller.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
// Node module: @loopback/example-todo
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
import { inject } from '@loopback/core';
import { Filter, repository } from '@loopback/repository';
import { Server } from 'socket.io';
import { del, get, getModelSchemaRef, HttpErrors, param, patch, post, put, requestBody, } from '@loopback/rest';
import { Todo } from '../models';
import { TodoRepository } from '../repositories';
import { Geocoder } from '../services';
import { ws } from "../websockets/decorators/websocket.decorator";
export class TodoController {
constructor(
@repository(TodoRepository) protected todoRepository: TodoRepository,
@inject('services.Geocoder') protected geoService: Geocoder,
) {
}
@post('/todos', {
responses: {
'200': {
description: 'Todo model instance',
content: { 'application/json': { schema: getModelSchemaRef(Todo) } },
},
},
})
async createTodo(
@requestBody({
content: {
'application/json': {
schema: getModelSchemaRef(Todo, { title: 'NewTodo', exclude: ['id'] }),
},
},
})
todo: Omit<Todo, 'id'>,
): Promise<Todo> {
if (todo.remindAtAddress) {
const geo = await this.geoService.geocode(todo.remindAtAddress);
if (!geo[0]) {
// address not found
throw new HttpErrors.BadRequest(
`Address not found: ${todo.remindAtAddress}`,
);
}
// Encode the coordinates as "lat,lng" (Google Maps API format). See also
// https://stackoverflow.com/q/7309121/69868
// https://gis.stackexchange.com/q/7379
todo.remindAtGeo = `${geo[0].y},${geo[0].x}`;
}
return this.todoRepository.create(todo);
}
@get('/todos/{id}', {
responses: {
'200': {
description: 'Todo model instance',
content: { 'application/json': { schema: getModelSchemaRef(Todo) } },
},
},
})
async findTodoById(
@param.path.number('id') id: number,
@param.query.boolean('items') items?: boolean,
): Promise<Todo> {
return this.todoRepository.findById(id);
}
@get('/todos', {
responses: {
'200': {
description: 'Array of Todo model instances',
content: {
'application/json': {
schema: { type: 'array', items: getModelSchemaRef(Todo) },
},
},
},
},
})
async findTodos(
@param.filter(Todo)
filter?: Filter<Todo>,
): Promise<Todo[]> {
return this.todoRepository.find(filter);
}
@put('/todos/{id}', {
responses: {
'204': {
description: 'Todo PUT success',
},
},
})
async replaceTodo(
@param.path.number('id') id: number,
@requestBody() todo: Todo,
): Promise<void> {
await this.todoRepository.replaceById(id, todo);
}
@patch('/todos/{id}', {
responses: {
'204': {
description: 'Todo PATCH success',
},
},
})
async updateTodo(
@param.path.number('id') id: number,
@requestBody({
content: {
'application/json': {
schema: getModelSchemaRef(Todo, { partial: true }),
},
},
})
todo: Partial<Todo>,
): Promise<void> {
await this.todoRepository.updateById(id, todo);
}
@del('/todos/{id}', {
responses: {
'204': {
description: 'Todo DELETE success',
},
},
})
async deleteTodo(
@param.path.number('id') id: number
): Promise<void> {
await this.todoRepository.deleteById(id);
}
@post('/todos/room/example/emit')
async exampleRoomEmmit(
@ws.namespace('chatNsp') nsp: Server
): Promise<any> {
nsp.to('some room').emit('some room event', `time: ${new Date().getTime()}`);
console.log('exampleRoomEmmit');
return 'room event emitted';
}
}