PeerTube/shared/server-commands/logs/logs-command.ts

44 lines
1016 B
TypeScript
Raw Normal View History

import { HttpStatusCode, LogLevel } from '@shared/models'
2021-07-06 10:34:29 +02:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class LogsCommand extends AbstractCommand {
getLogs (options: OverrideCommandOptions & {
startDate: Date
endDate?: Date
level?: LogLevel
2021-10-20 14:23:32 +02:00
tagsOneOf?: string[]
2021-07-06 10:34:29 +02:00
}) {
2021-10-20 14:23:32 +02:00
const { startDate, endDate, tagsOneOf, level } = options
2021-07-06 10:34:29 +02:00
const path = '/api/v1/server/logs'
2021-10-20 14:23:32 +02:00
return this.getRequestBody<any[]>({
2021-07-06 10:34:29 +02:00
...options,
path,
2021-10-20 14:23:32 +02:00
query: { startDate, endDate, level, tagsOneOf },
implicitToken: true,
2021-07-06 10:34:29 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
getAuditLogs (options: OverrideCommandOptions & {
startDate: Date
endDate?: Date
}) {
const { startDate, endDate } = options
const path = '/api/v1/server/audit-logs'
return this.getRequestBody({
...options,
path,
query: { startDate, endDate },
implicitToken: true,
2021-07-06 10:34:29 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
}