]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/extra-utils/server/stats-command.ts
Introduce login command
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / server / stats-command.ts
1 import { ServerStats } from '@shared/models'
2 import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
3 import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5 export class StatsCommand extends AbstractCommand {
6
7 get (options: OverrideCommandOptions & {
8 useCache?: boolean // default false
9 } = {}) {
10 const { useCache = false } = options
11 const path = '/api/v1/server/stats'
12
13 const query = {
14 t: useCache ? undefined : new Date().getTime()
15 }
16
17 return this.getRequestBody<ServerStats>({
18 ...options,
19
20 path,
21 query,
22 implicitToken: false,
23 defaultExpectedStatus: HttpStatusCode.OK_200
24 })
25 }
26 }