]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 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
1 import { Debug, SendDebugCommand } from '@shared/models'
2 import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
3 import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5 export 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 }