2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DataSource } from 'typeorm';
|
2022-09-20 20:52:19 +03:00
|
|
|
import type { Meta } from '@/models/entities/Meta.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
2022-12-25 07:22:23 +02:00
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '@/const.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 20:35:49 +03:00
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
2022-09-20 20:52:19 +03:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2018-08-22 21:19:57 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-01-29 21:37:25 +02:00
|
|
|
requireAdmin: true,
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2018-08-22 21:19:57 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
disableRegistration: { type: 'boolean', nullable: true },
|
|
|
|
useStarForReactionFallback: { type: 'boolean', nullable: true },
|
|
|
|
pinnedUsers: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
hiddenTags: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
blockedHosts: { type: 'array', nullable: true, items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
2022-05-19 10:54:45 +03:00
|
|
|
themeColor: { type: 'string', nullable: true, pattern: '^#[0-9a-fA-F]{6}$' },
|
2022-02-19 07:05:32 +02:00
|
|
|
mascotImageUrl: { type: 'string', nullable: true },
|
|
|
|
bannerUrl: { type: 'string', nullable: true },
|
|
|
|
errorImageUrl: { type: 'string', nullable: true },
|
|
|
|
iconUrl: { type: 'string', nullable: true },
|
|
|
|
backgroundImageUrl: { type: 'string', nullable: true },
|
|
|
|
logoImageUrl: { type: 'string', nullable: true },
|
|
|
|
name: { type: 'string', nullable: true },
|
|
|
|
description: { type: 'string', nullable: true },
|
2022-03-01 16:58:01 +02:00
|
|
|
defaultLightTheme: { type: 'string', nullable: true },
|
|
|
|
defaultDarkTheme: { type: 'string', nullable: true },
|
2022-02-19 07:05:32 +02:00
|
|
|
cacheRemoteFiles: { type: 'boolean' },
|
|
|
|
emailRequiredForSignup: { type: 'boolean' },
|
|
|
|
enableHcaptcha: { type: 'boolean' },
|
|
|
|
hcaptchaSiteKey: { type: 'string', nullable: true },
|
|
|
|
hcaptchaSecretKey: { type: 'string', nullable: true },
|
|
|
|
enableRecaptcha: { type: 'boolean' },
|
|
|
|
recaptchaSiteKey: { type: 'string', nullable: true },
|
|
|
|
recaptchaSecretKey: { type: 'string', nullable: true },
|
2022-10-13 03:19:57 +03:00
|
|
|
enableTurnstile: { type: 'boolean' },
|
|
|
|
turnstileSiteKey: { type: 'string', nullable: true },
|
|
|
|
turnstileSecretKey: { type: 'string', nullable: true },
|
2022-07-07 15:06:37 +03:00
|
|
|
sensitiveMediaDetection: { type: 'string', enum: ['none', 'all', 'local', 'remote'] },
|
|
|
|
sensitiveMediaDetectionSensitivity: { type: 'string', enum: ['medium', 'low', 'high', 'veryLow', 'veryHigh'] },
|
|
|
|
setSensitiveFlagAutomatically: { type: 'boolean' },
|
|
|
|
enableSensitiveMediaDetectionForVideos: { type: 'boolean' },
|
2022-02-19 07:05:32 +02:00
|
|
|
proxyAccountId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
maintainerName: { type: 'string', nullable: true },
|
|
|
|
maintainerEmail: { type: 'string', nullable: true },
|
|
|
|
pinnedPages: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
pinnedClipId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
|
|
langs: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
summalyProxy: { type: 'string', nullable: true },
|
|
|
|
deeplAuthKey: { type: 'string', nullable: true },
|
|
|
|
deeplIsPro: { type: 'boolean' },
|
|
|
|
enableTwitterIntegration: { type: 'boolean' },
|
|
|
|
twitterConsumerKey: { type: 'string', nullable: true },
|
|
|
|
twitterConsumerSecret: { type: 'string', nullable: true },
|
|
|
|
enableGithubIntegration: { type: 'boolean' },
|
|
|
|
githubClientId: { type: 'string', nullable: true },
|
|
|
|
githubClientSecret: { type: 'string', nullable: true },
|
|
|
|
enableDiscordIntegration: { type: 'boolean' },
|
|
|
|
discordClientId: { type: 'string', nullable: true },
|
|
|
|
discordClientSecret: { type: 'string', nullable: true },
|
|
|
|
enableEmail: { type: 'boolean' },
|
|
|
|
email: { type: 'string', nullable: true },
|
|
|
|
smtpSecure: { type: 'boolean' },
|
|
|
|
smtpHost: { type: 'string', nullable: true },
|
|
|
|
smtpPort: { type: 'integer', nullable: true },
|
|
|
|
smtpUser: { type: 'string', nullable: true },
|
|
|
|
smtpPass: { type: 'string', nullable: true },
|
|
|
|
enableServiceWorker: { type: 'boolean' },
|
|
|
|
swPublicKey: { type: 'string', nullable: true },
|
|
|
|
swPrivateKey: { type: 'string', nullable: true },
|
|
|
|
tosUrl: { type: 'string', nullable: true },
|
|
|
|
repositoryUrl: { type: 'string' },
|
|
|
|
feedbackUrl: { type: 'string' },
|
|
|
|
useObjectStorage: { type: 'boolean' },
|
|
|
|
objectStorageBaseUrl: { type: 'string', nullable: true },
|
|
|
|
objectStorageBucket: { type: 'string', nullable: true },
|
|
|
|
objectStoragePrefix: { type: 'string', nullable: true },
|
|
|
|
objectStorageEndpoint: { type: 'string', nullable: true },
|
|
|
|
objectStorageRegion: { type: 'string', nullable: true },
|
|
|
|
objectStoragePort: { type: 'integer', nullable: true },
|
|
|
|
objectStorageAccessKey: { type: 'string', nullable: true },
|
|
|
|
objectStorageSecretKey: { type: 'string', nullable: true },
|
|
|
|
objectStorageUseSSL: { type: 'boolean' },
|
|
|
|
objectStorageUseProxy: { type: 'boolean' },
|
|
|
|
objectStorageSetPublicRead: { type: 'boolean' },
|
|
|
|
objectStorageS3ForcePathStyle: { type: 'boolean' },
|
2022-07-02 09:12:11 +03:00
|
|
|
enableIpLogging: { type: 'boolean' },
|
2022-07-09 09:05:55 +03:00
|
|
|
enableActiveEmailValidation: { type: 'boolean' },
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: [],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-08-22 21:19:57 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
|
2022-09-20 20:52:19 +03:00
|
|
|
private metaService: MetaService,
|
2022-09-17 21:27:08 +03:00
|
|
|
private moderationLogService: ModerationLogService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const set = {} as Partial<Meta>;
|
2018-08-22 21:19:57 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (typeof ps.disableRegistration === 'boolean') {
|
|
|
|
set.disableRegistration = ps.disableRegistration;
|
|
|
|
}
|
2019-03-17 18:03:35 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (typeof ps.useStarForReactionFallback === 'boolean') {
|
|
|
|
set.useStarForReactionFallback = ps.useStarForReactionFallback;
|
|
|
|
}
|
2019-01-03 20:02:40 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (Array.isArray(ps.pinnedUsers)) {
|
|
|
|
set.pinnedUsers = ps.pinnedUsers.filter(Boolean);
|
|
|
|
}
|
2022-07-07 15:06:37 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (Array.isArray(ps.hiddenTags)) {
|
|
|
|
set.hiddenTags = ps.hiddenTags.filter(Boolean);
|
|
|
|
}
|
2022-07-07 15:06:37 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (Array.isArray(ps.blockedHosts)) {
|
|
|
|
set.blockedHosts = ps.blockedHosts.filter(Boolean);
|
|
|
|
}
|
2022-07-07 15:06:37 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.themeColor !== undefined) {
|
|
|
|
set.themeColor = ps.themeColor;
|
|
|
|
}
|
2018-11-06 17:44:56 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.mascotImageUrl !== undefined) {
|
|
|
|
set.mascotImageUrl = ps.mascotImageUrl;
|
|
|
|
}
|
2018-11-06 18:12:26 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.bannerUrl !== undefined) {
|
|
|
|
set.bannerUrl = ps.bannerUrl;
|
|
|
|
}
|
2018-11-06 18:12:26 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.iconUrl !== undefined) {
|
|
|
|
set.iconUrl = ps.iconUrl;
|
|
|
|
}
|
2018-11-07 05:28:53 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.backgroundImageUrl !== undefined) {
|
|
|
|
set.backgroundImageUrl = ps.backgroundImageUrl;
|
|
|
|
}
|
2020-11-17 07:59:15 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.logoImageUrl !== undefined) {
|
|
|
|
set.logoImageUrl = ps.logoImageUrl;
|
|
|
|
}
|
2020-12-05 09:05:40 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.name !== undefined) {
|
|
|
|
set.name = ps.name;
|
|
|
|
}
|
2018-11-23 01:13:17 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.description !== undefined) {
|
|
|
|
set.description = ps.description;
|
|
|
|
}
|
2018-11-07 06:14:52 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.defaultLightTheme !== undefined) {
|
|
|
|
set.defaultLightTheme = ps.defaultLightTheme;
|
|
|
|
}
|
2018-11-07 06:14:52 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.defaultDarkTheme !== undefined) {
|
|
|
|
set.defaultDarkTheme = ps.defaultDarkTheme;
|
|
|
|
}
|
2018-11-07 06:14:52 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.cacheRemoteFiles !== undefined) {
|
|
|
|
set.cacheRemoteFiles = ps.cacheRemoteFiles;
|
|
|
|
}
|
2018-11-07 06:14:52 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.emailRequiredForSignup !== undefined) {
|
|
|
|
set.emailRequiredForSignup = ps.emailRequiredForSignup;
|
|
|
|
}
|
2018-11-15 12:15:04 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableHcaptcha !== undefined) {
|
|
|
|
set.enableHcaptcha = ps.enableHcaptcha;
|
|
|
|
}
|
2018-11-15 12:15:04 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.hcaptchaSiteKey !== undefined) {
|
|
|
|
set.hcaptchaSiteKey = ps.hcaptchaSiteKey;
|
|
|
|
}
|
2018-11-15 12:15:04 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.hcaptchaSecretKey !== undefined) {
|
|
|
|
set.hcaptchaSecretKey = ps.hcaptchaSecretKey;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableRecaptcha !== undefined) {
|
|
|
|
set.enableRecaptcha = ps.enableRecaptcha;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.recaptchaSiteKey !== undefined) {
|
|
|
|
set.recaptchaSiteKey = ps.recaptchaSiteKey;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.recaptchaSecretKey !== undefined) {
|
|
|
|
set.recaptchaSecretKey = ps.recaptchaSecretKey;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-10-13 03:19:57 +03:00
|
|
|
if (ps.enableTurnstile !== undefined) {
|
|
|
|
set.enableTurnstile = ps.enableTurnstile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.turnstileSiteKey !== undefined) {
|
|
|
|
set.turnstileSiteKey = ps.turnstileSiteKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.turnstileSecretKey !== undefined) {
|
|
|
|
set.turnstileSecretKey = ps.turnstileSecretKey;
|
|
|
|
}
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.sensitiveMediaDetection !== undefined) {
|
|
|
|
set.sensitiveMediaDetection = ps.sensitiveMediaDetection;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.sensitiveMediaDetectionSensitivity !== undefined) {
|
|
|
|
set.sensitiveMediaDetectionSensitivity = ps.sensitiveMediaDetectionSensitivity;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.setSensitiveFlagAutomatically !== undefined) {
|
|
|
|
set.setSensitiveFlagAutomatically = ps.setSensitiveFlagAutomatically;
|
|
|
|
}
|
2018-11-29 09:23:45 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableSensitiveMediaDetectionForVideos !== undefined) {
|
|
|
|
set.enableSensitiveMediaDetectionForVideos = ps.enableSensitiveMediaDetectionForVideos;
|
|
|
|
}
|
2018-12-11 14:17:57 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.proxyAccountId !== undefined) {
|
|
|
|
set.proxyAccountId = ps.proxyAccountId;
|
|
|
|
}
|
2018-12-19 21:08:13 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.maintainerName !== undefined) {
|
|
|
|
set.maintainerName = ps.maintainerName;
|
|
|
|
}
|
2018-12-19 21:08:13 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.maintainerEmail !== undefined) {
|
|
|
|
set.maintainerEmail = ps.maintainerEmail;
|
|
|
|
}
|
2018-12-19 21:08:13 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (Array.isArray(ps.langs)) {
|
|
|
|
set.langs = ps.langs.filter(Boolean);
|
|
|
|
}
|
2019-05-13 20:57:04 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (Array.isArray(ps.pinnedPages)) {
|
|
|
|
set.pinnedPages = ps.pinnedPages.filter(Boolean);
|
|
|
|
}
|
2019-05-13 20:57:04 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.pinnedClipId !== undefined) {
|
|
|
|
set.pinnedClipId = ps.pinnedClipId;
|
|
|
|
}
|
2019-05-13 20:57:04 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.summalyProxy !== undefined) {
|
|
|
|
set.summalyProxy = ps.summalyProxy;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableTwitterIntegration !== undefined) {
|
|
|
|
set.enableTwitterIntegration = ps.enableTwitterIntegration;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.twitterConsumerKey !== undefined) {
|
|
|
|
set.twitterConsumerKey = ps.twitterConsumerKey;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.twitterConsumerSecret !== undefined) {
|
|
|
|
set.twitterConsumerSecret = ps.twitterConsumerSecret;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableGithubIntegration !== undefined) {
|
|
|
|
set.enableGithubIntegration = ps.enableGithubIntegration;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.githubClientId !== undefined) {
|
|
|
|
set.githubClientId = ps.githubClientId;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.githubClientSecret !== undefined) {
|
|
|
|
set.githubClientSecret = ps.githubClientSecret;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableDiscordIntegration !== undefined) {
|
|
|
|
set.enableDiscordIntegration = ps.enableDiscordIntegration;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.discordClientId !== undefined) {
|
|
|
|
set.discordClientId = ps.discordClientId;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.discordClientSecret !== undefined) {
|
|
|
|
set.discordClientSecret = ps.discordClientSecret;
|
|
|
|
}
|
2019-05-15 19:07:32 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.enableEmail !== undefined) {
|
|
|
|
set.enableEmail = ps.enableEmail;
|
|
|
|
}
|
2020-04-12 14:32:34 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.email !== undefined) {
|
|
|
|
set.email = ps.email;
|
|
|
|
}
|
2020-08-13 14:05:01 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.smtpSecure !== undefined) {
|
|
|
|
set.smtpSecure = ps.smtpSecure;
|
|
|
|
}
|
2021-02-06 04:48:57 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.smtpHost !== undefined) {
|
|
|
|
set.smtpHost = ps.smtpHost;
|
|
|
|
}
|
2021-08-15 14:26:44 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.smtpPort !== undefined) {
|
|
|
|
set.smtpPort = ps.smtpPort;
|
|
|
|
}
|
2021-08-24 07:19:21 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.smtpUser !== undefined) {
|
|
|
|
set.smtpUser = ps.smtpUser;
|
|
|
|
}
|
2022-07-02 09:12:11 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.smtpPass !== undefined) {
|
|
|
|
set.smtpPass = ps.smtpPass;
|
|
|
|
}
|
2022-07-09 09:05:55 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.errorImageUrl !== undefined) {
|
|
|
|
set.errorImageUrl = ps.errorImageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.enableServiceWorker !== undefined) {
|
|
|
|
set.enableServiceWorker = ps.enableServiceWorker;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPublicKey !== undefined) {
|
|
|
|
set.swPublicKey = ps.swPublicKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPrivateKey !== undefined) {
|
|
|
|
set.swPrivateKey = ps.swPrivateKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.tosUrl !== undefined) {
|
|
|
|
set.ToSUrl = ps.tosUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.repositoryUrl !== undefined) {
|
|
|
|
set.repositoryUrl = ps.repositoryUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.feedbackUrl !== undefined) {
|
|
|
|
set.feedbackUrl = ps.feedbackUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.useObjectStorage !== undefined) {
|
|
|
|
set.useObjectStorage = ps.useObjectStorage;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageBaseUrl !== undefined) {
|
|
|
|
set.objectStorageBaseUrl = ps.objectStorageBaseUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageBucket !== undefined) {
|
|
|
|
set.objectStorageBucket = ps.objectStorageBucket;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStoragePrefix !== undefined) {
|
|
|
|
set.objectStoragePrefix = ps.objectStoragePrefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageEndpoint !== undefined) {
|
|
|
|
set.objectStorageEndpoint = ps.objectStorageEndpoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageRegion !== undefined) {
|
|
|
|
set.objectStorageRegion = ps.objectStorageRegion;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStoragePort !== undefined) {
|
|
|
|
set.objectStoragePort = ps.objectStoragePort;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageAccessKey !== undefined) {
|
|
|
|
set.objectStorageAccessKey = ps.objectStorageAccessKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageSecretKey !== undefined) {
|
|
|
|
set.objectStorageSecretKey = ps.objectStorageSecretKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageUseSSL !== undefined) {
|
|
|
|
set.objectStorageUseSSL = ps.objectStorageUseSSL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageUseProxy !== undefined) {
|
|
|
|
set.objectStorageUseProxy = ps.objectStorageUseProxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageSetPublicRead !== undefined) {
|
|
|
|
set.objectStorageSetPublicRead = ps.objectStorageSetPublicRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.objectStorageS3ForcePathStyle !== undefined) {
|
|
|
|
set.objectStorageS3ForcePathStyle = ps.objectStorageS3ForcePathStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.deeplAuthKey !== undefined) {
|
|
|
|
if (ps.deeplAuthKey === '') {
|
|
|
|
set.deeplAuthKey = null;
|
|
|
|
} else {
|
|
|
|
set.deeplAuthKey = ps.deeplAuthKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.deeplIsPro !== undefined) {
|
|
|
|
set.deeplIsPro = ps.deeplIsPro;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.enableIpLogging !== undefined) {
|
|
|
|
set.enableIpLogging = ps.enableIpLogging;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.enableActiveEmailValidation !== undefined) {
|
|
|
|
set.enableActiveEmailValidation = ps.enableActiveEmailValidation;
|
|
|
|
}
|
|
|
|
|
2022-09-20 20:52:19 +03:00
|
|
|
await this.metaService.update(set);
|
2022-09-17 21:27:08 +03:00
|
|
|
this.moderationLogService.insertModerationLog(me, 'updateMeta');
|
2019-04-16 18:45:33 +03:00
|
|
|
});
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
}
|