mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-14 18:05:48 +00:00

* refactor: reducing used queries on get communities (#385) * refactor: fix create space logic (#394) * Remove unique constraint on subspace and product in SubspaceProductAllocationEntity; update product relation to nullable in NewTagEntity * refactor: fix create space logic * device model updated to include the fixes and final columns * updated space models to include suggested fixes, update final logic and column names * task: removing old references of the old tag-product relation * task: remove old use of tags * task: remove old tag & tag model usage * refactor: delete space * task: remove unused functions * fix lint rule
159 lines
4.0 KiB
TypeScript
159 lines
4.0 KiB
TypeScript
import {
|
|
Column,
|
|
Entity,
|
|
ManyToOne,
|
|
OneToMany,
|
|
Unique,
|
|
Index,
|
|
JoinColumn,
|
|
} from 'typeorm';
|
|
import { AbstractEntity } from '../../abstract/entities/abstract.entity';
|
|
import { DeviceDto, DeviceUserPermissionDto } from '../dtos/device.dto';
|
|
import { ProductEntity } from '../../product/entities';
|
|
import { UserEntity } from '../../user/entities';
|
|
import { DeviceNotificationDto } from '../dtos';
|
|
import { PermissionTypeEntity } from '../../permission/entities';
|
|
import { SceneDeviceEntity } from '../../scene-device/entities';
|
|
import { SpaceEntity } from '../../space/entities/space.entity';
|
|
import { SubspaceEntity } from '../../space/entities/subspace/subspace.entity';
|
|
import { NewTagEntity } from '../../tag';
|
|
import { PowerClampHourlyEntity } from '../../power-clamp/entities/power-clamp.entity';
|
|
import { PresenceSensorDailyDeviceEntity } from '../../presence-sensor/entities';
|
|
|
|
@Entity({ name: 'device' })
|
|
@Unique(['deviceTuyaUuid'])
|
|
export class DeviceEntity extends AbstractEntity<DeviceDto> {
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
deviceTuyaUuid: string;
|
|
|
|
@Column({
|
|
nullable: true,
|
|
default: true,
|
|
type: 'boolean',
|
|
})
|
|
isActive: boolean;
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
name: string;
|
|
@OneToMany(
|
|
() => DeviceUserPermissionEntity,
|
|
(permission) => permission.device,
|
|
{
|
|
nullable: true,
|
|
},
|
|
)
|
|
permission: DeviceUserPermissionEntity[];
|
|
@OneToMany(
|
|
() => DeviceNotificationEntity,
|
|
(deviceUserNotification) => deviceUserNotification.device,
|
|
{
|
|
nullable: true,
|
|
},
|
|
)
|
|
deviceUserNotification: DeviceNotificationEntity[];
|
|
|
|
@ManyToOne(() => SpaceEntity, (space) => space.devices, {
|
|
nullable: true,
|
|
})
|
|
spaceDevice: SpaceEntity;
|
|
|
|
@ManyToOne(() => ProductEntity, (product) => product.devicesProductEntity, {
|
|
nullable: false,
|
|
})
|
|
productDevice: ProductEntity;
|
|
|
|
@ManyToOne(() => SubspaceEntity, (subspace) => subspace.devices, {
|
|
nullable: true,
|
|
})
|
|
@JoinColumn({ name: 'subspace_id' })
|
|
subspace: SubspaceEntity;
|
|
|
|
@Index()
|
|
@Column({ nullable: false })
|
|
uuid: string;
|
|
|
|
@OneToMany(() => SceneDeviceEntity, (sceneDevice) => sceneDevice.device, {})
|
|
sceneDevices: SceneDeviceEntity[];
|
|
|
|
@ManyToOne(() => NewTagEntity, (tag) => tag.devices)
|
|
@JoinColumn({ name: 'tag_uuid' })
|
|
public tag: NewTagEntity;
|
|
@OneToMany(() => PowerClampHourlyEntity, (powerClamp) => powerClamp.device)
|
|
powerClampHourly: PowerClampHourlyEntity[];
|
|
@OneToMany(() => PresenceSensorDailyDeviceEntity, (sensor) => sensor.device)
|
|
presenceSensorDaily: PresenceSensorDailyDeviceEntity[];
|
|
constructor(partial: Partial<DeviceEntity>) {
|
|
super();
|
|
Object.assign(this, partial);
|
|
}
|
|
}
|
|
|
|
@Entity({ name: 'device-notification' })
|
|
@Unique(['userUuid', 'deviceUuid'])
|
|
export class DeviceNotificationEntity extends AbstractEntity<DeviceNotificationDto> {
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
public userUuid: string;
|
|
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
deviceUuid: string;
|
|
|
|
@ManyToOne(() => DeviceEntity, (device) => device.permission, {
|
|
nullable: false,
|
|
})
|
|
device: DeviceEntity;
|
|
|
|
@ManyToOne(() => UserEntity, (user) => user.userPermission, {
|
|
nullable: false,
|
|
})
|
|
user: UserEntity;
|
|
|
|
constructor(partial: Partial<DeviceNotificationEntity>) {
|
|
super();
|
|
Object.assign(this, partial);
|
|
}
|
|
}
|
|
|
|
@Entity({ name: 'device-user-permission' })
|
|
@Unique(['userUuid', 'deviceUuid'])
|
|
export class DeviceUserPermissionEntity extends AbstractEntity<DeviceUserPermissionDto> {
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
public userUuid: string;
|
|
|
|
@Column({
|
|
nullable: false,
|
|
})
|
|
deviceUuid: string;
|
|
|
|
@ManyToOne(() => DeviceEntity, (device) => device.permission, {
|
|
nullable: false,
|
|
})
|
|
device: DeviceEntity;
|
|
|
|
@ManyToOne(
|
|
() => PermissionTypeEntity,
|
|
(permissionType) => permissionType.permission,
|
|
{
|
|
nullable: false,
|
|
},
|
|
)
|
|
permissionType: PermissionTypeEntity;
|
|
|
|
@ManyToOne(() => UserEntity, (user) => user.userPermission, {
|
|
nullable: false,
|
|
})
|
|
user: UserEntity;
|
|
constructor(partial: Partial<DeviceUserPermissionEntity>) {
|
|
super();
|
|
Object.assign(this, partial);
|
|
}
|
|
}
|