mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import { buildUUID } from '@shared/extra-utils'
 | |
| import { HttpStatusCode } from '@shared/models'
 | |
| import { AbstractCommand, OverrideCommandOptions } from '../shared'
 | |
| 
 | |
| type FeedType = 'videos' | 'video-comments' | 'subscriptions'
 | |
| 
 | |
| export class FeedCommand extends AbstractCommand {
 | |
| 
 | |
|   getXML (options: OverrideCommandOptions & {
 | |
|     feed: FeedType
 | |
|     ignoreCache: boolean
 | |
|     format?: string
 | |
|   }) {
 | |
|     const { feed, format, ignoreCache } = options
 | |
|     const path = '/feeds/' + feed + '.xml'
 | |
| 
 | |
|     const query: { [id: string]: string } = {}
 | |
| 
 | |
|     if (ignoreCache) query.v = buildUUID()
 | |
|     if (format) query.format = format
 | |
| 
 | |
|     return this.getRequestText({
 | |
|       ...options,
 | |
| 
 | |
|       path,
 | |
|       query,
 | |
|       accept: 'application/xml',
 | |
|       implicitToken: false,
 | |
|       defaultExpectedStatus: HttpStatusCode.OK_200
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   getPodcastXML (options: OverrideCommandOptions & {
 | |
|     ignoreCache: boolean
 | |
|     channelId: number
 | |
|   }) {
 | |
|     const { ignoreCache, channelId } = options
 | |
|     const path = `/feeds/podcast/videos.xml`
 | |
| 
 | |
|     const query: { [id: string]: string } = {}
 | |
| 
 | |
|     if (ignoreCache) query.v = buildUUID()
 | |
|     if (channelId) query.videoChannelId = channelId + ''
 | |
| 
 | |
|     return this.getRequestText({
 | |
|       ...options,
 | |
| 
 | |
|       path,
 | |
|       query,
 | |
|       accept: 'application/xml',
 | |
|       implicitToken: false,
 | |
|       defaultExpectedStatus: HttpStatusCode.OK_200
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   getJSON (options: OverrideCommandOptions & {
 | |
|     feed: FeedType
 | |
|     ignoreCache: boolean
 | |
|     query?: { [ id: string ]: any }
 | |
|   }) {
 | |
|     const { feed, query = {}, ignoreCache } = options
 | |
|     const path = '/feeds/' + feed + '.json'
 | |
| 
 | |
|     const cacheQuery = ignoreCache
 | |
|       ? { v: buildUUID() }
 | |
|       : {}
 | |
| 
 | |
|     return this.getRequestText({
 | |
|       ...options,
 | |
| 
 | |
|       path,
 | |
|       query: { ...query, ...cacheQuery },
 | |
|       accept: 'application/json',
 | |
|       implicitToken: false,
 | |
|       defaultExpectedStatus: HttpStatusCode.OK_200
 | |
|     })
 | |
|   }
 | |
| }
 |