Newer
Older
import {
Controller,
Body,
Post,
Get,
Param,
BadRequestException,
UseFilters,
} from "@nestjs/common";
import { ConnectionManagerClient } from "@ocm-engine/clients";
import {
CONNECTION_ACCEPT,
CONNECTION_CREATE,
CONNECTION_GET,
CONNECTION_LIST,
CreateInvitationResponseDto,
GatewayAcceptedResponseDto,
GetConnectionRequestDto,
} from "@ocm-engine/dtos";
import { AllExceptionsHandler } from "../exception.handler";
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import {
ApiBadRequestResponse,
ApiBody,
ApiInternalServerErrorResponse,
ApiOperation,
ApiResponse,
ApiTags,
} from "@nestjs/swagger";
@UseFilters(AllExceptionsHandler)
@Controller("v1")
export class ConnectionController {
constructor(private readonly cmClient: ConnectionManagerClient) {}
@Post("/invitation")
@ApiResponse({
status: 201,
description:
"Request is accepted for execution, the response id will match the event id received from the web socket",
type: GatewayAcceptedResponseDto,
})
@ApiBadRequestResponse({
status: 400,
description:
"Error in sending data to connection manager. This error shows that connection manager could not convert request to event or connection manager could not send the event to the broker.",
type: BadRequestException,
})
@ApiInternalServerErrorResponse({
status: 500,
description: "Unknown error",
})
@ApiOperation({
summary: "Create invitation for connection",
description:
"Method will create invitation url. The id of the response will be matched when you receive event from the websocket",
tags: ["Connections"],
})
createInvitation(): Promise<GatewayAcceptedResponseDto> {
return this.cmClient.sendPayload<null>({
pattern: "connections",
payload: {
source: "/invitation",
data: null,
type: CONNECTION_CREATE,
},
});
}
@Post("/invitation/accept")
@ApiResponse({
status: 201,
description:
"Request is accepted for execution, the response id will match the event id received from the web socket",
type: GatewayAcceptedResponseDto,
})
@ApiBadRequestResponse({
status: 400,
description:
"Error in sending data to connection manager. This error shows that connection manager could not convert request to event or connection manager could not send the event to the broker.",
type: BadRequestException,
})
@ApiInternalServerErrorResponse({
status: 500,
description: "Unknown error",
})
@ApiOperation({
summary: "Accept invitation for connection",
description:
"Method will accept the invitation and will return connection thought the websocket. The id of the response will be matched when you receive event from the websocket",
tags: ["Connections"],
})
async acceptInvitation(
@Body() createInvitationDto: CreateInvitationResponseDto,
) {
try {
return this.cmClient.sendPayload<CreateInvitationResponseDto>({
pattern: "connections",
payload: {
source: "/invitation/accept",
data: createInvitationDto,
type: CONNECTION_ACCEPT,
},
});
} catch (e) {
throw new BadRequestException(e);
}
}
@Get("/connections")
@ApiResponse({
status: 200,
description:
"Request is accepted for execution, the response id will match the event id received from the web socket",
type: GatewayAcceptedResponseDto,
})
@ApiBadRequestResponse({
status: 400,
description:
"Error in sending data to connection manager. This error shows that connection manager could not convert request to event or connection manager could not send the event to the broker.",
type: BadRequestException,
})
@ApiInternalServerErrorResponse({
status: 500,
description: "Unknown error",
})
@ApiOperation({
summary: "List all connections",
description:
"The id of the response will be matched when you receive event from the websocket",
tags: ["Connections"],
})
async list() {
return this.cmClient.sendPayload<null>({
pattern: "connections",
payload: {
source: "/connections",
data: null,
type: CONNECTION_LIST,
},
});
}
@Get("/connections/:id")
@ApiResponse({
status: 200,
description:
"Request is accepted for execution, the response id will match the event id received from the web socket",
type: GatewayAcceptedResponseDto,
})
@ApiBadRequestResponse({
status: 400,
description:
"Error in sending data to connection manager. This error shows that connection manager could not convert request to event or connection manager could not send the event to the broker.",
type: BadRequestException,
})
@ApiInternalServerErrorResponse({
status: 500,
description: "Unknown error",
})
@ApiOperation({
summary: "Get connection by id",
description:
"The method will search for connection id, if not found null will be returned. The id of the response will be matched when you receive event from the websocket",
tags: ["Connections"],
})
async getById(@Param("id") id: string) {
const request = new GetConnectionRequestDto();
request.connectionId = id;
return this.cmClient.sendPayload<GetConnectionRequestDto>({
pattern: "connections",
payload: {
source: "/connections/:id",
data: request,
type: CONNECTION_GET,
},
});
}
}