mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 05:53:08 +02:00
0144408500
* wip * Update maps.ts * wip * wip * wip * wip * Update base.vue * wip * wip * wip * wip * Update link.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update privacy.vue * wip * wip * wip * wip * Update range.vue * wip * wip * wip * wip * Update profile.vue * wip * Update a.vue * Update index.vue * wip * Update sidebar.vue * wip * wip * Update account-info.vue * Update a.vue * wip * wip * Update sounds.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update account-info.vue * Update account-info.vue * wip * wip * wip * Update d-persimmon.json5 * wip
186 lines
3.5 KiB
TypeScript
186 lines
3.5 KiB
TypeScript
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
|
import { id } from '../id';
|
|
import { User } from './user';
|
|
import { Page } from './page';
|
|
import { notificationTypes } from '../../types';
|
|
|
|
@Entity()
|
|
export class UserProfile {
|
|
@PrimaryColumn(id())
|
|
public userId: User['id'];
|
|
|
|
@OneToOne(type => User, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@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', {
|
|
length: 2048, nullable: true,
|
|
comment: 'The description (bio) of the User.'
|
|
})
|
|
public description: string | null;
|
|
|
|
@Column('jsonb', {
|
|
default: [],
|
|
})
|
|
public fields: {
|
|
name: string;
|
|
value: string;
|
|
}[];
|
|
|
|
@Column('varchar', {
|
|
length: 512, nullable: true,
|
|
comment: 'Remote URL of the user.'
|
|
})
|
|
public url: string | null;
|
|
|
|
@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;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public securityKeysAvailable: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public usePasswordLessLogin: boolean;
|
|
|
|
@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>;
|
|
|
|
@Column('jsonb', {
|
|
default: {},
|
|
comment: 'The room data of the User.'
|
|
})
|
|
public room: Record<string, any>;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public autoAcceptFollowed: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
comment: 'Whether reject index by crawler.'
|
|
})
|
|
public noCrawle: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public alwaysMarkNsfw: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public carefulBot: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: true,
|
|
})
|
|
public injectFeaturedNote: boolean;
|
|
|
|
@Column({
|
|
...id(),
|
|
nullable: true
|
|
})
|
|
public pinnedPageId: Page['id'] | null;
|
|
|
|
@OneToOne(type => Page, {
|
|
onDelete: 'SET NULL'
|
|
})
|
|
@JoinColumn()
|
|
public pinnedPage: Page | null;
|
|
|
|
@Column('jsonb', {
|
|
default: {}
|
|
})
|
|
public integrations: Record<string, any>;
|
|
|
|
@Index()
|
|
@Column('boolean', {
|
|
default: false, select: false,
|
|
})
|
|
public enableWordMute: boolean;
|
|
|
|
@Column('jsonb', {
|
|
default: []
|
|
})
|
|
public mutedWords: string[][];
|
|
|
|
@Column('enum', {
|
|
enum: notificationTypes,
|
|
array: true,
|
|
default: [],
|
|
})
|
|
public mutingNotificationTypes: typeof notificationTypes[number][];
|
|
|
|
//#region Denormalized fields
|
|
@Index()
|
|
@Column('varchar', {
|
|
length: 128, nullable: true,
|
|
comment: '[Denormalized]'
|
|
})
|
|
public userHost: string | null;
|
|
//#endregion
|
|
|
|
constructor(data: Partial<UserProfile>) {
|
|
if (data == null) return;
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
(this as any)[k] = v;
|
|
}
|
|
}
|
|
}
|