2022-09-17 21:27:08 +03: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 06:51:23 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2023-01-12 14:02:26 +02:00
|
|
|
requireAdmin: true,
|
2021-05-08 06:51:23 +03:00
|
|
|
|
|
|
|
tags: ['admin'],
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2021-05-08 06:51:23 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-05-08 06:51:23 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
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 06:51:23 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
return stats;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|