2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 04:33:36 +02:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 10:51:28 +02:00
|
|
|
import { MiUser } from './User.js';
|
|
|
|
import { MiDriveFile } from './DriveFile.js';
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@Entity('channel')
|
|
|
|
export class MiChannel {
|
2020-08-18 15:44:21 +02:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 15:58:30 +01:00
|
|
|
nullable: true,
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
public lastNotedAt: Date | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-08-18 15:04:04 +02:00
|
|
|
nullable: true,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The owner ID.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
2023-08-16 10:51:28 +02:00
|
|
|
public userId: MiUser['id'] | null;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'SET NULL',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 10:51:28 +02:00
|
|
|
public user: MiUser | null;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The name of the Channel.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 2048, nullable: true,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The description of the Channel.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The ID of banner Channel.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
2023-08-16 10:51:28 +02:00
|
|
|
public bannerId: MiDriveFile['id'] | null;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@ManyToOne(type => MiDriveFile, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'SET NULL',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 10:51:28 +02:00
|
|
|
public banner: MiDriveFile | null;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-03-31 08:01:56 +02:00
|
|
|
@Column('varchar', {
|
|
|
|
array: true, length: 128, default: '{}',
|
|
|
|
})
|
|
|
|
public pinnedNoteIds: string[];
|
|
|
|
|
2023-05-02 02:36:40 +02:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 16,
|
|
|
|
default: '#86b300',
|
|
|
|
})
|
|
|
|
public color: string;
|
|
|
|
|
2023-05-06 01:15:17 +02:00
|
|
|
@Index()
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isArchived: boolean;
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
@Index()
|
|
|
|
@Column('integer', {
|
|
|
|
default: 0,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The count of notes.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
public notesCount: number;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('integer', {
|
|
|
|
default: 0,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The count of users.',
|
2020-08-18 15:44:21 +02:00
|
|
|
})
|
|
|
|
public usersCount: number;
|
2023-08-05 06:58:31 +02:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isSensitive: boolean;
|
2020-08-18 15:44:21 +02:00
|
|
|
}
|