2019-04-10 08:04:27 +02:00
|
|
|
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { id } from '../id';
|
2019-04-10 08:04:27 +02:00
|
|
|
import { User } from './user';
|
2019-07-06 23:56:13 +02:00
|
|
|
import { Page } from './page';
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
@Entity()
|
2019-04-10 08:04:27 +02:00
|
|
|
export class UserProfile {
|
|
|
|
@PrimaryColumn(id())
|
2019-04-07 14:50:36 +02:00
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@OneToOne(type => User, {
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
2019-04-10 08:04:27 +02: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 02:42:38 +02:00
|
|
|
length: 2048, nullable: true,
|
2019-04-10 08:04:27 +02:00
|
|
|
comment: 'The description (bio) of the User.'
|
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: [],
|
|
|
|
})
|
|
|
|
public fields: {
|
|
|
|
name: string;
|
|
|
|
value: string;
|
|
|
|
}[];
|
|
|
|
|
2019-04-11 18:52:25 +02:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 512, nullable: true,
|
|
|
|
comment: 'Remote URL of the user.'
|
|
|
|
})
|
|
|
|
public url: string | null;
|
|
|
|
|
2019-04-10 08:04:27 +02: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;
|
|
|
|
|
|
|
|
@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 13:18:07 +02:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public securityKeysAvailable: boolean;
|
|
|
|
|
2019-07-06 18:38:36 +02:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public usePasswordLessLogin: boolean;
|
|
|
|
|
2019-04-10 08:04:27 +02: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;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: {},
|
|
|
|
comment: 'The client-specific data of the User.'
|
|
|
|
})
|
|
|
|
public clientData: Record<string, any>;
|
|
|
|
|
2019-08-18 07:41:33 +02:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: {},
|
|
|
|
comment: 'The room data of the User.'
|
|
|
|
})
|
|
|
|
public room: Record<string, any>;
|
|
|
|
|
2019-04-10 08:04:27 +02:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public autoWatch: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public autoAcceptFollowed: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public alwaysMarkNsfw: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public carefulBot: boolean;
|
|
|
|
|
2019-07-06 23:56:13 +02:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true
|
|
|
|
})
|
|
|
|
public pinnedPageId: Page['id'] | null;
|
|
|
|
|
|
|
|
@OneToOne(type => Page, {
|
|
|
|
onDelete: 'SET NULL'
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public pinnedPage: Page | null;
|
|
|
|
|
2020-01-31 23:16:52 +01:00
|
|
|
@Column('jsonb', {
|
|
|
|
default: {}
|
2019-04-07 14:50:36 +02:00
|
|
|
})
|
2020-01-31 23:16:52 +01:00
|
|
|
public integrations: Record<string, any>;
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
|
|
|
comment: '[Denormalized]'
|
|
|
|
})
|
|
|
|
public userHost: string | null;
|
|
|
|
//#endregion
|
2019-04-11 18:52:25 +02: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 14:50:36 +02:00
|
|
|
}
|