2018-08-22 20:19:57 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import Meta from '../../../../models/meta';
|
|
|
|
import getParams from '../../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'インスタンスの設定を更新します。'
|
2018-08-22 20:19:57 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
requireAdmin: true,
|
|
|
|
|
|
|
|
params: {
|
2018-09-03 16:23:50 +02:00
|
|
|
broadcasts: $.arr($.obj()).optional.nullable.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ブロードキャスト'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2018-08-22 20:19:57 +02:00
|
|
|
disableRegistration: $.bool.optional.nullable.note({
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '招待制か否か'
|
2018-08-22 20:19:57 +02:00
|
|
|
}
|
2018-09-07 12:20:50 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
hidedTags: $.arr($.str).optional.nullable.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '統計などで無視するハッシュタグ'
|
|
|
|
}
|
|
|
|
}),
|
2018-08-22 20:19:57 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default (params: any) => new Promise(async (res, rej) => {
|
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
|
|
|
|
|
|
|
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') {
|
2018-08-22 20:19:57 +02:00
|
|
|
set.disableRegistration = ps.disableRegistration;
|
|
|
|
}
|
|
|
|
|
2018-09-07 12:20:50 +02:00
|
|
|
if (Array.isArray(ps.hidedTags)) {
|
|
|
|
set.hidedTags = ps.hidedTags;
|
|
|
|
}
|
|
|
|
|
2018-08-22 20:19:57 +02:00
|
|
|
await Meta.update({}, {
|
|
|
|
$set: set
|
|
|
|
}, { upsert: true });
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|