2019-04-07 14:50:36 +02:00
|
|
|
import { Entity, Index, JoinColumn, Column, PrimaryColumn, ManyToOne } from 'typeorm';
|
|
|
|
import { User } from './user';
|
|
|
|
import { DriveFile } from './drive-file';
|
|
|
|
import { id } from '../id';
|
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class Note {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
comment: 'The created date of the Note.'
|
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
comment: 'The ID of reply target.'
|
|
|
|
})
|
|
|
|
public replyId: Note['id'] | null;
|
|
|
|
|
|
|
|
@ManyToOne(type => Note, {
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public reply: Note | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
comment: 'The ID of renote target.'
|
|
|
|
})
|
|
|
|
public renoteId: Note['id'] | null;
|
|
|
|
|
|
|
|
@ManyToOne(type => Note, {
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public renote: Note | null;
|
|
|
|
|
2019-05-14 05:04:40 +02:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192, nullable: true
|
2019-04-07 14:50:36 +02:00
|
|
|
})
|
|
|
|
public text: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 256, nullable: true
|
|
|
|
})
|
|
|
|
public name: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512, nullable: true
|
|
|
|
})
|
|
|
|
public cw: string | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
comment: 'The ID of author.'
|
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false
|
|
|
|
})
|
|
|
|
public viaMobile: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false
|
|
|
|
})
|
|
|
|
public localOnly: boolean;
|
|
|
|
|
2019-04-16 19:12:15 +02:00
|
|
|
@Column('smallint', {
|
2019-04-07 14:50:36 +02:00
|
|
|
default: 0
|
|
|
|
})
|
|
|
|
public renoteCount: number;
|
|
|
|
|
2019-04-16 19:12:15 +02:00
|
|
|
@Column('smallint', {
|
2019-04-07 14:50:36 +02:00
|
|
|
default: 0
|
|
|
|
})
|
|
|
|
public repliesCount: number;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: {}
|
|
|
|
})
|
|
|
|
public reactions: Record<string, number>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* public ... 公開
|
|
|
|
* home ... ホームタイムライン(ユーザーページのタイムライン含む)のみに流す
|
|
|
|
* followers ... フォロワーのみ
|
|
|
|
* specified ... visibleUserIds で指定したユーザーのみ
|
|
|
|
*/
|
|
|
|
@Column('enum', { enum: ['public', 'home', 'followers', 'specified'] })
|
|
|
|
public visibility: 'public' | 'home' | 'followers' | 'specified';
|
|
|
|
|
|
|
|
@Index({ unique: true })
|
|
|
|
@Column('varchar', {
|
2019-04-11 12:03:49 +02:00
|
|
|
length: 512, nullable: true,
|
2019-04-07 14:50:36 +02:00
|
|
|
comment: 'The URI of a note. it will be null when the note is local.'
|
|
|
|
})
|
|
|
|
public uri: string | null;
|
|
|
|
|
|
|
|
@Column('integer', {
|
2019-04-14 13:26:47 +02:00
|
|
|
default: 0, select: false
|
2019-04-07 14:50:36 +02:00
|
|
|
})
|
|
|
|
public score: number;
|
|
|
|
|
2019-04-16 19:11:22 +02:00
|
|
|
@Index()
|
2019-04-07 14:50:36 +02:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public fileIds: DriveFile['id'][];
|
|
|
|
|
2019-04-16 19:11:22 +02:00
|
|
|
@Index()
|
2019-04-07 14:50:36 +02:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 256, array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public attachedFileTypes: string[];
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public visibleUserIds: User['id'][];
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public mentions: User['id'][];
|
|
|
|
|
|
|
|
@Column('text', {
|
|
|
|
default: '[]'
|
|
|
|
})
|
|
|
|
public mentionedRemoteUsers: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public emojis: string[];
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, array: true, default: '{}'
|
|
|
|
})
|
|
|
|
public tags: string[];
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false
|
|
|
|
})
|
|
|
|
public hasPoll: boolean;
|
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public userHost: string | null;
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public replyUserId: User['id'] | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public replyUserHost: string | null;
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public renoteUserId: User['id'] | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public renoteUserHost: string | null;
|
|
|
|
//#endregion
|
2019-04-11 18:30:10 +02:00
|
|
|
|
|
|
|
constructor(data: Partial<Note>) {
|
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
|
|
(this as any)[k] = v;
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 14:50:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export type IMentionedRemoteUsers = {
|
|
|
|
uri: string;
|
2019-10-31 21:43:54 +01:00
|
|
|
url?: string;
|
2019-04-07 14:50:36 +02:00
|
|
|
username: string;
|
|
|
|
host: string;
|
|
|
|
}[];
|