2018-08-22 18:19:57 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import define from '../../define';
|
2019-04-16 15:45:33 +00:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { Meta } from '@/models/entities/meta';
|
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log';
|
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '@/misc/hard-limits';
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-08-22 18:19:57 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2020-01-29 19:37:25 +00:00
|
|
|
requireAdmin: true,
|
2018-08-22 18:19:57 +00:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
disableRegistration: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-07 10:20:50 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
disableLocalTimeline: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-11 17:48:19 +00:00
|
|
|
|
2019-01-16 05:54:14 +00:00
|
|
|
disableGlobalTimeline: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.bool,
|
2019-01-16 05:54:14 +00:00
|
|
|
},
|
|
|
|
|
2019-03-17 16:03:35 +00:00
|
|
|
useStarForReactionFallback: {
|
|
|
|
validator: $.optional.nullable.bool,
|
|
|
|
},
|
|
|
|
|
2019-05-10 08:30:28 +00:00
|
|
|
pinnedUsers: {
|
|
|
|
validator: $.optional.nullable.arr($.str),
|
|
|
|
},
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
hiddenTags: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.arr($.str),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-20 08:21:16 +00:00
|
|
|
|
2019-05-14 11:49:09 +00:00
|
|
|
blockedHosts: {
|
|
|
|
validator: $.optional.nullable.arr($.str),
|
|
|
|
},
|
|
|
|
|
2019-01-03 18:52:50 +00:00
|
|
|
mascotImageUrl: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2019-01-03 18:02:40 +00:00
|
|
|
},
|
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
bannerUrl: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-11-04 14:00:43 +00:00
|
|
|
|
2018-12-11 11:19:13 +00:00
|
|
|
errorImageUrl: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-12-11 11:19:13 +00:00
|
|
|
},
|
|
|
|
|
2019-03-14 07:30:51 +00:00
|
|
|
iconUrl: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2020-11-25 12:31:34 +00:00
|
|
|
backgroundImageUrl: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
|
|
|
logoImageUrl: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2018-11-04 14:00:43 +00:00
|
|
|
name: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-04 14:00:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-04 14:00:43 +00:00
|
|
|
},
|
2018-11-05 02:09:05 +00:00
|
|
|
|
|
|
|
maxNoteTextLength: {
|
2019-09-30 16:46:31 +00:00
|
|
|
validator: $.optional.num.min(0).max(DB_MAX_NOTE_TEXT_LENGTH),
|
2018-11-05 22:14:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
localDriveCapacityMb: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-05 22:14:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
remoteDriveCapacityMb: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-05 22:14:43 +00:00
|
|
|
},
|
2018-11-05 22:52:13 +00:00
|
|
|
|
|
|
|
cacheRemoteFiles: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-06 15:08:21 +00:00
|
|
|
},
|
|
|
|
|
2019-12-31 08:23:47 +00:00
|
|
|
proxyRemoteFiles: {
|
|
|
|
validator: $.optional.bool,
|
|
|
|
},
|
|
|
|
|
2021-10-08 04:37:02 +00:00
|
|
|
emailRequiredForSignup: {
|
|
|
|
validator: $.optional.bool,
|
|
|
|
},
|
|
|
|
|
2020-04-28 05:29:33 +00:00
|
|
|
enableHcaptcha: {
|
|
|
|
validator: $.optional.bool,
|
|
|
|
},
|
|
|
|
|
|
|
|
hcaptchaSiteKey: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
|
|
|
hcaptchaSecretKey: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2018-11-06 15:08:21 +00:00
|
|
|
enableRecaptcha: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-06 15:08:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
recaptchaSiteKey: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-06 15:08:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
recaptchaSecretKey: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-06 15:44:56 +00:00
|
|
|
},
|
|
|
|
|
2020-02-05 01:15:09 +00:00
|
|
|
proxyAccountId: {
|
|
|
|
validator: $.optional.nullable.type(ID),
|
2018-11-06 16:12:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
maintainerName: {
|
2019-04-23 13:48:53 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-06 16:12:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
maintainerEmail: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-07 03:28:53 +00:00
|
|
|
},
|
|
|
|
|
2020-11-17 05:59:15 +00:00
|
|
|
pinnedPages: {
|
|
|
|
validator: $.optional.arr($.str),
|
|
|
|
},
|
|
|
|
|
2020-12-05 07:05:40 +00:00
|
|
|
pinnedClipId: {
|
|
|
|
validator: $.optional.nullable.type(ID),
|
|
|
|
},
|
|
|
|
|
2018-11-07 03:28:53 +00:00
|
|
|
langs: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.arr($.str),
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
2018-11-22 23:13:17 +00:00
|
|
|
summalyProxy: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-22 23:13:17 +00:00
|
|
|
},
|
|
|
|
|
2021-08-15 11:26:44 +00:00
|
|
|
deeplAuthKey: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
2021-08-24 04:19:21 +00:00
|
|
|
deeplIsPro: {
|
|
|
|
validator: $.optional.bool,
|
|
|
|
},
|
|
|
|
|
2018-11-07 04:14:52 +00:00
|
|
|
enableTwitterIntegration: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
twitterConsumerKey: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
twitterConsumerSecret: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
enableGithubIntegration: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
githubClientId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
githubClientSecret: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
2018-11-15 10:15:04 +00:00
|
|
|
|
|
|
|
enableDiscordIntegration: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-15 10:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
discordClientId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-15 10:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
discordClientSecret: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-21 14:44:59 +00:00
|
|
|
},
|
|
|
|
|
2018-11-29 07:23:45 +00:00
|
|
|
enableEmail: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
email: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpSecure: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpHost: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpPort: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.num,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpUser: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
smtpPass: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-11-29 07:23:45 +00:00
|
|
|
},
|
2018-12-19 19:08:13 +00:00
|
|
|
|
|
|
|
enableServiceWorker: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-12-19 19:08:13 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
swPublicKey: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-12-19 19:08:13 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
swPrivateKey: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.nullable.str,
|
2018-12-19 19:08:13 +00:00
|
|
|
},
|
2019-05-13 17:57:04 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
tosUrl: {
|
2019-05-13 17:57:04 +00:00
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
},
|
|
|
|
|
|
|
|
repositoryUrl: {
|
|
|
|
validator: $.optional.str,
|
|
|
|
},
|
|
|
|
|
|
|
|
feedbackUrl: {
|
|
|
|
validator: $.optional.str,
|
2019-05-15 16:07:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
useObjectStorage: {
|
|
|
|
validator: $.optional.bool
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageBaseUrl: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageBucket: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStoragePrefix: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageEndpoint: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageRegion: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStoragePort: {
|
|
|
|
validator: $.optional.nullable.num
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageAccessKey: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageSecretKey: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageUseSSL: {
|
|
|
|
validator: $.optional.bool
|
|
|
|
},
|
2020-04-12 11:32:34 +00:00
|
|
|
|
|
|
|
objectStorageUseProxy: {
|
|
|
|
validator: $.optional.bool
|
2020-08-13 11:05:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageSetPublicRead: {
|
|
|
|
validator: $.optional.bool
|
2021-02-06 02:48:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
objectStorageS3ForcePathStyle: {
|
|
|
|
validator: $.optional.bool
|
|
|
|
},
|
2018-08-22 18:19:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-13 18:18:45 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 12:50:36 +00:00
|
|
|
const set = {} as Partial<Meta>;
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2018-09-01 14:29:22 +00:00
|
|
|
if (typeof ps.disableRegistration === 'boolean') {
|
2018-08-22 18:19:57 +00:00
|
|
|
set.disableRegistration = ps.disableRegistration;
|
|
|
|
}
|
|
|
|
|
2018-09-11 17:48:19 +00:00
|
|
|
if (typeof ps.disableLocalTimeline === 'boolean') {
|
|
|
|
set.disableLocalTimeline = ps.disableLocalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-01-16 05:54:14 +00:00
|
|
|
if (typeof ps.disableGlobalTimeline === 'boolean') {
|
|
|
|
set.disableGlobalTimeline = ps.disableGlobalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-03-17 16:03:35 +00:00
|
|
|
if (typeof ps.useStarForReactionFallback === 'boolean') {
|
|
|
|
set.useStarForReactionFallback = ps.useStarForReactionFallback;
|
|
|
|
}
|
|
|
|
|
2019-05-10 08:30:28 +00:00
|
|
|
if (Array.isArray(ps.pinnedUsers)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.pinnedUsers = ps.pinnedUsers.filter(Boolean);
|
2019-05-10 08:30:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (Array.isArray(ps.hiddenTags)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.hiddenTags = ps.hiddenTags.filter(Boolean);
|
2018-09-07 10:20:50 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 11:49:09 +00:00
|
|
|
if (Array.isArray(ps.blockedHosts)) {
|
2019-09-12 12:27:44 +00:00
|
|
|
set.blockedHosts = ps.blockedHosts.filter(Boolean);
|
2019-05-14 11:49:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-03 18:52:50 +00:00
|
|
|
if (ps.mascotImageUrl !== undefined) {
|
|
|
|
set.mascotImageUrl = ps.mascotImageUrl;
|
2019-01-03 18:02:40 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 08:21:16 +00:00
|
|
|
if (ps.bannerUrl !== undefined) {
|
|
|
|
set.bannerUrl = ps.bannerUrl;
|
|
|
|
}
|
|
|
|
|
2019-03-14 07:30:51 +00:00
|
|
|
if (ps.iconUrl !== undefined) {
|
|
|
|
set.iconUrl = ps.iconUrl;
|
|
|
|
}
|
|
|
|
|
2020-11-25 12:31:34 +00:00
|
|
|
if (ps.backgroundImageUrl !== undefined) {
|
|
|
|
set.backgroundImageUrl = ps.backgroundImageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.logoImageUrl !== undefined) {
|
|
|
|
set.logoImageUrl = ps.logoImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-11-04 14:00:43 +00:00
|
|
|
if (ps.name !== undefined) {
|
|
|
|
set.name = ps.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.description !== undefined) {
|
|
|
|
set.description = ps.description;
|
|
|
|
}
|
|
|
|
|
2018-11-05 02:09:05 +00:00
|
|
|
if (ps.maxNoteTextLength) {
|
|
|
|
set.maxNoteTextLength = ps.maxNoteTextLength;
|
|
|
|
}
|
|
|
|
|
2018-11-05 22:14:43 +00:00
|
|
|
if (ps.localDriveCapacityMb !== undefined) {
|
|
|
|
set.localDriveCapacityMb = ps.localDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.remoteDriveCapacityMb !== undefined) {
|
|
|
|
set.remoteDriveCapacityMb = ps.remoteDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
2018-11-05 22:52:13 +00:00
|
|
|
if (ps.cacheRemoteFiles !== undefined) {
|
|
|
|
set.cacheRemoteFiles = ps.cacheRemoteFiles;
|
|
|
|
}
|
|
|
|
|
2019-12-31 08:23:47 +00:00
|
|
|
if (ps.proxyRemoteFiles !== undefined) {
|
|
|
|
set.proxyRemoteFiles = ps.proxyRemoteFiles;
|
|
|
|
}
|
|
|
|
|
2021-10-08 04:37:02 +00:00
|
|
|
if (ps.emailRequiredForSignup !== undefined) {
|
|
|
|
set.emailRequiredForSignup = ps.emailRequiredForSignup;
|
|
|
|
}
|
|
|
|
|
2020-04-28 05:29:33 +00:00
|
|
|
if (ps.enableHcaptcha !== undefined) {
|
|
|
|
set.enableHcaptcha = ps.enableHcaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.hcaptchaSiteKey !== undefined) {
|
|
|
|
set.hcaptchaSiteKey = ps.hcaptchaSiteKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.hcaptchaSecretKey !== undefined) {
|
|
|
|
set.hcaptchaSecretKey = ps.hcaptchaSecretKey;
|
|
|
|
}
|
|
|
|
|
2018-11-06 15:08:21 +00:00
|
|
|
if (ps.enableRecaptcha !== undefined) {
|
|
|
|
set.enableRecaptcha = ps.enableRecaptcha;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.recaptchaSiteKey !== undefined) {
|
|
|
|
set.recaptchaSiteKey = ps.recaptchaSiteKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.recaptchaSecretKey !== undefined) {
|
|
|
|
set.recaptchaSecretKey = ps.recaptchaSecretKey;
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:15:09 +00:00
|
|
|
if (ps.proxyAccountId !== undefined) {
|
|
|
|
set.proxyAccountId = ps.proxyAccountId;
|
2018-11-06 15:44:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 16:12:26 +00:00
|
|
|
if (ps.maintainerName !== undefined) {
|
2019-04-07 12:50:36 +00:00
|
|
|
set.maintainerName = ps.maintainerName;
|
2018-11-06 16:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.maintainerEmail !== undefined) {
|
2019-04-07 12:50:36 +00:00
|
|
|
set.maintainerEmail = ps.maintainerEmail;
|
2018-11-06 16:12:26 +00:00
|
|
|
}
|
|
|
|
|
2019-09-12 12:27:44 +00:00
|
|
|
if (Array.isArray(ps.langs)) {
|
|
|
|
set.langs = ps.langs.filter(Boolean);
|
2018-11-07 03:28:53 +00:00
|
|
|
}
|
|
|
|
|
2020-11-17 05:59:15 +00:00
|
|
|
if (Array.isArray(ps.pinnedPages)) {
|
|
|
|
set.pinnedPages = ps.pinnedPages.filter(Boolean);
|
|
|
|
}
|
|
|
|
|
2020-12-05 07:05:40 +00:00
|
|
|
if (ps.pinnedClipId !== undefined) {
|
|
|
|
set.pinnedClipId = ps.pinnedClipId;
|
|
|
|
}
|
|
|
|
|
2018-11-22 23:13:17 +00:00
|
|
|
if (ps.summalyProxy !== undefined) {
|
|
|
|
set.summalyProxy = ps.summalyProxy;
|
|
|
|
}
|
|
|
|
|
2018-11-07 04:14:52 +00:00
|
|
|
if (ps.enableTwitterIntegration !== undefined) {
|
|
|
|
set.enableTwitterIntegration = ps.enableTwitterIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.twitterConsumerKey !== undefined) {
|
|
|
|
set.twitterConsumerKey = ps.twitterConsumerKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.twitterConsumerSecret !== undefined) {
|
|
|
|
set.twitterConsumerSecret = ps.twitterConsumerSecret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.enableGithubIntegration !== undefined) {
|
|
|
|
set.enableGithubIntegration = ps.enableGithubIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.githubClientId !== undefined) {
|
|
|
|
set.githubClientId = ps.githubClientId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.githubClientSecret !== undefined) {
|
|
|
|
set.githubClientSecret = ps.githubClientSecret;
|
|
|
|
}
|
|
|
|
|
2018-11-15 10:15:04 +00:00
|
|
|
if (ps.enableDiscordIntegration !== undefined) {
|
|
|
|
set.enableDiscordIntegration = ps.enableDiscordIntegration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.discordClientId !== undefined) {
|
|
|
|
set.discordClientId = ps.discordClientId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.discordClientSecret !== undefined) {
|
|
|
|
set.discordClientSecret = ps.discordClientSecret;
|
|
|
|
}
|
|
|
|
|
2018-11-29 07:23:45 +00:00
|
|
|
if (ps.enableEmail !== undefined) {
|
|
|
|
set.enableEmail = ps.enableEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.email !== undefined) {
|
|
|
|
set.email = ps.email;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpSecure !== undefined) {
|
|
|
|
set.smtpSecure = ps.smtpSecure;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpHost !== undefined) {
|
|
|
|
set.smtpHost = ps.smtpHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpPort !== undefined) {
|
|
|
|
set.smtpPort = ps.smtpPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpUser !== undefined) {
|
|
|
|
set.smtpUser = ps.smtpUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.smtpPass !== undefined) {
|
|
|
|
set.smtpPass = ps.smtpPass;
|
|
|
|
}
|
|
|
|
|
2018-12-11 12:17:57 +00:00
|
|
|
if (ps.errorImageUrl !== undefined) {
|
|
|
|
set.errorImageUrl = ps.errorImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-12-19 19:08:13 +00:00
|
|
|
if (ps.enableServiceWorker !== undefined) {
|
|
|
|
set.enableServiceWorker = ps.enableServiceWorker;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPublicKey !== undefined) {
|
|
|
|
set.swPublicKey = ps.swPublicKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.swPrivateKey !== undefined) {
|
|
|
|
set.swPrivateKey = ps.swPrivateKey;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
if (ps.tosUrl !== undefined) {
|
|
|
|
set.ToSUrl = ps.tosUrl;
|
2019-05-13 17:57:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.repositoryUrl !== undefined) {
|
|
|
|
set.repositoryUrl = ps.repositoryUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.feedbackUrl !== undefined) {
|
|
|
|
set.feedbackUrl = ps.feedbackUrl;
|
|
|
|
}
|
|
|
|
|
2019-05-15 16:07:32 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-04-12 11:32:34 +00:00
|
|
|
if (ps.objectStorageUseProxy !== undefined) {
|
|
|
|
set.objectStorageUseProxy = ps.objectStorageUseProxy;
|
|
|
|
}
|
|
|
|
|
2020-08-13 11:05:01 +00:00
|
|
|
if (ps.objectStorageSetPublicRead !== undefined) {
|
|
|
|
set.objectStorageSetPublicRead = ps.objectStorageSetPublicRead;
|
|
|
|
}
|
|
|
|
|
2021-02-06 02:48:57 +00:00
|
|
|
if (ps.objectStorageS3ForcePathStyle !== undefined) {
|
|
|
|
set.objectStorageS3ForcePathStyle = ps.objectStorageS3ForcePathStyle;
|
|
|
|
}
|
|
|
|
|
2021-08-15 11:26:44 +00:00
|
|
|
if (ps.deeplAuthKey !== undefined) {
|
|
|
|
if (ps.deeplAuthKey === '') {
|
|
|
|
set.deeplAuthKey = null;
|
|
|
|
} else {
|
|
|
|
set.deeplAuthKey = ps.deeplAuthKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 04:19:21 +00:00
|
|
|
if (ps.deeplIsPro !== undefined) {
|
|
|
|
set.deeplIsPro = ps.deeplIsPro;
|
|
|
|
}
|
|
|
|
|
2019-04-16 15:45:33 +00:00
|
|
|
await getConnection().transaction(async transactionalEntityManager => {
|
|
|
|
const meta = await transactionalEntityManager.findOne(Meta, {
|
|
|
|
order: {
|
|
|
|
id: 'DESC'
|
|
|
|
}
|
|
|
|
});
|
2018-08-22 18:19:57 +00:00
|
|
|
|
2019-04-16 15:45:33 +00:00
|
|
|
if (meta) {
|
|
|
|
await transactionalEntityManager.update(Meta, meta.id, set);
|
|
|
|
} else {
|
|
|
|
await transactionalEntityManager.save(Meta, set);
|
|
|
|
}
|
|
|
|
});
|
2019-07-13 18:18:45 +00:00
|
|
|
|
|
|
|
insertModerationLog(me, 'updateMeta');
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|