]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/extra-utils/videos/video-imports.ts
Painfully debug concurrent import jobs
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / videos / video-imports.ts
CommitLineData
bc22d608 1
d4681c00 2import { VideoImportCreate } from '../../models/videos'
d175a6f7 3import { makeGetRequest, makeUploadRequest } from '../requests/requests'
2d53be02 4import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
590fb506
C
5
6function getYoutubeVideoUrl () {
454c20fa
RK
7 return 'https://www.youtube.com/watch?v=msX3jv1XdvM'
8}
9
10function getYoutubeHDRVideoUrl () {
11 /**
12 * The video is used to check format-selection correctness wrt. HDR,
13 * which brings its own set of oddities outside of a MediaSource.
14 * FIXME: refactor once HDR is supported at playback
15 *
16 * The video needs to have the following format_ids:
17 * (which you can check by using `youtube-dl <url> -F`):
18 * - 303 (1080p webm vp9)
19 * - 299 (1080p mp4 avc1)
20 * - 335 (1080p webm vp9.2 HDR)
21 *
22 * 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING
23 * - 400 (1080p mp4 av01)
24 * - 315 (2160p webm vp9 HDR)
25 * - 337 (2160p webm vp9.2 HDR)
26 * - 401 (2160p mp4 av01 HDR)
27 */
44d1f7f2 28 return 'https://www.youtube.com/watch?v=qR5vOXbZsI4'
590fb506
C
29}
30
187501f8 31function getMagnetURI () {
a1587156 32 // eslint-disable-next-line max-len
3e17515e 33 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'
187501f8
C
34}
35
dc133480
C
36function getBadVideoUrl () {
37 return 'https://download.cpy.re/peertube/bad_video.mp4'
38}
39
b488ba1e
C
40function getGoodVideoUrl () {
41 return 'https://download.cpy.re/peertube/good_video.mp4'
42}
43
2d53be02
RK
44function importVideo (
45 url: string,
46 token: string,
47 attributes: VideoImportCreate & { torrentfile?: string },
48 statusCodeExpected = HttpStatusCode.OK_200
49) {
590fb506
C
50 const path = '/api/v1/videos/imports'
51
187501f8
C
52 let attaches: any = {}
53 if (attributes.torrentfile) attaches = { torrentfile: attributes.torrentfile }
54
55 return makeUploadRequest({
590fb506
C
56 url,
57 path,
58 token,
187501f8 59 attaches,
590fb506 60 fields: attributes,
2158ac90 61 statusCodeExpected
590fb506
C
62 })
63}
64
3e17515e 65function getMyVideoImports (url: string, token: string, sort?: string) {
590fb506
C
66 const path = '/api/v1/users/me/videos/imports'
67
3e17515e
C
68 const query = {}
69 if (sort) query['sort'] = sort
70
590fb506
C
71 return makeGetRequest({
72 url,
3e17515e 73 query,
590fb506
C
74 path,
75 token,
2d53be02 76 statusCodeExpected: HttpStatusCode.OK_200
590fb506
C
77 })
78}
79
80// ---------------------------------------------------------------------------
81
82export {
dc133480 83 getBadVideoUrl,
590fb506 84 getYoutubeVideoUrl,
454c20fa 85 getYoutubeHDRVideoUrl,
590fb506 86 importVideo,
187501f8 87 getMagnetURI,
b488ba1e
C
88 getMyVideoImports,
89 getGoodVideoUrl
590fb506 90}