mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-20 15:38:23 +00:00
* add: new URL prefix
* fix: working on home page
* add: profile path
* playing with rxjs
* removed context part
* working on path changes
* changing routes
- TODO: replace the workspaceId with actual id
* redo: public apps path
* initial commit
* added authorize API
* remove privileges from auth response
* fixed some api issue
- added subscriptions
* fix: redirect url workspace-id null issue
* fix: switch workspace
* fix: organization list mapping
- menu item paths
* fix: preview url
- editor, viewer permission mapping
* jwt fix
* fix: some url issue
- permission mappings
- workspace login
* fixed some issues
- user invite workspace-id
- org settings menu item default selected item issue
* app viewer fixes
* fixing workspace login issues
* fix
* fixing issues
- tooljet db
- path issues
- refatoring the code
* fix: workspace vars permissions
* fix: multi-page handle
* fix: create app from template
* fix: bulk user upload
* fix: import app
- clone app
- upload profile image
* fix: onboarding
* fix: log out
* fixed multi-workspace logout issue
* fix: launch btn
* fix: oauth2
* fixes
* fix: sso login
* fix: workspace sso login
* fixing sso issues
* fix: moved list of orgs to rxjs
- fixed switching issues
* reverting some changes
* fixed some minor bugs
* fixing sso redirect url issues
* fix: switching network timing issues
* fix: back to workspace-id
* fix: tj-database
- refactored the code - removed org id from some pages
- will get the org id from the service file only
* fix: multi-pages
* fix: infinite loop issue
* fixing workspace switching issue
* fixes
- comment link
- logout & private route redirect url
* fix: wrong uuid error
* fixing subpath
- fixed most of the places
- need to test & fix workspace login, sso, new account
* fix: subpath workspace login
* fix: rxjs handle bug
* Revert "fix: tj-database"
This reverts commit 9632ec2ff0.
* fix: reverted tj-db changes
* fix: subpath sso
* typo fix
* fix: existing session issues
* new: switch workspace page
* fix: modal dark-mode
* added default sso support
* fixes
- subpath workspace switching
- handle wrong routes
* fix: manager user button
- refactored the code
* removed SINGLE Workspace feature
* rebase
* add: change modal text
* fix: added validation
* fixed private app 401 issue
* initial commit
* fix: logged out session multi-tab issue
* refactoring the code
* fix: redirect url issue
* added auth-token in cookies
* Fix: failing e2e specs
* added session API
* fix: backend session guard
* fix: removing user details from local storage
* fix: null wid
* undo and redo
* fix: login page
* fix: viewer login redirection
* fix: login page redirection
* fix: public apps logout issue
* added session storage and scheduler
* added profile api
* fix: sso login
- switch workspace
- login page
- setup admin
* working on fixes
* fix: socket issue
* fix: setup admin api
* connected profile & logout apis
* fix: malfunctioned auth token case
* fix: realtime avatar
* fix: profile avatar
* fix: Realtime cursors avatar
* setting max age for auth token cookie
* add: Go to login page if logout api returns 401
* fix: subpath login
* fix
* fix: app logout [viewer]
* fix: authorize page
* remove expiry from jwt
* fix: integrations route
- session api
* small fix
* fix: updated profile
* fix: workspace login [logged user]
* fix: oauth and another workspace page issue
* fixed app preview logout issue
* subpath fix
* fix: subpath app id
* fix: selected state didnt change for apps page [subpath]
* fix
* add cookie parser to test app
* specs added
* increased user session expiry time
* test: session & new apis
* working on test cases
* fix: onboarding issue
* fixing specs
* fix: test cases
* fix: removing profile api calls
* some fixes
* fixing rebase issues
* fix: global ds issues
* fix: app is crashing
* fix: back to text
* fix: oauth test cases
* fix: test-helper
* fix: onboarding test cases
* fix: tests again
* refactoring the code
* latest develop merging precautions
- fixed a minor null issue
* fix: typo
* fix :menu issues due to the merging
* fix: - clicking on tooljet logo didnt redirect to login page for public apps
- private app preview doesnt load after login
* subpath fixes
* fixed back to issue
* PR changes
* fix: spec fixes for EE
* doc: URL scoped for workspace
---------
Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
Co-authored-by: Shubhendra <withshubh@gmail.com>
114 lines
3.9 KiB
TypeScript
114 lines
3.9 KiB
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
|
import { WsAdapter } from '@nestjs/platform-ws';
|
|
import * as cookieParser from 'cookie-parser';
|
|
import * as compression from 'compression';
|
|
import { AppModule } from './app.module';
|
|
import * as helmet from 'helmet';
|
|
import { Logger } from 'nestjs-pino';
|
|
import { urlencoded, json } from 'express';
|
|
import { AllExceptionsFilter } from './all-exceptions-filter';
|
|
import { RequestMethod, ValidationPipe, VersioningType, VERSION_NEUTRAL } from '@nestjs/common';
|
|
import { ConfigService } from '@nestjs/config';
|
|
import { bootstrap as globalAgentBootstrap } from 'global-agent';
|
|
import { join } from 'path';
|
|
|
|
const fs = require('fs');
|
|
|
|
globalThis.TOOLJET_VERSION = fs.readFileSync('./.version', 'utf8').trim();
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create<NestExpressApplication>(AppModule, {
|
|
bufferLogs: true,
|
|
abortOnError: false,
|
|
});
|
|
const configService = app.get<ConfigService>(ConfigService);
|
|
const host = new URL(process.env.TOOLJET_HOST);
|
|
const domain = host.hostname;
|
|
|
|
app.useLogger(app.get(Logger));
|
|
app.useGlobalFilters(new AllExceptionsFilter(app.get(Logger)));
|
|
app.useGlobalPipes(new ValidationPipe({ whitelist: true, transform: true }));
|
|
app.useWebSocketAdapter(new WsAdapter(app));
|
|
const hasSubPath = process.env.SUB_PATH !== undefined;
|
|
const UrlPrefix = hasSubPath ? process.env.SUB_PATH : '';
|
|
|
|
// Exclude these endpoints from prefix. These endpoints are required for health checks.
|
|
const pathsToExclude = [];
|
|
if (hasSubPath) {
|
|
pathsToExclude.push({ path: '/', method: RequestMethod.GET });
|
|
}
|
|
pathsToExclude.push({ path: '/health', method: RequestMethod.GET });
|
|
pathsToExclude.push({ path: '/api/health', method: RequestMethod.GET });
|
|
|
|
app.setGlobalPrefix(UrlPrefix + 'api', {
|
|
exclude: pathsToExclude,
|
|
});
|
|
app.enableCors({
|
|
origin: true,
|
|
credentials: true,
|
|
});
|
|
app.use(compression());
|
|
|
|
app.use(
|
|
helmet.contentSecurityPolicy({
|
|
useDefaults: true,
|
|
directives: {
|
|
upgradeInsecureRequests: null,
|
|
'img-src': ['*', 'data:', 'blob:'],
|
|
'script-src': [
|
|
'maps.googleapis.com',
|
|
'storage.googleapis.com',
|
|
'apis.google.com',
|
|
'accounts.google.com',
|
|
"'self'",
|
|
"'unsafe-inline'",
|
|
"'unsafe-eval'",
|
|
'blob:',
|
|
'https://unpkg.com/@babel/standalone@7.17.9/babel.min.js',
|
|
'https://unpkg.com/react@16.7.0/umd/react.production.min.js',
|
|
'https://unpkg.com/react-dom@16.7.0/umd/react-dom.production.min.js',
|
|
'cdn.skypack.dev',
|
|
'cdn.jsdelivr.net',
|
|
],
|
|
'default-src': [
|
|
'maps.googleapis.com',
|
|
'storage.googleapis.com',
|
|
'apis.google.com',
|
|
'accounts.google.com',
|
|
'*.sentry.io',
|
|
"'self'",
|
|
'blob:',
|
|
],
|
|
'connect-src': ['ws://' + domain, "'self'", '*'],
|
|
'frame-ancestors': ['*'],
|
|
'frame-src': ['*'],
|
|
},
|
|
})
|
|
);
|
|
|
|
app.use(cookieParser());
|
|
app.use(json({ limit: '50mb' }));
|
|
app.use(urlencoded({ extended: true, limit: '50mb', parameterLimit: 1000000 }));
|
|
app.useStaticAssets(join(__dirname, 'assets'), { prefix: (UrlPrefix ? UrlPrefix : '/') + 'assets' });
|
|
|
|
app.enableVersioning({
|
|
type: VersioningType.URI,
|
|
defaultVersion: VERSION_NEUTRAL,
|
|
});
|
|
|
|
const port = parseInt(process.env.PORT) || 3000;
|
|
|
|
await app.listen(port, '0.0.0.0', function () {
|
|
const tooljetHost = configService.get<string>('TOOLJET_HOST');
|
|
console.log(`Ready to use at ${tooljetHost} 🚀`);
|
|
});
|
|
}
|
|
|
|
// Bootstrap global agent only if TOOLJET_HTTP_PROXY is set
|
|
if (process.env.TOOLJET_HTTP_PROXY) {
|
|
process.env['GLOBAL_AGENT_HTTP_PROXY'] = process.env.TOOLJET_HTTP_PROXY;
|
|
globalAgentBootstrap();
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
bootstrap();
|