-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathdebugController.ts
160 lines (142 loc) · 4.02 KB
/
debugController.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
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* Kuzzle, a backend software, self-hostable and ready to use
* to power modern apps
*
* Copyright 2015-2022 Kuzzle
* mailto: support AT kuzzle.io
* website: http://kuzzle.io
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { KuzzleRequest } from "../request";
import { NativeController } from "./baseController";
import * as kerror from "../../kerror";
import get from "lodash/get";
/**
* @class DebugController
*/
export class DebugController extends NativeController {
constructor() {
super([
"nodeVersion",
"enable",
"disable",
"post",
"addListener",
"removeListener",
]);
}
/**
* Return the node version of the current Kuzzle instance
*/
async nodeVersion() {
return process.version;
}
/**
* Connect the debugger
*/
async enable() {
if (!get(global.kuzzle.config, "security.debug.native_debug_protocol")) {
throw kerror.get(
"core",
"debugger",
"native_debug_protocol_usage_denied"
);
}
await global.kuzzle.ask("core:debugger:enable");
}
/**
* Disconnect the debugger and clears all the events listeners
*/
async disable() {
if (!get(global.kuzzle.config, "security.debug.native_debug_protocol")) {
throw kerror.get(
"core",
"debugger",
"native_debug_protocol_usage_denied"
);
}
await global.kuzzle.ask("core:debugger:disable");
}
/**
* Trigger action from debugger directly following the Chrome Debug Protocol
* See: https://chromedevtools.github.io/devtools-protocol/v8/
*/
async post(request: KuzzleRequest) {
if (!get(global.kuzzle.config, "security.debug.native_debug_protocol")) {
throw kerror.get(
"core",
"debugger",
"native_debug_protocol_usage_denied"
);
}
const method = request.getBodyString("method");
const params = request.getBodyObject("params", {});
return global.kuzzle.ask("core:debugger:post", method, params);
}
/**
* Make the websocket connection listen and receive events from Chrome Debug Protocol
* See events from: https://chromedevtools.github.io/devtools-protocol/v8/
*/
async addListener(request: KuzzleRequest) {
if (!get(global.kuzzle.config, "security.debug.native_debug_protocol")) {
throw kerror.get(
"core",
"debugger",
"native_debug_protocol_usage_denied"
);
}
if (request.context.connection.protocol !== "websocket") {
throw kerror.get(
"api",
"assert",
"unsupported_protocol",
request.context.connection.protocol,
"debug:addListener"
);
}
const event = request.getBodyString("event");
await global.kuzzle.ask(
"core:debugger:addListener",
event,
request.context.connection.id
);
}
/**
* Remove the websocket connection from the events' listeners
*/
async removeListener(request: KuzzleRequest) {
if (!get(global.kuzzle.config, "security.debug.native_debug_protocol")) {
throw kerror.get(
"core",
"debugger",
"native_debug_protocol_usage_denied"
);
}
if (request.context.connection.protocol !== "websocket") {
throw kerror.get(
"api",
"assert",
"unsupported_protocol",
request.context.connection.protocol,
"debug:removeListener"
);
}
const event = request.getBodyString("event");
await global.kuzzle.ask(
"core:debugger:removeListener",
event,
request.context.connection.id
);
}
}