]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/extra-utils/server/debug-command.ts
Specify if we want to fallback to the server token
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / server / debug-command.ts
CommitLineData
883a9019
C
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,
a1637fa1 14 implicitToken: true,
883a9019
C
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,
a1637fa1 30 implicitToken: true,
883a9019
C
31 defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
32 })
33 }
34}