2019-07-02 18:58:45 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import define from '../../define';
|
2019-07-02 18:58:45 +00:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log';
|
2019-07-02 18:58:45 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2019-07-02 18:58:45 +00:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
full: {
|
|
|
|
validator: $.bool,
|
|
|
|
},
|
|
|
|
analyze: {
|
|
|
|
validator: $.bool,
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-07-02 18:58:45 +00:00
|
|
|
};
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-07-13 18:18:45 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-07-02 18:58:45 +00:00
|
|
|
const params: string[] = [];
|
|
|
|
|
|
|
|
if (ps.full) {
|
|
|
|
params.push('FULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.analyze) {
|
|
|
|
params.push('ANALYZE');
|
|
|
|
}
|
|
|
|
|
|
|
|
getConnection().query('VACUUM ' + params.join(' '));
|
2019-07-13 18:18:45 +00:00
|
|
|
|
|
|
|
insertModerationLog(me, 'vacuum', ps);
|
2019-07-02 18:58:45 +00:00
|
|
|
});
|