2023-01-12 21:40:33 -07:00
|
|
|
import {
|
|
|
|
PrimaryColumn,
|
|
|
|
Entity,
|
|
|
|
Index,
|
|
|
|
JoinColumn,
|
|
|
|
Column,
|
|
|
|
ManyToOne,
|
|
|
|
} from "typeorm";
|
|
|
|
import { User } from "./user.js";
|
|
|
|
import { id } from "../id.js";
|
|
|
|
import { DriveFile } from "./drive-file.js";
|
2020-08-18 07:44:21 -06:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class Channel {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The created date of the Channel.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 07:58:30 -07:00
|
|
|
nullable: true,
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public lastNotedAt: Date | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-08-18 07:04:04 -06:00
|
|
|
nullable: true,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The owner ID.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
2023-01-12 21:40:33 -07:00
|
|
|
public userId: User["id"] | null;
|
2020-08-18 07:44:21 -06:00
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 07:58:30 -07:00
|
|
|
onDelete: 'SET NULL',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The name of the Channel.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 2048, nullable: true,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The description of the Channel.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The ID of banner Channel.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
2023-01-12 21:40:33 -07:00
|
|
|
public bannerId: DriveFile["id"] | null;
|
2020-08-18 07:44:21 -06:00
|
|
|
|
|
|
|
@ManyToOne(type => DriveFile, {
|
2021-12-09 07:58:30 -07:00
|
|
|
onDelete: 'SET NULL',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public banner: DriveFile | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('integer', {
|
|
|
|
default: 0,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The count of notes.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public notesCount: number;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('integer', {
|
|
|
|
default: 0,
|
2021-12-09 07:58:30 -07:00
|
|
|
comment: 'The count of users.',
|
2020-08-18 07:44:21 -06:00
|
|
|
})
|
|
|
|
public usersCount: number;
|
|
|
|
}
|