2021-07-06 10:21:35 +02:00
|
|
|
|
2021-07-06 10:22:37 +02:00
|
|
|
import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
|
2021-07-06 10:21:35 +02:00
|
|
|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2020-11-09 16:25:27 +01:00
|
|
|
type FeedType = 'videos' | 'video-comments' | 'subscriptions'
|
2018-06-08 20:34:37 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
export class FeedCommand extends AbstractCommand {
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
getXML (options: OverrideCommandOptions & {
|
|
|
|
feed: FeedType
|
|
|
|
format?: string
|
|
|
|
}) {
|
|
|
|
const { feed, format } = options
|
|
|
|
const path = '/feeds/' + feed + '.xml'
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
return this.getRequestText({
|
|
|
|
...options,
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
path,
|
|
|
|
query: format ? { format } : undefined,
|
|
|
|
accept: 'application/xml',
|
2021-07-08 10:55:16 +02:00
|
|
|
implicitToken: false,
|
2021-07-06 10:21:35 +02:00
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getJSON (options: OverrideCommandOptions & {
|
|
|
|
feed: FeedType
|
|
|
|
query?: { [ id: string ]: any }
|
|
|
|
}) {
|
|
|
|
const { feed, query } = options
|
|
|
|
const path = '/feeds/' + feed + '.json'
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
return this.getRequestText({
|
|
|
|
...options,
|
2018-04-18 16:08:36 +02:00
|
|
|
|
2021-07-06 10:21:35 +02:00
|
|
|
path,
|
|
|
|
query,
|
|
|
|
accept: 'application/json',
|
2021-07-08 10:55:16 +02:00
|
|
|
implicitToken: false,
|
2021-07-06 10:21:35 +02:00
|
|
|
defaultExpectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
2018-04-18 16:08:36 +02:00
|
|
|
}
|