45b972c059
* wip * Add pemcil * Fix bug * Update .gitattributes * Add 🍮 * Better 🍮 * Add color boxes * Add pc * Add keyboard * Add 📦 * Add more 📦 * ✌️ * carpet * Add plant * ✌️ * ✌️ * Update room.vue * Add plant * ✌️ * ✌️ * ✌️ * ✌️ * ✌️ * 段ボール箱がてかりすぎているのを修正 * Update room.ts * Render username * ✌️ * Add new 📦 * Update room.ts * Remove blender backup files * Refactor * Improve performance * Update room.ts * Update .gitattributes * Update room.ts * Better fan * Better tissue rendering * Add 🐧 * Create photoframe2.glb * chairs * Add 📖 * fix: HiDPi環境でオブジェクトを選択できない (#5268) * Better monitor * ✌️ * Add corkboard * Add missing blend * mousepad * Add missing blend * Add cube * 額縁やモニターなどに任意の画像を表示できるように * Update MisskeyRoom section of CONTRIBUTING.md (#5272) * Update MisskeyRoom section of CONTRIBUTING.md * Update CONTRIBUTING.md * Update CONTRIBUTING.md * Refactor * カスタムテクスチャがずれないように * Remove debug code * Update furnitures.json5 * 一部の家具の色を自由に変えられるように * Update ja-JP.yml * Type annotation * 家具の色やテクスチャをすぐ反映するように * Update room.vue * Update furnitures.json5 * Add 📺 * Update ja-JP.yml * 床の色を変えられるように * 和室にできるように * Update washitsu * Use MeshLambertMaterial to improve performance * Use MeshLambertMaterial * Fix bug * Refactor * Update room.ts * Fix washitsu * Update room.vue * Update washistu * Use MeshLambertMaterial * Update room.ts * Set current property value * Disable reactivity to improve performance a bit * Fix bug * Set current carpet color * Update ja-JP.yml * Add rubik-cube (#5278) * Update ja-JP.yml (#5279) * Update UI * ルームの設定を追加 * Add room link * 家具をドラッグで移動や回転できるように * esnextにする (#5286) * Fix moduleResolution * Use uuid v4 * Fix bug * マットの色を変えられるように * ✌️ * 異方性フィルタリングするように * グラフィックの品質をフィルタリングに反映 * Add bloom effect when ultra graphics * Add posters * 🎨
239 lines
4.6 KiB
TypeScript
239 lines
4.6 KiB
TypeScript
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
|
import { id } from '../id';
|
|
import { User } from './user';
|
|
import { Page } from './page';
|
|
|
|
@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 autoWatch: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public autoAcceptFollowed: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public alwaysMarkNsfw: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public carefulBot: boolean;
|
|
|
|
@Column({
|
|
...id(),
|
|
nullable: true
|
|
})
|
|
public pinnedPageId: Page['id'] | null;
|
|
|
|
@OneToOne(type => Page, {
|
|
onDelete: 'SET NULL'
|
|
})
|
|
@JoinColumn()
|
|
public pinnedPage: Page | null;
|
|
|
|
//#region Linking
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public twitter: boolean;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public twitterAccessToken: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public twitterAccessTokenSecret: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public twitterUserId: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public twitterScreenName: string | null;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public github: boolean;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public githubAccessToken: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public githubId: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public githubLogin: string | null;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public discord: boolean;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordAccessToken: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordRefreshToken: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordExpiresDate: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordId: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordUsername: string | null;
|
|
|
|
@Column('varchar', {
|
|
length: 64, nullable: true, default: null,
|
|
})
|
|
public discordDiscriminator: string | null;
|
|
//#endregion
|
|
|
|
//#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;
|
|
}
|
|
}
|
|
}
|