2019-02-08 04:26:43 +09:00
|
|
|
import $ from 'cafy';
|
|
|
|
import define from '../../../define';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { Instances } from '../../../../../models';
|
2019-04-10 00:59:41 +09:00
|
|
|
import { toPuny } from '../../../../../misc/convert-host';
|
2019-02-08 04:26:43 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2019-02-08 04:26:43 +09:00
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
host: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
2020-01-30 05:56:14 +09:00
|
|
|
isSuspended: {
|
2019-02-08 20:56:16 +09:00
|
|
|
validator: $.bool
|
|
|
|
},
|
2019-02-08 04:26:43 +09:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-10 00:59:41 +09:00
|
|
|
const instance = await Instances.findOne({ host: toPuny(ps.host) });
|
2019-02-08 04:26:43 +09:00
|
|
|
|
|
|
|
if (instance == null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new Error('instance not found');
|
2019-02-08 04:26:43 +09:00
|
|
|
}
|
|
|
|
|
2019-04-10 00:59:41 +09:00
|
|
|
Instances.update({ host: toPuny(ps.host) }, {
|
2020-01-30 05:56:14 +09:00
|
|
|
isSuspended: ps.isSuspended
|
2019-02-08 04:26:43 +09:00
|
|
|
});
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|