@friggframework/devtools 2.0.0-next.5 → 2.0.0-next.50
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/frigg-cli/README.md +1290 -0
- package/frigg-cli/__tests__/unit/commands/build.test.js +279 -0
- package/frigg-cli/__tests__/unit/commands/db-setup.test.js +548 -0
- package/frigg-cli/__tests__/unit/commands/deploy.test.js +320 -0
- package/frigg-cli/__tests__/unit/commands/doctor.test.js +309 -0
- package/frigg-cli/__tests__/unit/commands/install.test.js +400 -0
- package/frigg-cli/__tests__/unit/commands/ui.test.js +346 -0
- package/frigg-cli/__tests__/unit/dependencies.test.js +74 -0
- package/frigg-cli/__tests__/unit/utils/database-validator.test.js +366 -0
- package/frigg-cli/__tests__/unit/utils/error-messages.test.js +304 -0
- package/frigg-cli/__tests__/unit/version-detection.test.js +171 -0
- package/frigg-cli/__tests__/utils/mock-factory.js +270 -0
- package/frigg-cli/__tests__/utils/prisma-mock.js +194 -0
- package/frigg-cli/__tests__/utils/test-fixtures.js +463 -0
- package/frigg-cli/__tests__/utils/test-setup.js +287 -0
- package/frigg-cli/build-command/index.js +66 -0
- package/frigg-cli/db-setup-command/index.js +193 -0
- package/frigg-cli/deploy-command/SPEC-DEPLOY-DRY-RUN.md +981 -0
- package/frigg-cli/deploy-command/index.js +302 -0
- package/frigg-cli/doctor-command/index.js +335 -0
- package/frigg-cli/generate-command/__tests__/generate-command.test.js +301 -0
- package/frigg-cli/generate-command/azure-generator.js +43 -0
- package/frigg-cli/generate-command/gcp-generator.js +47 -0
- package/frigg-cli/generate-command/index.js +332 -0
- package/frigg-cli/generate-command/terraform-generator.js +555 -0
- package/frigg-cli/generate-iam-command.js +118 -0
- package/frigg-cli/index.js +154 -1
- package/frigg-cli/index.test.js +1 -4
- package/frigg-cli/init-command/backend-first-handler.js +756 -0
- package/frigg-cli/init-command/index.js +93 -0
- package/frigg-cli/init-command/template-handler.js +143 -0
- package/frigg-cli/install-command/index.js +1 -4
- package/frigg-cli/jest.config.js +124 -0
- package/frigg-cli/package.json +63 -0
- package/frigg-cli/repair-command/index.js +564 -0
- package/frigg-cli/start-command/index.js +125 -6
- package/frigg-cli/start-command/start-command.test.js +297 -0
- package/frigg-cli/test/init-command.test.js +180 -0
- package/frigg-cli/test/npm-registry.test.js +319 -0
- package/frigg-cli/ui-command/index.js +154 -0
- package/frigg-cli/utils/app-resolver.js +319 -0
- package/frigg-cli/utils/backend-path.js +16 -17
- package/frigg-cli/utils/database-validator.js +154 -0
- package/frigg-cli/utils/error-messages.js +257 -0
- package/frigg-cli/utils/npm-registry.js +167 -0
- package/frigg-cli/utils/process-manager.js +199 -0
- package/frigg-cli/utils/repo-detection.js +405 -0
- package/infrastructure/ARCHITECTURE.md +487 -0
- package/infrastructure/CLAUDE.md +481 -0
- package/infrastructure/HEALTH.md +468 -0
- package/infrastructure/README.md +494 -0
- package/infrastructure/__tests__/fixtures/mock-aws-resources.js +391 -0
- package/infrastructure/__tests__/helpers/test-utils.js +277 -0
- package/infrastructure/__tests__/postgres-config.test.js +914 -0
- package/infrastructure/__tests__/template-generation.test.js +687 -0
- package/infrastructure/create-frigg-infrastructure.js +129 -20
- package/infrastructure/docs/POSTGRES-CONFIGURATION.md +630 -0
- package/infrastructure/docs/PRE-DEPLOYMENT-HEALTH-CHECK-SPEC.md +1317 -0
- package/infrastructure/docs/WEBSOCKET-CONFIGURATION.md +105 -0
- package/infrastructure/docs/deployment-instructions.md +268 -0
- package/infrastructure/docs/generate-iam-command.md +278 -0
- package/infrastructure/docs/iam-policy-templates.md +193 -0
- package/infrastructure/domains/database/aurora-builder.js +809 -0
- package/infrastructure/domains/database/aurora-builder.test.js +950 -0
- package/infrastructure/domains/database/aurora-discovery.js +87 -0
- package/infrastructure/domains/database/aurora-discovery.test.js +188 -0
- package/infrastructure/domains/database/aurora-resolver.js +210 -0
- package/infrastructure/domains/database/aurora-resolver.test.js +347 -0
- package/infrastructure/domains/database/migration-builder.js +695 -0
- package/infrastructure/domains/database/migration-builder.test.js +294 -0
- package/infrastructure/domains/database/migration-resolver.js +163 -0
- package/infrastructure/domains/database/migration-resolver.test.js +337 -0
- package/infrastructure/domains/health/application/ports/IPropertyReconciler.js +164 -0
- package/infrastructure/domains/health/application/ports/IResourceDetector.js +129 -0
- package/infrastructure/domains/health/application/ports/IResourceImporter.js +142 -0
- package/infrastructure/domains/health/application/ports/IStackRepository.js +131 -0
- package/infrastructure/domains/health/application/ports/index.js +26 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/execute-resource-import-use-case.test.js +679 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/mismatch-analyzer-method-name.test.js +167 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/repair-via-import-use-case.test.js +1130 -0
- package/infrastructure/domains/health/application/use-cases/execute-resource-import-use-case.js +221 -0
- package/infrastructure/domains/health/application/use-cases/reconcile-properties-use-case.js +152 -0
- package/infrastructure/domains/health/application/use-cases/reconcile-properties-use-case.test.js +343 -0
- package/infrastructure/domains/health/application/use-cases/repair-via-import-use-case.js +535 -0
- package/infrastructure/domains/health/application/use-cases/repair-via-import-use-case.test.js +376 -0
- package/infrastructure/domains/health/application/use-cases/run-health-check-use-case.js +213 -0
- package/infrastructure/domains/health/application/use-cases/run-health-check-use-case.test.js +441 -0
- package/infrastructure/domains/health/docs/ACME-DEV-DRIFT-ANALYSIS.md +267 -0
- package/infrastructure/domains/health/docs/BUILD-VS-DEPLOYED-TEMPLATE-ANALYSIS.md +324 -0
- package/infrastructure/domains/health/docs/ORPHAN-DETECTION-ANALYSIS.md +386 -0
- package/infrastructure/domains/health/docs/SPEC-CLEANUP-COMMAND.md +1419 -0
- package/infrastructure/domains/health/docs/TDD-IMPLEMENTATION-SUMMARY.md +391 -0
- package/infrastructure/domains/health/docs/TEMPLATE-COMPARISON-IMPLEMENTATION.md +551 -0
- package/infrastructure/domains/health/domain/entities/issue.js +299 -0
- package/infrastructure/domains/health/domain/entities/issue.test.js +528 -0
- package/infrastructure/domains/health/domain/entities/property-mismatch.js +108 -0
- package/infrastructure/domains/health/domain/entities/property-mismatch.test.js +275 -0
- package/infrastructure/domains/health/domain/entities/resource.js +159 -0
- package/infrastructure/domains/health/domain/entities/resource.test.js +432 -0
- package/infrastructure/domains/health/domain/entities/stack-health-report.js +306 -0
- package/infrastructure/domains/health/domain/entities/stack-health-report.test.js +601 -0
- package/infrastructure/domains/health/domain/services/__tests__/health-score-percentage-based.test.js +380 -0
- package/infrastructure/domains/health/domain/services/__tests__/import-progress-monitor.test.js +971 -0
- package/infrastructure/domains/health/domain/services/__tests__/import-template-generator.test.js +1150 -0
- package/infrastructure/domains/health/domain/services/__tests__/logical-id-mapper.test.js +672 -0
- package/infrastructure/domains/health/domain/services/__tests__/template-parser.test.js +496 -0
- package/infrastructure/domains/health/domain/services/__tests__/update-progress-monitor.test.js +419 -0
- package/infrastructure/domains/health/domain/services/health-score-calculator.js +248 -0
- package/infrastructure/domains/health/domain/services/health-score-calculator.test.js +504 -0
- package/infrastructure/domains/health/domain/services/import-progress-monitor.js +195 -0
- package/infrastructure/domains/health/domain/services/import-template-generator.js +435 -0
- package/infrastructure/domains/health/domain/services/logical-id-mapper.js +345 -0
- package/infrastructure/domains/health/domain/services/mismatch-analyzer.js +234 -0
- package/infrastructure/domains/health/domain/services/mismatch-analyzer.test.js +431 -0
- package/infrastructure/domains/health/domain/services/property-mutability-config.js +382 -0
- package/infrastructure/domains/health/domain/services/template-parser.js +245 -0
- package/infrastructure/domains/health/domain/services/update-progress-monitor.js +192 -0
- package/infrastructure/domains/health/domain/value-objects/health-score.js +138 -0
- package/infrastructure/domains/health/domain/value-objects/health-score.test.js +267 -0
- package/infrastructure/domains/health/domain/value-objects/property-mutability.js +161 -0
- package/infrastructure/domains/health/domain/value-objects/property-mutability.test.js +198 -0
- package/infrastructure/domains/health/domain/value-objects/resource-state.js +167 -0
- package/infrastructure/domains/health/domain/value-objects/resource-state.test.js +196 -0
- package/infrastructure/domains/health/domain/value-objects/stack-identifier.js +192 -0
- package/infrastructure/domains/health/domain/value-objects/stack-identifier.test.js +262 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-cfn-tagged.test.js +312 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-multi-stack.test.js +367 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-relationship-analysis.test.js +432 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-property-reconciler.js +784 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-property-reconciler.test.js +1133 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-detector.js +565 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-detector.test.js +554 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-importer.js +318 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-importer.test.js +398 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-stack-repository.js +777 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-stack-repository.test.js +580 -0
- package/infrastructure/domains/integration/integration-builder.js +397 -0
- package/infrastructure/domains/integration/integration-builder.test.js +593 -0
- package/infrastructure/domains/integration/integration-resolver.js +170 -0
- package/infrastructure/domains/integration/integration-resolver.test.js +369 -0
- package/infrastructure/domains/integration/websocket-builder.js +69 -0
- package/infrastructure/domains/integration/websocket-builder.test.js +195 -0
- package/infrastructure/domains/networking/vpc-builder.js +1829 -0
- package/infrastructure/domains/networking/vpc-builder.test.js +1262 -0
- package/infrastructure/domains/networking/vpc-discovery.js +177 -0
- package/infrastructure/domains/networking/vpc-discovery.test.js +350 -0
- package/infrastructure/domains/networking/vpc-resolver.js +324 -0
- package/infrastructure/domains/networking/vpc-resolver.test.js +501 -0
- package/infrastructure/domains/parameters/ssm-builder.js +79 -0
- package/infrastructure/domains/parameters/ssm-builder.test.js +189 -0
- package/infrastructure/domains/parameters/ssm-discovery.js +84 -0
- package/infrastructure/domains/parameters/ssm-discovery.test.js +210 -0
- package/infrastructure/domains/security/iam-generator.js +816 -0
- package/infrastructure/domains/security/iam-generator.test.js +204 -0
- package/infrastructure/domains/security/kms-builder.js +366 -0
- package/infrastructure/domains/security/kms-builder.test.js +374 -0
- package/infrastructure/domains/security/kms-discovery.js +80 -0
- package/infrastructure/domains/security/kms-discovery.test.js +177 -0
- package/infrastructure/domains/security/kms-resolver.js +96 -0
- package/infrastructure/domains/security/kms-resolver.test.js +216 -0
- package/infrastructure/domains/security/templates/frigg-deployment-iam-stack.yaml +401 -0
- package/infrastructure/domains/security/templates/iam-policy-basic.json +218 -0
- package/infrastructure/domains/security/templates/iam-policy-full.json +288 -0
- package/infrastructure/domains/shared/base-builder.js +112 -0
- package/infrastructure/domains/shared/base-resolver.js +186 -0
- package/infrastructure/domains/shared/base-resolver.test.js +305 -0
- package/infrastructure/domains/shared/builder-orchestrator.js +212 -0
- package/infrastructure/domains/shared/builder-orchestrator.test.js +213 -0
- package/infrastructure/domains/shared/cloudformation-discovery-v2.js +334 -0
- package/infrastructure/domains/shared/cloudformation-discovery.js +375 -0
- package/infrastructure/domains/shared/cloudformation-discovery.test.js +590 -0
- package/infrastructure/domains/shared/environment-builder.js +119 -0
- package/infrastructure/domains/shared/environment-builder.test.js +247 -0
- package/infrastructure/domains/shared/providers/aws-provider-adapter.js +544 -0
- package/infrastructure/domains/shared/providers/aws-provider-adapter.test.js +377 -0
- package/infrastructure/domains/shared/providers/azure-provider-adapter.stub.js +93 -0
- package/infrastructure/domains/shared/providers/cloud-provider-adapter.js +136 -0
- package/infrastructure/domains/shared/providers/gcp-provider-adapter.stub.js +82 -0
- package/infrastructure/domains/shared/providers/provider-factory.js +108 -0
- package/infrastructure/domains/shared/providers/provider-factory.test.js +170 -0
- package/infrastructure/domains/shared/resource-discovery.enhanced.test.js +306 -0
- package/infrastructure/domains/shared/resource-discovery.js +221 -0
- package/infrastructure/domains/shared/resource-discovery.test.js +552 -0
- package/infrastructure/domains/shared/types/app-definition.js +205 -0
- package/infrastructure/domains/shared/types/discovery-result.js +106 -0
- package/infrastructure/domains/shared/types/discovery-result.test.js +258 -0
- package/infrastructure/domains/shared/types/index.js +46 -0
- package/infrastructure/domains/shared/types/resource-ownership.js +108 -0
- package/infrastructure/domains/shared/types/resource-ownership.test.js +101 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.js +380 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.js.bak +338 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.test.js +248 -0
- package/infrastructure/domains/shared/utilities/handler-path-resolver.js +134 -0
- package/infrastructure/domains/shared/utilities/handler-path-resolver.test.js +268 -0
- package/infrastructure/domains/shared/utilities/prisma-layer-manager.js +159 -0
- package/infrastructure/domains/shared/utilities/prisma-layer-manager.test.js +444 -0
- package/infrastructure/domains/shared/validation/env-validator.js +78 -0
- package/infrastructure/domains/shared/validation/env-validator.test.js +173 -0
- package/infrastructure/domains/shared/validation/plugin-validator.js +187 -0
- package/infrastructure/domains/shared/validation/plugin-validator.test.js +323 -0
- package/infrastructure/esbuild.config.js +53 -0
- package/infrastructure/infrastructure-composer.js +109 -0
- package/infrastructure/infrastructure-composer.test.js +1895 -0
- package/infrastructure/integration.test.js +383 -0
- package/infrastructure/scripts/build-prisma-layer.js +553 -0
- package/infrastructure/scripts/build-prisma-layer.test.js +102 -0
- package/infrastructure/scripts/build-time-discovery.js +238 -0
- package/infrastructure/scripts/build-time-discovery.test.js +379 -0
- package/infrastructure/scripts/run-discovery.js +110 -0
- package/layers/prisma/.build-complete +3 -0
- package/layers/prisma/nodejs/package.json +8 -0
- package/management-ui/.eslintrc.js +22 -0
- package/management-ui/README.md +203 -0
- package/management-ui/components.json +21 -0
- package/management-ui/docs/phase2-integration-guide.md +320 -0
- package/management-ui/index.html +13 -0
- package/management-ui/package.json +76 -0
- package/management-ui/packages/devtools/frigg-cli/ui-command/index.js +302 -0
- package/management-ui/postcss.config.js +6 -0
- package/management-ui/server/api/backend.js +256 -0
- package/management-ui/server/api/cli.js +315 -0
- package/management-ui/server/api/codegen.js +663 -0
- package/management-ui/server/api/connections.js +857 -0
- package/management-ui/server/api/discovery.js +185 -0
- package/management-ui/server/api/environment/index.js +1 -0
- package/management-ui/server/api/environment/router.js +378 -0
- package/management-ui/server/api/environment.js +328 -0
- package/management-ui/server/api/integrations.js +876 -0
- package/management-ui/server/api/logs.js +248 -0
- package/management-ui/server/api/monitoring.js +282 -0
- package/management-ui/server/api/open-ide.js +31 -0
- package/management-ui/server/api/project.js +1029 -0
- package/management-ui/server/api/users/sessions.js +371 -0
- package/management-ui/server/api/users/simulation.js +254 -0
- package/management-ui/server/api/users.js +362 -0
- package/management-ui/server/api-contract.md +275 -0
- package/management-ui/server/index.js +873 -0
- package/management-ui/server/middleware/errorHandler.js +93 -0
- package/management-ui/server/middleware/security.js +32 -0
- package/management-ui/server/processManager.js +296 -0
- package/management-ui/server/server.js +346 -0
- package/management-ui/server/services/aws-monitor.js +413 -0
- package/management-ui/server/services/npm-registry.js +347 -0
- package/management-ui/server/services/template-engine.js +538 -0
- package/management-ui/server/utils/cliIntegration.js +220 -0
- package/management-ui/server/utils/environment/auditLogger.js +471 -0
- package/management-ui/server/utils/environment/awsParameterStore.js +275 -0
- package/management-ui/server/utils/environment/encryption.js +278 -0
- package/management-ui/server/utils/environment/envFileManager.js +286 -0
- package/management-ui/server/utils/import-commonjs.js +28 -0
- package/management-ui/server/utils/response.js +83 -0
- package/management-ui/server/websocket/handler.js +325 -0
- package/management-ui/src/App.jsx +25 -0
- package/management-ui/src/assets/FriggLogo.svg +1 -0
- package/management-ui/src/components/AppRouter.jsx +65 -0
- package/management-ui/src/components/Button.jsx +70 -0
- package/management-ui/src/components/Card.jsx +97 -0
- package/management-ui/src/components/EnvironmentCompare.jsx +400 -0
- package/management-ui/src/components/EnvironmentEditor.jsx +372 -0
- package/management-ui/src/components/EnvironmentImportExport.jsx +469 -0
- package/management-ui/src/components/EnvironmentSchema.jsx +491 -0
- package/management-ui/src/components/EnvironmentSecurity.jsx +463 -0
- package/management-ui/src/components/ErrorBoundary.jsx +73 -0
- package/management-ui/src/components/IntegrationCard.jsx +481 -0
- package/management-ui/src/components/IntegrationCardEnhanced.jsx +770 -0
- package/management-ui/src/components/IntegrationExplorer.jsx +379 -0
- package/management-ui/src/components/IntegrationStatus.jsx +336 -0
- package/management-ui/src/components/Layout.jsx +716 -0
- package/management-ui/src/components/LoadingSpinner.jsx +113 -0
- package/management-ui/src/components/RepositoryPicker.jsx +248 -0
- package/management-ui/src/components/SessionMonitor.jsx +350 -0
- package/management-ui/src/components/StatusBadge.jsx +208 -0
- package/management-ui/src/components/UserContextSwitcher.jsx +212 -0
- package/management-ui/src/components/UserSimulation.jsx +327 -0
- package/management-ui/src/components/Welcome.jsx +434 -0
- package/management-ui/src/components/codegen/APIEndpointGenerator.jsx +637 -0
- package/management-ui/src/components/codegen/APIModuleSelector.jsx +227 -0
- package/management-ui/src/components/codegen/CodeGenerationWizard.jsx +247 -0
- package/management-ui/src/components/codegen/CodePreviewEditor.jsx +316 -0
- package/management-ui/src/components/codegen/DynamicModuleForm.jsx +271 -0
- package/management-ui/src/components/codegen/FormBuilder.jsx +737 -0
- package/management-ui/src/components/codegen/IntegrationGenerator.jsx +855 -0
- package/management-ui/src/components/codegen/ProjectScaffoldWizard.jsx +797 -0
- package/management-ui/src/components/codegen/SchemaBuilder.jsx +303 -0
- package/management-ui/src/components/codegen/TemplateSelector.jsx +586 -0
- package/management-ui/src/components/codegen/index.js +10 -0
- package/management-ui/src/components/connections/ConnectionConfigForm.jsx +362 -0
- package/management-ui/src/components/connections/ConnectionHealthMonitor.jsx +182 -0
- package/management-ui/src/components/connections/ConnectionTester.jsx +200 -0
- package/management-ui/src/components/connections/EntityRelationshipMapper.jsx +292 -0
- package/management-ui/src/components/connections/OAuthFlow.jsx +204 -0
- package/management-ui/src/components/connections/index.js +5 -0
- package/management-ui/src/components/index.js +21 -0
- package/management-ui/src/components/monitoring/APIGatewayMetrics.jsx +222 -0
- package/management-ui/src/components/monitoring/LambdaMetrics.jsx +169 -0
- package/management-ui/src/components/monitoring/MetricsChart.jsx +197 -0
- package/management-ui/src/components/monitoring/MonitoringDashboard.jsx +393 -0
- package/management-ui/src/components/monitoring/SQSMetrics.jsx +246 -0
- package/management-ui/src/components/monitoring/index.js +6 -0
- package/management-ui/src/components/monitoring/monitoring.css +218 -0
- package/management-ui/src/components/theme-provider.jsx +52 -0
- package/management-ui/src/components/theme-toggle.jsx +39 -0
- package/management-ui/src/components/ui/badge.tsx +36 -0
- package/management-ui/src/components/ui/button.test.jsx +56 -0
- package/management-ui/src/components/ui/button.tsx +57 -0
- package/management-ui/src/components/ui/card.tsx +76 -0
- package/management-ui/src/components/ui/dropdown-menu.tsx +199 -0
- package/management-ui/src/components/ui/select.tsx +157 -0
- package/management-ui/src/components/ui/skeleton.jsx +15 -0
- package/management-ui/src/hooks/useFrigg.jsx +387 -0
- package/management-ui/src/hooks/useSocket.jsx +58 -0
- package/management-ui/src/index.css +193 -0
- package/management-ui/src/lib/utils.ts +6 -0
- package/management-ui/src/main.jsx +10 -0
- package/management-ui/src/pages/CodeGeneration.jsx +14 -0
- package/management-ui/src/pages/Connections.jsx +252 -0
- package/management-ui/src/pages/ConnectionsEnhanced.jsx +633 -0
- package/management-ui/src/pages/Dashboard.jsx +311 -0
- package/management-ui/src/pages/Environment.jsx +314 -0
- package/management-ui/src/pages/IntegrationConfigure.jsx +669 -0
- package/management-ui/src/pages/IntegrationDiscovery.jsx +567 -0
- package/management-ui/src/pages/IntegrationTest.jsx +742 -0
- package/management-ui/src/pages/Integrations.jsx +253 -0
- package/management-ui/src/pages/Monitoring.jsx +17 -0
- package/management-ui/src/pages/Simulation.jsx +155 -0
- package/management-ui/src/pages/Users.jsx +492 -0
- package/management-ui/src/services/api.js +41 -0
- package/management-ui/src/services/apiModuleService.js +193 -0
- package/management-ui/src/services/websocket-handlers.js +120 -0
- package/management-ui/src/test/api/project.test.js +273 -0
- package/management-ui/src/test/components/Welcome.test.jsx +378 -0
- package/management-ui/src/test/mocks/server.js +178 -0
- package/management-ui/src/test/setup.js +61 -0
- package/management-ui/src/test/utils/test-utils.jsx +134 -0
- package/management-ui/src/utils/repository.js +98 -0
- package/management-ui/src/utils/repository.test.js +118 -0
- package/management-ui/src/workflows/phase2-integration-workflows.js +884 -0
- package/management-ui/tailwind.config.js +63 -0
- package/management-ui/tsconfig.json +37 -0
- package/management-ui/tsconfig.node.json +10 -0
- package/management-ui/vite.config.js +26 -0
- package/management-ui/vitest.config.js +38 -0
- package/package.json +35 -13
- package/test/index.js +2 -4
- package/test/mock-integration.js +4 -14
- package/infrastructure/app-handler-helpers.js +0 -57
- package/infrastructure/backend-utils.js +0 -87
- package/infrastructure/routers/auth.js +0 -26
- package/infrastructure/routers/integration-defined-routers.js +0 -42
- package/infrastructure/routers/middleware/loadUser.js +0 -15
- package/infrastructure/routers/middleware/requireLoggedInUser.js +0 -12
- package/infrastructure/routers/user.js +0 -41
- package/infrastructure/routers/websocket.js +0 -55
- package/infrastructure/serverless-template.js +0 -291
- package/infrastructure/workers/integration-defined-workers.js +0 -24
- package/test/auther-definition-tester.js +0 -125
|
@@ -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)
|