mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* working on replacing workspace id with workspace name * experimenting with zustand * added slug column to workspace table * working on workspace url * working on backward compatibility * fixing bugs * added not found error * fixed workspace switching issue * fix: switching b/w workspaces * fix: workspace login * changed workspace login url link * resolved conflicts * added create organization design * added backend validation * fixed constraint errors issue * fixed: creating new workspace * fixed: update workspace * fixed: update workspace bugs * fixed: auto created slug bugs * fixed: login slug * design changes * added folder slug * fixed: lint error * fixed: invite and first user issues * fixed: login page redirection * fixed: redirect path * added reserved word check * fix: edit workspace design * fix: folder query issue * fix: create and edit workspace modal validation issues * fixing failed test cases * fixing failed test cases - app.e2e * fixed organizations specs * fixed public app issue * working on app slug * Added app slug design to the general settings * Working on appId -> slug changes - Handling appId cases - Fixing issues * Worked on share modal design change - replaced slug functionality - Fixed backend slug issues - Fixed page handle issues * changed switch label * replace version param with query param * fix: possible uuid bug * fix: login app slug redirection issue * Worked on unique app slug * moved all apps related api calls to apps.service.js file * refactoring the code and fixing minor issues * Refactored and fixed some bugs * Fixed bugs: redirect cookie issue * Fixed dark-mode issues * removed duplicate code * Worked on develop branch conflicts * Moved handle app access check to private route * Added fix for navigate * Refactored the code. Added slug to failed sso login redirection path * again some redirect url fixes * onbaord navbar tj-icon onclick * Fix: viewer version id undefined issue * fix: multi-pages, invalid workspace slug * fix: removing the version search param while switching the pages * fix-sso: redirecting to prev tab's login organization slug * fix-sso: google signup * fix: preivew permission issue * Fixing merge issues * Fixed tjdb issues * dark mode fix of manage users button * fix: extra slash in url, tj-logo on click wrong org id * subpath workspace login url * resolved lint issue * fix: cannot clone apps * fixed switch workspace issue * fix: login page flashing issue * fix: back button issue * fix: private endless redirection * Update the modal with new UX * fixed all ui issues * fixed placeholder translation issues * fix: sso multi-request issues * fix: multi-pages crash while promoting a version * fix: error text msg delay * added default slug to the first workspace in the instance * subpath-fix: slug preview url * fix: same value check * fixed switch page query params issue * fix: folder query * fix: manage app users ui responsive issue * Backend PR changes --------- Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
178 lines
6.2 KiB
TypeScript
178 lines
6.2 KiB
TypeScript
import {
|
|
Controller,
|
|
Get,
|
|
Request,
|
|
Post,
|
|
UseGuards,
|
|
Body,
|
|
Param,
|
|
BadRequestException,
|
|
Query,
|
|
Res,
|
|
NotFoundException,
|
|
} 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';
|
|
import { OrganizationsService } from '@services/organizations.service';
|
|
import { Organization } from 'src/entities/organization.entity';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(
|
|
private authService: AuthService,
|
|
private userService: UsersService,
|
|
private sessionService: SessionService,
|
|
private organizationService: OrganizationsService
|
|
) {}
|
|
|
|
@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, @Query('workspaceSlug') workspaceSlug: string) {
|
|
let currentOrganization: Organization;
|
|
|
|
let app: { organizationId: string; isPublic: boolean };
|
|
if (appId) {
|
|
app = await this.userService.returnOrgIdOfAnApp(appId);
|
|
}
|
|
|
|
/* if the user has a session and the app is public, we don't need to authorize the app organization id */
|
|
if ((app && !app?.isPublic) || workspaceSlug) {
|
|
const organization = await this.organizationService.fetchOrganization(workspaceSlug || app.organizationId);
|
|
if (!organization) {
|
|
throw new NotFoundException("Coudn't found workspace. workspace id or slug is incorrect!.");
|
|
}
|
|
currentOrganization = organization;
|
|
}
|
|
|
|
return this.authService.generateSessionPayload(user, currentOrganization);
|
|
}
|
|
|
|
@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.' };
|
|
}
|
|
}
|