Skip to content

Commit 9c62b2d

Browse files
Feature: Make tooljetdb optional (ToolJet#5062)
* make tooljetdb optional * restrict routes when tooljetdb is disabled * validate dbname before creating database * fix comment * format
1 parent 1aa477f commit 9c62b2d

File tree

13 files changed

+93
-75
lines changed

13 files changed

+93
-75
lines changed

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,4 @@ SSO_DISABLE_SIGNUPS=
6666

6767
#ONBOARDING
6868
ENABLE_ONBOARDING_QUESTIONS_FOR_ALL_SIGN_UPS=
69+
ENABLE_TOOLJET_DB=

.github/workflows/render-preview-deploy.yml

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ jobs:
5757
"key": "PG_DB",
5858
"value": "${{ env.PR_NUMBER }}"
5959
},
60+
{
61+
"key": "ENABLE_TOOLJET_DB",
62+
"value": "true"
63+
},
6064
{
6165
"key": "TOOLJET_DB",
6266
"value": "TJDB_${{ env.PR_NUMBER }}"

deploy/docker/.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ SENTRY_DEBUG=
4242
# FEATURE TOGGLE
4343
COMMENT_FEATURE_ENABLE=
4444
ENABLE_MULTIPLAYER_EDITING=true
45+
ENABLE_TOOLJET_DB=
4546

4647
#SSO
4748
SSO_DISABLE_SIGNUP=

docs/versioned_docs/version-2.0.0-beta/setup/env-vars.md

+8
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ Use this environment variable to enable/disable the feature that allows users to
7777
| -------- | ---------------------- |
7878
| ENABLE_MARKETPLACE_FEATURE | `true` or `false` |
7979

80+
#### ToolJet Database feature enable ( optional )
81+
82+
Use this environment variable to enable/disable the feature that allows users to work with inbuilt data store to build apps with.
83+
84+
| variable | value |
85+
| ----------------- | ----------------- |
86+
| ENABLE_TOOLJET_DB | `true` or `false` |
87+
8088
#### Server Host ( optional )
8189

8290
You can specify a different server for backend if it is hosted on another server.

frontend/src/App/App.jsx

+9-7
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,15 @@ class App extends React.Component {
228228
switchDarkMode={this.switchDarkMode}
229229
darkMode={darkMode}
230230
/>
231-
<PrivateRoute
232-
exact
233-
path="/tooljet-database"
234-
component={TooljetDatabase}
235-
switchDarkMode={this.switchDarkMode}
236-
darkMode={darkMode}
237-
/>
231+
{window.public_config?.ENABLE_TOOLJET_DB == 'true' && (
232+
<PrivateRoute
233+
exact
234+
path="/tooljet-database"
235+
component={TooljetDatabase}
236+
switchDarkMode={this.switchDarkMode}
237+
darkMode={darkMode}
238+
/>
239+
)}
238240
{window.public_config?.ENABLE_MARKETPLACE_FEATURE && (
239241
<AdminRoute
240242
exact

frontend/src/_ui/Layout/index.jsx

+29-27
Original file line numberDiff line numberDiff line change
@@ -52,34 +52,36 @@ function Layout({ children, switchDarkMode, darkMode }) {
5252
</ToolTip>
5353
</Link>
5454
</li>
55-
<li className="text-center mt-3 cursor-pointer">
56-
<Link to="/tooljet-database">
57-
<ToolTip message="Tooljet database" placement="right">
58-
<svg
59-
className="layout-sidebar-icon"
60-
width="32"
61-
height="33"
62-
viewBox="0 0 32 33"
63-
fill="none"
64-
xmlns="http://www.w3.org/2000/svg"
65-
>
66-
<rect
67-
y="0.325684"
55+
{window.public_config?.ENABLE_TOOLJET_DB == 'true' && (
56+
<li className="text-center mt-3 cursor-pointer">
57+
<Link to="/tooljet-database">
58+
<ToolTip message="Tooljet database" placement="right">
59+
<svg
60+
className="layout-sidebar-icon"
6861
width="32"
69-
height="32"
70-
rx="4"
71-
fill={router.pathname === '/tooljet-database' ? '#E6EDFE' : '#none'}
72-
/>
73-
<path
74-
fillRule="evenodd"
75-
clipRule="evenodd"
76-
d="M10 9.32568C9.73478 9.32568 9.48043 9.43104 9.29289 9.61858C9.10536 9.80611 9 10.0605 9 10.3257V13.3257H13V9.32568H10ZM10 7.32568C9.20435 7.32568 8.44129 7.64175 7.87868 8.20436C7.31607 8.76697 7 9.53003 7 10.3257V16.3257C7 16.878 7.44772 17.3257 8 17.3257C8.55228 17.3257 9 16.878 9 16.3257V15.3257H13V16.3257C13 16.878 13.4477 17.3257 14 17.3257C14.5523 17.3257 15 16.878 15 16.3257V15.3257H23V22.3257C23 22.5909 22.8946 22.8453 22.7071 23.0328C22.5196 23.2203 22.2652 23.3257 22 23.3257H16C15.4477 23.3257 15 23.7734 15 24.3257C15 24.878 15.4477 25.3257 16 25.3257H22C22.7957 25.3257 23.5587 25.0096 24.1213 24.447C24.6839 23.8844 25 23.1213 25 22.3257V10.3257C25 9.53003 24.6839 8.76697 24.1213 8.20436C23.5587 7.64175 22.7957 7.32568 22 7.32568H10ZM15 9.32568V13.3257H23V10.3257C23 10.0605 22.8946 9.80611 22.7071 9.61858C22.5196 9.43104 22.2652 9.32568 22 9.32568H15ZM6 20.3257C6 19.2211 6.89543 18.3257 8 18.3257H12C13.1046 18.3257 14 19.2211 14 20.3257V24.3257C14 25.4303 13.1046 26.3257 12 26.3257H8C6.89543 26.3257 6 25.4303 6 24.3257V20.3257ZM8 20.3257V24.3257H12V20.3257H8Z"
77-
fill={router.pathname === '/tooljet-database' ? '#3E63DD' : '#C1C8CD'}
78-
/>
79-
</svg>
80-
</ToolTip>
81-
</Link>
82-
</li>
62+
height="33"
63+
viewBox="0 0 32 33"
64+
fill="none"
65+
xmlns="http://www.w3.org/2000/svg"
66+
>
67+
<rect
68+
y="0.325684"
69+
width="32"
70+
height="32"
71+
rx="4"
72+
fill={router.pathname === '/tooljet-database' ? '#E6EDFE' : '#none'}
73+
/>
74+
<path
75+
fillRule="evenodd"
76+
clipRule="evenodd"
77+
d="M10 9.32568C9.73478 9.32568 9.48043 9.43104 9.29289 9.61858C9.10536 9.80611 9 10.0605 9 10.3257V13.3257H13V9.32568H10ZM10 7.32568C9.20435 7.32568 8.44129 7.64175 7.87868 8.20436C7.31607 8.76697 7 9.53003 7 10.3257V16.3257C7 16.878 7.44772 17.3257 8 17.3257C8.55228 17.3257 9 16.878 9 16.3257V15.3257H13V16.3257C13 16.878 13.4477 17.3257 14 17.3257C14.5523 17.3257 15 16.878 15 16.3257V15.3257H23V22.3257C23 22.5909 22.8946 22.8453 22.7071 23.0328C22.5196 23.2203 22.2652 23.3257 22 23.3257H16C15.4477 23.3257 15 23.7734 15 24.3257C15 24.878 15.4477 25.3257 16 25.3257H22C22.7957 25.3257 23.5587 25.0096 24.1213 24.447C24.6839 23.8844 25 23.1213 25 22.3257V10.3257C25 9.53003 24.6839 8.76697 24.1213 8.20436C23.5587 7.64175 22.7957 7.32568 22 7.32568H10ZM15 9.32568V13.3257H23V10.3257C23 10.0605 22.8946 9.80611 22.7071 9.61858C22.5196 9.43104 22.2652 9.32568 22 9.32568H15ZM6 20.3257C6 19.2211 6.89543 18.3257 8 18.3257H12C13.1046 18.3257 14 19.2211 14 20.3257V24.3257C14 25.4303 13.1046 26.3257 12 26.3257H8C6.89543 26.3257 6 25.4303 6 24.3257V20.3257ZM8 20.3257V24.3257H12V20.3257H8Z"
78+
fill={router.pathname === '/tooljet-database' ? '#3E63DD' : '#C1C8CD'}
79+
/>
80+
</svg>
81+
</ToolTip>
82+
</Link>
83+
</li>
84+
)}
8385
<li className="text-center mt-3 cursor-pointer">
8486
<Link to="/organization-settings">
8587
<ToolTip message="Organization settings" placement="right">

frontend/webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ module.exports = {
158158
apiUrl: `${stripTrailingSlash(API_URL[environment]) || ''}/api`,
159159
SERVER_IP: process.env.SERVER_IP,
160160
COMMENT_FEATURE_ENABLE: process.env.COMMENT_FEATURE_ENABLE ?? true,
161+
ENABLE_TOOLJET_DB: process.env.ENABLE_TOOLJET_DB ?? true,
161162
ENABLE_MULTIPLAYER_EDITING: true,
162163
TOOLJET_MARKETPLACE_URL:
163164
process.env.TOOLJET_MARKETPLACE_URL || 'https://tooljet-plugins-production.s3.us-east-2.amazonaws.com',

render.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ services:
1515
property: connectionString
1616
- key: TOOLJET_DB
1717
value: 'tooljet_db'
18+
- key: ENABLE_TOOLJET_DB
19+
value: 'true'
1820
- key: TOOLJET_HOST
1921
fromService:
2022
type: web

server/migrations/1665507074072-CreateTooljetDb.ts

-29
This file was deleted.

server/scripts/create-database.ts

+22-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as dotenv from 'dotenv';
33
import * as fs from 'fs';
44
import { exec } from 'child_process';
55
import { buildAndValidateDatabaseConfig } from './database-config-utils';
6+
import { isEmpty } from 'lodash';
67

78
function createDatabaseFromFile(envPath: string): void {
89
const result = dotenv.config({ path: envPath });
@@ -26,6 +27,11 @@ function createDatabase(): void {
2627
throw new Error(`Config validation error: ${error.message}`);
2728
}
2829

30+
if (envVars.PG_DB_OWNER === 'false') {
31+
console.log('Skipping database creation');
32+
return;
33+
}
34+
2935
const connectivityCheck = exec('command -v createdb');
3036

3137
connectivityCheck.on('exit', function (signal) {
@@ -35,28 +41,37 @@ function createDatabase(): void {
3541
}
3642
});
3743

38-
if (envVars.PG_DB_OWNER === 'false') {
39-
console.log('Skipping database creation');
40-
return;
44+
// Allow creating db based on cmd line arg
45+
const dbNameFromArg = process.argv[2];
46+
if (dbNameFromArg) return createDb(envVars, dbNameFromArg);
47+
48+
createDb(envVars, envVars.PG_DB);
49+
if (process.env.ENABLE_TOOLJET_DB == 'true') {
50+
createDb(envVars, envVars.TOOLJET_DB);
4151
}
52+
}
53+
54+
function createDb(envVars, dbName) {
55+
if (isEmpty(dbName)) throw 'Database name cannot be empty';
4256

4357
const createdb =
4458
`PGPASSWORD="${envVars.PG_PASS}" createdb ` +
4559
`-h ${envVars.PG_HOST} ` +
4660
`-p ${envVars.PG_PORT} ` +
4761
`-U ${envVars.PG_USER} ` +
48-
envVars.PG_DB;
62+
dbName;
4963

5064
exec(createdb, (err, _stdout, _stderr) => {
5165
if (!err) {
52-
console.log(`Created database ${envVars.PG_DB}`);
66+
console.log(`Created database ${dbName}`);
5367
return;
5468
}
5569

56-
const errorMessage = `database "${envVars.PG_DB}" already exists`;
70+
const errorMessage = `database "${dbName}" already exists`;
5771

5872
if (err.message.includes(errorMessage)) {
59-
console.log(`Using database: ${envVars.PG_DB}`);
73+
envVars.PG_DB == dbName && console.log(`Using PG_DB: ${dbName}`);
74+
envVars.TOOLJET_DB == dbName && console.log(`Using TOOLJET_DB: ${dbName}`);
6075
} else {
6176
console.error(err);
6277
process.exit(1);
@@ -74,6 +89,5 @@ if (fs.existsSync(nodeEnvPath)) {
7489
createDatabaseFromFile(fallbackPath);
7590
} else {
7691
console.log('Picking up config from the environment');
77-
7892
createDatabase();
7993
}

server/scripts/drop-database.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,28 @@ function dropDatabase(): void {
2929
}
3030
});
3131

32+
// Allow dropping db based on cmd line arg
33+
const dbNameFromArg = process.argv[2];
34+
if (dbNameFromArg) return dropDb(envVars, dbNameFromArg);
35+
36+
dropDb(envVars, envVars.PG_DB);
37+
}
38+
39+
function dropDb(envVars, dbName) {
3240
const dropdb =
3341
`PGPASSWORD=${envVars.PG_PASS} dropdb ` +
3442
`-h ${envVars.PG_HOST} ` +
3543
`-p ${envVars.PG_PORT} ` +
3644
`-U ${envVars.PG_USER} ` +
37-
envVars.PG_DB;
45+
dbName;
3846

3947
exec(dropdb, (err, _stdout, _stderr) => {
4048
if (!err) {
41-
console.log(`Dropped database ${envVars.PG_DB}`);
49+
console.log(`Dropped database ${dbName}`);
4250
return;
4351
}
4452

45-
const errorMessage = `database "${envVars.PG_DB}" does not exist`;
53+
const errorMessage = `database "${dbName}" does not exist`;
4654

4755
if (err.message.includes(errorMessage)) {
4856
console.log(errorMessage);

server/src/app.module.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ const imports = [
9494
PluginsModule,
9595
EventsModule,
9696
AppEnvironmentsModule,
97-
TooljetDbModule,
9897
];
9998

10099
if (process.env.SERVE_CLIENT !== 'false') {
@@ -145,6 +144,10 @@ if (process.env.COMMENT_FEATURE_ENABLE !== 'false') {
145144
imports.unshift(CommentModule, ThreadModule, CommentUsersModule);
146145
}
147146

147+
if (process.env.ENABLE_TOOLJET_DB === 'true') {
148+
imports.unshift(TooljetDbModule);
149+
}
150+
148151
@Module({
149152
imports,
150153
controllers: [AppController],

server/src/services/app_config.service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class AppConfigService {
2626
'SUB_PATH',
2727
'DISABLE_MULTI_WORKSPACE',
2828
'ENABLE_MARKETPLACE_FEATURE',
29+
'ENABLE_TOOLJET_DB',
2930
];
3031
}
3132

0 commit comments

Comments
 (0)