]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/extra-utils/logs/logs-command.ts
Introduce logs command
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / logs / logs-command.ts
1 import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
2 import { LogLevel } from '../../models/server/log-level.type'
3 import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5 export class LogsCommand extends AbstractCommand {
6
7 getLogs (options: OverrideCommandOptions & {
8 startDate: Date
9 endDate?: Date
10 level?: LogLevel
11 }) {
12 const { startDate, endDate, level } = options
13 const path = '/api/v1/server/logs'
14
15 return this.getRequestBody({
16 ...options,
17
18 path,
19 query: { startDate, endDate, level },
20 defaultExpectedStatus: HttpStatusCode.OK_200
21 })
22 }
23
24 getAuditLogs (options: OverrideCommandOptions & {
25 startDate: Date
26 endDate?: Date
27 }) {
28 const { startDate, endDate } = options
29
30 const path = '/api/v1/server/audit-logs'
31
32 return this.getRequestBody({
33 ...options,
34
35 path,
36 query: { startDate, endDate },
37 defaultExpectedStatus: HttpStatusCode.OK_200
38 })
39 }
40
41 }