Sharkey/packages/backend/src/server/api/endpoints/admin/get-index-stats.ts

27 lines
702 B
TypeScript
Raw Normal View History

2022-09-18 03:27:08 +09:00
import { Inject, Injectable } from '@nestjs/common';
import { DataSource } from 'typeorm';
import { Endpoint } from '@/server/api/endpoint-base.js';
import { DI } from '@/di-symbols.js';
2021-05-08 12:51:23 +09:00
2022-01-03 02:12:50 +09:00
// eslint-disable-next-line import/no-default-export
2022-09-18 03:27:08 +09:00
@Injectable()
2023-05-29 14:11:51 +00:00
export default class extends Endpoint<'admin/get-index-stats'> {
name = 'admin/get-index-stats' as const;
2022-09-18 03:27:08 +09:00
constructor(
@Inject(DI.db)
private db: DataSource,
) {
2023-05-29 14:11:51 +00:00
super(async () => {
2022-09-18 03:27:08 +09:00
const stats = await this.db.query('SELECT * FROM pg_indexes;').then(recs => {
const res = [] as { tablename: string; indexname: string; }[];
for (const rec of recs) {
res.push(rec);
}
return res;
});
2021-05-08 12:51:23 +09:00
2022-09-18 03:27:08 +09:00
return stats;
});
}
}