mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:03:09 +02:00
e560601815
* feat: auto nsfw detection
* ✌️
* Update ja-JP.yml
* Update ja-JP.yml
* ポルノ判定のしきい値を高めに
* エラーハンドリングちゃんとした
* Update ja-JP.yml
* 感度設定を強化
* refactor
* feat: add video support for auto nsfw detection
* rename: image -> media
* .js
* fix: add missing error handling
* fix: use valid pathname instead of using filename due to invalid usage
* perf(nsfw-detection): decode frames
* disable detection of video for some reasons
* perf(nsfw-detection): streamify detection process for video
* disable disallowUploadWhenPredictedAsPorn option
* fix(nsfw-detection): improve reliability
* fix(nsfw-detection): use Math.ceil instead of Math.round
* perf(nsfw-detection): delete tmp frames after used
* fix(nsfw-detection): FSWatcher does not emit ready event
* perf(nsfw-detection): skip black frames
* refactor: strip exists check
* Update package.json
* めっちゃ変えた
* lint
* Update COPYING
* オプションで動画解析できるように
* Update yarn.lock
* Update CHANGELOG.md
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
232 lines
4.6 KiB
TypeScript
232 lines
4.6 KiB
TypeScript
import { Entity, Column, Index, OneToOne, JoinColumn, PrimaryColumn } from 'typeorm';
|
|
import { ffVisibility, notificationTypes } from '@/types.js';
|
|
import { id } from '../id.js';
|
|
import { User } from './user.js';
|
|
import { Page } from './page.js';
|
|
|
|
// TODO: このテーブルで管理している情報すべてレジストリで管理するようにしても良いかも
|
|
// ただ、「emailVerified が true なユーザーを find する」のようなクエリは書けなくなるからウーン
|
|
@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: 32, nullable: true,
|
|
})
|
|
public lang: string | null;
|
|
|
|
@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('jsonb', {
|
|
default: ['follow', 'receiveFollowRequest', 'groupInvited'],
|
|
})
|
|
public emailNotificationTypes: string[];
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public publicReactions: boolean;
|
|
|
|
@Column('enum', {
|
|
enum: ffVisibility,
|
|
default: 'public',
|
|
})
|
|
public ffVisibility: typeof ffVisibility[number];
|
|
|
|
@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('varchar', {
|
|
length: 8192, default: '',
|
|
})
|
|
public moderationNote: string | null;
|
|
|
|
// TODO: そのうち消す
|
|
@Column('jsonb', {
|
|
default: {},
|
|
comment: 'The client-specific data of the User.',
|
|
})
|
|
public clientData: Record<string, any>;
|
|
|
|
// TODO: そのうち消す
|
|
@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 autoSensitive: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: false,
|
|
})
|
|
public carefulBot: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: true,
|
|
})
|
|
public injectFeaturedNote: boolean;
|
|
|
|
@Column('boolean', {
|
|
default: true,
|
|
})
|
|
public receiveAnnouncementEmail: 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('jsonb', {
|
|
default: [],
|
|
comment: 'List of instances muted by the user.',
|
|
})
|
|
public mutedInstances: 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;
|
|
}
|
|
}
|
|
}
|