2019-07-02 20:58:45 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import define from '../../define';
|
|
|
|
import { getConnection } from 'typeorm';
|
2019-07-13 20:18:45 +02:00
|
|
|
import { insertModerationLog } from '../../../../services/insert-moderation-log';
|
2019-07-02 20:58:45 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
full: {
|
|
|
|
validator: $.bool,
|
|
|
|
},
|
|
|
|
analyze: {
|
|
|
|
validator: $.bool,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-13 20:18:45 +02:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-07-02 20:58:45 +02:00
|
|
|
const params: string[] = [];
|
|
|
|
|
|
|
|
if (ps.full) {
|
|
|
|
params.push('FULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.analyze) {
|
|
|
|
params.push('ANALYZE');
|
|
|
|
}
|
|
|
|
|
|
|
|
getConnection().query('VACUUM ' + params.join(' '));
|
2019-07-13 20:18:45 +02:00
|
|
|
|
|
|
|
insertModerationLog(me, 'vacuum', ps);
|
2019-07-02 20:58:45 +02:00
|
|
|
});
|