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

56 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-06-27 10:36:16 +02:00
import { buildUUID } from '@shared/extra-utils'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '@shared/models'
2021-07-06 10:21:35 +02:00
import { AbstractCommand, OverrideCommandOptions } from '../shared'
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 {
2021-07-06 10:21:35 +02:00
getXML (options: OverrideCommandOptions & {
feed: FeedType
2022-06-27 10:36:16 +02:00
ignoreCache: boolean
2021-07-06 10:21:35 +02:00
format?: string
}) {
2022-06-27 10:36:16 +02:00
const { feed, format, ignoreCache } = options
2021-07-06 10:21:35 +02:00
const path = '/feeds/' + feed + '.xml'
2022-06-27 10:36:16 +02:00
const query: { [id: string]: string } = {}
if (ignoreCache) query.v = buildUUID()
if (format) query.format = format
2021-07-06 10:21:35 +02:00
return this.getRequestText({
...options,
2021-07-06 10:21:35 +02:00
path,
2022-06-27 10:36:16 +02:00
query,
2021-07-06 10:21:35 +02:00
accept: 'application/xml',
implicitToken: false,
2021-07-06 10:21:35 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
getJSON (options: OverrideCommandOptions & {
feed: FeedType
2022-06-27 10:36:16 +02:00
ignoreCache: boolean
2021-07-06 10:21:35 +02:00
query?: { [ id: string ]: any }
}) {
2022-06-27 10:36:16 +02:00
const { feed, query = {}, ignoreCache } = options
2021-07-06 10:21:35 +02:00
const path = '/feeds/' + feed + '.json'
2022-06-27 10:36:16 +02:00
const cacheQuery = ignoreCache
? { v: buildUUID() }
: {}
2021-07-06 10:21:35 +02:00
return this.getRequestText({
...options,
2021-07-06 10:21:35 +02:00
path,
2022-06-27 10:36:16 +02:00
query: { ...query, ...cacheQuery },
2021-07-06 10:21:35 +02:00
accept: 'application/json',
implicitToken: false,
2021-07-06 10:21:35 +02:00
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
}