/* * SPDX-FileCopyrightText: syuilo and other misskey contributors * SPDX-License-Identifier: AGPL-3.0-only */ import { Injectable } from '@nestjs/common'; import type { MiMeta } from '@/models/Meta.js'; import { ModerationLogService } from '@/core/ModerationLogService.js'; import { Endpoint } from '@/server/api/endpoint-base.js'; import { MetaService } from '@/core/MetaService.js'; export const meta = { tags: ['admin'], requireCredential: true, requireAdmin: true, } as const; export const paramDef = { type: 'object', properties: { disableRegistration: { 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', }, }, sensitiveWords: { type: 'array', nullable: true, items: { type: 'string', }, }, themeColor: { type: 'string', nullable: true, pattern: '^#[0-9a-fA-F]{6}$' }, mascotImageUrl: { type: 'string', nullable: true }, bannerUrl: { type: 'string', nullable: true }, serverErrorImageUrl: { type: 'string', nullable: true }, infoImageUrl: { type: 'string', nullable: true }, notFoundImageUrl: { type: 'string', nullable: true }, iconUrl: { type: 'string', nullable: true }, app192IconUrl: { type: 'string', nullable: true }, app512IconUrl: { type: 'string', nullable: true }, backgroundImageUrl: { type: 'string', nullable: true }, logoImageUrl: { type: 'string', nullable: true }, name: { type: 'string', nullable: true }, shortName: { type: 'string', nullable: true }, description: { type: 'string', nullable: true }, defaultLightTheme: { type: 'string', nullable: true }, defaultDarkTheme: { type: 'string', nullable: true }, cacheRemoteFiles: { type: 'boolean' }, cacheRemoteSensitiveFiles: { 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 }, enableTurnstile: { type: 'boolean' }, turnstileSiteKey: { type: 'string', nullable: true }, turnstileSecretKey: { type: 'string', nullable: true }, sensitiveMediaDetection: { type: 'string', enum: ['none', 'all', 'local', 'remote'] }, sensitiveMediaDetectionSensitivity: { type: 'string', enum: ['medium', 'low', 'high', 'veryLow', 'veryHigh'] }, setSensitiveFlagAutomatically: { type: 'boolean' }, enableSensitiveMediaDetectionForVideos: { type: 'boolean' }, proxyAccountId: { type: 'string', format: 'misskey:id', nullable: true }, maintainerName: { type: 'string', nullable: true }, maintainerEmail: { type: 'string', nullable: true }, langs: { type: 'array', items: { type: 'string', }, }, summalyProxy: { type: 'string', nullable: true }, deeplAuthKey: { type: 'string', nullable: true }, deeplIsPro: { type: 'boolean' }, 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' }, impressumUrl: { type: 'string', nullable: true }, privacyPolicyUrl: { type: 'string', nullable: true }, 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' }, enableIpLogging: { type: 'boolean' }, enableActiveEmailValidation: { type: 'boolean' }, enableChartsForRemoteUser: { type: 'boolean' }, enableChartsForFederatedInstances: { type: 'boolean' }, enableServerMachineStats: { type: 'boolean' }, enableIdenticonGeneration: { type: 'boolean' }, serverRules: { type: 'array', items: { type: 'string' } }, preservedUsernames: { type: 'array', items: { type: 'string' } }, manifestJsonOverride: { type: 'string' }, enableFanoutTimeline: { type: 'boolean' }, perLocalUserUserTimelineCacheMax: { type: 'integer' }, perRemoteUserUserTimelineCacheMax: { type: 'integer' }, perUserHomeTimelineCacheMax: { type: 'integer' }, perUserListTimelineCacheMax: { type: 'integer' }, notesPerOneAd: { type: 'integer' }, silencedHosts: { type: 'array', nullable: true, items: { type: 'string', }, }, }, required: [], } as const; @Injectable() export default class extends Endpoint { // eslint-disable-line import/no-default-export constructor( private metaService: MetaService, private moderationLogService: ModerationLogService, ) { super(meta, paramDef, async (ps, me) => { const set = {} as Partial; if (typeof ps.disableRegistration === 'boolean') { set.disableRegistration = ps.disableRegistration; } if (Array.isArray(ps.pinnedUsers)) { set.pinnedUsers = ps.pinnedUsers.filter(Boolean); } if (Array.isArray(ps.hiddenTags)) { set.hiddenTags = ps.hiddenTags.filter(Boolean); } if (Array.isArray(ps.blockedHosts)) { set.blockedHosts = ps.blockedHosts.filter(Boolean).map(x => x.toLowerCase()); } if (Array.isArray(ps.sensitiveWords)) { set.sensitiveWords = ps.sensitiveWords.filter(Boolean); } if (Array.isArray(ps.silencedHosts)) { let lastValue = ''; set.silencedHosts = ps.silencedHosts.sort().filter((h) => { const lv = lastValue; lastValue = h; return h !== '' && h !== lv && !set.blockedHosts?.includes(h); }); } if (ps.themeColor !== undefined) { set.themeColor = ps.themeColor; } if (ps.mascotImageUrl !== undefined) { set.mascotImageUrl = ps.mascotImageUrl; } if (ps.bannerUrl !== undefined) { set.bannerUrl = ps.bannerUrl; } if (ps.iconUrl !== undefined) { set.iconUrl = ps.iconUrl; } if (ps.app192IconUrl !== undefined) { set.app192IconUrl = ps.app192IconUrl; } if (ps.app512IconUrl !== undefined) { set.app512IconUrl = ps.app512IconUrl; } if (ps.serverErrorImageUrl !== undefined) { set.serverErrorImageUrl = ps.serverErrorImageUrl; } if (ps.infoImageUrl !== undefined) { set.infoImageUrl = ps.infoImageUrl; } if (ps.notFoundImageUrl !== undefined) { set.notFoundImageUrl = ps.notFoundImageUrl; } if (ps.backgroundImageUrl !== undefined) { set.backgroundImageUrl = ps.backgroundImageUrl; } if (ps.logoImageUrl !== undefined) { set.logoImageUrl = ps.logoImageUrl; } if (ps.name !== undefined) { set.name = ps.name; } if (ps.shortName !== undefined) { set.shortName = ps.shortName; } if (ps.description !== undefined) { set.description = ps.description; } if (ps.defaultLightTheme !== undefined) { set.defaultLightTheme = ps.defaultLightTheme; } if (ps.defaultDarkTheme !== undefined) { set.defaultDarkTheme = ps.defaultDarkTheme; } if (ps.cacheRemoteFiles !== undefined) { set.cacheRemoteFiles = ps.cacheRemoteFiles; } if (ps.cacheRemoteSensitiveFiles !== undefined) { set.cacheRemoteSensitiveFiles = ps.cacheRemoteSensitiveFiles; } if (ps.emailRequiredForSignup !== undefined) { set.emailRequiredForSignup = ps.emailRequiredForSignup; } if (ps.enableHcaptcha !== undefined) { set.enableHcaptcha = ps.enableHcaptcha; } if (ps.hcaptchaSiteKey !== undefined) { set.hcaptchaSiteKey = ps.hcaptchaSiteKey; } if (ps.hcaptchaSecretKey !== undefined) { set.hcaptchaSecretKey = ps.hcaptchaSecretKey; } if (ps.enableRecaptcha !== undefined) { set.enableRecaptcha = ps.enableRecaptcha; } if (ps.recaptchaSiteKey !== undefined) { set.recaptchaSiteKey = ps.recaptchaSiteKey; } if (ps.recaptchaSecretKey !== undefined) { set.recaptchaSecretKey = ps.recaptchaSecretKey; } if (ps.enableTurnstile !== undefined) { set.enableTurnstile = ps.enableTurnstile; } if (ps.turnstileSiteKey !== undefined) { set.turnstileSiteKey = ps.turnstileSiteKey; } if (ps.turnstileSecretKey !== undefined) { set.turnstileSecretKey = ps.turnstileSecretKey; } if (ps.sensitiveMediaDetection !== undefined) { set.sensitiveMediaDetection = ps.sensitiveMediaDetection; } if (ps.sensitiveMediaDetectionSensitivity !== undefined) { set.sensitiveMediaDetectionSensitivity = ps.sensitiveMediaDetectionSensitivity; } if (ps.setSensitiveFlagAutomatically !== undefined) { set.setSensitiveFlagAutomatically = ps.setSensitiveFlagAutomatically; } if (ps.enableSensitiveMediaDetectionForVideos !== undefined) { set.enableSensitiveMediaDetectionForVideos = ps.enableSensitiveMediaDetectionForVideos; } if (ps.proxyAccountId !== undefined) { set.proxyAccountId = ps.proxyAccountId; } if (ps.maintainerName !== undefined) { set.maintainerName = ps.maintainerName; } if (ps.maintainerEmail !== undefined) { set.maintainerEmail = ps.maintainerEmail; } if (Array.isArray(ps.langs)) { set.langs = ps.langs.filter(Boolean); } if (ps.summalyProxy !== undefined) { set.summalyProxy = ps.summalyProxy; } 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; } 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.termsOfServiceUrl = ps.tosUrl; } if (ps.repositoryUrl !== undefined) { set.repositoryUrl = ps.repositoryUrl; } if (ps.feedbackUrl !== undefined) { set.feedbackUrl = ps.feedbackUrl; } if (ps.impressumUrl !== undefined) { set.impressumUrl = ps.impressumUrl; } if (ps.privacyPolicyUrl !== undefined) { set.privacyPolicyUrl = ps.privacyPolicyUrl; } 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; } if (ps.enableChartsForRemoteUser !== undefined) { set.enableChartsForRemoteUser = ps.enableChartsForRemoteUser; } if (ps.enableChartsForFederatedInstances !== undefined) { set.enableChartsForFederatedInstances = ps.enableChartsForFederatedInstances; } if (ps.enableServerMachineStats !== undefined) { set.enableServerMachineStats = ps.enableServerMachineStats; } if (ps.enableIdenticonGeneration !== undefined) { set.enableIdenticonGeneration = ps.enableIdenticonGeneration; } if (ps.serverRules !== undefined) { set.serverRules = ps.serverRules; } if (ps.preservedUsernames !== undefined) { set.preservedUsernames = ps.preservedUsernames; } if (ps.manifestJsonOverride !== undefined) { set.manifestJsonOverride = ps.manifestJsonOverride; } if (ps.enableFanoutTimeline !== undefined) { set.enableFanoutTimeline = ps.enableFanoutTimeline; } if (ps.perLocalUserUserTimelineCacheMax !== undefined) { set.perLocalUserUserTimelineCacheMax = ps.perLocalUserUserTimelineCacheMax; } if (ps.perRemoteUserUserTimelineCacheMax !== undefined) { set.perRemoteUserUserTimelineCacheMax = ps.perRemoteUserUserTimelineCacheMax; } if (ps.perUserHomeTimelineCacheMax !== undefined) { set.perUserHomeTimelineCacheMax = ps.perUserHomeTimelineCacheMax; } if (ps.perUserListTimelineCacheMax !== undefined) { set.perUserListTimelineCacheMax = ps.perUserListTimelineCacheMax; } if (ps.notesPerOneAd !== undefined) { set.notesPerOneAd = ps.notesPerOneAd; } const before = await this.metaService.fetch(true); await this.metaService.update(set); const after = await this.metaService.fetch(true); this.moderationLogService.log(me, 'updateServerSettings', { before, after, }); }); } }