2019-02-07 19:26:43 +00:00
|
|
|
import $ from 'cafy';
|
|
|
|
import define from '../../../define';
|
|
|
|
import Instance from '../../../../../models/instance';
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2019-02-07 19:26:43 +00:00
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
host: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
|
|
|
isBlocked: {
|
|
|
|
validator: $.bool
|
|
|
|
},
|
2019-02-08 11:56:16 +00:00
|
|
|
|
|
|
|
isClosed: {
|
|
|
|
validator: $.bool
|
|
|
|
},
|
2019-02-07 19:26:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-02-07 19:26:43 +00:00
|
|
|
const instance = await Instance.findOne({ host: ps.host });
|
|
|
|
|
|
|
|
if (instance == null) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new Error('instance not found');
|
2019-02-07 19:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Instance.update({ host: ps.host }, {
|
|
|
|
$set: {
|
2019-02-08 11:56:16 +00:00
|
|
|
isBlocked: ps.isBlocked,
|
|
|
|
isMarkedAsClosed: ps.isClosed
|
2019-02-07 19:26:43 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
return;
|
|
|
|
});
|