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';
|
2019-06-18 16:49:58 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2020-10-17 20:12:00 +09:00
|
|
|
requireModerator: true,
|
2019-06-18 16:49:58 +09:00
|
|
|
|
2020-04-03 22:42:29 +09:00
|
|
|
tags: ['admin'],
|
2019-06-18 16:49:58 +09:00
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
example: {
|
|
|
|
migrations: {
|
|
|
|
count: 66,
|
2021-12-09 23:58:30 +09:00
|
|
|
size: 32768,
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-06-18 16:49:58 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
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()
|
|
|
|
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 16:49:58 +09: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-18 03:27:08 +09: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 16:49:58 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
return sizes;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|