PeerTube/shared/extra-utils/videos/video-imports.ts

63 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-10-29 18:06:09 +01:00
import { VideoImportCreate } from '../../models/videos'
2018-11-19 17:08:18 +01:00
import { makeGetRequest, makeUploadRequest } from '../requests/requests'
2018-08-03 16:23:45 +02:00
function getYoutubeVideoUrl () {
2020-01-22 09:24:26 +01:00
return 'http://www.youtube.com/watch?v=msX3jv1XdvM'
2018-08-03 16:23:45 +02:00
}
function getMagnetURI () {
2020-01-31 16:56:52 +01:00
// eslint-disable-next-line max-len
2018-08-07 15:17:17 +02:00
return 'magnet:?xs=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Ftorrents%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.torrent&xt=urn:btih:0f498834733e8057ed5c6f2ee2b4efd8d84a76ee&dn=super+peertube2+video&tr=wss%3A%2F%2Fpeertube2.cpy.re%3A443%2Ftracker%2Fsocket&tr=https%3A%2F%2Fpeertube2.cpy.re%2Ftracker%2Fannounce&ws=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Fwebseed%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.mp4'
}
function getBadVideoUrl () {
return 'https://download.cpy.re/peertube/bad_video.mp4'
}
function getGoodVideoUrl () {
return 'https://download.cpy.re/peertube/good_video.mp4'
}
function importVideo (url: string, token: string, attributes: VideoImportCreate & { torrentfile?: string }, statusCodeExpected = 200) {
2018-08-03 16:23:45 +02:00
const path = '/api/v1/videos/imports'
let attaches: any = {}
if (attributes.torrentfile) attaches = { torrentfile: attributes.torrentfile }
return makeUploadRequest({
2018-08-03 16:23:45 +02:00
url,
path,
token,
attaches,
2018-08-03 16:23:45 +02:00
fields: attributes,
statusCodeExpected
2018-08-03 16:23:45 +02:00
})
}
2018-08-07 15:17:17 +02:00
function getMyVideoImports (url: string, token: string, sort?: string) {
2018-08-03 16:23:45 +02:00
const path = '/api/v1/users/me/videos/imports'
2018-08-07 15:17:17 +02:00
const query = {}
if (sort) query['sort'] = sort
2018-08-03 16:23:45 +02:00
return makeGetRequest({
url,
2018-08-07 15:17:17 +02:00
query,
2018-08-03 16:23:45 +02:00
path,
token,
statusCodeExpected: 200
})
}
// ---------------------------------------------------------------------------
export {
getBadVideoUrl,
2018-08-03 16:23:45 +02:00
getYoutubeVideoUrl,
importVideo,
getMagnetURI,
getMyVideoImports,
getGoodVideoUrl
2018-08-03 16:23:45 +02:00
}