2018-08-22 18:19:57 +00:00
|
|
|
import $ from 'cafy';
|
|
|
|
import Meta from '../../../../models/meta';
|
2018-11-02 04:47:44 +00:00
|
|
|
import define from '../../define';
|
2018-08-22 18:19:57 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'インスタンスの設定を更新します。'
|
2018-08-22 18:19:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
2018-11-14 19:15:42 +00:00
|
|
|
requireModerator: true,
|
2018-08-22 18:19:57 +00:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
broadcasts: {
|
|
|
|
validator: $.arr($.obj()).optional.nullable,
|
2018-09-03 14:23:50 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ブロードキャスト'
|
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-03 14:23:50 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
disableRegistration: {
|
|
|
|
validator: $.bool.optional.nullable,
|
2018-08-22 18:19:57 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '招待制か否か'
|
2018-08-22 18:19:57 +00:00
|
|
|
}
|
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: {
|
|
|
|
validator: $.bool.optional.nullable,
|
2018-09-11 17:48:19 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルタイムライン(とソーシャルタイムライン)を無効にするか否か'
|
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-11 17:48:19 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
hidedTags: {
|
|
|
|
validator: $.arr($.str).optional.nullable,
|
2018-09-07 10:20:50 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '統計などで無視するハッシュタグ'
|
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-20 08:21:16 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
bannerUrl: {
|
|
|
|
validator: $.str.optional.nullable,
|
2018-09-20 08:21:16 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンスのバナー画像URL'
|
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-11-04 14:00:43 +00:00
|
|
|
|
|
|
|
name: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンス名'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンスの紹介文'
|
|
|
|
}
|
|
|
|
},
|
2018-11-05 02:09:05 +00:00
|
|
|
|
|
|
|
maxNoteTextLength: {
|
|
|
|
validator: $.num.optional.min(1),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿の最大文字数'
|
|
|
|
}
|
2018-11-05 22:14:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
localDriveCapacityMb: {
|
|
|
|
validator: $.num.optional.min(0),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルユーザーひとりあたりのドライブ容量 (メガバイト単位)',
|
|
|
|
'en-US': 'Drive capacity of a local user (MB)'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
remoteDriveCapacityMb: {
|
|
|
|
validator: $.num.optional.min(0),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'リモートユーザーひとりあたりのドライブ容量 (メガバイト単位)',
|
|
|
|
'en-US': 'Drive capacity of a remote user (MB)'
|
|
|
|
}
|
|
|
|
},
|
2018-11-05 22:52:13 +00:00
|
|
|
|
|
|
|
cacheRemoteFiles: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'リモートのファイルをキャッシュするか否か'
|
|
|
|
}
|
2018-11-06 15:08:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
enableRecaptcha: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'reCAPTCHAを使用するか否か'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
recaptchaSiteKey: {
|
2018-11-06 15:44:56 +00:00
|
|
|
validator: $.str.optional.nullable,
|
2018-11-06 15:08:21 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'reCAPTCHA site key'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
recaptchaSecretKey: {
|
2018-11-06 15:44:56 +00:00
|
|
|
validator: $.str.optional.nullable,
|
2018-11-06 15:08:21 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'reCAPTCHA secret key'
|
|
|
|
}
|
2018-11-06 15:44:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
proxyAccount: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
2018-11-06 16:12:26 +00:00
|
|
|
'ja-JP': 'プロキシアカウントのユーザー名'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
maintainerName: {
|
|
|
|
validator: $.str.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンスの管理者名'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
maintainerEmail: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンス管理者の連絡先メールアドレス'
|
2018-11-06 15:44:56 +00:00
|
|
|
}
|
2018-11-07 03:28:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
langs: {
|
|
|
|
validator: $.arr($.str).optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'インスタンスの対象言語'
|
|
|
|
}
|
2018-11-07 04:14:52 +00:00
|
|
|
},
|
|
|
|
|
2018-11-22 23:13:17 +00:00
|
|
|
summalyProxy: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'summalyプロキシURL'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-11-07 04:14:52 +00:00
|
|
|
enableTwitterIntegration: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Twitter連携機能を有効にするか否か'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
twitterConsumerKey: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'TwitterアプリのConsumer key'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
twitterConsumerSecret: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'TwitterアプリのConsumer secret'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
enableGithubIntegration: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'GitHub連携機能を有効にするか否か'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
githubClientId: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'GitHubアプリのClient ID'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
githubClientSecret: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
2018-11-15 10:15:04 +00:00
|
|
|
'ja-JP': 'GitHubアプリのClient Secret'
|
2018-11-07 04:14:52 +00:00
|
|
|
}
|
|
|
|
},
|
2018-11-15 10:15:04 +00:00
|
|
|
|
|
|
|
enableDiscordIntegration: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Discord連携機能を有効にするか否か'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
discordClientId: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'DiscordアプリのClient ID'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
discordClientSecret: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'DiscordアプリのClient Secret'
|
|
|
|
}
|
2018-11-21 14:44:59 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
enableExternalUserRecommendation: {
|
|
|
|
validator: $.bool.optional,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '外部ユーザーレコメンデーションを有効にする'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
externalUserRecommendationEngine: {
|
|
|
|
validator: $.str.optional.nullable,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '外部ユーザーレコメンデーションのサードパーティエンジン'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
externalUserRecommendationTimeout: {
|
|
|
|
validator: $.num.optional.nullable.min(0),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '外部ユーザーレコメンデーションのタイムアウト (ミリ秒)'
|
|
|
|
}
|
2018-11-15 10:15:04 +00:00
|
|
|
}
|
2018-08-22 18:19:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-02 04:47:44 +00:00
|
|
|
export default define(meta, (ps) => new Promise(async (res, rej) => {
|
2018-08-22 18:19:57 +00:00
|
|
|
const set = {} as any;
|
|
|
|
|
2018-09-03 14:23:50 +00:00
|
|
|
if (ps.broadcasts) {
|
|
|
|
set.broadcasts = ps.broadcasts;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-09-07 10:20:50 +00:00
|
|
|
if (Array.isArray(ps.hidedTags)) {
|
|
|
|
set.hidedTags = ps.hidedTags;
|
|
|
|
}
|
|
|
|
|
2018-09-20 08:21:16 +00:00
|
|
|
if (ps.bannerUrl !== undefined) {
|
|
|
|
set.bannerUrl = ps.bannerUrl;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-11-06 15:44:56 +00:00
|
|
|
if (ps.proxyAccount !== undefined) {
|
|
|
|
set.proxyAccount = ps.proxyAccount;
|
|
|
|
}
|
|
|
|
|
2018-11-06 16:12:26 +00:00
|
|
|
if (ps.maintainerName !== undefined) {
|
|
|
|
set['maintainer.name'] = ps.maintainerName;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.maintainerEmail !== undefined) {
|
|
|
|
set['maintainer.email'] = ps.maintainerEmail;
|
|
|
|
}
|
|
|
|
|
2018-11-07 03:28:53 +00:00
|
|
|
if (ps.langs !== undefined) {
|
|
|
|
set.langs = ps.langs;
|
|
|
|
}
|
|
|
|
|
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-21 14:44:59 +00:00
|
|
|
if (ps.enableExternalUserRecommendation !== undefined) {
|
|
|
|
set.enableExternalUserRecommendation = ps.enableExternalUserRecommendation;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.externalUserRecommendationEngine !== undefined) {
|
|
|
|
set.externalUserRecommendationEngine = ps.externalUserRecommendationEngine;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.externalUserRecommendationTimeout !== undefined) {
|
|
|
|
set.externalUserRecommendationTimeout = ps.externalUserRecommendationTimeout;
|
|
|
|
}
|
|
|
|
|
2018-08-22 18:19:57 +00:00
|
|
|
await Meta.update({}, {
|
|
|
|
$set: set
|
|
|
|
}, { upsert: true });
|
|
|
|
|
|
|
|
res();
|
2018-11-02 04:47:44 +00:00
|
|
|
}));
|