1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
37 lines
745 B
TypeScript
37 lines
745 B
TypeScript
import define from '../../define.js';
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
import { db } from '@/db/postgre.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
full: { type: 'boolean' },
|
|
analyze: { type: 'boolean' },
|
|
},
|
|
required: ['full', 'analyze'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const params: string[] = [];
|
|
|
|
if (ps.full) {
|
|
params.push('FULL');
|
|
}
|
|
|
|
if (ps.analyze) {
|
|
params.push('ANALYZE');
|
|
}
|
|
|
|
db.query('VACUUM ' + params.join(' '));
|
|
|
|
insertModerationLog(me, 'vacuum', ps);
|
|
});
|