ToolJet/server/src/controllers/app.controller.ts
Muhsin Shah C P 32740743e1
[Improvement] URLs scoped with workspace id (#5487)
* 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>
2023-04-06 16:42:58 +05:30

165 lines
5.6 KiB
TypeScript

import {
Controller,
Get,
Request,
Post,
UseGuards,
Body,
Param,
BadRequestException,
Query,
Res,
} from '@nestjs/common';
import { User } from 'src/decorators/user.decorator';
import { JwtAuthGuard } from '../../src/modules/auth/jwt-auth.guard';
import {
AppAuthenticationDto,
AppForgotPasswordDto,
AppPasswordResetDto,
AppSignupDto,
} from '@dto/app-authentication.dto';
import { AuthService } from '../services/auth.service';
import { SignupDisableGuard } from 'src/modules/auth/signup-disable.guard';
import { CreateAdminDto, CreateUserDto } from '@dto/user.dto';
import { AcceptInviteDto } from '@dto/accept-organization-invite.dto';
import { FirstUserSignupDisableGuard } from 'src/modules/auth/first-user-signup-disable.guard';
import { FirstUserSignupGuard } from 'src/modules/auth/first-user-signup.guard';
import { OrganizationAuthGuard } from 'src/modules/auth/organization-auth.guard';
import { AuthorizeWorkspaceGuard } from 'src/modules/auth/authorize-workspace-guard';
import { Response } from 'express';
import { SessionAuthGuard } from 'src/modules/auth/session-auth-guard';
import { UsersService } from '@services/users.service';
import { SessionService } from '@services/session.service';
@Controller()
export class AppController {
constructor(
private authService: AuthService,
private userService: UsersService,
private sessionService: SessionService
) {}
@Post('authenticate')
async login(@Body() appAuthDto: AppAuthenticationDto, @Res({ passthrough: true }) response: Response) {
return this.authService.login(response, appAuthDto.email, appAuthDto.password);
}
@UseGuards(OrganizationAuthGuard)
@Post('authenticate/:organizationId')
async organizationLogin(
@User() user,
@Body() appAuthDto: AppAuthenticationDto,
@Param('organizationId') organizationId,
@Res({ passthrough: true }) response: Response
) {
return this.authService.login(response, appAuthDto.email, appAuthDto.password, organizationId, user);
}
@UseGuards(SessionAuthGuard)
@Get('session')
async getSessionDetails(@User() user, @Query('appId') appId: string) {
let appOrganizationId: string;
if (appId) {
appOrganizationId = await this.userService.returnOrgIdOfAnApp(appId);
if (appOrganizationId && user.organizationIds?.includes(appOrganizationId)) {
user.organization_id = appOrganizationId;
}
}
return await this.authService.generateSessionPayload(user, appOrganizationId);
}
@UseGuards(JwtAuthGuard)
@Get('logout')
async terminateUserSession(@User() user, @Res({ passthrough: true }) response: Response) {
await this.sessionService.terminateSession(user.id, user.sessionId, response);
return;
}
@UseGuards(JwtAuthGuard)
@Get('profile')
async getUserDetails(@User() user) {
return this.sessionService.getSessionUserDetails(user);
}
@UseGuards(AuthorizeWorkspaceGuard)
@Get('authorize')
async authorize(@User() user) {
return await this.authService.authorizeOrganization(user);
}
@UseGuards(JwtAuthGuard)
@Get('switch/:organizationId')
async switch(@Param('organizationId') organizationId, @User() user, @Res({ passthrough: true }) response: Response) {
if (!organizationId) {
throw new BadRequestException();
}
return await this.authService.switchOrganization(response, organizationId, user);
}
@UseGuards(FirstUserSignupGuard)
@Post('setup-admin')
async setupAdmin(@Body() userCreateDto: CreateAdminDto, @Res({ passthrough: true }) response: Response) {
return await this.authService.setupAdmin(response, userCreateDto);
}
@UseGuards(FirstUserSignupDisableGuard)
@Post('setup-account-from-token')
async create(@Body() userCreateDto: CreateUserDto, @Res({ passthrough: true }) response: Response) {
return await this.authService.setupAccountFromInvitationToken(response, userCreateDto);
}
@UseGuards(FirstUserSignupDisableGuard)
@Post('accept-invite')
async acceptInvite(@Body() acceptInviteDto: AcceptInviteDto) {
return await this.authService.acceptOrganizationInvite(acceptInviteDto);
}
@UseGuards(SignupDisableGuard)
@UseGuards(FirstUserSignupDisableGuard)
@Post('signup')
async signup(@Body() appAuthDto: AppSignupDto) {
return this.authService.signup(appAuthDto.email, appAuthDto.name, appAuthDto.password);
}
@UseGuards(SignupDisableGuard)
@UseGuards(FirstUserSignupDisableGuard)
@Post('resend-invite')
async resendInvite(@Body('email') email: string) {
return this.authService.resendEmail(email);
}
@UseGuards(FirstUserSignupDisableGuard)
@Get('verify-invite-token')
async verifyInviteToken(@Query('token') token, @Query('organizationToken') organizationToken) {
return await this.authService.verifyInviteToken(token, organizationToken);
}
@UseGuards(FirstUserSignupDisableGuard)
@Get('verify-organization-token')
async verifyOrganizationToken(@Query('token') token) {
return await this.authService.verifyOrganizationToken(token);
}
@Post('/forgot-password')
async forgotPassword(@Body() appAuthDto: AppForgotPasswordDto) {
await this.authService.forgotPassword(appAuthDto.email);
return {};
}
@Post('/reset-password')
async resetPassword(@Body() appAuthDto: AppPasswordResetDto) {
const { token, password } = appAuthDto;
await this.authService.resetPassword(token, password);
return {};
}
@Get(['/health', '/api/health'])
async healthCheck(@Request() req) {
return { works: 'yeah' };
}
@Get('/')
async rootPage(@Request() req) {
return { message: 'Instance seems healthy but this is probably not the right URL to access.' };
}
}