2020-02-04 19:15:09 -06:00
|
|
|
import { Entity, Column, PrimaryColumn, ManyToOne, JoinColumn } from 'typeorm';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { User } from './User.js';
|
|
|
|
import type { Clip } from './Clip.js';
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class Meta {
|
2019-04-16 10:33:02 -05:00
|
|
|
@PrimaryColumn({
|
|
|
|
type: 'varchar',
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 32,
|
2019-04-16 10:33:02 -05:00
|
|
|
})
|
2019-04-07 07:50:36 -05:00
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 128, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public name: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 1024, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public description: string | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* メンテナの名前
|
|
|
|
*/
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 128, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public maintainerName: string | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* メンテナの連絡先
|
|
|
|
*/
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 128, nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public maintainerEmail: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public disableRegistration: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public disableLocalTimeline: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public disableGlobalTimeline: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public useStarForReactionFallback: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 64, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public langs: string[];
|
|
|
|
|
2019-05-10 03:30:28 -05:00
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 256, array: true, default: '{}',
|
2019-05-10 03:30:28 -05:00
|
|
|
})
|
|
|
|
public pinnedUsers: string[];
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 256, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public hiddenTags: string[];
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 08:58:30 -06:00
|
|
|
length: 256, array: true, default: '{}',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public blockedHosts: string[];
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2022-05-05 08:45:22 -05:00
|
|
|
length: 512, array: true, default: '{/featured,/channels,/explore,/pages,/about-misskey}',
|
2020-11-16 23:59:15 -06:00
|
|
|
})
|
|
|
|
public pinnedPages: string[];
|
|
|
|
|
2020-12-05 01:05:40 -06:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public pinnedClipId: Clip['id'] | null;
|
|
|
|
|
2022-02-09 06:25:48 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public themeColor: string | null;
|
|
|
|
|
2020-11-16 23:59:15 -06:00
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512,
|
2019-04-07 07:50:36 -05:00
|
|
|
nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
default: '/assets/ai.png',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public mascotImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public bannerUrl: string | null;
|
|
|
|
|
2020-11-25 06:31:34 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-11-25 06:31:34 -06:00
|
|
|
})
|
|
|
|
public backgroundImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-11-25 06:31:34 -06:00
|
|
|
})
|
|
|
|
public logoImageUrl: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512,
|
2019-04-07 07:50:36 -05:00
|
|
|
nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
default: 'https://xn--931a.moe/aiart/yubitun.png',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public errorImageUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public iconUrl: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public cacheRemoteFiles: boolean;
|
|
|
|
|
2020-02-04 19:15:09 -06:00
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public proxyAccountId: User['id'] | null;
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 08:58:30 -06:00
|
|
|
onDelete: 'SET NULL',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
2020-02-04 19:15:09 -06:00
|
|
|
@JoinColumn()
|
|
|
|
public proxyAccount: User | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2021-10-07 23:37:02 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public emailRequiredForSignup: boolean;
|
|
|
|
|
2020-04-28 00:29:33 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableHcaptcha: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-04-28 00:29:33 -05:00
|
|
|
})
|
|
|
|
public hcaptchaSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2020-04-28 00:29:33 -05:00
|
|
|
})
|
|
|
|
public hcaptchaSecretKey: string | null;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableRecaptcha: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public recaptchaSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public recaptchaSecretKey: string | null;
|
|
|
|
|
2022-10-12 19:19:57 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableTurnstile: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public turnstileSiteKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public turnstileSecretKey: string | null;
|
|
|
|
|
2022-07-07 07:06:37 -05:00
|
|
|
@Column('enum', {
|
|
|
|
enum: ['none', 'all', 'local', 'remote'],
|
|
|
|
default: 'none',
|
|
|
|
})
|
|
|
|
public sensitiveMediaDetection: 'none' | 'all' | 'local' | 'remote';
|
|
|
|
|
|
|
|
@Column('enum', {
|
|
|
|
enum: ['medium', 'low', 'high', 'veryLow', 'veryHigh'],
|
|
|
|
default: 'medium',
|
|
|
|
})
|
|
|
|
public sensitiveMediaDetectionSensitivity: 'medium' | 'low' | 'high' | 'veryLow' | 'veryHigh';
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public setSensitiveFlagAutomatically: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableSensitiveMediaDetectionForVideos: boolean;
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('integer', {
|
|
|
|
default: 1024,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: 'Drive capacity of a local user (MB)',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public localDriveCapacityMb: number;
|
|
|
|
|
|
|
|
@Column('integer', {
|
|
|
|
default: 32,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: 'Drive capacity of a remote user (MB)',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public remoteDriveCapacityMb: number;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public summalyProxy: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableEmail: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public email: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public smtpSecure: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpHost: string | null;
|
|
|
|
|
|
|
|
@Column('integer', {
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpPort: number | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpUser: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public smtpPass: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableServiceWorker: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public swPublicKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public swPrivateKey: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableTwitterIntegration: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public twitterConsumerKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public twitterConsumerSecret: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableGithubIntegration: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public githubClientId: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public githubClientSecret: string | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableDiscordIntegration: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public discordClientId: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public discordClientSecret: string | null;
|
2019-05-13 12:57:04 -05:00
|
|
|
|
2021-08-15 06:26:44 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2021-08-15 06:26:44 -05:00
|
|
|
})
|
|
|
|
public deeplAuthKey: string | null;
|
|
|
|
|
2021-08-23 23:19:21 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public deeplIsPro: boolean;
|
|
|
|
|
2019-05-13 12:57:04 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
|
|
|
public ToSUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-03-23 22:23:05 -05:00
|
|
|
default: 'https://github.com/misskey-dev/misskey',
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: false,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
|
|
|
public repositoryUrl: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-03-23 22:23:05 -05:00
|
|
|
default: 'https://github.com/misskey-dev/misskey/issues/new',
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-13 12:57:04 -05:00
|
|
|
})
|
|
|
|
public feedbackUrl: string | null;
|
2019-05-15 11:07:32 -05:00
|
|
|
|
2022-03-01 08:58:01 -06:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public defaultLightTheme: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 8192,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public defaultDarkTheme: string | null;
|
|
|
|
|
2019-05-15 11:07:32 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public useObjectStorage: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageBucket: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStoragePrefix: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageBaseUrl: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageEndpoint: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageRegion: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageAccessKey: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512,
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStorageSecretKey: string | null;
|
|
|
|
|
|
|
|
@Column('integer', {
|
2021-12-09 08:58:30 -06:00
|
|
|
nullable: true,
|
2019-05-15 11:07:32 -05:00
|
|
|
})
|
|
|
|
public objectStoragePort: number | null;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageUseSSL: boolean;
|
2020-04-12 06:32:34 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageUseProxy: boolean;
|
2020-08-13 06:05:01 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public objectStorageSetPublicRead: boolean;
|
2021-02-05 20:48:57 -06:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public objectStorageS3ForcePathStyle: boolean;
|
2022-07-02 01:12:11 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public enableIpLogging: boolean;
|
2022-07-09 01:05:55 -05:00
|
|
|
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public enableActiveEmailValidation: boolean;
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|