2018-11-20 01:58:13 -05:00
|
|
|
|
2018-10-29 13:06:09 -04:00
|
|
|
import { VideoImportCreate } from '../../models/videos'
|
2018-11-19 11:08:18 -05:00
|
|
|
import { makeGetRequest, makeUploadRequest } from '../requests/requests'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2018-08-03 10:23:45 -04:00
|
|
|
|
|
|
|
function getYoutubeVideoUrl () {
|
2021-01-15 09:56:56 -05:00
|
|
|
return 'https://www.youtube.com/watch?v=msX3jv1XdvM'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getYoutubeHDRVideoUrl () {
|
|
|
|
/**
|
|
|
|
* The video is used to check format-selection correctness wrt. HDR,
|
|
|
|
* which brings its own set of oddities outside of a MediaSource.
|
|
|
|
* FIXME: refactor once HDR is supported at playback
|
|
|
|
*
|
|
|
|
* The video needs to have the following format_ids:
|
|
|
|
* (which you can check by using `youtube-dl <url> -F`):
|
|
|
|
* - 303 (1080p webm vp9)
|
|
|
|
* - 299 (1080p mp4 avc1)
|
|
|
|
* - 335 (1080p webm vp9.2 HDR)
|
|
|
|
*
|
|
|
|
* 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING
|
|
|
|
* - 400 (1080p mp4 av01)
|
|
|
|
* - 315 (2160p webm vp9 HDR)
|
|
|
|
* - 337 (2160p webm vp9.2 HDR)
|
|
|
|
* - 401 (2160p mp4 av01 HDR)
|
|
|
|
*/
|
2021-02-09 05:22:42 -05:00
|
|
|
return 'https://www.youtube.com/watch?v=qR5vOXbZsI4'
|
2018-08-03 10:23:45 -04:00
|
|
|
}
|
|
|
|
|
2018-08-07 05:56:18 -04:00
|
|
|
function getMagnetURI () {
|
2020-01-31 10:56:52 -05:00
|
|
|
// eslint-disable-next-line max-len
|
2018-08-07 09:17:17 -04: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'
|
2018-08-07 05:56:18 -04:00
|
|
|
}
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
function getBadVideoUrl () {
|
|
|
|
return 'https://download.cpy.re/peertube/bad_video.mp4'
|
|
|
|
}
|
|
|
|
|
2020-07-30 03:43:12 -04:00
|
|
|
function getGoodVideoUrl () {
|
|
|
|
return 'https://download.cpy.re/peertube/good_video.mp4'
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function importVideo (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
|
|
|
attributes: VideoImportCreate & { torrentfile?: string },
|
|
|
|
statusCodeExpected = HttpStatusCode.OK_200
|
|
|
|
) {
|
2018-08-03 10:23:45 -04:00
|
|
|
const path = '/api/v1/videos/imports'
|
|
|
|
|
2018-08-07 05:56:18 -04:00
|
|
|
let attaches: any = {}
|
|
|
|
if (attributes.torrentfile) attaches = { torrentfile: attributes.torrentfile }
|
|
|
|
|
|
|
|
return makeUploadRequest({
|
2018-08-03 10:23:45 -04:00
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
2018-08-07 05:56:18 -04:00
|
|
|
attaches,
|
2018-08-03 10:23:45 -04:00
|
|
|
fields: attributes,
|
2020-05-14 05:10:26 -04:00
|
|
|
statusCodeExpected
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-07 09:17:17 -04:00
|
|
|
function getMyVideoImports (url: string, token: string, sort?: string) {
|
2018-08-03 10:23:45 -04:00
|
|
|
const path = '/api/v1/users/me/videos/imports'
|
|
|
|
|
2018-08-07 09:17:17 -04:00
|
|
|
const query = {}
|
|
|
|
if (sort) query['sort'] = sort
|
|
|
|
|
2018-08-03 10:23:45 -04:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
2018-08-07 09:17:17 -04:00
|
|
|
query,
|
2018-08-03 10:23:45 -04:00
|
|
|
path,
|
|
|
|
token,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2019-01-02 10:37:43 -05:00
|
|
|
getBadVideoUrl,
|
2018-08-03 10:23:45 -04:00
|
|
|
getYoutubeVideoUrl,
|
2021-01-15 09:56:56 -05:00
|
|
|
getYoutubeHDRVideoUrl,
|
2018-08-03 10:23:45 -04:00
|
|
|
importVideo,
|
2018-08-07 05:56:18 -04:00
|
|
|
getMagnetURI,
|
2020-07-30 03:43:12 -04:00
|
|
|
getMyVideoImports,
|
|
|
|
getGoodVideoUrl
|
2018-08-03 10:23:45 -04:00
|
|
|
}
|