mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 05:33:09 +02:00
fd94b817ab
* Implement Webauthn 🎉
* Share hexifyAB
* Move hr inside template and add AttestationChallenges janitor daemon
* Apply suggestions from code review
Co-Authored-By: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* Add newline at the end of file
* Fix stray newline in promise chain
* Ignore var in try{}catch(){} block
Co-Authored-By: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* Add missing comma
* Add missing semicolon
* Support more attestation formats
* add support for more key types and linter pass
* Refactor
* Refactor
* credentialId --> id
* Fix
* Improve readability
* Add indexes
* fixes for credentialId->id
* Avoid changing store state
* Fix syntax error and code style
* Remove unused import
* Refactor of getkey API
* Create 1561706992953-webauthn.ts
* Update ja-JP.yml
* Add type annotations
* Fix code style
* Specify depedency version
* Fix code style
* Fix janitor daemon and login requesting 2FA regardless of status
214 lines
4.2 KiB
TypeScript
214 lines
4.2 KiB
TypeScript
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
|
import { id } from '../id';
|
|
import { User } from './user';
|
|
|
|
@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('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('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;
|
|
|
|
//#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;
|
|
}
|
|
}
|
|
}
|