@timmeck/brain 1.8.0 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BRAIN_PLAN.md +3324 -3324
- package/LICENSE +21 -21
- package/dist/api/server.d.ts +4 -0
- package/dist/api/server.js +73 -0
- package/dist/api/server.js.map +1 -1
- package/dist/brain.js +2 -1
- package/dist/brain.js.map +1 -1
- package/dist/cli/commands/dashboard.js +606 -572
- package/dist/cli/commands/dashboard.js.map +1 -1
- package/dist/dashboard/server.js +25 -25
- package/dist/db/migrations/001_core_schema.js +115 -115
- package/dist/db/migrations/002_learning_schema.js +33 -33
- package/dist/db/migrations/003_code_schema.js +48 -48
- package/dist/db/migrations/004_synapses_schema.js +52 -52
- package/dist/db/migrations/005_fts_indexes.js +73 -73
- package/dist/db/migrations/007_feedback.js +8 -8
- package/dist/db/migrations/008_git_integration.js +33 -33
- package/dist/db/migrations/009_embeddings.js +3 -3
- package/dist/db/repositories/antipattern.repository.js +3 -3
- package/dist/db/repositories/code-module.repository.js +32 -32
- package/dist/db/repositories/notification.repository.js +3 -3
- package/dist/db/repositories/project.repository.js +21 -21
- package/dist/db/repositories/rule.repository.js +24 -24
- package/dist/db/repositories/solution.repository.js +50 -50
- package/dist/db/repositories/synapse.repository.js +18 -18
- package/dist/db/repositories/terminal.repository.js +24 -24
- package/dist/embeddings/engine.d.ts +2 -2
- package/dist/embeddings/engine.js +17 -4
- package/dist/embeddings/engine.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/ipc/server.d.ts +8 -0
- package/dist/ipc/server.js +67 -1
- package/dist/ipc/server.js.map +1 -1
- package/dist/matching/error-matcher.js +5 -5
- package/dist/matching/fingerprint.js +6 -1
- package/dist/matching/fingerprint.js.map +1 -1
- package/dist/mcp/http-server.js +8 -2
- package/dist/mcp/http-server.js.map +1 -1
- package/dist/services/code.service.d.ts +3 -0
- package/dist/services/code.service.js +33 -4
- package/dist/services/code.service.js.map +1 -1
- package/dist/services/error.service.js +4 -3
- package/dist/services/error.service.js.map +1 -1
- package/dist/services/git.service.js +14 -14
- package/package.json +49 -49
- package/src/api/server.ts +395 -321
- package/src/brain.ts +266 -265
- package/src/cli/colors.ts +116 -116
- package/src/cli/commands/config.ts +169 -169
- package/src/cli/commands/dashboard.ts +755 -720
- package/src/cli/commands/doctor.ts +118 -118
- package/src/cli/commands/explain.ts +83 -83
- package/src/cli/commands/export.ts +31 -31
- package/src/cli/commands/import.ts +199 -199
- package/src/cli/commands/insights.ts +65 -65
- package/src/cli/commands/learn.ts +24 -24
- package/src/cli/commands/modules.ts +53 -53
- package/src/cli/commands/network.ts +67 -67
- package/src/cli/commands/projects.ts +42 -42
- package/src/cli/commands/query.ts +120 -120
- package/src/cli/commands/start.ts +62 -62
- package/src/cli/commands/status.ts +75 -75
- package/src/cli/commands/stop.ts +34 -34
- package/src/cli/ipc-helper.ts +22 -22
- package/src/cli/update-check.ts +63 -63
- package/src/code/fingerprint.ts +87 -87
- package/src/code/parsers/generic.ts +29 -29
- package/src/code/parsers/python.ts +54 -54
- package/src/code/parsers/typescript.ts +65 -65
- package/src/code/registry.ts +60 -60
- package/src/dashboard/server.ts +142 -142
- package/src/db/connection.ts +22 -22
- package/src/db/migrations/001_core_schema.ts +120 -120
- package/src/db/migrations/002_learning_schema.ts +38 -38
- package/src/db/migrations/003_code_schema.ts +53 -53
- package/src/db/migrations/004_synapses_schema.ts +57 -57
- package/src/db/migrations/005_fts_indexes.ts +78 -78
- package/src/db/migrations/006_synapses_phase3.ts +17 -17
- package/src/db/migrations/007_feedback.ts +13 -13
- package/src/db/migrations/008_git_integration.ts +38 -38
- package/src/db/migrations/009_embeddings.ts +8 -8
- package/src/db/repositories/antipattern.repository.ts +66 -66
- package/src/db/repositories/code-module.repository.ts +142 -142
- package/src/db/repositories/notification.repository.ts +66 -66
- package/src/db/repositories/project.repository.ts +93 -93
- package/src/db/repositories/rule.repository.ts +108 -108
- package/src/db/repositories/solution.repository.ts +154 -154
- package/src/db/repositories/synapse.repository.ts +153 -153
- package/src/db/repositories/terminal.repository.ts +101 -101
- package/src/embeddings/engine.ts +238 -217
- package/src/index.ts +63 -63
- package/src/ipc/client.ts +118 -118
- package/src/ipc/protocol.ts +35 -35
- package/src/ipc/router.ts +133 -133
- package/src/ipc/server.ts +176 -110
- package/src/learning/decay.ts +46 -46
- package/src/learning/pattern-extractor.ts +90 -90
- package/src/learning/rule-generator.ts +74 -74
- package/src/matching/error-matcher.ts +5 -5
- package/src/matching/fingerprint.ts +34 -29
- package/src/matching/similarity.ts +61 -61
- package/src/matching/tfidf.ts +74 -74
- package/src/matching/tokenizer.ts +41 -41
- package/src/mcp/auto-detect.ts +93 -93
- package/src/mcp/http-server.ts +140 -137
- package/src/mcp/server.ts +73 -73
- package/src/parsing/error-parser.ts +28 -28
- package/src/parsing/parsers/compiler.ts +93 -93
- package/src/parsing/parsers/generic.ts +28 -28
- package/src/parsing/parsers/go.ts +97 -97
- package/src/parsing/parsers/node.ts +69 -69
- package/src/parsing/parsers/python.ts +62 -62
- package/src/parsing/parsers/rust.ts +50 -50
- package/src/parsing/parsers/shell.ts +42 -42
- package/src/parsing/types.ts +47 -47
- package/src/research/gap-analyzer.ts +135 -135
- package/src/research/insight-generator.ts +123 -123
- package/src/research/research-engine.ts +116 -116
- package/src/research/synergy-detector.ts +126 -126
- package/src/research/template-extractor.ts +130 -130
- package/src/research/trend-analyzer.ts +127 -127
- package/src/services/code.service.ts +271 -238
- package/src/services/error.service.ts +4 -3
- package/src/services/git.service.ts +132 -132
- package/src/services/notification.service.ts +41 -41
- package/src/services/synapse.service.ts +59 -59
- package/src/services/terminal.service.ts +81 -81
- package/src/synapses/activation.ts +80 -80
- package/src/synapses/decay.ts +38 -38
- package/src/synapses/hebbian.ts +69 -69
- package/src/synapses/pathfinder.ts +81 -81
- package/src/synapses/synapse-manager.ts +109 -109
- package/src/types/code.types.ts +52 -52
- package/src/types/error.types.ts +67 -67
- package/src/types/ipc.types.ts +8 -8
- package/src/types/mcp.types.ts +53 -53
- package/src/types/research.types.ts +28 -28
- package/src/types/solution.types.ts +30 -30
- package/src/utils/events.ts +45 -45
- package/src/utils/hash.ts +5 -5
- package/src/utils/logger.ts +48 -48
- package/src/utils/paths.ts +19 -19
- package/tests/e2e/test_code_intelligence.py +1015 -0
- package/tests/e2e/test_error_memory.py +451 -0
- package/tests/e2e/test_full_integration.py +534 -0
- package/tests/fixtures/code-modules/modules.ts +83 -83
- package/tests/fixtures/errors/go.ts +9 -9
- package/tests/fixtures/errors/node.ts +24 -24
- package/tests/fixtures/errors/python.ts +21 -21
- package/tests/fixtures/errors/rust.ts +25 -25
- package/tests/fixtures/errors/shell.ts +15 -15
- package/tests/fixtures/solutions/solutions.ts +27 -27
- package/tests/helpers/setup-db.ts +52 -52
- package/tests/integration/code-flow.test.ts +86 -86
- package/tests/integration/error-flow.test.ts +83 -83
- package/tests/integration/ipc-flow.test.ts +166 -166
- package/tests/integration/learning-cycle.test.ts +82 -82
- package/tests/integration/synapse-flow.test.ts +117 -117
- package/tests/unit/code/analyzer.test.ts +58 -58
- package/tests/unit/code/fingerprint.test.ts +51 -51
- package/tests/unit/code/scorer.test.ts +55 -55
- package/tests/unit/learning/confidence-scorer.test.ts +60 -60
- package/tests/unit/learning/decay.test.ts +45 -45
- package/tests/unit/learning/pattern-extractor.test.ts +50 -50
- package/tests/unit/matching/error-matcher.test.ts +69 -69
- package/tests/unit/matching/fingerprint.test.ts +47 -47
- package/tests/unit/matching/similarity.test.ts +65 -65
- package/tests/unit/matching/tfidf.test.ts +71 -71
- package/tests/unit/matching/tokenizer.test.ts +83 -83
- package/tests/unit/parsing/parsers.test.ts +113 -113
- package/tests/unit/research/gap-analyzer.test.ts +45 -45
- package/tests/unit/research/trend-analyzer.test.ts +45 -45
- package/tests/unit/synapses/activation.test.ts +80 -80
- package/tests/unit/synapses/decay.test.ts +27 -27
- package/tests/unit/synapses/hebbian.test.ts +96 -96
- package/tests/unit/synapses/pathfinder.test.ts +72 -72
- package/tsconfig.json +18 -18
package/src/api/server.ts
CHANGED
|
@@ -1,321 +1,395 @@
|
|
|
1
|
-
import http from 'node:http';
|
|
2
|
-
import { getLogger } from '../utils/logger.js';
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
private
|
|
21
|
-
private
|
|
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
|
-
this.
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
const
|
|
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
|
-
try {
|
|
149
|
-
const
|
|
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
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
{ method: '
|
|
200
|
-
extractParams: (
|
|
201
|
-
{ method: '
|
|
202
|
-
extractParams: (
|
|
203
|
-
{ method: '
|
|
204
|
-
extractParams: (
|
|
205
|
-
{ method: '
|
|
206
|
-
extractParams: (
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
{ method: 'GET', pattern: /^\/api\/v1\/
|
|
212
|
-
extractParams: (
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
{ method: 'POST', pattern: /^\/api\/v1\/
|
|
216
|
-
extractParams: (_m, _q, body) => body },
|
|
217
|
-
{ method: '
|
|
218
|
-
extractParams: (
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
{ method: 'POST', pattern: /^\/api\/v1\/
|
|
226
|
-
extractParams: (_m, _q, body) => body },
|
|
227
|
-
{ method: 'POST', pattern: /^\/api\/v1\/
|
|
228
|
-
extractParams: (_m, _q, body) => body },
|
|
229
|
-
{ method: '
|
|
230
|
-
extractParams: () =>
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}) },
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
{ method: '
|
|
242
|
-
extractParams: (_m,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
1
|
+
import http from 'node:http';
|
|
2
|
+
import { getLogger } from '../utils/logger.js';
|
|
3
|
+
import { getEventBus } from '../utils/events.js';
|
|
4
|
+
import type { IpcRouter } from '../ipc/router.js';
|
|
5
|
+
|
|
6
|
+
export interface ApiServerOptions {
|
|
7
|
+
port: number;
|
|
8
|
+
router: IpcRouter;
|
|
9
|
+
apiKey?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface RouteDefinition {
|
|
13
|
+
method: string;
|
|
14
|
+
pattern: RegExp;
|
|
15
|
+
ipcMethod: string;
|
|
16
|
+
extractParams: (match: RegExpMatchArray, query: URLSearchParams, body?: unknown) => unknown;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export class ApiServer {
|
|
20
|
+
private server: http.Server | null = null;
|
|
21
|
+
private logger = getLogger();
|
|
22
|
+
private routes: RouteDefinition[];
|
|
23
|
+
private sseClients: Set<http.ServerResponse> = new Set();
|
|
24
|
+
private statsTimer: ReturnType<typeof setInterval> | null = null;
|
|
25
|
+
|
|
26
|
+
constructor(private options: ApiServerOptions) {
|
|
27
|
+
this.routes = this.buildRoutes();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
start(): void {
|
|
31
|
+
const { port, apiKey } = this.options;
|
|
32
|
+
|
|
33
|
+
this.server = http.createServer((req, res) => {
|
|
34
|
+
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
35
|
+
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
|
|
36
|
+
res.setHeader('Access-Control-Allow-Headers', 'Content-Type, Authorization, X-API-Key');
|
|
37
|
+
|
|
38
|
+
if (req.method === 'OPTIONS') {
|
|
39
|
+
res.writeHead(204);
|
|
40
|
+
res.end();
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
if (apiKey) {
|
|
45
|
+
const provided = (req.headers['x-api-key'] as string) ??
|
|
46
|
+
req.headers.authorization?.replace('Bearer ', '');
|
|
47
|
+
if (provided !== apiKey) {
|
|
48
|
+
this.json(res, 401, { error: 'Unauthorized', message: 'Invalid or missing API key' });
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
this.handleRequest(req, res).catch((err) => {
|
|
54
|
+
this.logger.error('API error:', err);
|
|
55
|
+
this.json(res, 500, {
|
|
56
|
+
error: 'Internal Server Error',
|
|
57
|
+
message: err instanceof Error ? err.message : String(err),
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
this.server.listen(port, () => {
|
|
63
|
+
this.logger.info(`REST API server started on http://localhost:${port}`);
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
this.setupSSE();
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
stop(): void {
|
|
70
|
+
if (this.statsTimer) {
|
|
71
|
+
clearInterval(this.statsTimer);
|
|
72
|
+
this.statsTimer = null;
|
|
73
|
+
}
|
|
74
|
+
for (const client of this.sseClients) {
|
|
75
|
+
try { client.end(); } catch { /* ignore */ }
|
|
76
|
+
}
|
|
77
|
+
this.sseClients.clear();
|
|
78
|
+
this.server?.close();
|
|
79
|
+
this.server = null;
|
|
80
|
+
this.logger.info('REST API server stopped');
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
private async handleRequest(req: http.IncomingMessage, res: http.ServerResponse): Promise<void> {
|
|
84
|
+
const url = new URL(req.url ?? '/', 'http://localhost');
|
|
85
|
+
const pathname = url.pathname;
|
|
86
|
+
const method = req.method ?? 'GET';
|
|
87
|
+
const query = url.searchParams;
|
|
88
|
+
|
|
89
|
+
// Health check
|
|
90
|
+
if (pathname === '/api/v1/health') {
|
|
91
|
+
this.json(res, 200, { status: 'ok', timestamp: new Date().toISOString() });
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// SSE event stream (for live dashboard)
|
|
96
|
+
if (pathname === '/api/v1/events' && method === 'GET') {
|
|
97
|
+
res.writeHead(200, {
|
|
98
|
+
'Content-Type': 'text/event-stream',
|
|
99
|
+
'Cache-Control': 'no-cache',
|
|
100
|
+
'Connection': 'keep-alive',
|
|
101
|
+
});
|
|
102
|
+
res.write('data: {"type":"connected"}\n\n');
|
|
103
|
+
this.sseClients.add(res);
|
|
104
|
+
req.on('close', () => this.sseClients.delete(res));
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// List all available methods
|
|
109
|
+
if (pathname === '/api/v1/methods' && method === 'GET') {
|
|
110
|
+
const methods = this.options.router.listMethods();
|
|
111
|
+
this.json(res, 200, {
|
|
112
|
+
methods,
|
|
113
|
+
rpcEndpoint: '/api/v1/rpc',
|
|
114
|
+
usage: 'POST /api/v1/rpc with body { "method": "<method>", "params": {...} }',
|
|
115
|
+
});
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// Generic RPC endpoint — the universal gateway
|
|
120
|
+
if (pathname === '/api/v1/rpc' && method === 'POST') {
|
|
121
|
+
const body = await this.readBody(req);
|
|
122
|
+
if (!body) {
|
|
123
|
+
this.json(res, 400, { error: 'Bad Request', message: 'Empty request body' });
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
const parsed = JSON.parse(body);
|
|
128
|
+
|
|
129
|
+
// Batch RPC support
|
|
130
|
+
if (Array.isArray(parsed)) {
|
|
131
|
+
const results = parsed.map((call: { method: string; params?: unknown; id?: string | number }) => {
|
|
132
|
+
try {
|
|
133
|
+
const result = this.options.router.handle(call.method, call.params ?? {});
|
|
134
|
+
return { id: call.id, result };
|
|
135
|
+
} catch (err) {
|
|
136
|
+
return { id: call.id, error: err instanceof Error ? err.message : String(err) };
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
this.json(res, 200, results);
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
if (!parsed.method) {
|
|
144
|
+
this.json(res, 400, { error: 'Bad Request', message: 'Missing "method" field' });
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
try {
|
|
149
|
+
const result = this.options.router.handle(parsed.method, parsed.params ?? {});
|
|
150
|
+
this.json(res, 200, { result });
|
|
151
|
+
} catch (err) {
|
|
152
|
+
this.json(res, 400, { error: err instanceof Error ? err.message : String(err) });
|
|
153
|
+
}
|
|
154
|
+
return;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// RESTful routes
|
|
158
|
+
let body: unknown = undefined;
|
|
159
|
+
if (method === 'POST' || method === 'PUT') {
|
|
160
|
+
try {
|
|
161
|
+
const raw = await this.readBody(req);
|
|
162
|
+
body = raw ? JSON.parse(raw) : {};
|
|
163
|
+
} catch {
|
|
164
|
+
this.json(res, 400, { error: 'Bad Request', message: 'Invalid JSON body' });
|
|
165
|
+
return;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
for (const route of this.routes) {
|
|
170
|
+
if (route.method !== method) continue;
|
|
171
|
+
const match = pathname.match(route.pattern);
|
|
172
|
+
if (!match) continue;
|
|
173
|
+
|
|
174
|
+
try {
|
|
175
|
+
const params = route.extractParams(match, query, body);
|
|
176
|
+
const result = this.options.router.handle(route.ipcMethod, params);
|
|
177
|
+
this.json(res, method === 'POST' ? 201 : 200, { result });
|
|
178
|
+
} catch (err) {
|
|
179
|
+
const msg = err instanceof Error ? err.message : String(err);
|
|
180
|
+
const status = msg.startsWith('Unknown method') ? 404 : 400;
|
|
181
|
+
this.json(res, status, { error: msg });
|
|
182
|
+
}
|
|
183
|
+
return;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
this.json(res, 404, { error: 'Not Found', message: `No route for ${method} ${pathname}` });
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
private buildRoutes(): RouteDefinition[] {
|
|
190
|
+
return [
|
|
191
|
+
// ─── Errors ────────────────────────────────────────────
|
|
192
|
+
{ method: 'POST', pattern: /^\/api\/v1\/errors$/, ipcMethod: 'error.report',
|
|
193
|
+
extractParams: (_m, _q, body) => body },
|
|
194
|
+
{ method: 'GET', pattern: /^\/api\/v1\/errors$/, ipcMethod: 'error.query',
|
|
195
|
+
extractParams: (_m, q) => ({
|
|
196
|
+
search: q.get('search') ?? '',
|
|
197
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
198
|
+
}) },
|
|
199
|
+
{ method: 'GET', pattern: /^\/api\/v1\/errors\/(\d+)$/, ipcMethod: 'error.get',
|
|
200
|
+
extractParams: (m) => ({ id: Number(m[1]) }) },
|
|
201
|
+
{ method: 'GET', pattern: /^\/api\/v1\/errors\/(\d+)\/match$/, ipcMethod: 'error.match',
|
|
202
|
+
extractParams: (m) => ({ errorId: Number(m[1]) }) },
|
|
203
|
+
{ method: 'GET', pattern: /^\/api\/v1\/errors\/(\d+)\/chain$/, ipcMethod: 'error.chain',
|
|
204
|
+
extractParams: (m) => ({ errorId: Number(m[1]) }) },
|
|
205
|
+
{ method: 'POST', pattern: /^\/api\/v1\/errors\/(\d+)\/resolve$/, ipcMethod: 'error.resolve',
|
|
206
|
+
extractParams: (m, _q, body) => ({ errorId: Number(m[1]), ...(body as object) }) },
|
|
207
|
+
|
|
208
|
+
// ─── Solutions ─────────────────────────────────────────
|
|
209
|
+
{ method: 'POST', pattern: /^\/api\/v1\/solutions$/, ipcMethod: 'solution.report',
|
|
210
|
+
extractParams: (_m, _q, body) => body },
|
|
211
|
+
{ method: 'GET', pattern: /^\/api\/v1\/solutions$/, ipcMethod: 'solution.query',
|
|
212
|
+
extractParams: (_m, q) => ({
|
|
213
|
+
errorId: q.get('errorId') ? Number(q.get('errorId')) : undefined,
|
|
214
|
+
}) },
|
|
215
|
+
{ method: 'POST', pattern: /^\/api\/v1\/solutions\/rate$/, ipcMethod: 'solution.rate',
|
|
216
|
+
extractParams: (_m, _q, body) => body },
|
|
217
|
+
{ method: 'GET', pattern: /^\/api\/v1\/solutions\/efficiency$/, ipcMethod: 'solution.efficiency',
|
|
218
|
+
extractParams: () => ({}) },
|
|
219
|
+
|
|
220
|
+
// ─── Projects ──────────────────────────────────────────
|
|
221
|
+
{ method: 'GET', pattern: /^\/api\/v1\/projects$/, ipcMethod: 'project.list',
|
|
222
|
+
extractParams: () => ({}) },
|
|
223
|
+
|
|
224
|
+
// ─── Code ──────────────────────────────────────────────
|
|
225
|
+
{ method: 'POST', pattern: /^\/api\/v1\/code\/analyze$/, ipcMethod: 'code.analyze',
|
|
226
|
+
extractParams: (_m, _q, body) => body },
|
|
227
|
+
{ method: 'POST', pattern: /^\/api\/v1\/code\/find$/, ipcMethod: 'code.find',
|
|
228
|
+
extractParams: (_m, _q, body) => body },
|
|
229
|
+
{ method: 'POST', pattern: /^\/api\/v1\/code\/similarity$/, ipcMethod: 'code.similarity',
|
|
230
|
+
extractParams: (_m, _q, body) => body },
|
|
231
|
+
{ method: 'GET', pattern: /^\/api\/v1\/code\/modules$/, ipcMethod: 'code.modules',
|
|
232
|
+
extractParams: (_m, q) => ({
|
|
233
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
234
|
+
language: q.get('language') ?? undefined,
|
|
235
|
+
limit: q.get('limit') ? Number(q.get('limit')) : undefined,
|
|
236
|
+
}) },
|
|
237
|
+
{ method: 'GET', pattern: /^\/api\/v1\/code\/(\d+)$/, ipcMethod: 'code.get',
|
|
238
|
+
extractParams: (m) => ({ id: Number(m[1]) }) },
|
|
239
|
+
|
|
240
|
+
// ─── Prevention ────────────────────────────────────────
|
|
241
|
+
{ method: 'POST', pattern: /^\/api\/v1\/prevention\/check$/, ipcMethod: 'prevention.check',
|
|
242
|
+
extractParams: (_m, _q, body) => body },
|
|
243
|
+
{ method: 'POST', pattern: /^\/api\/v1\/prevention\/antipatterns$/, ipcMethod: 'prevention.antipatterns',
|
|
244
|
+
extractParams: (_m, _q, body) => body },
|
|
245
|
+
{ method: 'POST', pattern: /^\/api\/v1\/prevention\/code$/, ipcMethod: 'prevention.checkCode',
|
|
246
|
+
extractParams: (_m, _q, body) => body },
|
|
247
|
+
|
|
248
|
+
// ─── Synapses ─────────────────────────────────────────
|
|
249
|
+
{ method: 'GET', pattern: /^\/api\/v1\/synapses\/context\/(\d+)$/, ipcMethod: 'synapse.context',
|
|
250
|
+
extractParams: (m) => ({ errorId: Number(m[1]) }) },
|
|
251
|
+
{ method: 'POST', pattern: /^\/api\/v1\/synapses\/path$/, ipcMethod: 'synapse.path',
|
|
252
|
+
extractParams: (_m, _q, body) => body },
|
|
253
|
+
{ method: 'POST', pattern: /^\/api\/v1\/synapses\/related$/, ipcMethod: 'synapse.related',
|
|
254
|
+
extractParams: (_m, _q, body) => body },
|
|
255
|
+
{ method: 'GET', pattern: /^\/api\/v1\/synapses\/stats$/, ipcMethod: 'synapse.stats',
|
|
256
|
+
extractParams: () => ({}) },
|
|
257
|
+
|
|
258
|
+
// ─── Research ──────────────────────────────────────────
|
|
259
|
+
{ method: 'GET', pattern: /^\/api\/v1\/research\/insights$/, ipcMethod: 'research.insights',
|
|
260
|
+
extractParams: (_m, q) => ({
|
|
261
|
+
type: q.get('type') ?? undefined,
|
|
262
|
+
limit: q.get('limit') ? Number(q.get('limit')) : 20,
|
|
263
|
+
activeOnly: q.get('activeOnly') !== 'false',
|
|
264
|
+
}) },
|
|
265
|
+
{ method: 'POST', pattern: /^\/api\/v1\/research\/insights\/(\d+)\/rate$/, ipcMethod: 'insight.rate',
|
|
266
|
+
extractParams: (m, _q, body) => ({ id: Number(m[1]), ...(body as object) }) },
|
|
267
|
+
{ method: 'GET', pattern: /^\/api\/v1\/research\/suggest$/, ipcMethod: 'research.suggest',
|
|
268
|
+
extractParams: (_m, q) => ({
|
|
269
|
+
context: q.get('context') ?? '',
|
|
270
|
+
limit: 10,
|
|
271
|
+
activeOnly: true,
|
|
272
|
+
}) },
|
|
273
|
+
{ method: 'GET', pattern: /^\/api\/v1\/research\/trends$/, ipcMethod: 'research.trends',
|
|
274
|
+
extractParams: (_m, q) => ({
|
|
275
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
276
|
+
windowDays: q.get('windowDays') ? Number(q.get('windowDays')) : undefined,
|
|
277
|
+
}) },
|
|
278
|
+
|
|
279
|
+
// ─── Notifications ────────────────────────────────────
|
|
280
|
+
{ method: 'GET', pattern: /^\/api\/v1\/notifications$/, ipcMethod: 'notification.list',
|
|
281
|
+
extractParams: (_m, q) => ({
|
|
282
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
283
|
+
}) },
|
|
284
|
+
{ method: 'POST', pattern: /^\/api\/v1\/notifications\/(\d+)\/ack$/, ipcMethod: 'notification.ack',
|
|
285
|
+
extractParams: (m) => ({ id: Number(m[1]) }) },
|
|
286
|
+
|
|
287
|
+
// ─── Analytics ─────────────────────────────────────────
|
|
288
|
+
{ method: 'GET', pattern: /^\/api\/v1\/analytics\/summary$/, ipcMethod: 'analytics.summary',
|
|
289
|
+
extractParams: (_m, q) => ({
|
|
290
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
291
|
+
}) },
|
|
292
|
+
{ method: 'GET', pattern: /^\/api\/v1\/analytics\/network$/, ipcMethod: 'analytics.network',
|
|
293
|
+
extractParams: (_m, q) => ({
|
|
294
|
+
limit: q.get('limit') ? Number(q.get('limit')) : undefined,
|
|
295
|
+
}) },
|
|
296
|
+
{ method: 'GET', pattern: /^\/api\/v1\/analytics\/health$/, ipcMethod: 'analytics.health',
|
|
297
|
+
extractParams: (_m, q) => ({
|
|
298
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
299
|
+
}) },
|
|
300
|
+
{ method: 'GET', pattern: /^\/api\/v1\/analytics\/timeline$/, ipcMethod: 'analytics.timeline',
|
|
301
|
+
extractParams: (_m, q) => ({
|
|
302
|
+
projectId: q.get('projectId') ? Number(q.get('projectId')) : undefined,
|
|
303
|
+
days: q.get('days') ? Number(q.get('days')) : undefined,
|
|
304
|
+
}) },
|
|
305
|
+
{ method: 'GET', pattern: /^\/api\/v1\/analytics\/explain\/(\d+)$/, ipcMethod: 'analytics.explain',
|
|
306
|
+
extractParams: (m) => ({ errorId: Number(m[1]) }) },
|
|
307
|
+
|
|
308
|
+
// ─── Git ───────────────────────────────────────────────
|
|
309
|
+
{ method: 'GET', pattern: /^\/api\/v1\/git\/context$/, ipcMethod: 'git.context',
|
|
310
|
+
extractParams: (_m, q) => ({ cwd: q.get('cwd') ?? undefined }) },
|
|
311
|
+
{ method: 'POST', pattern: /^\/api\/v1\/git\/link-error$/, ipcMethod: 'git.linkError',
|
|
312
|
+
extractParams: (_m, _q, body) => body },
|
|
313
|
+
{ method: 'GET', pattern: /^\/api\/v1\/git\/errors\/(\d+)\/commits$/, ipcMethod: 'git.errorCommits',
|
|
314
|
+
extractParams: (m) => ({ errorId: Number(m[1]) }) },
|
|
315
|
+
{ method: 'GET', pattern: /^\/api\/v1\/git\/commits\/([a-f0-9]+)\/errors$/, ipcMethod: 'git.commitErrors',
|
|
316
|
+
extractParams: (m) => ({ commitHash: m[1] }) },
|
|
317
|
+
{ method: 'GET', pattern: /^\/api\/v1\/git\/diff$/, ipcMethod: 'git.diff',
|
|
318
|
+
extractParams: (_m, q) => ({ cwd: q.get('cwd') ?? undefined }) },
|
|
319
|
+
|
|
320
|
+
// ─── Terminal ──────────────────────────────────────────
|
|
321
|
+
{ method: 'POST', pattern: /^\/api\/v1\/terminal\/register$/, ipcMethod: 'terminal.register',
|
|
322
|
+
extractParams: (_m, _q, body) => body },
|
|
323
|
+
{ method: 'POST', pattern: /^\/api\/v1\/terminal\/heartbeat$/, ipcMethod: 'terminal.heartbeat',
|
|
324
|
+
extractParams: (_m, _q, body) => body },
|
|
325
|
+
{ method: 'POST', pattern: /^\/api\/v1\/terminal\/disconnect$/, ipcMethod: 'terminal.disconnect',
|
|
326
|
+
extractParams: (_m, _q, body) => body },
|
|
327
|
+
|
|
328
|
+
// ─── Learning ──────────────────────────────────────────
|
|
329
|
+
{ method: 'POST', pattern: /^\/api\/v1\/learning\/run$/, ipcMethod: 'learning.run',
|
|
330
|
+
extractParams: () => ({}) },
|
|
331
|
+
];
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
private json(res: http.ServerResponse, status: number, data: unknown): void {
|
|
335
|
+
res.writeHead(status, { 'Content-Type': 'application/json' });
|
|
336
|
+
res.end(JSON.stringify(data));
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
private readBody(req: http.IncomingMessage): Promise<string> {
|
|
340
|
+
return new Promise((resolve, reject) => {
|
|
341
|
+
const chunks: Buffer[] = [];
|
|
342
|
+
req.on('data', (chunk: Buffer) => chunks.push(chunk));
|
|
343
|
+
req.on('end', () => resolve(Buffer.concat(chunks).toString('utf8')));
|
|
344
|
+
req.on('error', reject);
|
|
345
|
+
});
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
private setupSSE(): void {
|
|
349
|
+
const bus = getEventBus();
|
|
350
|
+
const eventNames = [
|
|
351
|
+
'error:reported', 'error:resolved', 'solution:applied',
|
|
352
|
+
'solution:created', 'module:registered', 'module:updated',
|
|
353
|
+
'synapse:created', 'synapse:strengthened',
|
|
354
|
+
'insight:created', 'rule:learned',
|
|
355
|
+
] as const;
|
|
356
|
+
|
|
357
|
+
for (const eventName of eventNames) {
|
|
358
|
+
bus.on(eventName, (data: unknown) => {
|
|
359
|
+
this.broadcastSSE({ type: 'event', event: eventName, data });
|
|
360
|
+
});
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// Periodic stats broadcast every 30s
|
|
364
|
+
this.statsTimer = setInterval(() => {
|
|
365
|
+
if (this.sseClients.size > 0) {
|
|
366
|
+
try {
|
|
367
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
368
|
+
const summary = this.options.router.handle('analytics.summary', {}) as any;
|
|
369
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
370
|
+
const network = this.options.router.handle('synapse.stats', {}) as any;
|
|
371
|
+
const stats = {
|
|
372
|
+
modules: summary?.modules?.total ?? 0,
|
|
373
|
+
synapses: network?.totalSynapses ?? 0,
|
|
374
|
+
errors: summary?.errors?.total ?? 0,
|
|
375
|
+
solutions: summary?.solutions?.total ?? 0,
|
|
376
|
+
rules: summary?.rules?.active ?? 0,
|
|
377
|
+
insights: summary?.insights?.total ?? 0,
|
|
378
|
+
};
|
|
379
|
+
this.broadcastSSE({ type: 'stats_update', stats });
|
|
380
|
+
} catch { /* ignore stats errors */ }
|
|
381
|
+
}
|
|
382
|
+
}, 30_000);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
private broadcastSSE(data: unknown): void {
|
|
386
|
+
const msg = `data: ${JSON.stringify(data)}\n\n`;
|
|
387
|
+
for (const client of this.sseClients) {
|
|
388
|
+
try {
|
|
389
|
+
client.write(msg);
|
|
390
|
+
} catch {
|
|
391
|
+
this.sseClients.delete(client);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|