2022-09-17 13:27:08 -05: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';
|
2019-06-18 02:49:58 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2023-01-12 06:02:26 -06:00
|
|
|
requireAdmin: true,
|
2019-06-18 02:49:58 -05:00
|
|
|
|
2020-04-03 08:42:29 -05:00
|
|
|
tags: ['admin'],
|
2019-06-18 02:49:58 -05:00
|
|
|
|
2021-03-06 07:34:11 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 07:34:11 -06:00
|
|
|
example: {
|
|
|
|
migrations: {
|
|
|
|
count: 66,
|
2021-12-09 08:58:30 -06:00
|
|
|
size: 32768,
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-06-18 02:49:58 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
const sizes = await this.db.query(`
|
2019-06-18 02:49:58 -05:00
|
|
|
SELECT relname AS "table", reltuples as "count", pg_total_relation_size(C.oid) AS "size"
|
|
|
|
FROM pg_class C LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
|
|
|
|
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
|
|
|
|
AND C.relkind <> 'i'
|
|
|
|
AND nspname !~ '^pg_toast';`)
|
2022-09-17 13:27:08 -05:00
|
|
|
.then(recs => {
|
|
|
|
const res = {} as Record<string, { count: number; size: number; }>;
|
|
|
|
for (const rec of recs) {
|
|
|
|
res[rec.table] = {
|
|
|
|
count: parseInt(rec.count, 10),
|
|
|
|
size: parseInt(rec.size, 10),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
});
|
2019-06-18 02:49:58 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
return sizes;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|