PeerTube/shared/server-commands/server/stats-command.ts

26 lines
622 B
TypeScript
Raw Normal View History

2021-07-16 14:27:30 +02:00
import { HttpStatusCode, ServerStats } from '@shared/models'
2021-07-07 11:07:12 +02:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class StatsCommand extends AbstractCommand {
get (options: OverrideCommandOptions & {
useCache?: boolean // default false
} = {}) {
const { useCache = false } = options
const path = '/api/v1/server/stats'
const query = {
t: useCache ? undefined : new Date().getTime()
}
return this.getRequestBody<ServerStats>({
...options,
path,
query,
implicitToken: false,
2021-07-07 11:07:12 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
}