2022-02-27 11:07:39 +09:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { Meta } from '@/models/entities/meta.js';
|
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '@/misc/hard-limits.js';
|
2022-03-26 15:34:00 +09:00
|
|
|
import { db } from '@/db/postgre.js';
|
2018-08-23 03:19:57 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2020-01-30 04:37:25 +09:00
|
|
|
requireAdmin: true,
|
2022-02-19 14:05:32 +09:00
|
|
|
} as const;
|
2018-08-23 03:19:57 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
disableRegistration: { type: 'boolean', nullable: true },
|
|
|
|
disableLocalTimeline: { type: 'boolean', nullable: true },
|
|
|
|
disableGlobalTimeline: { 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',
|
|
|
|
} },
|
|
|
|
themeColor: { type: 'string', nullable: true },
|
|
|
|
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 23:58:01 +09:00
|
|
|
defaultLightTheme: { type: 'string', nullable: true },
|
|
|
|
defaultDarkTheme: { type: 'string', nullable: true },
|
2022-02-19 14:05:32 +09:00
|
|
|
localDriveCapacityMb: { type: 'integer' },
|
|
|
|
remoteDriveCapacityMb: { type: 'integer' },
|
|
|
|
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 },
|
|
|
|
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' },
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-02-19 14:05:32 +09:00
|
|
|
required: [],
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-08-23 03:19:57 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-04-07 21:50:36 +09:00
|
|
|
const set = {} as Partial<Meta>;
|
2018-08-23 03:19:57 +09:00
|
|
|
|
2018-09-01 23:29:22 +09:00
|
|
|
if (typeof ps.disableRegistration === 'boolean') {
|
2018-08-23 03:19:57 +09:00
|
|
|
set.disableRegistration = ps.disableRegistration;
|
|
|
|
}
|
|
|
|
|
2018-09-12 02:48:19 +09:00
|
|
|
if (typeof ps.disableLocalTimeline === 'boolean') {
|
|
|
|
set.disableLocalTimeline = ps.disableLocalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-01-16 14:54:14 +09:00
|
|
|
if (typeof ps.disableGlobalTimeline === 'boolean') {
|
|
|
|
set.disableGlobalTimeline = ps.disableGlobalTimeline;
|
|
|
|
}
|
|
|
|
|
2019-03-18 01:03:35 +09:00
|
|
|
if (typeof ps.useStarForReactionFallback === 'boolean') {
|
|
|
|
set.useStarForReactionFallback = ps.useStarForReactionFallback;
|
|
|
|
}
|
|
|
|
|
2019-05-10 17:30:28 +09:00
|
|
|
if (Array.isArray(ps.pinnedUsers)) {
|
2019-09-12 21:27:44 +09:00
|
|
|
set.pinnedUsers = ps.pinnedUsers.filter(Boolean);
|
2019-05-10 17:30:28 +09:00
|
|
|
}
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
if (Array.isArray(ps.hiddenTags)) {
|
2019-09-12 21:27:44 +09:00
|
|
|
set.hiddenTags = ps.hiddenTags.filter(Boolean);
|
2018-09-07 19:20:50 +09:00
|
|
|
}
|
|
|
|
|
2019-05-14 20:49:09 +09:00
|
|
|
if (Array.isArray(ps.blockedHosts)) {
|
2019-09-12 21:27:44 +09:00
|
|
|
set.blockedHosts = ps.blockedHosts.filter(Boolean);
|
2019-05-14 20:49:09 +09:00
|
|
|
}
|
|
|
|
|
2022-02-09 21:25:48 +09:00
|
|
|
if (ps.themeColor !== undefined) {
|
|
|
|
set.themeColor = ps.themeColor;
|
|
|
|
}
|
|
|
|
|
2019-01-04 03:52:50 +09:00
|
|
|
if (ps.mascotImageUrl !== undefined) {
|
|
|
|
set.mascotImageUrl = ps.mascotImageUrl;
|
2019-01-04 03:02:40 +09:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:21:16 +09:00
|
|
|
if (ps.bannerUrl !== undefined) {
|
|
|
|
set.bannerUrl = ps.bannerUrl;
|
|
|
|
}
|
|
|
|
|
2019-03-14 16:30:51 +09:00
|
|
|
if (ps.iconUrl !== undefined) {
|
|
|
|
set.iconUrl = ps.iconUrl;
|
|
|
|
}
|
|
|
|
|
2020-11-25 21:31:34 +09:00
|
|
|
if (ps.backgroundImageUrl !== undefined) {
|
|
|
|
set.backgroundImageUrl = ps.backgroundImageUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.logoImageUrl !== undefined) {
|
|
|
|
set.logoImageUrl = ps.logoImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-11-04 23:00:43 +09:00
|
|
|
if (ps.name !== undefined) {
|
|
|
|
set.name = ps.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.description !== undefined) {
|
|
|
|
set.description = ps.description;
|
|
|
|
}
|
|
|
|
|
2022-03-01 23:58:01 +09:00
|
|
|
if (ps.defaultLightTheme !== undefined) {
|
|
|
|
set.defaultLightTheme = ps.defaultLightTheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.defaultDarkTheme !== undefined) {
|
|
|
|
set.defaultDarkTheme = ps.defaultDarkTheme;
|
|
|
|
}
|
|
|
|
|
2018-11-06 07:14:43 +09:00
|
|
|
if (ps.localDriveCapacityMb !== undefined) {
|
|
|
|
set.localDriveCapacityMb = ps.localDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.remoteDriveCapacityMb !== undefined) {
|
|
|
|
set.remoteDriveCapacityMb = ps.remoteDriveCapacityMb;
|
|
|
|
}
|
|
|
|
|
2018-11-06 07:52:13 +09:00
|
|
|
if (ps.cacheRemoteFiles !== undefined) {
|
|
|
|
set.cacheRemoteFiles = ps.cacheRemoteFiles;
|
|
|
|
}
|
|
|
|
|
2021-10-08 13:37:02 +09:00
|
|
|
if (ps.emailRequiredForSignup !== undefined) {
|
|
|
|
set.emailRequiredForSignup = ps.emailRequiredForSignup;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:29:33 +09: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-07 00:08:21 +09: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 10:15:09 +09:00
|
|
|
if (ps.proxyAccountId !== undefined) {
|
|
|
|
set.proxyAccountId = ps.proxyAccountId;
|
2018-11-07 00:44:56 +09:00
|
|
|
}
|
|
|
|
|
2018-11-07 01:12:26 +09:00
|
|
|
if (ps.maintainerName !== undefined) {
|
2019-04-07 21:50:36 +09:00
|
|
|
set.maintainerName = ps.maintainerName;
|
2018-11-07 01:12:26 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.maintainerEmail !== undefined) {
|
2019-04-07 21:50:36 +09:00
|
|
|
set.maintainerEmail = ps.maintainerEmail;
|
2018-11-07 01:12:26 +09:00
|
|
|
}
|
|
|
|
|
2019-09-12 21:27:44 +09:00
|
|
|
if (Array.isArray(ps.langs)) {
|
|
|
|
set.langs = ps.langs.filter(Boolean);
|
2018-11-07 12:28:53 +09:00
|
|
|
}
|
|
|
|
|
2020-11-17 14:59:15 +09:00
|
|
|
if (Array.isArray(ps.pinnedPages)) {
|
|
|
|
set.pinnedPages = ps.pinnedPages.filter(Boolean);
|
|
|
|
}
|
|
|
|
|
2020-12-05 16:05:40 +09:00
|
|
|
if (ps.pinnedClipId !== undefined) {
|
|
|
|
set.pinnedClipId = ps.pinnedClipId;
|
|
|
|
}
|
|
|
|
|
2018-11-23 08:13:17 +09:00
|
|
|
if (ps.summalyProxy !== undefined) {
|
|
|
|
set.summalyProxy = ps.summalyProxy;
|
|
|
|
}
|
|
|
|
|
2018-11-07 13:14:52 +09: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 19:15:04 +09: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 16:23:45 +09: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 21:17:57 +09:00
|
|
|
if (ps.errorImageUrl !== undefined) {
|
|
|
|
set.errorImageUrl = ps.errorImageUrl;
|
|
|
|
}
|
|
|
|
|
2018-12-20 04:08:13 +09: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-30 04:37:25 +09:00
|
|
|
if (ps.tosUrl !== undefined) {
|
|
|
|
set.ToSUrl = ps.tosUrl;
|
2019-05-14 02:57:04 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.repositoryUrl !== undefined) {
|
|
|
|
set.repositoryUrl = ps.repositoryUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.feedbackUrl !== undefined) {
|
|
|
|
set.feedbackUrl = ps.feedbackUrl;
|
|
|
|
}
|
|
|
|
|
2019-05-16 01:07:32 +09: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 20:32:34 +09:00
|
|
|
if (ps.objectStorageUseProxy !== undefined) {
|
|
|
|
set.objectStorageUseProxy = ps.objectStorageUseProxy;
|
|
|
|
}
|
|
|
|
|
2020-08-13 20:05:01 +09:00
|
|
|
if (ps.objectStorageSetPublicRead !== undefined) {
|
|
|
|
set.objectStorageSetPublicRead = ps.objectStorageSetPublicRead;
|
|
|
|
}
|
|
|
|
|
2021-02-06 11:48:57 +09:00
|
|
|
if (ps.objectStorageS3ForcePathStyle !== undefined) {
|
|
|
|
set.objectStorageS3ForcePathStyle = ps.objectStorageS3ForcePathStyle;
|
|
|
|
}
|
|
|
|
|
2021-08-15 20:26:44 +09:00
|
|
|
if (ps.deeplAuthKey !== undefined) {
|
|
|
|
if (ps.deeplAuthKey === '') {
|
|
|
|
set.deeplAuthKey = null;
|
|
|
|
} else {
|
|
|
|
set.deeplAuthKey = ps.deeplAuthKey;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-24 13:19:21 +09:00
|
|
|
if (ps.deeplIsPro !== undefined) {
|
|
|
|
set.deeplIsPro = ps.deeplIsPro;
|
|
|
|
}
|
|
|
|
|
2022-03-26 15:34:00 +09:00
|
|
|
await db.transaction(async transactionalEntityManager => {
|
2022-04-03 13:54:22 +09:00
|
|
|
const metas = await transactionalEntityManager.find(Meta, {
|
2019-04-17 00:45:33 +09:00
|
|
|
order: {
|
2021-12-09 23:58:30 +09:00
|
|
|
id: 'DESC',
|
|
|
|
},
|
2019-04-17 00:45:33 +09:00
|
|
|
});
|
2018-08-23 03:19:57 +09:00
|
|
|
|
2022-04-03 13:54:22 +09:00
|
|
|
const meta = metas[0];
|
|
|
|
|
2019-04-17 00:45:33 +09:00
|
|
|
if (meta) {
|
|
|
|
await transactionalEntityManager.update(Meta, meta.id, set);
|
|
|
|
} else {
|
|
|
|
await transactionalEntityManager.save(Meta, set);
|
|
|
|
}
|
|
|
|
});
|
2019-07-14 03:18:45 +09:00
|
|
|
|
|
|
|
insertModerationLog(me, 'updateMeta');
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|