2019-04-10 06:04:27 +00:00
|
|
|
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { id } from '../id';
|
2019-04-10 06:04:27 +00:00
|
|
|
import { User } from './user';
|
2019-07-06 21:56:13 +00:00
|
|
|
import { Page } from './page';
|
2020-08-22 01:06:17 +00:00
|
|
|
import { notificationTypes } from '../../types';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-02-13 03:28:26 +00:00
|
|
|
// TODO: このテーブルで管理している情報すべてレジストリで管理するようにしても良いかも
|
|
|
|
// ただ、「emailVerified が true なユーザーを find する」のようなクエリは書けなくなるからウーン
|
2019-04-07 12:50:36 +00:00
|
|
|
@Entity()
|
2019-04-10 06:04:27 +00:00
|
|
|
export class UserProfile {
|
|
|
|
@PrimaryColumn(id())
|
2019-04-07 12:50:36 +00:00
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@OneToOne(type => User, {
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: 'The location of the User.'
|
|
|
|
})
|
|
|
|
public location: string | null;
|
|
|
|
|
|
|
|
@Column('char', {
|
|
|
|
length: 10, nullable: true,
|
|
|
|
comment: 'The birthday (YYYY-MM-DD) of the User.'
|
|
|
|
})
|
|
|
|
public birthday: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-05-05 00:42:38 +00:00
|
|
|
length: 2048, nullable: true,
|
2019-04-10 06:04:27 +00:00
|
|
|
comment: 'The description (bio) of the User.'
|
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: [],
|
|
|
|
})
|
|
|
|
public fields: {
|
|
|
|
name: string;
|
|
|
|
value: string;
|
|
|
|
}[];
|
|
|
|
|
2021-02-13 03:28:26 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 32, nullable: true,
|
|
|
|
})
|
|
|
|
public lang: string | null;
|
|
|
|
|
2019-04-11 16:52:25 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 512, nullable: true,
|
|
|
|
comment: 'Remote URL of the user.'
|
|
|
|
})
|
|
|
|
public url: string | null;
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: 'The email address of the User.'
|
|
|
|
})
|
|
|
|
public email: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
})
|
|
|
|
public emailVerifyCode: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public emailVerified: boolean;
|
|
|
|
|
2021-02-13 03:28:26 +00:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: ['follow', 'receiveFollowRequest', 'groupInvited']
|
|
|
|
})
|
|
|
|
public emailNotificationTypes: string[];
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
})
|
|
|
|
public twoFactorTempSecret: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
})
|
|
|
|
public twoFactorSecret: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public twoFactorEnabled: boolean;
|
|
|
|
|
2019-07-03 11:18:07 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public securityKeysAvailable: boolean;
|
|
|
|
|
2019-07-06 16:38:36 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public usePasswordLessLogin: boolean;
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: 'The password hash of the User. It will be null if the origin of the user is local.'
|
|
|
|
})
|
|
|
|
public password: string | null;
|
|
|
|
|
2021-01-11 11:38:34 +00:00
|
|
|
// TODO: そのうち消す
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: {},
|
|
|
|
comment: 'The client-specific data of the User.'
|
|
|
|
})
|
|
|
|
public clientData: Record<string, any>;
|
|
|
|
|
2019-08-18 05:41:33 +00:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: {},
|
|
|
|
comment: 'The room data of the User.'
|
|
|
|
})
|
|
|
|
public room: Record<string, any>;
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public autoAcceptFollowed: boolean;
|
|
|
|
|
2020-11-25 12:31:34 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
comment: 'Whether reject index by crawler.'
|
|
|
|
})
|
|
|
|
public noCrawle: boolean;
|
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public alwaysMarkNsfw: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public carefulBot: boolean;
|
|
|
|
|
2020-02-18 10:05:11 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public injectFeaturedNote: boolean;
|
|
|
|
|
2021-02-06 13:47:15 +00:00
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public receiveAnnouncementEmail: boolean;
|
|
|
|
|
2019-07-06 21:56:13 +00:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true
|
|
|
|
})
|
|
|
|
public pinnedPageId: Page['id'] | null;
|
|
|
|
|
|
|
|
@OneToOne(type => Page, {
|
|
|
|
onDelete: 'SET NULL'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public pinnedPage: Page | null;
|
|
|
|
|
2020-01-31 22:16:52 +00:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: {}
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
2020-01-31 22:16:52 +00:00
|
|
|
public integrations: Record<string, any>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2020-07-27 04:34:20 +00:00
|
|
|
@Index()
|
|
|
|
@Column('boolean', {
|
2020-07-31 10:21:13 +00:00
|
|
|
default: false, select: false,
|
2020-07-27 04:34:20 +00:00
|
|
|
})
|
|
|
|
public enableWordMute: boolean;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: []
|
|
|
|
})
|
|
|
|
public mutedWords: string[][];
|
|
|
|
|
2020-08-22 01:06:17 +00:00
|
|
|
@Column('enum', {
|
|
|
|
enum: notificationTypes,
|
|
|
|
array: true,
|
2020-09-18 13:18:21 +00:00
|
|
|
default: [],
|
2020-08-22 01:06:17 +00:00
|
|
|
})
|
2020-09-18 13:18:21 +00:00
|
|
|
public mutingNotificationTypes: typeof notificationTypes[number][];
|
2020-08-22 01:06:17 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
//#region Denormalized fields
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public userHost: string | null;
|
|
|
|
//#endregion
|
2019-04-11 16:52:25 +00:00
|
|
|
|
|
|
|
constructor(data: Partial<UserProfile>) {
|
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
|
|
(this as any)[k] = v;
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|