@friggframework/devtools 2.0.0-next.0 → 2.0.0-next.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/frigg-cli/index.js +8 -2
- package/frigg-cli/index.test.js +87 -35
- package/frigg-cli/{environmentVariables.js → install-command/environment-variables.js} +11 -18
- package/frigg-cli/install-command/environment-variables.test.js +136 -0
- package/frigg-cli/{installCommand.js → install-command/index.js} +7 -7
- package/frigg-cli/{validatePackage.js → install-command/validate-package.js} +9 -13
- package/frigg-cli/start-command/index.js +30 -0
- package/index.js +4 -2
- package/infrastructure/app-handler-helpers.js +57 -0
- package/infrastructure/backend-utils.js +90 -0
- package/infrastructure/create-frigg-infrastructure.js +38 -0
- package/infrastructure/index.js +4 -0
- package/infrastructure/routers/auth.js +26 -0
- package/infrastructure/routers/integration-defined-routers.js +37 -0
- package/infrastructure/routers/middleware/loadUser.js +15 -0
- package/infrastructure/routers/middleware/requireLoggedInUser.js +12 -0
- package/infrastructure/routers/user.js +41 -0
- package/infrastructure/routers/websocket.js +55 -0
- package/infrastructure/serverless-template.js +291 -0
- package/infrastructure/workers/integration-defined-workers.js +24 -0
- package/package.json +18 -7
- package/test/mock-integration.js +61 -56
- package/frigg-cli/environmentVariables.test.js +0 -86
- /package/frigg-cli/{backendJs.js → install-command/backend-js.js} +0 -0
- /package/frigg-cli/{commitChanges.js → install-command/commit-changes.js} +0 -0
- /package/frigg-cli/{installPackage.js → install-command/install-package.js} +0 -0
- /package/frigg-cli/{integrationFile.js → install-command/integration-file.js} +0 -0
- /package/frigg-cli/{logger.js → install-command/logger.js} +0 -0
- /package/frigg-cli/{template.js → install-command/template.js} +0 -0
- /package/frigg-cli/{backendPath.js → utils/backend-path.js} +0 -0
package/frigg-cli/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
const { Command } = require('commander');
|
|
4
|
-
const { installCommand } = require('./
|
|
4
|
+
const { installCommand } = require('./install-command');
|
|
5
|
+
const { startCommand } = require('./start-command'); // Assuming you have a startCommand module
|
|
5
6
|
|
|
6
7
|
const program = new Command();
|
|
7
8
|
program
|
|
@@ -9,6 +10,11 @@ program
|
|
|
9
10
|
.description('Install an API module')
|
|
10
11
|
.action(installCommand);
|
|
11
12
|
|
|
13
|
+
program
|
|
14
|
+
.command('start')
|
|
15
|
+
.description('Run the backend and optional frontend')
|
|
16
|
+
.action(startCommand);
|
|
17
|
+
|
|
12
18
|
program.parse(process.argv);
|
|
13
19
|
|
|
14
|
-
module.exports = { installCommand };
|
|
20
|
+
module.exports = { installCommand, startCommand };
|
package/frigg-cli/index.test.js
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
const { Command } = require('commander');
|
|
2
2
|
const { installCommand } = require('./index');
|
|
3
|
-
const { validatePackageExists } = require('./
|
|
4
|
-
const {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const {
|
|
9
|
-
const {
|
|
3
|
+
const { validatePackageExists } = require('./install-command/validate-package');
|
|
4
|
+
const {
|
|
5
|
+
findNearestBackendPackageJson,
|
|
6
|
+
validateBackendPath,
|
|
7
|
+
} = require('./utils/backend-path');
|
|
8
|
+
const { installPackage } = require('./install-command/install-package');
|
|
9
|
+
const { createIntegrationFile } = require('./install-command/integration-file');
|
|
10
|
+
const { updateBackendJsFile } = require('./install-command/backend-js');
|
|
11
|
+
const { commitChanges } = require('./install-command/commit-changes');
|
|
12
|
+
const { logInfo, logError } = require('./install-command/logger');
|
|
10
13
|
|
|
11
14
|
describe('CLI Command Tests', () => {
|
|
12
15
|
it('should successfully install an API module when all steps complete without errors', async () => {
|
|
@@ -14,26 +17,28 @@ describe('CLI Command Tests', () => {
|
|
|
14
17
|
const mockPackageName = `@friggframework/api-module-${mockApiModuleName}`;
|
|
15
18
|
const mockBackendPath = '/mock/backend/path';
|
|
16
19
|
|
|
17
|
-
jest.mock('./
|
|
20
|
+
jest.mock('./install-command/validate-package', () => ({
|
|
18
21
|
validatePackageExists: jest.fn().mockResolvedValue(true),
|
|
19
22
|
}));
|
|
20
|
-
jest.mock('./
|
|
21
|
-
findNearestBackendPackageJson: jest
|
|
23
|
+
jest.mock('./utils/backend-path', () => ({
|
|
24
|
+
findNearestBackendPackageJson: jest
|
|
25
|
+
.fn()
|
|
26
|
+
.mockReturnValue(mockBackendPath),
|
|
22
27
|
validateBackendPath: jest.fn().mockReturnValue(true),
|
|
23
28
|
}));
|
|
24
|
-
jest.mock('./
|
|
29
|
+
jest.mock('./install-command/install-package', () => ({
|
|
25
30
|
installPackage: jest.fn().mockReturnValue(true),
|
|
26
31
|
}));
|
|
27
|
-
jest.mock('./
|
|
32
|
+
jest.mock('./install-command/integration-file', () => ({
|
|
28
33
|
createIntegrationFile: jest.fn().mockReturnValue(true),
|
|
29
34
|
}));
|
|
30
|
-
jest.mock('./
|
|
35
|
+
jest.mock('./install-command/backend-js', () => ({
|
|
31
36
|
updateBackendJsFile: jest.fn().mockReturnValue(true),
|
|
32
37
|
}));
|
|
33
|
-
jest.mock('./
|
|
38
|
+
jest.mock('./install-command/commit-changes', () => ({
|
|
34
39
|
commitChanges: jest.fn().mockReturnValue(true),
|
|
35
40
|
}));
|
|
36
|
-
jest.mock('./logger', () => ({
|
|
41
|
+
jest.mock('./install-command/logger', () => ({
|
|
37
42
|
logInfo: jest.fn(),
|
|
38
43
|
logError: jest.fn(),
|
|
39
44
|
}));
|
|
@@ -49,19 +54,42 @@ describe('CLI Command Tests', () => {
|
|
|
49
54
|
expect(validatePackageExists).toHaveBeenCalledWith(mockPackageName);
|
|
50
55
|
expect(findNearestBackendPackageJson).toHaveBeenCalled();
|
|
51
56
|
expect(validateBackendPath).toHaveBeenCalledWith(mockBackendPath);
|
|
52
|
-
expect(installPackage).toHaveBeenCalledWith(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
expect(
|
|
57
|
+
expect(installPackage).toHaveBeenCalledWith(
|
|
58
|
+
mockBackendPath,
|
|
59
|
+
mockPackageName
|
|
60
|
+
);
|
|
61
|
+
expect(createIntegrationFile).toHaveBeenCalledWith(
|
|
62
|
+
mockBackendPath,
|
|
63
|
+
mockApiModuleName
|
|
64
|
+
);
|
|
65
|
+
expect(updateBackendJsFile).toHaveBeenCalledWith(
|
|
66
|
+
mockBackendPath,
|
|
67
|
+
mockApiModuleName
|
|
68
|
+
);
|
|
69
|
+
expect(commitChanges).toHaveBeenCalledWith(
|
|
70
|
+
mockBackendPath,
|
|
71
|
+
mockApiModuleName
|
|
72
|
+
);
|
|
73
|
+
expect(logInfo).toHaveBeenCalledWith(
|
|
74
|
+
`Successfully installed ${mockPackageName} and updated the project.`
|
|
75
|
+
);
|
|
57
76
|
});
|
|
58
77
|
|
|
59
78
|
it('should log an error and exit with code 1 if the package does not exist', async () => {
|
|
60
|
-
const mockExit = jest
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
79
|
+
const mockExit = jest
|
|
80
|
+
.spyOn(process, 'exit')
|
|
81
|
+
.mockImplementation(() => {});
|
|
82
|
+
const mockLogError = jest
|
|
83
|
+
.spyOn(require('./install-command/logger'), 'logError')
|
|
84
|
+
.mockImplementation(() => {});
|
|
85
|
+
const mockValidatePackageExists = jest
|
|
86
|
+
.spyOn(
|
|
87
|
+
require('./install-command/validate-package'),
|
|
88
|
+
'validatePackageExists'
|
|
89
|
+
)
|
|
90
|
+
.mockImplementation(() => {
|
|
91
|
+
throw new Error('Package not found');
|
|
92
|
+
});
|
|
65
93
|
|
|
66
94
|
const program = new Command();
|
|
67
95
|
program
|
|
@@ -71,8 +99,13 @@ describe('CLI Command Tests', () => {
|
|
|
71
99
|
|
|
72
100
|
await program.parseAsync(['node', 'install', 'nonexistent-package']);
|
|
73
101
|
|
|
74
|
-
expect(mockValidatePackageExists).toHaveBeenCalledWith(
|
|
75
|
-
|
|
102
|
+
expect(mockValidatePackageExists).toHaveBeenCalledWith(
|
|
103
|
+
'@friggframework/api-module-nonexistent-package'
|
|
104
|
+
);
|
|
105
|
+
expect(mockLogError).toHaveBeenCalledWith(
|
|
106
|
+
'An error occurred:',
|
|
107
|
+
expect.any(Error)
|
|
108
|
+
);
|
|
76
109
|
expect(mockExit).toHaveBeenCalledWith(1);
|
|
77
110
|
|
|
78
111
|
mockExit.mockRestore();
|
|
@@ -81,13 +114,29 @@ describe('CLI Command Tests', () => {
|
|
|
81
114
|
});
|
|
82
115
|
|
|
83
116
|
it('should log an error and exit with code 1 if the backend path is invalid', async () => {
|
|
84
|
-
const mockLogError = jest
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
117
|
+
const mockLogError = jest
|
|
118
|
+
.spyOn(require('./install-command/logger'), 'logError')
|
|
119
|
+
.mockImplementation(() => {});
|
|
120
|
+
const mockProcessExit = jest
|
|
121
|
+
.spyOn(process, 'exit')
|
|
122
|
+
.mockImplementation(() => {});
|
|
123
|
+
const mockValidatePackageExists = jest
|
|
124
|
+
.spyOn(
|
|
125
|
+
require('./install-command/validate-package'),
|
|
126
|
+
'validatePackageExists'
|
|
127
|
+
)
|
|
128
|
+
.mockResolvedValue(true);
|
|
129
|
+
const mockFindNearestBackendPackageJson = jest
|
|
130
|
+
.spyOn(
|
|
131
|
+
require('./utils/backend-path'),
|
|
132
|
+
'findNearestBackendPackageJson'
|
|
133
|
+
)
|
|
134
|
+
.mockReturnValue('/invalid/path');
|
|
135
|
+
const mockValidateBackendPath = jest
|
|
136
|
+
.spyOn(require('./utils/backend-path'), 'validateBackendPath')
|
|
137
|
+
.mockImplementation(() => {
|
|
138
|
+
throw new Error('Invalid backend path');
|
|
139
|
+
});
|
|
91
140
|
|
|
92
141
|
const program = new Command();
|
|
93
142
|
program
|
|
@@ -97,7 +146,10 @@ describe('CLI Command Tests', () => {
|
|
|
97
146
|
|
|
98
147
|
await program.parseAsync(['node', 'install', 'test-module']);
|
|
99
148
|
|
|
100
|
-
expect(mockLogError).toHaveBeenCalledWith(
|
|
149
|
+
expect(mockLogError).toHaveBeenCalledWith(
|
|
150
|
+
'An error occurred:',
|
|
151
|
+
expect.any(Error)
|
|
152
|
+
);
|
|
101
153
|
expect(mockProcessExit).toHaveBeenCalledWith(1);
|
|
102
154
|
|
|
103
155
|
mockLogError.mockRestore();
|
|
@@ -3,8 +3,7 @@ const dotenv = require('dotenv');
|
|
|
3
3
|
const { readFileSync, writeFileSync, existsSync } = require('fs');
|
|
4
4
|
const { logInfo } = require('./logger');
|
|
5
5
|
const { resolve } = require('node:path');
|
|
6
|
-
const
|
|
7
|
-
|
|
6
|
+
const { confirm, input } = require('@inquirer/prompts');
|
|
8
7
|
const { parse } = require('@babel/parser');
|
|
9
8
|
const traverse = require('@babel/traverse').default;
|
|
10
9
|
|
|
@@ -82,26 +81,20 @@ const handleEnvVariables = async (backendPath, modulePath) => {
|
|
|
82
81
|
logInfo(`Missing environment variables: ${missingEnvVars.join(', ')}`);
|
|
83
82
|
|
|
84
83
|
if (missingEnvVars.length > 0) {
|
|
85
|
-
const
|
|
86
|
-
{
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
', '
|
|
91
|
-
)}. Do you want to add them now?`,
|
|
92
|
-
},
|
|
93
|
-
]);
|
|
84
|
+
const addEnvVars = await confirm({
|
|
85
|
+
message: `The following environment variables are required: ${missingEnvVars.join(
|
|
86
|
+
', '
|
|
87
|
+
)}. Do you want to add them now?`,
|
|
88
|
+
});
|
|
94
89
|
|
|
95
90
|
if (addEnvVars) {
|
|
96
91
|
const envValues = {};
|
|
97
92
|
for (const envVar of missingEnvVars) {
|
|
98
|
-
const
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
},
|
|
104
|
-
]);
|
|
93
|
+
const value = await input({
|
|
94
|
+
type: 'input',
|
|
95
|
+
name: 'value',
|
|
96
|
+
message: `Enter value for ${envVar}:`,
|
|
97
|
+
});
|
|
105
98
|
envValues[envVar] = value;
|
|
106
99
|
}
|
|
107
100
|
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
const { handleEnvVariables } = require('./environment-variables');
|
|
2
|
+
const { logInfo } = require('./logger');
|
|
3
|
+
const inquirer = require('inquirer');
|
|
4
|
+
const fs = require('fs');
|
|
5
|
+
const dotenv = require('dotenv');
|
|
6
|
+
const { resolve } = require('node:path');
|
|
7
|
+
const { parse } = require('@babel/parser');
|
|
8
|
+
const traverse = require('@babel/traverse');
|
|
9
|
+
|
|
10
|
+
jest.mock('inquirer');
|
|
11
|
+
jest.mock('fs');
|
|
12
|
+
jest.mock('dotenv');
|
|
13
|
+
jest.mock('./logger');
|
|
14
|
+
jest.mock('@babel/parser');
|
|
15
|
+
jest.mock('@babel/traverse');
|
|
16
|
+
|
|
17
|
+
describe('handleEnvVariables', () => {
|
|
18
|
+
const backendPath = '/mock/backend/path';
|
|
19
|
+
const modulePath = '/mock/module/path';
|
|
20
|
+
|
|
21
|
+
beforeEach(() => {
|
|
22
|
+
jest.clearAllMocks();
|
|
23
|
+
fs.readFileSync.mockReturnValue(`
|
|
24
|
+
const Definition = {
|
|
25
|
+
env: {
|
|
26
|
+
client_id: process.env.GOOGLE_CALENDAR_CLIENT_ID,
|
|
27
|
+
client_secret: process.env.GOOGLE_CALENDAR_CLIENT_SECRET,
|
|
28
|
+
redirect_uri: \`\${process.env.REDIRECT_URI}/google-calendar\`,
|
|
29
|
+
scope: process.env.GOOGLE_CALENDAR_SCOPE,
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
`);
|
|
33
|
+
parse.mockReturnValue({});
|
|
34
|
+
traverse.default.mockImplementation((ast, visitor) => {
|
|
35
|
+
visitor.ObjectProperty({
|
|
36
|
+
node: {
|
|
37
|
+
key: { name: 'env' },
|
|
38
|
+
value: {
|
|
39
|
+
properties: [
|
|
40
|
+
{
|
|
41
|
+
key: { name: 'client_id' },
|
|
42
|
+
value: {
|
|
43
|
+
type: 'MemberExpression',
|
|
44
|
+
object: { name: 'process' },
|
|
45
|
+
property: {
|
|
46
|
+
name: 'GOOGLE_CALENDAR_CLIENT_ID',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
key: { name: 'client_secret' },
|
|
52
|
+
value: {
|
|
53
|
+
type: 'MemberExpression',
|
|
54
|
+
object: { name: 'process' },
|
|
55
|
+
property: {
|
|
56
|
+
name: 'GOOGLE_CALENDAR_CLIENT_SECRET',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: { name: 'redirect_uri' },
|
|
62
|
+
value: {
|
|
63
|
+
type: 'MemberExpression',
|
|
64
|
+
object: { name: 'process' },
|
|
65
|
+
property: { name: 'REDIRECT_URI' },
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: { name: 'scope' },
|
|
70
|
+
value: {
|
|
71
|
+
type: 'MemberExpression',
|
|
72
|
+
object: { name: 'process' },
|
|
73
|
+
property: { name: 'GOOGLE_CALENDAR_SCOPE' },
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
xit('should identify and handle missing environment variables', async () => {
|
|
84
|
+
const localEnvPath = resolve(backendPath, '../.env');
|
|
85
|
+
const localDevConfigPath = resolve(
|
|
86
|
+
backendPath,
|
|
87
|
+
'../src/configs/dev.json'
|
|
88
|
+
);
|
|
89
|
+
|
|
90
|
+
fs.existsSync.mockImplementation(
|
|
91
|
+
(path) => path === localEnvPath || path === localDevConfigPath
|
|
92
|
+
);
|
|
93
|
+
dotenv.parse.mockReturnValue({});
|
|
94
|
+
fs.readFileSync.mockImplementation((path) => {
|
|
95
|
+
if (path === resolve(modulePath, 'index.js'))
|
|
96
|
+
return 'mock module content';
|
|
97
|
+
if (path === localEnvPath) return '';
|
|
98
|
+
if (path === localDevConfigPath) return '{}';
|
|
99
|
+
return '';
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
inquirer.prompt
|
|
103
|
+
.mockResolvedValueOnce({ addEnvVars: true })
|
|
104
|
+
.mockResolvedValueOnce({ value: 'client_id_value' })
|
|
105
|
+
.mockResolvedValueOnce({ value: 'client_secret_value' })
|
|
106
|
+
.mockResolvedValueOnce({ value: 'redirect_uri_value' })
|
|
107
|
+
.mockResolvedValueOnce({ value: 'scope_value' });
|
|
108
|
+
|
|
109
|
+
await handleEnvVariables(backendPath, modulePath);
|
|
110
|
+
|
|
111
|
+
expect(logInfo).toHaveBeenCalledWith(
|
|
112
|
+
'Searching for missing environment variables...'
|
|
113
|
+
);
|
|
114
|
+
expect(logInfo).toHaveBeenCalledWith(
|
|
115
|
+
'Missing environment variables: GOOGLE_CALENDAR_CLIENT_ID, GOOGLE_CALENDAR_CLIENT_SECRET, REDIRECT_URI, GOOGLE_CALENDAR_SCOPE'
|
|
116
|
+
);
|
|
117
|
+
expect(inquirer.prompt).toHaveBeenCalledTimes(5);
|
|
118
|
+
expect(fs.appendFileSync).toHaveBeenCalledWith(
|
|
119
|
+
localEnvPath,
|
|
120
|
+
'\nGOOGLE_CALENDAR_CLIENT_ID=client_id_value\nGOOGLE_CALENDAR_CLIENT_SECRET=client_secret_value\nREDIRECT_URI=redirect_uri_value\nGOOGLE_CALENDAR_SCOPE=scope_value'
|
|
121
|
+
);
|
|
122
|
+
expect(fs.writeFileSync).toHaveBeenCalledWith(
|
|
123
|
+
localDevConfigPath,
|
|
124
|
+
JSON.stringify(
|
|
125
|
+
{
|
|
126
|
+
GOOGLE_CALENDAR_CLIENT_ID: 'client_id_value',
|
|
127
|
+
GOOGLE_CALENDAR_CLIENT_SECRET: 'client_secret_value',
|
|
128
|
+
REDIRECT_URI: 'redirect_uri_value',
|
|
129
|
+
GOOGLE_CALENDAR_SCOPE: 'scope_value',
|
|
130
|
+
},
|
|
131
|
+
null,
|
|
132
|
+
2
|
|
133
|
+
)
|
|
134
|
+
);
|
|
135
|
+
});
|
|
136
|
+
});
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
const { installPackage } = require('./
|
|
2
|
-
const { createIntegrationFile } = require('./
|
|
1
|
+
const { installPackage } = require('./install-package');
|
|
2
|
+
const { createIntegrationFile } = require('./integration-file');
|
|
3
3
|
const { resolve } = require('node:path');
|
|
4
|
-
const { updateBackendJsFile } = require('./
|
|
4
|
+
const { updateBackendJsFile } = require('./backend-js');
|
|
5
5
|
const { logInfo, logError } = require('./logger');
|
|
6
|
-
const { commitChanges } = require('./
|
|
6
|
+
const { commitChanges } = require('./commit-changes');
|
|
7
7
|
const {
|
|
8
8
|
findNearestBackendPackageJson,
|
|
9
9
|
validateBackendPath,
|
|
10
|
-
} = require('
|
|
11
|
-
const { handleEnvVariables } = require('./
|
|
10
|
+
} = require('../utils/backend-path');
|
|
11
|
+
const { handleEnvVariables } = require('./environment-variables');
|
|
12
12
|
const {
|
|
13
13
|
validatePackageExists,
|
|
14
14
|
searchAndSelectPackage,
|
|
15
|
-
} = require('./
|
|
15
|
+
} = require('./validate-package');
|
|
16
16
|
|
|
17
17
|
const installCommand = async (apiModuleName) => {
|
|
18
18
|
try {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const { execSync } = require('child_process');
|
|
2
2
|
const axios = require('axios');
|
|
3
3
|
const { logError } = require('./logger');
|
|
4
|
-
const
|
|
4
|
+
const { checkbox } = require('@inquirer/prompts');
|
|
5
5
|
|
|
6
6
|
async function searchPackages(apiModuleName) {
|
|
7
7
|
const searchCommand = `npm search @friggframework/api-module-${apiModuleName} --json`;
|
|
@@ -36,9 +36,7 @@ const searchAndSelectPackage = async (apiModuleName) => {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
const filteredResults = searchResults.filter((pkg) => {
|
|
39
|
-
const version = pkg.version
|
|
40
|
-
? pkg.version.split('.').map(Number)
|
|
41
|
-
: [];
|
|
39
|
+
const version = pkg.version ? pkg.version.split('.').map(Number) : [];
|
|
42
40
|
return version[0] >= 1;
|
|
43
41
|
});
|
|
44
42
|
|
|
@@ -55,20 +53,18 @@ const searchAndSelectPackage = async (apiModuleName) => {
|
|
|
55
53
|
const choices = filteredResults.map((pkg) => {
|
|
56
54
|
return {
|
|
57
55
|
name: `${pkg.name} (${pkg.version})`,
|
|
56
|
+
value: pkg.name,
|
|
58
57
|
checked: filteredResults.length === 1, // Automatically select if only one result
|
|
59
58
|
};
|
|
60
59
|
});
|
|
61
60
|
|
|
62
|
-
const
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
choices,
|
|
68
|
-
},
|
|
69
|
-
]);
|
|
61
|
+
const selectedPackages = await checkbox({
|
|
62
|
+
message: 'Select the packages to install:',
|
|
63
|
+
choices,
|
|
64
|
+
});
|
|
65
|
+
console.log('Selected packages:', selectedPackages);
|
|
70
66
|
|
|
71
|
-
return selectedPackages.map(choice => choice.split(' ')[0]);
|
|
67
|
+
return selectedPackages.map((choice) => choice.split(' ')[0]);
|
|
72
68
|
};
|
|
73
69
|
|
|
74
70
|
module.exports = {
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const { spawn } = require('child_process');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
|
|
4
|
+
function startCommand() {
|
|
5
|
+
console.log('Starting backend and optional frontend...');
|
|
6
|
+
// Suppress AWS SDK warning message about maintenance mode
|
|
7
|
+
process.env.AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE = 1;
|
|
8
|
+
const backendPath = path.resolve(process.cwd());
|
|
9
|
+
console.log(`Starting backend in ${backendPath}...`);
|
|
10
|
+
const infrastructurePath = 'infrastructure.js';
|
|
11
|
+
const command = 'serverless';
|
|
12
|
+
const args = ['offline', '--config', infrastructurePath, '--stage=dev'];
|
|
13
|
+
|
|
14
|
+
const childProcess = spawn(command, args, {
|
|
15
|
+
cwd: backendPath,
|
|
16
|
+
stdio: 'inherit',
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
childProcess.on('error', (error) => {
|
|
20
|
+
console.error(`Error executing command: ${error.message}`);
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
childProcess.on('close', (code) => {
|
|
24
|
+
if (code !== 0) {
|
|
25
|
+
console.log(`Child process exited with code ${code}`);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
module.exports = { startCommand };
|
package/index.js
CHANGED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
const { createHandler, flushDebugLog } = require('@friggframework/core');
|
|
2
|
+
const express = require('express');
|
|
3
|
+
const bodyParser = require('body-parser');
|
|
4
|
+
const cors = require('cors');
|
|
5
|
+
const Boom = require('@hapi/boom');
|
|
6
|
+
const loadUserManager = require('./routers/middleware/loadUser');
|
|
7
|
+
const serverlessHttp = require('serverless-http');
|
|
8
|
+
|
|
9
|
+
const createApp = (applyMiddleware) => {
|
|
10
|
+
const app = express();
|
|
11
|
+
|
|
12
|
+
app.use(bodyParser.json({ limit: '10mb' }));
|
|
13
|
+
app.use(bodyParser.urlencoded({ extended: true }));
|
|
14
|
+
app.use(
|
|
15
|
+
cors({
|
|
16
|
+
origin: '*',
|
|
17
|
+
credentials: true,
|
|
18
|
+
})
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
app.use(loadUserManager);
|
|
22
|
+
|
|
23
|
+
if (applyMiddleware) applyMiddleware(app);
|
|
24
|
+
|
|
25
|
+
// Handle sending error response and logging server errors to console
|
|
26
|
+
app.use((err, req, res, next) => {
|
|
27
|
+
const boomError = err.isBoom ? err : Boom.boomify(err);
|
|
28
|
+
const {
|
|
29
|
+
output: { statusCode = 500 },
|
|
30
|
+
} = boomError;
|
|
31
|
+
|
|
32
|
+
if (statusCode >= 500) {
|
|
33
|
+
flushDebugLog(boomError);
|
|
34
|
+
res.status(statusCode).json({ error: 'Internal Server Error' });
|
|
35
|
+
} else {
|
|
36
|
+
res.status(statusCode).json({ error: err.message });
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
return app;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
function createAppHandler(eventName, router, shouldUseDatabase = true) {
|
|
44
|
+
const app = createApp((app) => {
|
|
45
|
+
app.use(router);
|
|
46
|
+
});
|
|
47
|
+
return createHandler({
|
|
48
|
+
eventName,
|
|
49
|
+
method: serverlessHttp(app),
|
|
50
|
+
shouldUseDatabase,
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
module.exports = {
|
|
55
|
+
createApp,
|
|
56
|
+
createAppHandler,
|
|
57
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
const { createFriggBackend, Worker } = require('@friggframework/core');
|
|
2
|
+
const {
|
|
3
|
+
findNearestBackendPackageJson,
|
|
4
|
+
} = require('../frigg-cli/utils/backend-path');
|
|
5
|
+
const path = require('path');
|
|
6
|
+
const fs = require('fs-extra');
|
|
7
|
+
|
|
8
|
+
const backendPath = findNearestBackendPackageJson();
|
|
9
|
+
if (!backendPath) {
|
|
10
|
+
throw new Error('Could not find backend package.json');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const backendDir = path.dirname(backendPath);
|
|
14
|
+
const backendFilePath = path.join(backendDir, 'index.js');
|
|
15
|
+
if (!fs.existsSync(backendFilePath)) {
|
|
16
|
+
throw new Error('Could not find index.js');
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const backendJsFile = require(backendFilePath);
|
|
20
|
+
const { Router } = require('express');
|
|
21
|
+
const appDefinition = backendJsFile.Definition;
|
|
22
|
+
|
|
23
|
+
const backend = createFriggBackend(appDefinition);
|
|
24
|
+
const loadRouterFromObject = (IntegrationClass, routerObject) => {
|
|
25
|
+
const router = Router();
|
|
26
|
+
const { path, method, event } = routerObject;
|
|
27
|
+
console.log(
|
|
28
|
+
`Registering ${method} ${path} for ${IntegrationClass.Definition.name}`
|
|
29
|
+
);
|
|
30
|
+
router[method.toLowerCase()](path, async (req, res, next) => {
|
|
31
|
+
try {
|
|
32
|
+
const integration = new IntegrationClass({});
|
|
33
|
+
await integration.loadModules();
|
|
34
|
+
await integration.registerEventHandlers();
|
|
35
|
+
const result = await integration.send(event, req.body);
|
|
36
|
+
res.json(result);
|
|
37
|
+
} catch (error) {
|
|
38
|
+
next(error);
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
return router;
|
|
43
|
+
};
|
|
44
|
+
const createQueueWorker = (integrationClass) => {
|
|
45
|
+
class QueueWorker extends Worker {
|
|
46
|
+
constructor(params) {
|
|
47
|
+
super(params);
|
|
48
|
+
}
|
|
49
|
+
async _run(params, context) {
|
|
50
|
+
try {
|
|
51
|
+
let instance;
|
|
52
|
+
if (!params.integrationId) {
|
|
53
|
+
instance = new integrationClass({});
|
|
54
|
+
await instance.loadModules();
|
|
55
|
+
// await instance.loadUserActions();
|
|
56
|
+
await instance.registerEventHandlers();
|
|
57
|
+
console.log(
|
|
58
|
+
`${params.event} for ${integrationClass.Definition.name} integration with no integrationId`
|
|
59
|
+
);
|
|
60
|
+
} else {
|
|
61
|
+
instance =
|
|
62
|
+
await integrationClass.getInstanceFromIntegrationId({
|
|
63
|
+
integrationId: params.integrationId,
|
|
64
|
+
});
|
|
65
|
+
console.log(
|
|
66
|
+
`${params.event} for ${instance.integration.config.type} of integrationId: ${params.integrationId}`
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
const res = await instance.send(params.event, {
|
|
70
|
+
data: params.data,
|
|
71
|
+
context,
|
|
72
|
+
});
|
|
73
|
+
return res;
|
|
74
|
+
} catch (error) {
|
|
75
|
+
console.error(
|
|
76
|
+
`Error in ${params.event} for ${integrationClass.Definition.name}:`,
|
|
77
|
+
error
|
|
78
|
+
);
|
|
79
|
+
throw error;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return QueueWorker;
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
module.exports = {
|
|
87
|
+
...backend,
|
|
88
|
+
loadRouterFromObject,
|
|
89
|
+
createQueueWorker,
|
|
90
|
+
};
|