]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - debug-command.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / debug-command.ts
... / ...
CommitLineData
1import { Debug, SendDebugCommand } from '@shared/models'
2import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
3import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5export class DebugCommand extends AbstractCommand {
6
7 getDebug (options: OverrideCommandOptions = {}) {
8 const path = '/api/v1/server/debug'
9
10 return this.getRequestBody<Debug>({
11 ...options,
12
13 path,
14 implicitToken: true,
15 defaultExpectedStatus: HttpStatusCode.OK_200
16 })
17 }
18
19 sendCommand (options: OverrideCommandOptions & {
20 body: SendDebugCommand
21 }) {
22 const { body } = options
23 const path = '/api/v1/server/debug/run-command'
24
25 return this.postBodyRequest({
26 ...options,
27
28 path,
29 fields: body,
30 implicitToken: true,
31 defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
32 })
33 }
34}