egirlskey/packages/backend/src/models/Page.ts

121 lines
2.2 KiB
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { Entity, Index, JoinColumn, Column, PrimaryColumn, ManyToOne } from 'typeorm';
import { id } from './util/id.js';
import { MiUser } from './User.js';
import { MiDriveFile } from './DriveFile.js';
@Entity('page')
@Index(['userId', 'name'], { unique: true })
export class MiPage {
@PrimaryColumn(id())
public id: string;
@Index()
@Column('timestamp with time zone', {
2021-12-09 14:58:30 +00:00
comment: 'The updated date of the Page.',
})
public updatedAt: Date;
@Column('varchar', {
length: 256,
})
public title: string;
@Index()
@Column('varchar', {
length: 256,
})
public name: string;
@Column('varchar', {
2021-12-09 14:58:30 +00:00
length: 256, nullable: true,
})
public summary: string | null;
@Column('boolean')
public alignCenter: boolean;
@Column('boolean', {
2021-12-09 14:58:30 +00:00
default: false,
})
public hideTitleWhenPinned: boolean;
@Column('varchar', {
length: 32,
})
public font: string;
@Index()
@Column({
...id(),
2021-12-09 14:58:30 +00:00
comment: 'The ID of author.',
})
public userId: MiUser['id'];
@ManyToOne(type => MiUser, {
2021-12-09 14:58:30 +00:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: MiUser | null;
@Column({
...id(),
nullable: true,
})
public eyeCatchingImageId: MiDriveFile['id'] | null;
@ManyToOne(type => MiDriveFile, {
2021-12-09 14:58:30 +00:00
onDelete: 'CASCADE',
})
@JoinColumn()
public eyeCatchingImage: MiDriveFile | null;
@Column('jsonb', {
2021-12-09 14:58:30 +00:00
default: [],
})
public content: Record<string, any>[];
@Column('jsonb', {
2021-12-09 14:58:30 +00:00
default: [],
})
public variables: Record<string, any>[];
2020-04-12 18:23:23 +00:00
@Column('varchar', {
length: 16384,
2021-12-09 14:58:30 +00:00
default: '',
2020-04-12 18:23:23 +00:00
})
public script: string;
/**
* public ...
* followers ...
* specified ... visibleUserIds
*/
@Column('enum', { enum: ['public', 'followers', 'specified'] })
public visibility: 'public' | 'followers' | 'specified';
@Index()
@Column({
...id(),
2021-12-09 14:58:30 +00:00
array: true, default: '{}',
})
public visibleUserIds: MiUser['id'][];
@Column('integer', {
2021-12-09 14:58:30 +00:00
default: 0,
})
public likedCount: number;
constructor(data: Partial<MiPage>) {
if (data == null) return;
for (const [k, v] of Object.entries(data)) {
(this as any)[k] = v;
}
}
}