2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00: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 07:49:58 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2023-01-12 12:02:26 +00:00
|
|
|
requireAdmin: true,
|
2023-12-27 06:08:59 +00:00
|
|
|
kind: 'read:admin:table-stats',
|
2023-12-18 03:32:26 +00:00
|
|
|
|
2020-04-03 13:42:29 +00:00
|
|
|
tags: ['admin'],
|
2019-06-18 07:49:58 +00:00
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2024-02-16 05:27:33 +00:00
|
|
|
additionalProperties: {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
count: {
|
|
|
|
type: 'number',
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: 'number',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: ['count', 'size'],
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
example: {
|
|
|
|
migrations: {
|
|
|
|
count: 66,
|
2021-12-09 14:58:30 +00:00
|
|
|
size: 32768,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-06-18 07:49:58 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async () => {
|
|
|
|
const sizes = await this.db.query(`
|
2019-06-18 07:49:58 +00: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 18:27:08 +00: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 07:49:58 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return sizes;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|