mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 15:53:08 +02:00
36 lines
648 B
TypeScript
36 lines
648 B
TypeScript
import $ from 'cafy';
|
|
import define from '../../define';
|
|
import { getConnection } from 'typeorm';
|
|
import { insertModerationLog } from '../../../../services/insert-moderation-log';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true as const,
|
|
requireModerator: true,
|
|
|
|
params: {
|
|
full: {
|
|
validator: $.bool,
|
|
},
|
|
analyze: {
|
|
validator: $.bool,
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
const params: string[] = [];
|
|
|
|
if (ps.full) {
|
|
params.push('FULL');
|
|
}
|
|
|
|
if (ps.analyze) {
|
|
params.push('ANALYZE');
|
|
}
|
|
|
|
getConnection().query('VACUUM ' + params.join(' '));
|
|
|
|
insertModerationLog(me, 'vacuum', ps);
|
|
});
|