iceshrimp-legacy/src/server/api/endpoints/admin/update-meta.ts

137 lines
2.8 KiB
TypeScript
Raw Normal View History

import $ from 'cafy';
import Meta from '../../../../models/meta';
2018-11-02 05:47:44 +01:00
import define from '../../define';
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'インスタンスの設定を更新します。'
},
requireCredential: true,
requireAdmin: true,
params: {
2018-11-01 19:32:24 +01:00
broadcasts: {
validator: $.arr($.obj()).optional.nullable,
2018-09-03 16:23:50 +02:00
desc: {
'ja-JP': 'ブロードキャスト'
}
2018-11-01 19:32:24 +01:00
},
2018-09-03 16:23:50 +02:00
2018-11-01 19:32:24 +01:00
disableRegistration: {
validator: $.bool.optional.nullable,
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '招待制か否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
disableLocalTimeline: {
validator: $.bool.optional.nullable,
2018-09-11 19:48:19 +02:00
desc: {
'ja-JP': 'ローカルタイムライン(とソーシャルタイムライン)を無効にするか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-09-11 19:48:19 +02:00
2018-11-01 19:32:24 +01:00
hidedTags: {
validator: $.arr($.str).optional.nullable,
desc: {
'ja-JP': '統計などで無視するハッシュタグ'
}
2018-11-01 19:32:24 +01:00
},
2018-09-20 10:21:16 +02:00
2018-11-01 19:32:24 +01:00
bannerUrl: {
validator: $.str.optional.nullable,
2018-09-20 10:21:16 +02:00
desc: {
'ja-JP': 'インスタンスのバナー画像URL'
}
2018-11-01 19:32:24 +01:00
},
2018-11-04 15:00:43 +01:00
name: {
validator: $.str.optional.nullable,
desc: {
'ja-JP': 'インスタンス名'
}
},
description: {
validator: $.str.optional.nullable,
desc: {
'ja-JP': 'インスタンスの紹介文'
}
},
maxNoteTextLength: {
validator: $.num.optional.min(1),
desc: {
'ja-JP': '投稿の最大文字数'
}
},
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-02 05:47:44 +01:00
export default define(meta, (ps) => new Promise(async (res, rej) => {
const set = {} as any;
2018-09-03 16:23:50 +02:00
if (ps.broadcasts) {
set.broadcasts = ps.broadcasts;
}
2018-09-01 16:29:22 +02:00
if (typeof ps.disableRegistration === 'boolean') {
set.disableRegistration = ps.disableRegistration;
}
2018-09-11 19:48:19 +02:00
if (typeof ps.disableLocalTimeline === 'boolean') {
set.disableLocalTimeline = ps.disableLocalTimeline;
}
if (Array.isArray(ps.hidedTags)) {
set.hidedTags = ps.hidedTags;
}
2018-09-20 10:21:16 +02:00
if (ps.bannerUrl !== undefined) {
set.bannerUrl = ps.bannerUrl;
}
2018-11-04 15:00:43 +01:00
if (ps.name !== undefined) {
set.name = ps.name;
}
if (ps.description !== undefined) {
set.description = ps.description;
}
if (ps.maxNoteTextLength) {
set.maxNoteTextLength = ps.maxNoteTextLength;
}
if (ps.localDriveCapacityMb !== undefined) {
set.localDriveCapacityMb = ps.localDriveCapacityMb;
}
if (ps.remoteDriveCapacityMb !== undefined) {
set.remoteDriveCapacityMb = ps.remoteDriveCapacityMb;
}
await Meta.update({}, {
$set: set
}, { upsert: true });
res();
2018-11-02 05:47:44 +01:00
}));