61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import { IndexableVideo } from '../types/video.model'
|
|
import { doRequest, doRequestWithRetries } from '../helpers/requests'
|
|
import { ResultList, Video, VideoChannel, VideoDetails } from '@shared/models'
|
|
import { IndexableChannel } from '../types/channel.model'
|
|
import { INDEXER_COUNT, REQUESTS } from '../initializers/constants'
|
|
import { IndexableDoc } from '../types/elastic-search.model'
|
|
|
|
async function getVideo (host: string, uuid: string): Promise<IndexableVideo> {
|
|
const url = 'https://' + host + '/api/v1/videos/' + uuid
|
|
|
|
const res = await doRequestWithRetries<VideoDetails>({
|
|
uri: url,
|
|
json: true
|
|
}, REQUESTS.MAX_RETRIES, REQUESTS.WAIT)
|
|
|
|
return prepareVideoForDB(res.body, host)
|
|
}
|
|
|
|
async function getChannel (host: string, name: string): Promise<IndexableChannel> {
|
|
const url = 'https://' + host + '/api/v1/video-channels/' + name
|
|
|
|
const res = await doRequestWithRetries<VideoChannel>({
|
|
uri: url,
|
|
json: true
|
|
}, REQUESTS.MAX_RETRIES, REQUESTS.WAIT)
|
|
|
|
return prepareChannelForDB(res.body, host)
|
|
}
|
|
|
|
async function getVideos (host: string, start: number): Promise<IndexableVideo[]> {
|
|
const url = 'https://' + host + '/api/v1/videos'
|
|
|
|
const res = await doRequestWithRetries<ResultList<Video>>({
|
|
uri: url,
|
|
qs: {
|
|
start,
|
|
filter: 'local',
|
|
skipCount: true,
|
|
count: INDEXER_COUNT.VIDEOS
|
|
},
|
|
json: true
|
|
}, REQUESTS.MAX_RETRIES, REQUESTS.WAIT)
|
|
|
|
return res.body.data.map(v => prepareVideoForDB(v, host))
|
|
}
|
|
|
|
function prepareVideoForDB <T extends Video> (video: T, host: string): T & IndexableDoc {
|
|
return Object.assign(video, { elasticSearchId: host + video.id, host })
|
|
}
|
|
|
|
function prepareChannelForDB <T extends VideoChannel> (channel: T, host: string): T & IndexableDoc {
|
|
return Object.assign(channel, { elasticSearchId: host + channel.id, host })
|
|
}
|
|
|
|
export {
|
|
getVideo,
|
|
getChannel,
|
|
getVideos,
|
|
prepareChannelForDB
|
|
}
|