1
0
Fork 0
peertube/shared/extra-utils/server/debug-command.ts

35 lines
832 B
TypeScript
Raw Normal View History

2021-07-06 14:02:11 +00:00
import { Debug, SendDebugCommand } from '@shared/models'
2021-07-16 08:42:24 +00:00
import { HttpStatusCode } from '@shared/models'
2021-07-06 14:02:11 +00:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class DebugCommand extends AbstractCommand {
getDebug (options: OverrideCommandOptions = {}) {
const path = '/api/v1/server/debug'
return this.getRequestBody<Debug>({
...options,
path,
implicitToken: true,
2021-07-06 14:02:11 +00:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
sendCommand (options: OverrideCommandOptions & {
body: SendDebugCommand
}) {
const { body } = options
const path = '/api/v1/server/debug/run-command'
return this.postBodyRequest({
...options,
path,
fields: body,
implicitToken: true,
2021-07-06 14:02:11 +00:00
defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
})
}
}