]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/extra-utils/feeds/feeds-command.ts
Rename command files
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / feeds / feeds-command.ts
1
2 import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
3 import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5 type FeedType = 'videos' | 'video-comments' | 'subscriptions'
6
7 export class FeedCommand extends AbstractCommand {
8
9 getXML (options: OverrideCommandOptions & {
10 feed: FeedType
11 format?: string
12 }) {
13 const { feed, format } = options
14 const path = '/feeds/' + feed + '.xml'
15
16 return this.getRequestText({
17 ...options,
18
19 path,
20 query: format ? { format } : undefined,
21 accept: 'application/xml',
22 defaultExpectedStatus: HttpStatusCode.OK_200
23 })
24 }
25
26 getJSON (options: OverrideCommandOptions & {
27 feed: FeedType
28 query?: { [ id: string ]: any }
29 }) {
30 const { feed, query } = options
31 const path = '/feeds/' + feed + '.json'
32
33 return this.getRequestText({
34 ...options,
35
36 path,
37 query,
38 accept: 'application/json',
39 defaultExpectedStatus: HttpStatusCode.OK_200
40 })
41 }
42 }