mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-08-25 18:19:39 +00:00
add contract dates to invite user & return them in user details
This commit is contained in:
3
libs/common/src/constants/timer-job-type.enum.ts
Normal file
3
libs/common/src/constants/timer-job-type.enum.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export enum TimerJobTypeEnum {
|
||||||
|
INVITE_USER_EMAIL = 'INVITE_USER_EMAIL',
|
||||||
|
}
|
@ -54,6 +54,7 @@ import { SpaceEntity } from '../modules/space/entities/space.entity';
|
|||||||
import { SubspaceProductAllocationEntity } from '../modules/space/entities/subspace/subspace-product-allocation.entity';
|
import { SubspaceProductAllocationEntity } from '../modules/space/entities/subspace/subspace-product-allocation.entity';
|
||||||
import { SubspaceEntity } from '../modules/space/entities/subspace/subspace.entity';
|
import { SubspaceEntity } from '../modules/space/entities/subspace/subspace.entity';
|
||||||
import { NewTagEntity } from '../modules/tag/entities/tag.entity';
|
import { NewTagEntity } from '../modules/tag/entities/tag.entity';
|
||||||
|
import { TimerEntity } from '../modules/timer/entities/timer.entity';
|
||||||
import { TimeZoneEntity } from '../modules/timezone/entities';
|
import { TimeZoneEntity } from '../modules/timezone/entities';
|
||||||
import {
|
import {
|
||||||
UserNotificationEntity,
|
UserNotificationEntity,
|
||||||
@ -121,6 +122,7 @@ import { VisitorPasswordEntity } from '../modules/visitor-password/entities';
|
|||||||
SpaceDailyOccupancyDurationEntity,
|
SpaceDailyOccupancyDurationEntity,
|
||||||
BookableSpaceEntity,
|
BookableSpaceEntity,
|
||||||
BookingEntity,
|
BookingEntity,
|
||||||
|
TimerEntity,
|
||||||
],
|
],
|
||||||
namingStrategy: new SnakeNamingStrategy(),
|
namingStrategy: new SnakeNamingStrategy(),
|
||||||
synchronize: Boolean(JSON.parse(configService.get('DB_SYNC'))),
|
synchronize: Boolean(JSON.parse(configService.get('DB_SYNC'))),
|
||||||
|
@ -15,17 +15,16 @@ import { ProjectEntity } from '../../project/entities';
|
|||||||
import { RoleTypeEntity } from '../../role-type/entities';
|
import { RoleTypeEntity } from '../../role-type/entities';
|
||||||
import { SpaceEntity } from '../../space/entities/space.entity';
|
import { SpaceEntity } from '../../space/entities/space.entity';
|
||||||
import { UserEntity } from '../../user/entities';
|
import { UserEntity } from '../../user/entities';
|
||||||
import { InviteUserDto, InviteUserSpaceDto } from '../dtos';
|
|
||||||
|
|
||||||
@Entity({ name: 'invite-user' })
|
@Entity({ name: 'invite-user' })
|
||||||
@Unique(['email', 'project'])
|
@Unique(['email', 'project'])
|
||||||
export class InviteUserEntity extends AbstractEntity<InviteUserDto> {
|
export class InviteUserEntity extends AbstractEntity {
|
||||||
@Column({
|
@Column({
|
||||||
type: 'uuid',
|
type: 'uuid',
|
||||||
default: () => 'gen_random_uuid()',
|
default: () => 'gen_random_uuid()',
|
||||||
nullable: false,
|
nullable: false,
|
||||||
})
|
})
|
||||||
public uuid: string;
|
uuid: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
@ -49,50 +48,67 @@ export class InviteUserEntity extends AbstractEntity<InviteUserDto> {
|
|||||||
status: string;
|
status: string;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
public firstName: string;
|
firstName: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
})
|
})
|
||||||
public lastName: string;
|
lastName: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
})
|
})
|
||||||
public phoneNumber: string;
|
phoneNumber: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
default: true,
|
default: true,
|
||||||
})
|
})
|
||||||
public isActive: boolean;
|
isActive: boolean;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
default: true,
|
default: true,
|
||||||
})
|
})
|
||||||
public isEnabled: boolean;
|
isEnabled: boolean;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
unique: true,
|
unique: true,
|
||||||
})
|
})
|
||||||
public invitationCode: string;
|
invitationCode: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
default: new Date(),
|
||||||
|
type: 'date',
|
||||||
|
})
|
||||||
|
accessStartDate: Date;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
type: 'date',
|
||||||
|
nullable: true,
|
||||||
|
})
|
||||||
|
accessEndDate?: Date;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: false,
|
nullable: false,
|
||||||
enum: Object.values(RoleType),
|
enum: Object.values(RoleType),
|
||||||
})
|
})
|
||||||
public invitedBy: string;
|
invitedBy: string;
|
||||||
|
|
||||||
@ManyToOne(() => RoleTypeEntity, (roleType) => roleType.invitedUsers, {
|
@ManyToOne(() => RoleTypeEntity, (roleType) => roleType.invitedUsers, {
|
||||||
nullable: false,
|
nullable: false,
|
||||||
onDelete: 'CASCADE',
|
onDelete: 'CASCADE',
|
||||||
})
|
})
|
||||||
public roleType: RoleTypeEntity;
|
roleType: RoleTypeEntity;
|
||||||
|
|
||||||
@OneToOne(() => UserEntity, (user) => user.inviteUser, {
|
@OneToOne(() => UserEntity, (user) => user.inviteUser, {
|
||||||
nullable: true,
|
nullable: true,
|
||||||
onDelete: 'CASCADE',
|
onDelete: 'CASCADE',
|
||||||
})
|
})
|
||||||
@JoinColumn({ name: 'user_uuid' })
|
@JoinColumn({ name: 'user_uuid' })
|
||||||
user: UserEntity;
|
user: UserEntity;
|
||||||
|
|
||||||
@OneToMany(
|
@OneToMany(
|
||||||
() => InviteUserSpaceEntity,
|
() => InviteUserSpaceEntity,
|
||||||
(inviteUserSpace) => inviteUserSpace.inviteUser,
|
(inviteUserSpace) => inviteUserSpace.inviteUser,
|
||||||
@ -103,32 +119,34 @@ export class InviteUserEntity extends AbstractEntity<InviteUserDto> {
|
|||||||
nullable: true,
|
nullable: true,
|
||||||
})
|
})
|
||||||
@JoinColumn({ name: 'project_uuid' })
|
@JoinColumn({ name: 'project_uuid' })
|
||||||
public project: ProjectEntity;
|
project: ProjectEntity;
|
||||||
|
|
||||||
constructor(partial: Partial<InviteUserEntity>) {
|
constructor(partial: Partial<InviteUserEntity>) {
|
||||||
super();
|
super();
|
||||||
Object.assign(this, partial);
|
Object.assign(this, partial);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Entity({ name: 'invite-user-space' })
|
@Entity({ name: 'invite-user-space' })
|
||||||
@Unique(['inviteUser', 'space'])
|
@Unique(['inviteUser', 'space'])
|
||||||
export class InviteUserSpaceEntity extends AbstractEntity<InviteUserSpaceDto> {
|
export class InviteUserSpaceEntity extends AbstractEntity {
|
||||||
@Column({
|
@Column({
|
||||||
type: 'uuid',
|
type: 'uuid',
|
||||||
default: () => 'gen_random_uuid()',
|
default: () => 'gen_random_uuid()',
|
||||||
nullable: false,
|
nullable: false,
|
||||||
})
|
})
|
||||||
public uuid: string;
|
uuid: string;
|
||||||
|
|
||||||
@ManyToOne(() => InviteUserEntity, (inviteUser) => inviteUser.spaces, {
|
@ManyToOne(() => InviteUserEntity, (inviteUser) => inviteUser.spaces, {
|
||||||
onDelete: 'CASCADE',
|
onDelete: 'CASCADE',
|
||||||
})
|
})
|
||||||
@JoinColumn({ name: 'invite_user_uuid' })
|
@JoinColumn({ name: 'invite_user_uuid' })
|
||||||
public inviteUser: InviteUserEntity;
|
inviteUser: InviteUserEntity;
|
||||||
|
|
||||||
@ManyToOne(() => SpaceEntity, (space) => space.invitedUsers)
|
@ManyToOne(() => SpaceEntity, (space) => space.invitedUsers)
|
||||||
@JoinColumn({ name: 'space_uuid' })
|
@JoinColumn({ name: 'space_uuid' })
|
||||||
public space: SpaceEntity;
|
space: SpaceEntity;
|
||||||
|
|
||||||
constructor(partial: Partial<InviteUserSpaceEntity>) {
|
constructor(partial: Partial<InviteUserSpaceEntity>) {
|
||||||
super();
|
super();
|
||||||
Object.assign(this, partial);
|
Object.assign(this, partial);
|
||||||
|
37
libs/common/src/modules/timer/entities/timer.entity.ts
Normal file
37
libs/common/src/modules/timer/entities/timer.entity.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { TimerJobTypeEnum } from '@app/common/constants/timer-job-type.enum';
|
||||||
|
import { Column, Entity } from 'typeorm';
|
||||||
|
import { AbstractEntity } from '../../abstract/entities/abstract.entity';
|
||||||
|
|
||||||
|
@Entity({ name: 'timer' })
|
||||||
|
export class TimerEntity extends AbstractEntity {
|
||||||
|
@Column({
|
||||||
|
type: 'uuid',
|
||||||
|
default: () => 'gen_random_uuid()',
|
||||||
|
nullable: false,
|
||||||
|
})
|
||||||
|
uuid: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
enum: Object.values(TimerJobTypeEnum),
|
||||||
|
type: String,
|
||||||
|
})
|
||||||
|
type: TimerJobTypeEnum;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: false,
|
||||||
|
type: 'date',
|
||||||
|
})
|
||||||
|
triggerDate: Date;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
type: 'jsonb',
|
||||||
|
nullable: true,
|
||||||
|
})
|
||||||
|
metadata?: Record<string, any>;
|
||||||
|
|
||||||
|
constructor(partial: Partial<TimerEntity>) {
|
||||||
|
super();
|
||||||
|
Object.assign(this, partial);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
import { DataSource, Repository } from 'typeorm';
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { TimerEntity } from '../entities/timer.entity';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class TimerRepository extends Repository<TimerEntity> {
|
||||||
|
constructor(private dataSource: DataSource) {
|
||||||
|
super(TimerEntity, dataSource.createEntityManager());
|
||||||
|
}
|
||||||
|
}
|
12
libs/common/src/modules/timer/timer.repository.module.ts
Normal file
12
libs/common/src/modules/timer/timer.repository.module.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { Global, Module } from '@nestjs/common';
|
||||||
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||||
|
import { TimerEntity } from './entities/timer.entity';
|
||||||
|
import { TimerRepository } from './repositories/timer.repository';
|
||||||
|
|
||||||
|
@Global()
|
||||||
|
@Module({
|
||||||
|
imports: [TypeOrmModule.forFeature([TimerEntity])],
|
||||||
|
providers: [TimerRepository],
|
||||||
|
exports: [TimerRepository],
|
||||||
|
})
|
||||||
|
export class TimerRepositoryModule {}
|
@ -11,6 +11,7 @@ import {
|
|||||||
} from 'typeorm';
|
} from 'typeorm';
|
||||||
import { OtpType } from '../../../../src/constants/otp-type.enum';
|
import { OtpType } from '../../../../src/constants/otp-type.enum';
|
||||||
import { AbstractEntity } from '../../abstract/entities/abstract.entity';
|
import { AbstractEntity } from '../../abstract/entities/abstract.entity';
|
||||||
|
import { BookingEntity } from '../../booking/entities/booking.entity';
|
||||||
import { ClientEntity } from '../../client/entities';
|
import { ClientEntity } from '../../client/entities';
|
||||||
import {
|
import {
|
||||||
DeviceNotificationEntity,
|
DeviceNotificationEntity,
|
||||||
@ -29,7 +30,6 @@ import {
|
|||||||
UserOtpDto,
|
UserOtpDto,
|
||||||
UserSpaceDto,
|
UserSpaceDto,
|
||||||
} from '../dtos';
|
} from '../dtos';
|
||||||
import { BookingEntity } from '../../booking/entities/booking.entity';
|
|
||||||
|
|
||||||
@Entity({ name: 'user' })
|
@Entity({ name: 'user' })
|
||||||
export class UserEntity extends AbstractEntity<UserDto> {
|
export class UserEntity extends AbstractEntity<UserDto> {
|
||||||
@ -101,6 +101,9 @@ export class UserEntity extends AbstractEntity<UserDto> {
|
|||||||
@Column({ type: 'timestamp', nullable: true })
|
@Column({ type: 'timestamp', nullable: true })
|
||||||
appAgreementAcceptedAt: Date;
|
appAgreementAcceptedAt: Date;
|
||||||
|
|
||||||
|
@Column({ type: Boolean, default: false })
|
||||||
|
bookingEnabled: boolean;
|
||||||
|
|
||||||
@OneToMany(() => UserSpaceEntity, (userSpace) => userSpace.user, {
|
@OneToMany(() => UserSpaceEntity, (userSpace) => userSpace.user, {
|
||||||
onDelete: 'CASCADE',
|
onDelete: 'CASCADE',
|
||||||
})
|
})
|
||||||
|
@ -35,16 +35,18 @@ import { UserNotificationModule } from './user-notification/user-notification.mo
|
|||||||
import { UserModule } from './users/user.module';
|
import { UserModule } from './users/user.module';
|
||||||
import { VisitorPasswordModule } from './vistor-password/visitor-password.module';
|
import { VisitorPasswordModule } from './vistor-password/visitor-password.module';
|
||||||
|
|
||||||
|
import { TimerRepositoryModule } from '@app/common/modules/timer/timer.repository.module';
|
||||||
|
import { ScheduleModule as NestScheduleModule } from '@nestjs/schedule';
|
||||||
import { ThrottlerGuard } from '@nestjs/throttler';
|
import { ThrottlerGuard } from '@nestjs/throttler';
|
||||||
import { ThrottlerModule } from '@nestjs/throttler/dist/throttler.module';
|
import { ThrottlerModule } from '@nestjs/throttler/dist/throttler.module';
|
||||||
import { isArray } from 'class-validator';
|
import { isArray } from 'class-validator';
|
||||||
import { winstonLoggerOptions } from '../libs/common/src/logger/services/winston.logger';
|
import { winstonLoggerOptions } from '../libs/common/src/logger/services/winston.logger';
|
||||||
import { AqiModule } from './aqi/aqi.module';
|
import { AqiModule } from './aqi/aqi.module';
|
||||||
import { OccupancyModule } from './occupancy/occupancy.module';
|
|
||||||
import { WeatherModule } from './weather/weather.module';
|
|
||||||
import { ScheduleModule as NestScheduleModule } from '@nestjs/schedule';
|
|
||||||
import { SchedulerModule } from './scheduler/scheduler.module';
|
|
||||||
import { BookingModule } from './booking';
|
import { BookingModule } from './booking';
|
||||||
|
import { OccupancyModule } from './occupancy/occupancy.module';
|
||||||
|
import { SchedulerModule } from './scheduler/scheduler.module';
|
||||||
|
import { TimerModule } from './timer/timer.module';
|
||||||
|
import { WeatherModule } from './weather/weather.module';
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ConfigModule.forRoot({
|
ConfigModule.forRoot({
|
||||||
@ -63,6 +65,8 @@ import { BookingModule } from './booking';
|
|||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
WinstonModule.forRoot(winstonLoggerOptions),
|
WinstonModule.forRoot(winstonLoggerOptions),
|
||||||
|
TimerModule,
|
||||||
|
TimerRepositoryModule,
|
||||||
ClientModule,
|
ClientModule,
|
||||||
AuthenticationModule,
|
AuthenticationModule,
|
||||||
UserModule,
|
UserModule,
|
||||||
|
@ -2,10 +2,12 @@ import { ApiProperty } from '@nestjs/swagger';
|
|||||||
import {
|
import {
|
||||||
ArrayMinSize,
|
ArrayMinSize,
|
||||||
IsArray,
|
IsArray,
|
||||||
|
IsDate,
|
||||||
IsNotEmpty,
|
IsNotEmpty,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
IsUUID,
|
IsUUID,
|
||||||
|
MinDate,
|
||||||
} from 'class-validator';
|
} from 'class-validator';
|
||||||
|
|
||||||
export class AddUserInvitationDto {
|
export class AddUserInvitationDto {
|
||||||
@ -16,7 +18,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public firstName: string;
|
firstName: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The last name of the user',
|
description: 'The last name of the user',
|
||||||
@ -25,7 +27,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public lastName: string;
|
lastName: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The email of the user',
|
description: 'The email of the user',
|
||||||
@ -34,7 +36,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public email: string;
|
email: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The job title of the user',
|
description: 'The job title of the user',
|
||||||
@ -43,7 +45,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
public jobTitle?: string;
|
jobTitle?: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The company name of the user',
|
description: 'The company name of the user',
|
||||||
@ -52,7 +54,27 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
public companyName?: string;
|
companyName?: string;
|
||||||
|
|
||||||
|
@ApiProperty({
|
||||||
|
description: 'Access start date',
|
||||||
|
example: new Date(),
|
||||||
|
required: false,
|
||||||
|
})
|
||||||
|
@IsDate()
|
||||||
|
@MinDate(new Date())
|
||||||
|
@IsOptional()
|
||||||
|
accessStartDate?: Date;
|
||||||
|
|
||||||
|
@ApiProperty({
|
||||||
|
description: 'Access start date',
|
||||||
|
example: new Date(),
|
||||||
|
required: false,
|
||||||
|
})
|
||||||
|
@IsDate()
|
||||||
|
@MinDate(new Date())
|
||||||
|
@IsOptional()
|
||||||
|
accessEndDate?: Date;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The phone number of the user',
|
description: 'The phone number of the user',
|
||||||
@ -61,7 +83,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsString()
|
@IsString()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
public phoneNumber?: string;
|
phoneNumber?: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The role uuid of the user',
|
description: 'The role uuid of the user',
|
||||||
@ -70,7 +92,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsUUID('4')
|
@IsUUID('4')
|
||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public roleUuid: string;
|
roleUuid: string;
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The project uuid of the user',
|
description: 'The project uuid of the user',
|
||||||
example: 'd290f1ee-6c54-4b01-90e6-d701748f0851',
|
example: 'd290f1ee-6c54-4b01-90e6-d701748f0851',
|
||||||
@ -78,7 +100,7 @@ export class AddUserInvitationDto {
|
|||||||
})
|
})
|
||||||
@IsUUID('4')
|
@IsUUID('4')
|
||||||
@IsNotEmpty()
|
@IsNotEmpty()
|
||||||
public projectUuid: string;
|
projectUuid: string;
|
||||||
|
|
||||||
@ApiProperty({
|
@ApiProperty({
|
||||||
description: 'The array of space UUIDs (at least one required)',
|
description: 'The array of space UUIDs (at least one required)',
|
||||||
@ -88,7 +110,7 @@ export class AddUserInvitationDto {
|
|||||||
@IsArray()
|
@IsArray()
|
||||||
@IsUUID('4', { each: true })
|
@IsUUID('4', { each: true })
|
||||||
@ArrayMinSize(1)
|
@ArrayMinSize(1)
|
||||||
public spaceUuids: string[];
|
spaceUuids: string[];
|
||||||
constructor(dto: Partial<AddUserInvitationDto>) {
|
constructor(dto: Partial<AddUserInvitationDto>) {
|
||||||
Object.assign(this, dto);
|
Object.assign(this, dto);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { RoleType } from '@app/common/constants/role.type.enum';
|
import { RoleType } from '@app/common/constants/role.type.enum';
|
||||||
|
import { TimerJobTypeEnum } from '@app/common/constants/timer-job-type.enum';
|
||||||
import { UserStatusEnum } from '@app/common/constants/user-status.enum';
|
import { UserStatusEnum } from '@app/common/constants/user-status.enum';
|
||||||
import { BaseResponseDto } from '@app/common/dto/base.response.dto';
|
import { BaseResponseDto } from '@app/common/dto/base.response.dto';
|
||||||
import { SuccessResponseDto } from '@app/common/dto/success.response.dto';
|
import { SuccessResponseDto } from '@app/common/dto/success.response.dto';
|
||||||
@ -23,6 +24,7 @@ import {
|
|||||||
Injectable,
|
Injectable,
|
||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { SpaceUserService } from 'src/space/services';
|
import { SpaceUserService } from 'src/space/services';
|
||||||
|
import { TimerService } from 'src/timer/timer.service';
|
||||||
import { UserSpaceService } from 'src/users/services';
|
import { UserSpaceService } from 'src/users/services';
|
||||||
import {
|
import {
|
||||||
DataSource,
|
DataSource,
|
||||||
@ -52,6 +54,7 @@ export class InviteUserService {
|
|||||||
private readonly spaceRepository: SpaceRepository,
|
private readonly spaceRepository: SpaceRepository,
|
||||||
private readonly roleTypeRepository: RoleTypeRepository,
|
private readonly roleTypeRepository: RoleTypeRepository,
|
||||||
private readonly dataSource: DataSource,
|
private readonly dataSource: DataSource,
|
||||||
|
private readonly timerService: TimerService,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async createUserInvitation(
|
async createUserInvitation(
|
||||||
@ -68,8 +71,14 @@ export class InviteUserService {
|
|||||||
roleUuid,
|
roleUuid,
|
||||||
spaceUuids,
|
spaceUuids,
|
||||||
projectUuid,
|
projectUuid,
|
||||||
|
accessStartDate,
|
||||||
|
accessEndDate,
|
||||||
} = dto;
|
} = dto;
|
||||||
|
if (accessStartDate && accessEndDate && accessEndDate <= accessStartDate) {
|
||||||
|
throw new BadRequestException(
|
||||||
|
'accessEndDate must be after accessStartDate',
|
||||||
|
);
|
||||||
|
}
|
||||||
const invitationCode = generateRandomString(6);
|
const invitationCode = generateRandomString(6);
|
||||||
const queryRunner = this.dataSource.createQueryRunner();
|
const queryRunner = this.dataSource.createQueryRunner();
|
||||||
|
|
||||||
@ -114,6 +123,8 @@ export class InviteUserService {
|
|||||||
invitationCode,
|
invitationCode,
|
||||||
invitedBy: roleType,
|
invitedBy: roleType,
|
||||||
project: { uuid: projectUuid },
|
project: { uuid: projectUuid },
|
||||||
|
accessEndDate,
|
||||||
|
accessStartDate,
|
||||||
});
|
});
|
||||||
|
|
||||||
const invitedUser = await queryRunner.manager.save(inviteUser);
|
const invitedUser = await queryRunner.manager.save(inviteUser);
|
||||||
@ -132,12 +143,26 @@ export class InviteUserService {
|
|||||||
|
|
||||||
// Send invitation email
|
// Send invitation email
|
||||||
const spaceNames = validSpaces.map((space) => space.spaceName).join(', ');
|
const spaceNames = validSpaces.map((space) => space.spaceName).join(', ');
|
||||||
await this.emailService.sendEmailWithInvitationTemplate(email, {
|
if (accessStartDate) {
|
||||||
name: firstName,
|
await this.timerService.createJob({
|
||||||
invitationCode,
|
type: TimerJobTypeEnum.INVITE_USER_EMAIL,
|
||||||
role: invitedRoleType.replace(/_/g, ' '),
|
triggerDate: accessStartDate,
|
||||||
spacesList: spaceNames,
|
metadata: {
|
||||||
});
|
email,
|
||||||
|
name: firstName,
|
||||||
|
invitationCode,
|
||||||
|
role: invitedRoleType.replace(/_/g, ' '),
|
||||||
|
spacesList: spaceNames,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
await this.emailService.sendEmailWithInvitationTemplate(email, {
|
||||||
|
name: firstName,
|
||||||
|
invitationCode,
|
||||||
|
role: invitedRoleType.replace(/_/g, ' '),
|
||||||
|
spacesList: spaceNames,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
await queryRunner.commitTransaction();
|
await queryRunner.commitTransaction();
|
||||||
|
|
||||||
|
20
src/timer/create-job.dto.ts
Normal file
20
src/timer/create-job.dto.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import { TimerJobTypeEnum } from '@app/common/constants/timer-job-type.enum';
|
||||||
|
|
||||||
|
export class BaseCreateJobDto {
|
||||||
|
type: TimerJobTypeEnum;
|
||||||
|
triggerDate: Date;
|
||||||
|
metadata: Record<string, any>;
|
||||||
|
}
|
||||||
|
// validate based on jobType
|
||||||
|
export class CreateUserInvitationJobDto extends BaseCreateJobDto {
|
||||||
|
type: TimerJobTypeEnum.INVITE_USER_EMAIL;
|
||||||
|
metadata: {
|
||||||
|
email: string;
|
||||||
|
name: string;
|
||||||
|
invitationCode: string;
|
||||||
|
role: string;
|
||||||
|
spacesList: string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export type CreateJobDto = CreateUserInvitationJobDto;
|
10
src/timer/timer.module.ts
Normal file
10
src/timer/timer.module.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { EmailService } from '@app/common/util/email/email.service';
|
||||||
|
import { Global, Module } from '@nestjs/common';
|
||||||
|
import { TimerService } from './timer.service';
|
||||||
|
|
||||||
|
@Global()
|
||||||
|
@Module({
|
||||||
|
providers: [TimerService, EmailService],
|
||||||
|
exports: [TimerService],
|
||||||
|
})
|
||||||
|
export class TimerModule {}
|
53
src/timer/timer.service.ts
Normal file
53
src/timer/timer.service.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { TimerJobTypeEnum } from '@app/common/constants/timer-job-type.enum';
|
||||||
|
import { TimerEntity } from '@app/common/modules/timer/entities/timer.entity';
|
||||||
|
import { TimerRepository } from '@app/common/modules/timer/repositories/timer.repository';
|
||||||
|
import { EmailService } from '@app/common/util/email/email.service';
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { Cron, CronExpression } from '@nestjs/schedule';
|
||||||
|
import { In, LessThanOrEqual } from 'typeorm';
|
||||||
|
import { CreateJobDto } from './create-job.dto';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class TimerService {
|
||||||
|
constructor(
|
||||||
|
private readonly timerRepository: TimerRepository,
|
||||||
|
private readonly emailService: EmailService,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
createJob(job: CreateJobDto): Promise<TimerEntity> {
|
||||||
|
const timerEntity = this.timerRepository.create(job);
|
||||||
|
return this.timerRepository.save(timerEntity);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Cron(CronExpression.EVERY_DAY_AT_MIDNIGHT)
|
||||||
|
async handleCron() {
|
||||||
|
const jobsToRun = await this.timerRepository.find({
|
||||||
|
where: { triggerDate: LessThanOrEqual(new Date()) },
|
||||||
|
});
|
||||||
|
const successfulJobs = [];
|
||||||
|
for (const job of jobsToRun) {
|
||||||
|
try {
|
||||||
|
await this.handleJob(job);
|
||||||
|
|
||||||
|
successfulJobs.push(job.uuid);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`Job ${job.uuid} failed:`, error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await this.timerRepository.delete({ uuid: In(successfulJobs) });
|
||||||
|
}
|
||||||
|
|
||||||
|
handleJob(job: TimerEntity) {
|
||||||
|
switch (job.type) {
|
||||||
|
case TimerJobTypeEnum.INVITE_USER_EMAIL:
|
||||||
|
return this.emailService.sendEmailWithInvitationTemplate(
|
||||||
|
job.metadata.email,
|
||||||
|
job.metadata,
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
// Handle other job types as needed
|
||||||
|
default:
|
||||||
|
console.warn(`Unhandled job type: ${job.type}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -30,7 +30,7 @@ export class UserService {
|
|||||||
where: {
|
where: {
|
||||||
uuid: userUuid,
|
uuid: userUuid,
|
||||||
},
|
},
|
||||||
relations: ['region', 'timezone', 'roleType', 'project'],
|
relations: ['region', 'timezone', 'roleType', 'project', 'inviteUser'],
|
||||||
});
|
});
|
||||||
if (!user) {
|
if (!user) {
|
||||||
throw new BadRequestException('Invalid room UUID');
|
throw new BadRequestException('Invalid room UUID');
|
||||||
@ -53,6 +53,10 @@ export class UserService {
|
|||||||
appAgreementAcceptedAt: user?.appAgreementAcceptedAt,
|
appAgreementAcceptedAt: user?.appAgreementAcceptedAt,
|
||||||
role: user?.roleType,
|
role: user?.roleType,
|
||||||
project: user?.project,
|
project: user?.project,
|
||||||
|
bookingPoints: user?.bookingPoints ?? 0,
|
||||||
|
accessStartDate: user?.inviteUser.accessStartDate,
|
||||||
|
accessEndDate: user?.inviteUser.accessEndDate,
|
||||||
|
bookingEnabled: user?.bookingEnabled,
|
||||||
};
|
};
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err instanceof BadRequestException) {
|
if (err instanceof BadRequestException) {
|
||||||
|
Reference in New Issue
Block a user