@friggframework/devtools 2.0.0-next.29 → 2.0.0-next.30

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.
Files changed (164) hide show
  1. package/frigg-cli/.eslintrc.js +141 -0
  2. package/frigg-cli/__tests__/jest.config.js +102 -0
  3. package/frigg-cli/__tests__/unit/commands/build.test.js +483 -0
  4. package/frigg-cli/__tests__/unit/commands/install.test.js +418 -0
  5. package/frigg-cli/__tests__/unit/commands/ui.test.js +592 -0
  6. package/frigg-cli/__tests__/utils/command-tester.js +170 -0
  7. package/frigg-cli/__tests__/utils/mock-factory.js +270 -0
  8. package/frigg-cli/__tests__/utils/test-fixtures.js +463 -0
  9. package/frigg-cli/__tests__/utils/test-setup.js +286 -0
  10. package/frigg-cli/generate-command/__tests__/generate-command.test.js +312 -0
  11. package/frigg-cli/generate-command/azure-generator.js +43 -0
  12. package/frigg-cli/generate-command/gcp-generator.js +47 -0
  13. package/frigg-cli/generate-command/index.js +332 -0
  14. package/frigg-cli/generate-command/terraform-generator.js +555 -0
  15. package/frigg-cli/index.js +19 -1
  16. package/frigg-cli/init-command/backend-first-handler.js +756 -0
  17. package/frigg-cli/init-command/index.js +93 -0
  18. package/frigg-cli/init-command/template-handler.js +143 -0
  19. package/frigg-cli/package.json +51 -0
  20. package/frigg-cli/test/init-command.test.js +180 -0
  21. package/frigg-cli/test/npm-registry.test.js +319 -0
  22. package/frigg-cli/ui-command/index.js +154 -0
  23. package/frigg-cli/utils/app-resolver.js +319 -0
  24. package/frigg-cli/utils/backend-path.js +25 -0
  25. package/frigg-cli/utils/npm-registry.js +167 -0
  26. package/frigg-cli/utils/process-manager.js +199 -0
  27. package/frigg-cli/utils/repo-detection.js +405 -0
  28. package/infrastructure/serverless-template.js +177 -292
  29. package/management-ui/.eslintrc.js +22 -0
  30. package/management-ui/README.md +203 -0
  31. package/management-ui/components.json +21 -0
  32. package/management-ui/docs/phase2-integration-guide.md +320 -0
  33. package/management-ui/{dist/index.html → index.html} +1 -2
  34. package/management-ui/package-lock.json +16517 -0
  35. package/management-ui/package.json +76 -0
  36. package/management-ui/packages/devtools/frigg-cli/ui-command/index.js +302 -0
  37. package/management-ui/postcss.config.js +6 -0
  38. package/management-ui/server/api/backend.js +256 -0
  39. package/management-ui/server/api/cli.js +315 -0
  40. package/management-ui/server/api/codegen.js +663 -0
  41. package/management-ui/server/api/connections.js +857 -0
  42. package/management-ui/server/api/discovery.js +185 -0
  43. package/management-ui/server/api/environment/index.js +1 -0
  44. package/management-ui/server/api/environment/router.js +378 -0
  45. package/management-ui/server/api/environment.js +328 -0
  46. package/management-ui/server/api/integrations.js +876 -0
  47. package/management-ui/server/api/logs.js +248 -0
  48. package/management-ui/server/api/monitoring.js +282 -0
  49. package/management-ui/server/api/open-ide.js +31 -0
  50. package/management-ui/server/api/project.js +1029 -0
  51. package/management-ui/server/api/users/sessions.js +371 -0
  52. package/management-ui/server/api/users/simulation.js +254 -0
  53. package/management-ui/server/api/users.js +362 -0
  54. package/management-ui/server/api-contract.md +275 -0
  55. package/management-ui/server/index.js +873 -0
  56. package/management-ui/server/middleware/errorHandler.js +93 -0
  57. package/management-ui/server/middleware/security.js +32 -0
  58. package/management-ui/server/processManager.js +296 -0
  59. package/management-ui/server/server.js +346 -0
  60. package/management-ui/server/services/aws-monitor.js +413 -0
  61. package/management-ui/server/services/npm-registry.js +347 -0
  62. package/management-ui/server/services/template-engine.js +538 -0
  63. package/management-ui/server/utils/cliIntegration.js +220 -0
  64. package/management-ui/server/utils/environment/auditLogger.js +471 -0
  65. package/management-ui/server/utils/environment/awsParameterStore.js +264 -0
  66. package/management-ui/server/utils/environment/encryption.js +278 -0
  67. package/management-ui/server/utils/environment/envFileManager.js +286 -0
  68. package/management-ui/server/utils/import-commonjs.js +28 -0
  69. package/management-ui/server/utils/response.js +83 -0
  70. package/management-ui/server/websocket/handler.js +325 -0
  71. package/management-ui/src/App.jsx +109 -0
  72. package/management-ui/src/components/AppRouter.jsx +65 -0
  73. package/management-ui/src/components/Button.jsx +70 -0
  74. package/management-ui/src/components/Card.jsx +97 -0
  75. package/management-ui/src/components/EnvironmentCompare.jsx +400 -0
  76. package/management-ui/src/components/EnvironmentEditor.jsx +372 -0
  77. package/management-ui/src/components/EnvironmentImportExport.jsx +469 -0
  78. package/management-ui/src/components/EnvironmentSchema.jsx +491 -0
  79. package/management-ui/src/components/EnvironmentSecurity.jsx +463 -0
  80. package/management-ui/src/components/ErrorBoundary.jsx +73 -0
  81. package/management-ui/src/components/IntegrationCard.jsx +481 -0
  82. package/management-ui/src/components/IntegrationCardEnhanced.jsx +770 -0
  83. package/management-ui/src/components/IntegrationExplorer.jsx +379 -0
  84. package/management-ui/src/components/IntegrationStatus.jsx +336 -0
  85. package/management-ui/src/components/Layout.jsx +716 -0
  86. package/management-ui/src/components/LoadingSpinner.jsx +113 -0
  87. package/management-ui/src/components/RepositoryPicker.jsx +248 -0
  88. package/management-ui/src/components/SessionMonitor.jsx +350 -0
  89. package/management-ui/src/components/StatusBadge.jsx +208 -0
  90. package/management-ui/src/components/UserContextSwitcher.jsx +212 -0
  91. package/management-ui/src/components/UserSimulation.jsx +327 -0
  92. package/management-ui/src/components/Welcome.jsx +434 -0
  93. package/management-ui/src/components/codegen/APIEndpointGenerator.jsx +637 -0
  94. package/management-ui/src/components/codegen/APIModuleSelector.jsx +227 -0
  95. package/management-ui/src/components/codegen/CodeGenerationWizard.jsx +247 -0
  96. package/management-ui/src/components/codegen/CodePreviewEditor.jsx +316 -0
  97. package/management-ui/src/components/codegen/DynamicModuleForm.jsx +271 -0
  98. package/management-ui/src/components/codegen/FormBuilder.jsx +737 -0
  99. package/management-ui/src/components/codegen/IntegrationGenerator.jsx +855 -0
  100. package/management-ui/src/components/codegen/ProjectScaffoldWizard.jsx +797 -0
  101. package/management-ui/src/components/codegen/SchemaBuilder.jsx +303 -0
  102. package/management-ui/src/components/codegen/TemplateSelector.jsx +586 -0
  103. package/management-ui/src/components/codegen/index.js +10 -0
  104. package/management-ui/src/components/connections/ConnectionConfigForm.jsx +362 -0
  105. package/management-ui/src/components/connections/ConnectionHealthMonitor.jsx +182 -0
  106. package/management-ui/src/components/connections/ConnectionTester.jsx +200 -0
  107. package/management-ui/src/components/connections/EntityRelationshipMapper.jsx +292 -0
  108. package/management-ui/src/components/connections/OAuthFlow.jsx +204 -0
  109. package/management-ui/src/components/connections/index.js +5 -0
  110. package/management-ui/src/components/index.js +21 -0
  111. package/management-ui/src/components/monitoring/APIGatewayMetrics.jsx +222 -0
  112. package/management-ui/src/components/monitoring/LambdaMetrics.jsx +169 -0
  113. package/management-ui/src/components/monitoring/MetricsChart.jsx +197 -0
  114. package/management-ui/src/components/monitoring/MonitoringDashboard.jsx +393 -0
  115. package/management-ui/src/components/monitoring/SQSMetrics.jsx +246 -0
  116. package/management-ui/src/components/monitoring/index.js +6 -0
  117. package/management-ui/src/components/monitoring/monitoring.css +218 -0
  118. package/management-ui/src/components/theme-provider.jsx +52 -0
  119. package/management-ui/src/components/theme-toggle.jsx +39 -0
  120. package/management-ui/src/components/ui/badge.tsx +36 -0
  121. package/management-ui/src/components/ui/button.test.jsx +56 -0
  122. package/management-ui/src/components/ui/button.tsx +57 -0
  123. package/management-ui/src/components/ui/card.tsx +76 -0
  124. package/management-ui/src/components/ui/dropdown-menu.tsx +199 -0
  125. package/management-ui/src/components/ui/select.tsx +157 -0
  126. package/management-ui/src/components/ui/skeleton.jsx +15 -0
  127. package/management-ui/src/hooks/useFrigg.jsx +601 -0
  128. package/management-ui/src/hooks/useSocket.jsx +58 -0
  129. package/management-ui/src/index.css +193 -0
  130. package/management-ui/src/lib/utils.ts +6 -0
  131. package/management-ui/src/main.jsx +10 -0
  132. package/management-ui/src/pages/CodeGeneration.jsx +14 -0
  133. package/management-ui/src/pages/Connections.jsx +252 -0
  134. package/management-ui/src/pages/ConnectionsEnhanced.jsx +633 -0
  135. package/management-ui/src/pages/Dashboard.jsx +311 -0
  136. package/management-ui/src/pages/Environment.jsx +314 -0
  137. package/management-ui/src/pages/IntegrationConfigure.jsx +669 -0
  138. package/management-ui/src/pages/IntegrationDiscovery.jsx +567 -0
  139. package/management-ui/src/pages/IntegrationTest.jsx +742 -0
  140. package/management-ui/src/pages/Integrations.jsx +253 -0
  141. package/management-ui/src/pages/Monitoring.jsx +17 -0
  142. package/management-ui/src/pages/Simulation.jsx +155 -0
  143. package/management-ui/src/pages/Users.jsx +492 -0
  144. package/management-ui/src/services/api.js +41 -0
  145. package/management-ui/src/services/apiModuleService.js +193 -0
  146. package/management-ui/src/services/websocket-handlers.js +120 -0
  147. package/management-ui/src/test/api/project.test.js +273 -0
  148. package/management-ui/src/test/components/Welcome.test.jsx +378 -0
  149. package/management-ui/src/test/mocks/server.js +178 -0
  150. package/management-ui/src/test/setup.js +61 -0
  151. package/management-ui/src/test/utils/test-utils.jsx +134 -0
  152. package/management-ui/src/utils/repository.js +98 -0
  153. package/management-ui/src/utils/repository.test.js +118 -0
  154. package/management-ui/src/workflows/phase2-integration-workflows.js +884 -0
  155. package/management-ui/tailwind.config.js +63 -0
  156. package/management-ui/tsconfig.json +37 -0
  157. package/management-ui/tsconfig.node.json +10 -0
  158. package/management-ui/vite.config.js +26 -0
  159. package/management-ui/vitest.config.js +38 -0
  160. package/package.json +5 -5
  161. package/management-ui/dist/assets/index-BA21WgFa.js +0 -1221
  162. package/management-ui/dist/assets/index-CbM64Oba.js +0 -1221
  163. package/management-ui/dist/assets/index-CkvseXTC.css +0 -1
  164. /package/management-ui/{dist/assets/FriggLogo-B7Xx8ZW1.svg → src/assets/FriggLogo.svg} +0 -0
@@ -0,0 +1,873 @@
1
+ import express from 'express'
2
+ import { createServer } from 'http'
3
+ import { Server } from 'socket.io'
4
+ import cors from 'cors'
5
+ import path from 'path'
6
+ import { fileURLToPath } from 'url'
7
+ import { spawn } from 'child_process'
8
+ import fs from 'fs/promises'
9
+ import processManager from './processManager.js'
10
+ import cliIntegration from './utils/cliIntegration.js'
11
+
12
+ const __filename = fileURLToPath(import.meta.url)
13
+ const __dirname = path.dirname(__filename)
14
+
15
+ <<<<<<< HEAD
16
+ <<<<<<< HEAD
17
+ =======
18
+ <<<<<<< HEAD
19
+ <<<<<<< HEAD
20
+ =======
21
+ >>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
22
+ >>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
23
+ =======
24
+ >>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)
25
+ class FriggManagementServer {
26
+ constructor(options = {}) {
27
+ this.port = options.port || process.env.PORT || 3001
28
+ this.projectRoot = options.projectRoot || process.cwd()
29
+ this.repositoryInfo = options.repositoryInfo || null
30
+ this.app = null
31
+ this.httpServer = null
32
+ this.io = null
33
+ this.mockIntegrations = []
34
+ this.mockUsers = []
35
+ this.mockConnections = []
36
+ this.envVariables = {}
37
+ <<<<<<< HEAD
38
+ <<<<<<< HEAD
39
+ =======
40
+ <<<<<<< HEAD
41
+ >>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
42
+ =======
43
+ >>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)
44
+ }
45
+
46
+ async start() {
47
+ this.app = express()
48
+ this.httpServer = createServer(this.app)
49
+ this.io = new Server(this.httpServer, {
50
+ cors: {
51
+ origin: ["http://localhost:5173", "http://localhost:3000"],
52
+ methods: ["GET", "POST"]
53
+ }
54
+ })
55
+
56
+ this.setupMiddleware()
57
+ this.setupSocketIO()
58
+ this.setupRoutes()
59
+ this.setupStaticFiles()
60
+
61
+ return new Promise((resolve, reject) => {
62
+ this.httpServer.listen(this.port, (err) => {
63
+ if (err) {
64
+ reject(err)
65
+ } else {
66
+ console.log(`Management UI server running on port ${this.port}`)
67
+ if (this.repositoryInfo) {
68
+ console.log(`Connected to repository: ${this.repositoryInfo.name}`)
69
+ }
70
+ resolve()
71
+ }
72
+ })
73
+ })
74
+ }
75
+
76
+ setupMiddleware() {
77
+ this.app.use(cors())
78
+ this.app.use(express.json())
79
+ }
80
+
81
+ setupSocketIO() {
82
+ // Set up process manager listeners
83
+ processManager.addStatusListener((data) => {
84
+ this.io.emit('frigg:status', data)
85
+
86
+ // Also emit logs if present
87
+ if (data.log) {
88
+ this.io.emit('frigg:log', data.log)
89
+ }
90
+ })
91
+
92
+ // Socket.IO connection handling
93
+ this.io.on('connection', (socket) => {
94
+ console.log('Client connected:', socket.id)
95
+
96
+ // Send initial status
97
+ socket.emit('frigg:status', processManager.getStatus())
98
+
99
+ // Send recent logs
100
+ const recentLogs = processManager.getLogs(50)
101
+ if (recentLogs.length > 0) {
102
+ socket.emit('frigg:logs', recentLogs)
103
+ }
104
+
105
+ socket.on('disconnect', () => {
106
+ console.log('Client disconnected:', socket.id)
107
+ })
108
+ })
109
+ }
110
+
111
+ setupRoutes() {
112
+ const app = this.app
113
+ const io = this.io
114
+ const mockIntegrations = this.mockIntegrations
115
+ const mockUsers = this.mockUsers
116
+ const mockConnections = this.mockConnections
117
+ const envVariables = this.envVariables
118
+
119
+ // API Routes
120
+
121
+ // Frigg server control
122
+ app.get('/api/frigg/status', (req, res) => {
123
+ res.json(processManager.getStatus())
124
+ })
125
+
126
+ app.get('/api/frigg/logs', (req, res) => {
127
+ const limit = parseInt(req.query.limit) || 100
128
+ res.json({ logs: processManager.getLogs(limit) })
129
+ })
130
+
131
+ app.get('/api/frigg/metrics', (req, res) => {
132
+ res.json(processManager.getMetrics())
133
+ })
134
+
135
+ app.post('/api/frigg/start', async (req, res) => {
136
+ try {
137
+ const options = {
138
+ stage: req.body.stage || 'dev',
139
+ verbose: req.body.verbose || false
140
+ }
141
+
142
+ const result = await processManager.start(options)
143
+ res.json({
144
+ message: 'Frigg started successfully',
145
+ status: result
146
+ })
147
+ } catch (error) {
148
+ res.status(500).json({ error: error.message })
149
+ }
150
+ })
151
+
152
+ app.post('/api/frigg/stop', async (req, res) => {
153
+ try {
154
+ const force = req.body.force || false
155
+ await processManager.stop(force)
156
+ res.json({ message: 'Frigg stopped successfully' })
157
+ } catch (error) {
158
+ res.status(500).json({ error: error.message })
159
+ }
160
+ })
161
+
162
+ app.post('/api/frigg/restart', async (req, res) => {
163
+ try {
164
+ const options = {
165
+ stage: req.body.stage || 'dev',
166
+ verbose: req.body.verbose || false
167
+ }
168
+
169
+ const result = await processManager.restart(options)
170
+ res.json({
171
+ message: 'Frigg restarted successfully',
172
+ status: result
173
+ })
174
+ } catch (error) {
175
+ res.status(500).json({ error: error.message })
176
+ }
177
+ })
178
+
179
+ // Integrations
180
+ app.get('/api/integrations', (req, res) => {
181
+ res.json({ integrations: mockIntegrations })
182
+ })
183
+
184
+ app.post('/api/integrations/install', async (req, res) => {
185
+ const { name } = req.body
186
+
187
+ try {
188
+ // In real implementation, this would run frigg install command
189
+ const newIntegration = {
190
+ id: Date.now().toString(),
191
+ name,
192
+ displayName: name.charAt(0).toUpperCase() + name.slice(1),
193
+ description: `${name} integration`,
194
+ installed: true,
195
+ installedAt: new Date().toISOString()
196
+ }
197
+
198
+ mockIntegrations.push(newIntegration)
199
+ io.emit('integrations:update', { integrations: mockIntegrations })
200
+
201
+ res.json({ integration: newIntegration })
202
+ } catch (error) {
203
+ res.status(500).json({ error: error.message })
204
+ }
205
+ })
206
+
207
+ // Environment variables
208
+ app.get('/api/environment', async (req, res) => {
209
+ try {
210
+ // In real implementation, read from .env file
211
+ res.json({ variables: envVariables })
212
+ } catch (error) {
213
+ res.status(500).json({ error: error.message })
214
+ }
215
+ })
216
+
217
+ app.put('/api/environment', async (req, res) => {
218
+ const { key, value } = req.body
219
+
220
+ try {
221
+ envVariables[key] = value
222
+ // In real implementation, write to .env file
223
+ res.json({ message: 'Environment variable updated' })
224
+ } catch (error) {
225
+ res.status(500).json({ error: error.message })
226
+ }
227
+ })
228
+
229
+ // Users
230
+ app.get('/api/users', (req, res) => {
231
+ res.json({ users: mockUsers })
232
+ })
233
+
234
+ app.post('/api/users', (req, res) => {
235
+ const newUser = {
236
+ id: Date.now().toString(),
237
+ ...req.body,
238
+ createdAt: new Date().toISOString()
239
+ }
240
+
241
+ mockUsers.push(newUser)
242
+ res.json({ user: newUser })
243
+ })
244
+
245
+ // Connections
246
+ app.get('/api/connections', (req, res) => {
247
+ res.json({ connections: mockConnections })
248
+ })
249
+
250
+ // CLI Integration endpoints
251
+ app.get('/api/cli/info', async (req, res) => {
252
+ try {
253
+ const isAvailable = await cliIntegration.validateCLI()
254
+ const info = isAvailable ? await cliIntegration.getInfo() : null
255
+
256
+ res.json({
257
+ available: isAvailable,
258
+ info,
259
+ cliPath: cliIntegration.cliPath
260
+ })
261
+ } catch (error) {
262
+ res.status(500).json({ error: error.message })
263
+ }
264
+ })
265
+
266
+ app.post('/api/cli/build', async (req, res) => {
267
+ try {
268
+ const options = {
269
+ stage: req.body.stage || 'dev',
270
+ verbose: req.body.verbose || false,
271
+ cwd: req.body.cwd || process.cwd()
272
+ }
273
+
274
+ const result = await cliIntegration.buildProject(options)
275
+ res.json({
276
+ message: 'Build completed successfully',
277
+ output: result.stdout,
278
+ errors: result.stderr
279
+ })
280
+ } catch (error) {
281
+ res.status(500).json({ error: error.message })
282
+ }
283
+ })
284
+
285
+ app.post('/api/cli/deploy', async (req, res) => {
286
+ try {
287
+ const options = {
288
+ stage: req.body.stage || 'dev',
289
+ verbose: req.body.verbose || false,
290
+ cwd: req.body.cwd || process.cwd()
291
+ }
292
+
293
+ const result = await cliIntegration.deployProject(options)
294
+ res.json({
295
+ message: 'Deploy completed successfully',
296
+ output: result.stdout,
297
+ errors: result.stderr
298
+ })
299
+ } catch (error) {
300
+ res.status(500).json({ error: error.message })
301
+ }
302
+ })
303
+
304
+ app.post('/api/cli/create-integration', async (req, res) => {
305
+ try {
306
+ const integrationName = req.body.name
307
+ const options = {
308
+ cwd: req.body.cwd || process.cwd(),
309
+ verbose: req.body.verbose || false
310
+ }
311
+
312
+ const result = await cliIntegration.createIntegration(integrationName, options)
313
+ res.json({
314
+ message: 'Integration created successfully',
315
+ output: result.stdout,
316
+ errors: result.stderr
317
+ })
318
+ } catch (error) {
319
+ res.status(500).json({ error: error.message })
320
+ }
321
+ })
322
+
323
+ app.post('/api/cli/generate-iam', async (req, res) => {
324
+ try {
325
+ const options = {
326
+ output: req.body.output,
327
+ user: req.body.user,
328
+ stackName: req.body.stackName,
329
+ verbose: req.body.verbose || false,
330
+ cwd: req.body.cwd || process.cwd()
331
+ }
332
+
333
+ const result = await cliIntegration.generateIAM(options)
334
+ res.json({
335
+ message: 'IAM template generated successfully',
336
+ output: result.stdout,
337
+ errors: result.stderr
338
+ })
339
+ } catch (error) {
340
+ res.status(500).json({ error: error.message })
341
+ }
342
+ })
343
+
344
+ }
345
+
346
+ setupStaticFiles() {
347
+ // Serve static files in production
348
+ if (process.env.NODE_ENV === 'production') {
349
+ this.app.use(express.static(path.join(__dirname, '../dist')))
350
+ this.app.get('*', (req, res) => {
351
+ res.sendFile(path.join(__dirname, '../dist/index.html'))
352
+ })
353
+ } else {
354
+ // In development, provide helpful message
355
+ this.app.get('/', (req, res) => {
356
+ res.send(`
357
+ <!DOCTYPE html>
358
+ <html>
359
+ <head>
360
+ <title>Frigg Management UI - Development Mode</title>
361
+ <style>
362
+ body {
363
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
364
+ display: flex;
365
+ justify-content: center;
366
+ align-items: center;
367
+ height: 100vh;
368
+ margin: 0;
369
+ background: #f5f5f5;
370
+ }
371
+ .container {
372
+ text-align: center;
373
+ padding: 2rem;
374
+ background: white;
375
+ border-radius: 8px;
376
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
377
+ max-width: 600px;
378
+ }
379
+ h1 { color: #333; }
380
+ p { color: #666; line-height: 1.6; }
381
+ code {
382
+ background: #f0f0f0;
383
+ padding: 0.2rem 0.4rem;
384
+ border-radius: 3px;
385
+ font-family: 'Consolas', 'Monaco', monospace;
386
+ }
387
+ .status {
388
+ margin: 1rem 0;
389
+ padding: 1rem;
390
+ background: #e3f2fd;
391
+ border-radius: 4px;
392
+ color: #1976d2;
393
+ }
394
+ </style>
395
+ </head>
396
+ <body>
397
+ <div class="container">
398
+ <h1>Frigg Management UI</h1>
399
+ <div class="status">
400
+ <strong>Backend API Server is running on port ${this.port}</strong>
401
+ </div>
402
+ <p>
403
+ The Management UI requires both the backend server (running now) and the frontend development server.
404
+ </p>
405
+ <p>
406
+ To start the complete Management UI, run the following commands in the management-ui directory:
407
+ </p>
408
+ <p>
409
+ <code>cd ${path.join(__dirname, '..')}</code><br>
410
+ <code>npm run dev:server</code>
411
+ </p>
412
+ <p>
413
+ This will start both the backend API server and the Vite frontend dev server.
414
+ The UI will be available at <strong>http://localhost:5173</strong>
415
+ </p>
416
+ </div>
417
+ </body>
418
+ </html>
419
+ `)
420
+ })
421
+ }
422
+ }
423
+
424
+ stop() {
425
+ return new Promise((resolve) => {
426
+ if (this.httpServer) {
427
+ this.httpServer.close(() => {
428
+ console.log('Management UI server stopped')
429
+ resolve()
430
+ })
431
+ } else {
432
+ resolve()
433
+ }
434
+ })
435
+ }
436
+ }
437
+
438
+ // Export the class for use as a module
439
+ export { FriggManagementServer }
440
+
441
+ // If run directly, start the server
442
+ if (import.meta.url === `file://${process.argv[1]}`) {
443
+ const server = new FriggManagementServer()
444
+ server.start().catch(console.error)
445
+ <<<<<<< HEAD
446
+ <<<<<<< HEAD
447
+ }
448
+ =======
449
+ }
450
+ =======
451
+ const app = express()
452
+ const httpServer = createServer(app)
453
+ const io = new Server(httpServer, {
454
+ cors: {
455
+ origin: "http://localhost:5173",
456
+ methods: ["GET", "POST"]
457
+ =======
458
+ >>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
459
+ }
460
+
461
+ async start() {
462
+ this.app = express()
463
+ this.httpServer = createServer(this.app)
464
+ this.io = new Server(this.httpServer, {
465
+ cors: {
466
+ origin: ["http://localhost:5173", "http://localhost:3000"],
467
+ methods: ["GET", "POST"]
468
+ }
469
+ })
470
+
471
+ this.setupMiddleware()
472
+ this.setupSocketIO()
473
+ this.setupRoutes()
474
+ this.setupStaticFiles()
475
+
476
+ return new Promise((resolve, reject) => {
477
+ this.httpServer.listen(this.port, (err) => {
478
+ if (err) {
479
+ reject(err)
480
+ } else {
481
+ console.log(`Management UI server running on port ${this.port}`)
482
+ if (this.repositoryInfo) {
483
+ console.log(`Connected to repository: ${this.repositoryInfo.name}`)
484
+ }
485
+ resolve()
486
+ }
487
+ })
488
+ })
489
+ }
490
+
491
+ setupMiddleware() {
492
+ this.app.use(cors())
493
+ this.app.use(express.json())
494
+ }
495
+
496
+ setupSocketIO() {
497
+ // Set up process manager listeners
498
+ processManager.addStatusListener((data) => {
499
+ this.io.emit('frigg:status', data)
500
+
501
+ // Also emit logs if present
502
+ if (data.log) {
503
+ this.io.emit('frigg:log', data.log)
504
+ }
505
+ })
506
+
507
+ // Socket.IO connection handling
508
+ this.io.on('connection', (socket) => {
509
+ console.log('Client connected:', socket.id)
510
+
511
+ // Send initial status
512
+ socket.emit('frigg:status', processManager.getStatus())
513
+
514
+ // Send recent logs
515
+ const recentLogs = processManager.getLogs(50)
516
+ if (recentLogs.length > 0) {
517
+ socket.emit('frigg:logs', recentLogs)
518
+ }
519
+
520
+ socket.on('disconnect', () => {
521
+ console.log('Client disconnected:', socket.id)
522
+ })
523
+ })
524
+ }
525
+
526
+ setupRoutes() {
527
+ const app = this.app
528
+ const io = this.io
529
+ const mockIntegrations = this.mockIntegrations
530
+ const mockUsers = this.mockUsers
531
+ const mockConnections = this.mockConnections
532
+ const envVariables = this.envVariables
533
+
534
+ // API Routes
535
+
536
+ // Frigg server control
537
+ app.get('/api/frigg/status', (req, res) => {
538
+ res.json(processManager.getStatus())
539
+ })
540
+
541
+ app.get('/api/frigg/logs', (req, res) => {
542
+ const limit = parseInt(req.query.limit) || 100
543
+ res.json({ logs: processManager.getLogs(limit) })
544
+ })
545
+
546
+ app.get('/api/frigg/metrics', (req, res) => {
547
+ res.json(processManager.getMetrics())
548
+ })
549
+
550
+ app.post('/api/frigg/start', async (req, res) => {
551
+ try {
552
+ const options = {
553
+ stage: req.body.stage || 'dev',
554
+ verbose: req.body.verbose || false
555
+ }
556
+
557
+ const result = await processManager.start(options)
558
+ res.json({
559
+ message: 'Frigg started successfully',
560
+ status: result
561
+ })
562
+ } catch (error) {
563
+ res.status(500).json({ error: error.message })
564
+ }
565
+ })
566
+
567
+ app.post('/api/frigg/stop', async (req, res) => {
568
+ try {
569
+ const force = req.body.force || false
570
+ await processManager.stop(force)
571
+ res.json({ message: 'Frigg stopped successfully' })
572
+ } catch (error) {
573
+ res.status(500).json({ error: error.message })
574
+ }
575
+ })
576
+
577
+ app.post('/api/frigg/restart', async (req, res) => {
578
+ try {
579
+ const options = {
580
+ stage: req.body.stage || 'dev',
581
+ verbose: req.body.verbose || false
582
+ }
583
+
584
+ const result = await processManager.restart(options)
585
+ res.json({
586
+ message: 'Frigg restarted successfully',
587
+ status: result
588
+ })
589
+ } catch (error) {
590
+ res.status(500).json({ error: error.message })
591
+ }
592
+ })
593
+
594
+ // Integrations
595
+ app.get('/api/integrations', (req, res) => {
596
+ res.json({ integrations: mockIntegrations })
597
+ })
598
+
599
+ app.post('/api/integrations/install', async (req, res) => {
600
+ const { name } = req.body
601
+
602
+ try {
603
+ // In real implementation, this would run frigg install command
604
+ const newIntegration = {
605
+ id: Date.now().toString(),
606
+ name,
607
+ displayName: name.charAt(0).toUpperCase() + name.slice(1),
608
+ description: `${name} integration`,
609
+ installed: true,
610
+ installedAt: new Date().toISOString()
611
+ }
612
+
613
+ mockIntegrations.push(newIntegration)
614
+ io.emit('integrations:update', { integrations: mockIntegrations })
615
+
616
+ res.json({ integration: newIntegration })
617
+ } catch (error) {
618
+ res.status(500).json({ error: error.message })
619
+ }
620
+ })
621
+
622
+ // Environment variables
623
+ app.get('/api/environment', async (req, res) => {
624
+ try {
625
+ // In real implementation, read from .env file
626
+ res.json({ variables: envVariables })
627
+ } catch (error) {
628
+ res.status(500).json({ error: error.message })
629
+ }
630
+ })
631
+
632
+ app.put('/api/environment', async (req, res) => {
633
+ const { key, value } = req.body
634
+
635
+ try {
636
+ envVariables[key] = value
637
+ // In real implementation, write to .env file
638
+ res.json({ message: 'Environment variable updated' })
639
+ } catch (error) {
640
+ res.status(500).json({ error: error.message })
641
+ }
642
+ })
643
+
644
+ // Users
645
+ app.get('/api/users', (req, res) => {
646
+ res.json({ users: mockUsers })
647
+ })
648
+
649
+ app.post('/api/users', (req, res) => {
650
+ const newUser = {
651
+ id: Date.now().toString(),
652
+ ...req.body,
653
+ createdAt: new Date().toISOString()
654
+ }
655
+
656
+ mockUsers.push(newUser)
657
+ res.json({ user: newUser })
658
+ })
659
+
660
+ // Connections
661
+ app.get('/api/connections', (req, res) => {
662
+ res.json({ connections: mockConnections })
663
+ })
664
+
665
+ // CLI Integration endpoints
666
+ app.get('/api/cli/info', async (req, res) => {
667
+ try {
668
+ const isAvailable = await cliIntegration.validateCLI()
669
+ const info = isAvailable ? await cliIntegration.getInfo() : null
670
+
671
+ res.json({
672
+ available: isAvailable,
673
+ info,
674
+ cliPath: cliIntegration.cliPath
675
+ })
676
+ } catch (error) {
677
+ res.status(500).json({ error: error.message })
678
+ }
679
+ })
680
+
681
+ app.post('/api/cli/build', async (req, res) => {
682
+ try {
683
+ const options = {
684
+ stage: req.body.stage || 'dev',
685
+ verbose: req.body.verbose || false,
686
+ cwd: req.body.cwd || process.cwd()
687
+ }
688
+
689
+ const result = await cliIntegration.buildProject(options)
690
+ res.json({
691
+ message: 'Build completed successfully',
692
+ output: result.stdout,
693
+ errors: result.stderr
694
+ })
695
+ } catch (error) {
696
+ res.status(500).json({ error: error.message })
697
+ }
698
+ })
699
+
700
+ app.post('/api/cli/deploy', async (req, res) => {
701
+ try {
702
+ const options = {
703
+ stage: req.body.stage || 'dev',
704
+ verbose: req.body.verbose || false,
705
+ cwd: req.body.cwd || process.cwd()
706
+ }
707
+
708
+ const result = await cliIntegration.deployProject(options)
709
+ res.json({
710
+ message: 'Deploy completed successfully',
711
+ output: result.stdout,
712
+ errors: result.stderr
713
+ })
714
+ } catch (error) {
715
+ res.status(500).json({ error: error.message })
716
+ }
717
+ })
718
+
719
+ app.post('/api/cli/create-integration', async (req, res) => {
720
+ try {
721
+ const integrationName = req.body.name
722
+ const options = {
723
+ cwd: req.body.cwd || process.cwd(),
724
+ verbose: req.body.verbose || false
725
+ }
726
+
727
+ const result = await cliIntegration.createIntegration(integrationName, options)
728
+ res.json({
729
+ message: 'Integration created successfully',
730
+ output: result.stdout,
731
+ errors: result.stderr
732
+ })
733
+ } catch (error) {
734
+ res.status(500).json({ error: error.message })
735
+ }
736
+ })
737
+
738
+ app.post('/api/cli/generate-iam', async (req, res) => {
739
+ try {
740
+ const options = {
741
+ output: req.body.output,
742
+ user: req.body.user,
743
+ stackName: req.body.stackName,
744
+ verbose: req.body.verbose || false,
745
+ cwd: req.body.cwd || process.cwd()
746
+ }
747
+
748
+ const result = await cliIntegration.generateIAM(options)
749
+ res.json({
750
+ message: 'IAM template generated successfully',
751
+ output: result.stdout,
752
+ errors: result.stderr
753
+ })
754
+ } catch (error) {
755
+ res.status(500).json({ error: error.message })
756
+ }
757
+ })
758
+
759
+ }
760
+
761
+ setupStaticFiles() {
762
+ // Serve static files in production
763
+ if (process.env.NODE_ENV === 'production') {
764
+ this.app.use(express.static(path.join(__dirname, '../dist')))
765
+ this.app.get('*', (req, res) => {
766
+ res.sendFile(path.join(__dirname, '../dist/index.html'))
767
+ })
768
+ } else {
769
+ // In development, provide helpful message
770
+ this.app.get('/', (req, res) => {
771
+ res.send(`
772
+ <!DOCTYPE html>
773
+ <html>
774
+ <head>
775
+ <title>Frigg Management UI - Development Mode</title>
776
+ <style>
777
+ body {
778
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
779
+ display: flex;
780
+ justify-content: center;
781
+ align-items: center;
782
+ height: 100vh;
783
+ margin: 0;
784
+ background: #f5f5f5;
785
+ }
786
+ .container {
787
+ text-align: center;
788
+ padding: 2rem;
789
+ background: white;
790
+ border-radius: 8px;
791
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
792
+ max-width: 600px;
793
+ }
794
+ h1 { color: #333; }
795
+ p { color: #666; line-height: 1.6; }
796
+ code {
797
+ background: #f0f0f0;
798
+ padding: 0.2rem 0.4rem;
799
+ border-radius: 3px;
800
+ font-family: 'Consolas', 'Monaco', monospace;
801
+ }
802
+ .status {
803
+ margin: 1rem 0;
804
+ padding: 1rem;
805
+ background: #e3f2fd;
806
+ border-radius: 4px;
807
+ color: #1976d2;
808
+ }
809
+ </style>
810
+ </head>
811
+ <body>
812
+ <div class="container">
813
+ <h1>Frigg Management UI</h1>
814
+ <div class="status">
815
+ <strong>Backend API Server is running on port ${this.port}</strong>
816
+ </div>
817
+ <p>
818
+ The Management UI requires both the backend server (running now) and the frontend development server.
819
+ </p>
820
+ <p>
821
+ To start the complete Management UI, run the following commands in the management-ui directory:
822
+ </p>
823
+ <p>
824
+ <code>cd ${path.join(__dirname, '..')}</code><br>
825
+ <code>npm run dev:server</code>
826
+ </p>
827
+ <p>
828
+ This will start both the backend API server and the Vite frontend dev server.
829
+ The UI will be available at <strong>http://localhost:5173</strong>
830
+ </p>
831
+ </div>
832
+ </body>
833
+ </html>
834
+ `)
835
+ })
836
+ }
837
+ }
838
+
839
+ stop() {
840
+ return new Promise((resolve) => {
841
+ if (this.httpServer) {
842
+ this.httpServer.close(() => {
843
+ console.log('Management UI server stopped')
844
+ resolve()
845
+ })
846
+ } else {
847
+ resolve()
848
+ }
849
+ })
850
+ }
851
+ }
852
+
853
+ <<<<<<< HEAD
854
+ // Start server
855
+ const PORT = process.env.PORT || 3001
856
+ httpServer.listen(PORT, () => {
857
+ console.log(`Management UI server running on port ${PORT}`)
858
+ })
859
+ >>>>>>> 652520a5 (Claude Flow RFC related development)
860
+ =======
861
+ // Export the class for use as a module
862
+ export { FriggManagementServer }
863
+
864
+ // If run directly, start the server
865
+ if (import.meta.url === `file://${process.argv[1]}`) {
866
+ const server = new FriggManagementServer()
867
+ server.start().catch(console.error)
868
+ }
869
+ >>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
870
+ >>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
871
+ =======
872
+ }
873
+ >>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)