2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-01-29 20:37:25 +01: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';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@Entity('clip')
|
|
|
|
export class MiClip {
|
2020-01-29 20:37:25 +01:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The created date of the Clip.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
2023-03-16 09:24:49 +01:00
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public lastClippedAt: Date | null;
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The owner ID.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
2023-08-16 10:51:28 +02:00
|
|
|
public userId: MiUser['id'];
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 10:51:28 +02:00
|
|
|
public user: MiUser | null;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The name of the Clip.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
2021-12-09 15:58:30 +01:00
|
|
|
default: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public isPublic: boolean;
|
2020-11-15 04:04:54 +01:00
|
|
|
|
|
|
|
@Column('varchar', {
|
2022-05-05 15:45:22 +02:00
|
|
|
length: 2048, nullable: true,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The description of the Clip.',
|
2020-11-15 04:04:54 +01:00
|
|
|
})
|
|
|
|
public description: string | null;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|