2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/no-floating-promises */
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2021-05-10 05:13:41 -04:00
|
|
|
import { createReadStream, pathExists, readdir, readFile, stat } from 'fs-extra'
|
|
|
|
import got, { Response as GotResponse } from 'got/dist/source'
|
2017-09-07 09:27:35 -04:00
|
|
|
import * as parseTorrent from 'parse-torrent'
|
2021-06-08 03:33:03 -04:00
|
|
|
import { join } from 'path'
|
2017-12-28 07:59:22 -05:00
|
|
|
import * as request from 'supertest'
|
2020-06-16 09:52:05 -04:00
|
|
|
import validator from 'validator'
|
2021-06-08 03:33:03 -04:00
|
|
|
import { getLowercaseExtension } from '@server/helpers/core-utils'
|
2021-06-28 11:30:59 -04:00
|
|
|
import { buildUUID } from '@server/helpers/uuid'
|
2021-02-25 07:56:07 -05:00
|
|
|
import { HttpStatusCode } from '@shared/core-utils'
|
2021-07-06 09:22:51 -04:00
|
|
|
import { BooleanBothQuery, VideosCommonQuery } from '@shared/models'
|
2020-06-16 09:52:05 -04:00
|
|
|
import { loadLanguages, VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../server/initializers/constants'
|
|
|
|
import { VideoDetails, VideoPrivacy } from '../../models/videos'
|
2021-07-13 03:43:59 -04:00
|
|
|
import { buildAbsoluteFixturePath, dateIsValid, testImage, wait, webtorrentAdd } from '../miscs'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { makeGetRequest, makePutBodyRequest, makeRawRequest, makeUploadRequest } from '../requests/requests'
|
2020-06-16 09:52:05 -04:00
|
|
|
import { waitJobs } from '../server/jobs'
|
|
|
|
import { ServerInfo } from '../server/servers'
|
2021-07-13 08:23:01 -04:00
|
|
|
import { xxxgetMyUserInformation } from '../users'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2019-04-11 09:38:53 -04:00
|
|
|
loadLanguages()
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
type VideoAttributes = {
|
|
|
|
name?: string
|
|
|
|
category?: number
|
|
|
|
licence?: number
|
2018-04-23 08:39:52 -04:00
|
|
|
language?: string
|
2017-09-04 15:21:47 -04:00
|
|
|
nsfw?: boolean
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled?: boolean
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled?: boolean
|
2018-06-12 14:04:58 -04:00
|
|
|
waitTranscoding?: boolean
|
2017-09-04 15:21:47 -04:00
|
|
|
description?: string
|
2019-02-11 08:41:55 -05:00
|
|
|
originallyPublishedAt?: string
|
2017-09-04 15:21:47 -04:00
|
|
|
tags?: string[]
|
2017-10-24 13:41:30 -04:00
|
|
|
channelId?: number
|
2017-10-31 10:20:35 -04:00
|
|
|
privacy?: VideoPrivacy
|
2017-09-04 15:21:47 -04:00
|
|
|
fixture?: string
|
2021-05-10 05:13:41 -04:00
|
|
|
support?: string
|
2018-02-13 12:17:05 -05:00
|
|
|
thumbnailfile?: string
|
|
|
|
previewfile?: string
|
2018-06-14 12:06:56 -04:00
|
|
|
scheduleUpdate?: {
|
|
|
|
updateAt: string
|
|
|
|
privacy?: VideoPrivacy
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoCategories (url: string) {
|
|
|
|
const path = '/api/v1/videos/categories'
|
|
|
|
|
2017-12-28 08:29:57 -05:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
2017-12-28 11:25:10 -05:00
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2017-12-28 08:29:57 -05:00
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoLicences (url: string) {
|
|
|
|
const path = '/api/v1/videos/licences'
|
|
|
|
|
2017-12-28 08:29:57 -05:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
2017-12-28 11:25:10 -05:00
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2017-12-28 08:29:57 -05:00
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoLanguages (url: string) {
|
|
|
|
const path = '/api/v1/videos/languages'
|
|
|
|
|
2017-12-28 08:29:57 -05:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
2017-12-28 11:25:10 -05:00
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2017-12-28 08:29:57 -05:00
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2017-10-31 10:20:35 -04:00
|
|
|
function getVideoPrivacies (url: string) {
|
|
|
|
const path = '/api/v1/videos/privacies'
|
|
|
|
|
2017-12-28 08:29:57 -05:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
2017-12-28 11:25:10 -05:00
|
|
|
path,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2017-12-28 08:29:57 -05:00
|
|
|
})
|
2017-10-31 10:20:35 -04:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function getVideo (url: string, id: number | string, expectedStatus = HttpStatusCode.OK_200) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos/' + id
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
2017-10-31 10:20:35 -04:00
|
|
|
.expect(expectedStatus)
|
|
|
|
}
|
|
|
|
|
2020-05-22 11:06:26 -04:00
|
|
|
async function getVideoIdFromUUID (url: string, uuid: string) {
|
|
|
|
const res = await getVideo(url, uuid)
|
|
|
|
|
|
|
|
return res.body.id
|
|
|
|
}
|
|
|
|
|
2020-03-10 09:39:40 -04:00
|
|
|
function getVideoFileMetadataUrl (url: string) {
|
|
|
|
return request(url)
|
|
|
|
.get('/')
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2020-03-10 09:39:40 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function viewVideo (url: string, id: number | string, expectedStatus = HttpStatusCode.NO_CONTENT_204, xForwardedFor?: string) {
|
2017-11-30 03:21:11 -05:00
|
|
|
const path = '/api/v1/videos/' + id + '/views'
|
|
|
|
|
2018-03-29 04:58:24 -04:00
|
|
|
const req = request(url)
|
2017-11-30 03:21:11 -05:00
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
2018-03-29 04:58:24 -04:00
|
|
|
|
|
|
|
if (xForwardedFor) {
|
|
|
|
req.set('X-Forwarded-For', xForwardedFor)
|
|
|
|
}
|
|
|
|
|
|
|
|
return req.expect(expectedStatus)
|
2017-11-30 03:21:11 -05:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function getVideoWithToken (url: string, token: string, id: number | string, expectedStatus = HttpStatusCode.OK_200) {
|
2017-10-31 10:20:35 -04:00
|
|
|
const path = '/api/v1/videos/' + id
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.expect(expectedStatus)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2017-10-30 05:16:27 -04:00
|
|
|
function getVideoDescription (url: string, descriptionPath: string) {
|
|
|
|
return request(url)
|
|
|
|
.get(descriptionPath)
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-10-30 05:16:27 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
function getVideosList (url: string) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ sort: 'name' })
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-09-04 15:21:47 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2021-07-06 09:22:51 -04:00
|
|
|
function getVideosListWithToken (url: string, token: string, query: { nsfw?: BooleanBothQuery } = {}) {
|
2018-04-19 05:01:34 -04:00
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
2021-07-13 03:43:59 -04:00
|
|
|
.query({ sort: 'name', ...query })
|
2018-04-19 05:01:34 -04:00
|
|
|
.set('Accept', 'application/json')
|
2020-12-08 15:16:10 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2018-04-19 05:01:34 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2018-03-13 05:24:28 -04:00
|
|
|
function getLocalVideos (url: string) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ sort: 'name', filter: 'local' })
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-08 15:16:10 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2018-03-13 05:24:28 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2019-12-30 08:31:39 -05:00
|
|
|
function getMyVideos (url: string, accessToken: string, start: number, count: number, sort?: string, search?: string) {
|
2017-10-31 10:20:35 -04:00
|
|
|
const path = '/api/v1/users/me/videos'
|
|
|
|
|
|
|
|
const req = request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
2019-12-30 08:31:39 -05:00
|
|
|
.query({ search: search })
|
2017-10-31 10:20:35 -04:00
|
|
|
|
|
|
|
if (sort) req.query({ sort })
|
|
|
|
|
|
|
|
return req.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-10-31 10:20:35 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2021-05-03 05:06:19 -04:00
|
|
|
function getMyVideosWithFilter (url: string, accessToken: string, query: { isLive?: boolean }) {
|
|
|
|
const path = '/api/v1/users/me/videos'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token: accessToken,
|
|
|
|
query,
|
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-07-20 08:35:18 -04:00
|
|
|
function getAccountVideos (
|
|
|
|
url: string,
|
|
|
|
accessToken: string,
|
|
|
|
accountName: string,
|
|
|
|
start: number,
|
|
|
|
count: number,
|
|
|
|
sort?: string,
|
2021-01-19 07:43:33 -05:00
|
|
|
query: {
|
2021-07-06 09:22:51 -04:00
|
|
|
nsfw?: BooleanBothQuery
|
2021-01-19 07:43:33 -05:00
|
|
|
search?: string
|
|
|
|
} = {}
|
2018-07-20 08:35:18 -04:00
|
|
|
) {
|
2018-05-25 03:57:16 -04:00
|
|
|
const path = '/api/v1/accounts/' + accountName + '/videos'
|
2018-04-25 04:21:38 -04:00
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
2021-07-13 03:43:59 -04:00
|
|
|
query: { ...query, start, count, sort },
|
2018-04-25 04:21:38 -04:00
|
|
|
token: accessToken,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2018-04-25 04:21:38 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoChannelVideos (
|
|
|
|
url: string,
|
|
|
|
accessToken: string,
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelName: string,
|
2018-04-25 04:21:38 -04:00
|
|
|
start: number,
|
|
|
|
count: number,
|
2018-07-20 08:35:18 -04:00
|
|
|
sort?: string,
|
2021-07-06 09:22:51 -04:00
|
|
|
query: { nsfw?: BooleanBothQuery } = {}
|
2018-04-25 04:21:38 -04:00
|
|
|
) {
|
2018-08-17 09:45:42 -04:00
|
|
|
const path = '/api/v1/video-channels/' + videoChannelName + '/videos'
|
2018-04-25 04:21:38 -04:00
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
2021-07-13 03:43:59 -04:00
|
|
|
query: { ...query, start, count, sort },
|
2018-04-25 04:21:38 -04:00
|
|
|
token: accessToken,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2018-04-25 04:21:38 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-08 08:15:16 -05:00
|
|
|
function getVideosListPagination (url: string, start: number, count: number, sort?: string, skipCount?: boolean) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
const req = request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
|
|
|
|
|
|
|
if (sort) req.query({ sort })
|
2020-01-08 08:15:16 -05:00
|
|
|
if (skipCount) req.query({ skipCount })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
return req.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-09-04 15:21:47 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVideosListSort (url: string, sort: string) {
|
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ sort: sort })
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-09-04 15:21:47 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2021-05-03 05:06:19 -04:00
|
|
|
function getVideosWithFilters (url: string, query: VideosCommonQuery) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos'
|
|
|
|
|
|
|
|
return request(url)
|
2018-07-19 10:17:54 -04:00
|
|
|
.get(path)
|
2018-07-20 08:35:18 -04:00
|
|
|
.query(query)
|
2017-12-05 11:46:33 -05:00
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-12-05 11:46:33 -05:00
|
|
|
.expect('Content-Type', /json/)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function removeVideo (url: string, token: string, id: number | string, expectedStatus = HttpStatusCode.NO_CONTENT_204) {
|
2018-04-19 05:01:34 -04:00
|
|
|
const path = '/api/v1/videos'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
return request(url)
|
2018-07-20 08:35:18 -04:00
|
|
|
.delete(path + '/' + id)
|
2017-09-04 15:21:47 -04:00
|
|
|
.set('Accept', 'application/json')
|
2018-07-20 08:35:18 -04:00
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.expect(expectedStatus)
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
async function removeAllVideos (server: ServerInfo) {
|
|
|
|
const resVideos = await getVideosList(server.url)
|
|
|
|
|
|
|
|
for (const v of resVideos.body.data) {
|
|
|
|
await removeVideo(server.url, server.accessToken, v.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 10:43:57 -04:00
|
|
|
async function checkVideoFilesWereRemoved (
|
|
|
|
videoUUID: string,
|
2021-07-13 03:43:59 -04:00
|
|
|
server: ServerInfo,
|
2019-01-29 02:37:25 -05:00
|
|
|
directories = [
|
|
|
|
'redundancy',
|
|
|
|
'videos',
|
|
|
|
'thumbnails',
|
|
|
|
'torrents',
|
|
|
|
'previews',
|
|
|
|
'captions',
|
|
|
|
join('playlists', 'hls'),
|
|
|
|
join('redundancy', 'hls')
|
|
|
|
]
|
2018-10-03 10:43:57 -04:00
|
|
|
) {
|
|
|
|
for (const directory of directories) {
|
2021-07-13 03:43:59 -04:00
|
|
|
const directoryPath = server.serversCommand.buildDirectory(directory)
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
const directoryExists = await pathExists(directoryPath)
|
|
|
|
if (directoryExists === false) continue
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2018-08-27 10:23:34 -04:00
|
|
|
const files = await readdir(directoryPath)
|
2018-01-18 04:53:54 -05:00
|
|
|
for (const file of files) {
|
2021-02-01 05:18:50 -05:00
|
|
|
expect(file, `File ${file} should not exist in ${directoryPath}`).to.not.contain(videoUUID)
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
async function uploadVideo (
|
|
|
|
url: string,
|
|
|
|
accessToken: string,
|
|
|
|
videoAttributesArg: VideoAttributes,
|
|
|
|
specialStatus = HttpStatusCode.OK_200,
|
|
|
|
mode: 'legacy' | 'resumable' = 'legacy'
|
|
|
|
) {
|
2017-10-24 13:41:30 -04:00
|
|
|
let defaultChannelId = '1'
|
|
|
|
|
|
|
|
try {
|
2021-07-13 08:23:01 -04:00
|
|
|
const res = await xxxgetMyUserInformation(url, accessToken)
|
2017-10-24 13:41:30 -04:00
|
|
|
defaultChannelId = res.body.videoChannels[0].id
|
|
|
|
} catch (e) { /* empty */ }
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-02-13 12:17:05 -05:00
|
|
|
// Override default attributes
|
|
|
|
const attributes = Object.assign({
|
2017-09-04 15:21:47 -04:00
|
|
|
name: 'my super video',
|
|
|
|
category: 5,
|
|
|
|
licence: 4,
|
2018-04-23 08:39:52 -04:00
|
|
|
language: 'zh',
|
2017-10-24 13:41:30 -04:00
|
|
|
channelId: defaultChannelId,
|
2017-09-04 15:21:47 -04:00
|
|
|
nsfw: true,
|
2018-06-12 14:04:58 -04:00
|
|
|
waitTranscoding: false,
|
2017-09-04 15:21:47 -04:00
|
|
|
description: 'my super description',
|
2018-02-15 08:46:26 -05:00
|
|
|
support: 'my super support text',
|
2017-09-04 15:21:47 -04:00
|
|
|
tags: [ 'tag' ],
|
2017-10-31 10:20:35 -04:00
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2017-09-04 15:21:47 -04:00
|
|
|
fixture: 'video_short.webm'
|
2018-02-13 12:17:05 -05:00
|
|
|
}, videoAttributesArg)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
const res = mode === 'legacy'
|
|
|
|
? await buildLegacyUpload(url, accessToken, attributes, specialStatus)
|
|
|
|
: await buildResumeUpload(url, accessToken, attributes, specialStatus)
|
|
|
|
|
|
|
|
// Wait torrent generation
|
|
|
|
if (specialStatus === HttpStatusCode.OK_200) {
|
|
|
|
let video: VideoDetails
|
|
|
|
do {
|
|
|
|
const resVideo = await getVideoWithToken(url, accessToken, res.body.video.uuid)
|
|
|
|
video = resVideo.body
|
|
|
|
|
|
|
|
await wait(50)
|
|
|
|
} while (!video.files[0].torrentUrl)
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkUploadVideoParam (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
|
|
|
attributes: Partial<VideoAttributes>,
|
|
|
|
specialStatus = HttpStatusCode.OK_200,
|
|
|
|
mode: 'legacy' | 'resumable' = 'legacy'
|
|
|
|
) {
|
|
|
|
return mode === 'legacy'
|
|
|
|
? buildLegacyUpload(url, token, attributes, specialStatus)
|
|
|
|
: buildResumeUpload(url, token, attributes, specialStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function buildLegacyUpload (url: string, token: string, attributes: VideoAttributes, specialStatus = HttpStatusCode.OK_200) {
|
|
|
|
const path = '/api/v1/videos/upload'
|
2017-09-04 15:21:47 -04:00
|
|
|
const req = request(url)
|
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
2021-05-10 05:13:41 -04:00
|
|
|
.set('Authorization', 'Bearer ' + token)
|
2019-06-11 04:39:30 -04:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
buildUploadReq(req, attributes)
|
2017-09-07 11:58:09 -04:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
if (attributes.fixture !== undefined) {
|
|
|
|
req.attach('videofile', buildAbsoluteFixturePath(attributes.fixture))
|
2018-02-15 08:46:26 -05:00
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
return req.expect(specialStatus)
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
async function buildResumeUpload (url: string, token: string, attributes: VideoAttributes, specialStatus = HttpStatusCode.OK_200) {
|
|
|
|
let size = 0
|
|
|
|
let videoFilePath: string
|
|
|
|
let mimetype = 'video/mp4'
|
2018-06-14 12:06:56 -04:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
if (attributes.fixture) {
|
|
|
|
videoFilePath = buildAbsoluteFixturePath(attributes.fixture)
|
|
|
|
size = (await stat(videoFilePath)).size
|
|
|
|
|
|
|
|
if (videoFilePath.endsWith('.mkv')) {
|
|
|
|
mimetype = 'video/x-matroska'
|
|
|
|
} else if (videoFilePath.endsWith('.webm')) {
|
|
|
|
mimetype = 'video/webm'
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
const initializeSessionRes = await prepareResumableUpload({ url, token, attributes, size, mimetype })
|
|
|
|
const initStatus = initializeSessionRes.status
|
|
|
|
|
|
|
|
if (videoFilePath && initStatus === HttpStatusCode.CREATED_201) {
|
|
|
|
const locationHeader = initializeSessionRes.header['location']
|
|
|
|
expect(locationHeader).to.not.be.undefined
|
|
|
|
|
|
|
|
const pathUploadId = locationHeader.split('?')[1]
|
|
|
|
|
|
|
|
return sendResumableChunks({ url, token, pathUploadId, videoFilePath, size, specialStatus })
|
2019-01-05 13:55:40 -05:00
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
const expectedInitStatus = specialStatus === HttpStatusCode.OK_200
|
|
|
|
? HttpStatusCode.CREATED_201
|
|
|
|
: specialStatus
|
2021-02-25 07:56:07 -05:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
expect(initStatus).to.equal(expectedInitStatus)
|
2021-02-25 07:56:07 -05:00
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
return initializeSessionRes
|
|
|
|
}
|
|
|
|
|
|
|
|
async function prepareResumableUpload (options: {
|
|
|
|
url: string
|
|
|
|
token: string
|
|
|
|
attributes: VideoAttributes
|
|
|
|
size: number
|
|
|
|
mimetype: string
|
|
|
|
}) {
|
|
|
|
const { url, token, attributes, size, mimetype } = options
|
|
|
|
|
|
|
|
const path = '/api/v1/videos/upload-resumable'
|
|
|
|
|
|
|
|
const req = request(url)
|
|
|
|
.post(path)
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.set('X-Upload-Content-Type', mimetype)
|
|
|
|
.set('X-Upload-Content-Length', size.toString())
|
|
|
|
|
|
|
|
buildUploadReq(req, attributes)
|
|
|
|
|
|
|
|
if (attributes.fixture) {
|
|
|
|
req.field('filename', attributes.fixture)
|
2021-02-25 07:56:07 -05:00
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
return req
|
|
|
|
}
|
|
|
|
|
|
|
|
function sendResumableChunks (options: {
|
|
|
|
url: string
|
|
|
|
token: string
|
|
|
|
pathUploadId: string
|
|
|
|
videoFilePath: string
|
|
|
|
size: number
|
|
|
|
specialStatus?: HttpStatusCode
|
|
|
|
contentLength?: number
|
|
|
|
contentRangeBuilder?: (start: number, chunk: any) => string
|
|
|
|
}) {
|
|
|
|
const { url, token, pathUploadId, videoFilePath, size, specialStatus, contentLength, contentRangeBuilder } = options
|
|
|
|
|
|
|
|
const expectedStatus = specialStatus || HttpStatusCode.OK_200
|
|
|
|
|
|
|
|
const path = '/api/v1/videos/upload-resumable'
|
|
|
|
let start = 0
|
|
|
|
|
|
|
|
const readable = createReadStream(videoFilePath, { highWaterMark: 8 * 1024 })
|
|
|
|
return new Promise<GotResponse>((resolve, reject) => {
|
|
|
|
readable.on('data', async function onData (chunk) {
|
|
|
|
readable.pause()
|
|
|
|
|
|
|
|
const headers = {
|
|
|
|
'Authorization': 'Bearer ' + token,
|
|
|
|
'Content-Type': 'application/octet-stream',
|
|
|
|
'Content-Range': contentRangeBuilder
|
|
|
|
? contentRangeBuilder(start, chunk)
|
|
|
|
: `bytes ${start}-${start + chunk.length - 1}/${size}`,
|
|
|
|
'Content-Length': contentLength ? contentLength + '' : chunk.length + ''
|
|
|
|
}
|
|
|
|
|
|
|
|
const res = await got({
|
|
|
|
url,
|
|
|
|
method: 'put',
|
|
|
|
headers,
|
|
|
|
path: path + '?' + pathUploadId,
|
|
|
|
body: chunk,
|
|
|
|
responseType: 'json',
|
|
|
|
throwHttpErrors: false
|
|
|
|
})
|
|
|
|
|
|
|
|
start += chunk.length
|
|
|
|
|
|
|
|
if (res.statusCode === expectedStatus) {
|
|
|
|
return resolve(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res.statusCode !== HttpStatusCode.PERMANENT_REDIRECT_308) {
|
|
|
|
readable.off('data', onData)
|
|
|
|
return reject(new Error('Incorrect transient behaviour sending intermediary chunks'))
|
|
|
|
}
|
|
|
|
|
|
|
|
readable.resume()
|
|
|
|
})
|
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function updateVideo (
|
|
|
|
url: string,
|
|
|
|
accessToken: string,
|
|
|
|
id: number | string,
|
|
|
|
attributes: VideoAttributes,
|
|
|
|
statusCodeExpected = HttpStatusCode.NO_CONTENT_204
|
|
|
|
) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos/' + id
|
|
|
|
const body = {}
|
|
|
|
|
|
|
|
if (attributes.name) body['name'] = attributes.name
|
|
|
|
if (attributes.category) body['category'] = attributes.category
|
|
|
|
if (attributes.licence) body['licence'] = attributes.licence
|
|
|
|
if (attributes.language) body['language'] = attributes.language
|
2018-01-03 04:12:36 -05:00
|
|
|
if (attributes.nsfw !== undefined) body['nsfw'] = JSON.stringify(attributes.nsfw)
|
|
|
|
if (attributes.commentsEnabled !== undefined) body['commentsEnabled'] = JSON.stringify(attributes.commentsEnabled)
|
2018-10-08 08:45:22 -04:00
|
|
|
if (attributes.downloadEnabled !== undefined) body['downloadEnabled'] = JSON.stringify(attributes.downloadEnabled)
|
2019-02-11 08:41:55 -05:00
|
|
|
if (attributes.originallyPublishedAt !== undefined) body['originallyPublishedAt'] = attributes.originallyPublishedAt
|
2017-09-04 15:21:47 -04:00
|
|
|
if (attributes.description) body['description'] = attributes.description
|
|
|
|
if (attributes.tags) body['tags'] = attributes.tags
|
2017-10-31 10:20:35 -04:00
|
|
|
if (attributes.privacy) body['privacy'] = attributes.privacy
|
2018-05-11 09:10:13 -04:00
|
|
|
if (attributes.channelId) body['channelId'] = attributes.channelId
|
2018-06-14 12:06:56 -04:00
|
|
|
if (attributes.scheduleUpdate) body['scheduleUpdate'] = attributes.scheduleUpdate
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-02-13 12:17:05 -05:00
|
|
|
// Upload request
|
|
|
|
if (attributes.thumbnailfile || attributes.previewfile) {
|
|
|
|
const attaches: any = {}
|
|
|
|
if (attributes.thumbnailfile) attaches.thumbnailfile = attributes.thumbnailfile
|
|
|
|
if (attributes.previewfile) attaches.previewfile = attributes.previewfile
|
|
|
|
|
|
|
|
return makeUploadRequest({
|
|
|
|
url,
|
|
|
|
method: 'PUT',
|
|
|
|
path,
|
|
|
|
token: accessToken,
|
|
|
|
fields: body,
|
|
|
|
attaches,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return makePutBodyRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
fields: body,
|
|
|
|
token: accessToken,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|
|
|
|
|
2021-02-26 10:26:27 -05:00
|
|
|
function rateVideo (url: string, accessToken: string, id: number | string, rating: string, specialStatus = HttpStatusCode.NO_CONTENT_204) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos/' + id + '/rate'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.put(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + accessToken)
|
|
|
|
.send({ rating })
|
|
|
|
.expect(specialStatus)
|
|
|
|
}
|
|
|
|
|
2017-10-09 05:06:13 -04:00
|
|
|
function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) {
|
2017-09-07 09:27:35 -04:00
|
|
|
return new Promise<any>((res, rej) => {
|
2017-10-09 05:06:13 -04:00
|
|
|
const torrentName = videoUUID + '-' + resolution + '.torrent'
|
2021-07-13 03:43:59 -04:00
|
|
|
const torrentPath = server.serversCommand.buildDirectory(join('torrents', torrentName))
|
2020-11-24 09:22:56 -05:00
|
|
|
|
2017-09-07 09:27:35 -04:00
|
|
|
readFile(torrentPath, (err, data) => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
|
|
|
|
return res(parseTorrent(data))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
async function completeVideoCheck (
|
|
|
|
url: string,
|
|
|
|
video: any,
|
|
|
|
attributes: {
|
|
|
|
name: string
|
|
|
|
category: number
|
|
|
|
licence: number
|
2018-04-23 08:39:52 -04:00
|
|
|
language: string
|
2017-12-29 04:46:27 -05:00
|
|
|
nsfw: boolean
|
2018-01-03 04:12:36 -05:00
|
|
|
commentsEnabled: boolean
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: boolean
|
2017-12-29 04:46:27 -05:00
|
|
|
description: string
|
2018-05-28 12:50:44 -04:00
|
|
|
publishedAt?: string
|
2018-02-15 08:46:26 -05:00
|
|
|
support: string
|
2020-01-31 10:56:52 -05:00
|
|
|
originallyPublishedAt?: string
|
2018-03-12 06:06:15 -04:00
|
|
|
account: {
|
|
|
|
name: string
|
|
|
|
host: string
|
|
|
|
}
|
2018-08-22 05:51:39 -04:00
|
|
|
isLocal: boolean
|
|
|
|
tags: string[]
|
|
|
|
privacy: number
|
|
|
|
likes?: number
|
|
|
|
dislikes?: number
|
|
|
|
duration: number
|
2017-12-29 04:46:27 -05:00
|
|
|
channel: {
|
2018-08-22 05:51:39 -04:00
|
|
|
displayName: string
|
|
|
|
name: string
|
2017-12-29 05:51:55 -05:00
|
|
|
description
|
2017-12-29 04:46:27 -05:00
|
|
|
isLocal: boolean
|
|
|
|
}
|
2018-08-22 05:51:39 -04:00
|
|
|
fixture: string
|
2017-12-29 04:46:27 -05:00
|
|
|
files: {
|
|
|
|
resolution: number
|
|
|
|
size: number
|
2020-01-31 10:56:52 -05:00
|
|
|
}[]
|
2018-02-13 12:17:05 -05:00
|
|
|
thumbnailfile?: string
|
|
|
|
previewfile?: string
|
2017-12-29 04:46:27 -05:00
|
|
|
}
|
|
|
|
) {
|
2017-12-29 05:51:55 -05:00
|
|
|
if (!attributes.likes) attributes.likes = 0
|
|
|
|
if (!attributes.dislikes) attributes.dislikes = 0
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
const host = new URL(url).host
|
|
|
|
const originHost = attributes.account.host
|
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.name).to.equal(attributes.name)
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.category.id).to.equal(attributes.category)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.category.label).to.equal(attributes.category !== null ? VIDEO_CATEGORIES[attributes.category] : 'Misc')
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.licence.id).to.equal(attributes.licence)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.licence.label).to.equal(attributes.licence !== null ? VIDEO_LICENCES[attributes.licence] : 'Unknown')
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(video.language.id).to.equal(attributes.language)
|
2018-04-23 08:39:52 -04:00
|
|
|
expect(video.language.label).to.equal(attributes.language !== null ? VIDEO_LANGUAGES[attributes.language] : 'Unknown')
|
2018-04-19 08:52:10 -04:00
|
|
|
expect(video.privacy.id).to.deep.equal(attributes.privacy)
|
|
|
|
expect(video.privacy.label).to.deep.equal(VIDEO_PRIVACIES[attributes.privacy])
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.nsfw).to.equal(attributes.nsfw)
|
|
|
|
expect(video.description).to.equal(attributes.description)
|
2018-04-25 08:32:19 -04:00
|
|
|
expect(video.account.id).to.be.a('number')
|
2018-03-12 06:06:15 -04:00
|
|
|
expect(video.account.host).to.equal(attributes.account.host)
|
|
|
|
expect(video.account.name).to.equal(attributes.account.name)
|
2018-08-22 05:51:39 -04:00
|
|
|
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
|
|
|
|
expect(video.channel.name).to.equal(attributes.channel.name)
|
2017-12-29 05:51:55 -05:00
|
|
|
expect(video.likes).to.equal(attributes.likes)
|
|
|
|
expect(video.dislikes).to.equal(attributes.dislikes)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(video.isLocal).to.equal(attributes.isLocal)
|
2017-12-29 05:51:55 -05:00
|
|
|
expect(video.duration).to.equal(attributes.duration)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(dateIsValid(video.createdAt)).to.be.true
|
2018-04-04 04:21:36 -04:00
|
|
|
expect(dateIsValid(video.publishedAt)).to.be.true
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(dateIsValid(video.updatedAt)).to.be.true
|
|
|
|
|
2018-05-28 12:50:44 -04:00
|
|
|
if (attributes.publishedAt) {
|
|
|
|
expect(video.publishedAt).to.equal(attributes.publishedAt)
|
|
|
|
}
|
|
|
|
|
2019-02-11 08:41:55 -05:00
|
|
|
if (attributes.originallyPublishedAt) {
|
|
|
|
expect(video.originallyPublishedAt).to.equal(attributes.originallyPublishedAt)
|
|
|
|
} else {
|
|
|
|
expect(video.originallyPublishedAt).to.be.null
|
|
|
|
}
|
|
|
|
|
2018-01-31 10:42:40 -05:00
|
|
|
const res = await getVideo(url, video.uuid)
|
2018-05-11 09:10:13 -04:00
|
|
|
const videoDetails: VideoDetails = res.body
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
expect(videoDetails.files).to.have.lengthOf(attributes.files.length)
|
|
|
|
expect(videoDetails.tags).to.deep.equal(attributes.tags)
|
2018-03-12 06:29:46 -04:00
|
|
|
expect(videoDetails.account.name).to.equal(attributes.account.name)
|
|
|
|
expect(videoDetails.account.host).to.equal(attributes.account.host)
|
2018-08-22 05:51:39 -04:00
|
|
|
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
|
|
|
|
expect(video.channel.name).to.equal(attributes.channel.name)
|
2018-05-11 09:10:13 -04:00
|
|
|
expect(videoDetails.channel.host).to.equal(attributes.account.host)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(videoDetails.channel.isLocal).to.equal(attributes.channel.isLocal)
|
2018-05-11 09:10:13 -04:00
|
|
|
expect(dateIsValid(videoDetails.channel.createdAt.toString())).to.be.true
|
|
|
|
expect(dateIsValid(videoDetails.channel.updatedAt.toString())).to.be.true
|
|
|
|
expect(videoDetails.commentsEnabled).to.equal(attributes.commentsEnabled)
|
2018-10-08 08:45:22 -04:00
|
|
|
expect(videoDetails.downloadEnabled).to.equal(attributes.downloadEnabled)
|
2017-12-29 04:46:27 -05:00
|
|
|
|
|
|
|
for (const attributeFile of attributes.files) {
|
2018-03-19 07:36:41 -04:00
|
|
|
const file = videoDetails.files.find(f => f.resolution.id === attributeFile.resolution)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(file).not.to.be.undefined
|
|
|
|
|
2021-06-08 03:33:03 -04:00
|
|
|
let extension = getLowercaseExtension(attributes.fixture)
|
2019-04-26 02:50:52 -04:00
|
|
|
// Transcoding enabled: extension will always be .mp4
|
|
|
|
if (attributes.files.length > 1) extension = '.mp4'
|
2017-12-29 05:51:55 -05:00
|
|
|
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(file.magnetUri).to.have.lengthOf.above(2)
|
2021-02-16 10:25:53 -05:00
|
|
|
|
|
|
|
expect(file.torrentDownloadUrl).to.equal(`http://${host}/download/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
|
|
|
|
expect(file.torrentUrl).to.equal(`http://${host}/lazy-static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
|
|
|
|
|
|
|
|
expect(file.fileUrl).to.equal(`http://${originHost}/static/webseed/${videoDetails.uuid}-${file.resolution.id}${extension}`)
|
|
|
|
expect(file.fileDownloadUrl).to.equal(`http://${originHost}/download/videos/${videoDetails.uuid}-${file.resolution.id}${extension}`)
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
makeRawRequest(file.torrentUrl, 200),
|
|
|
|
makeRawRequest(file.torrentDownloadUrl, 200),
|
|
|
|
makeRawRequest(file.metadataUrl, 200),
|
|
|
|
// Backward compatibility
|
|
|
|
makeRawRequest(`http://${originHost}/static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`, 200)
|
|
|
|
])
|
|
|
|
|
2018-03-19 06:04:40 -04:00
|
|
|
expect(file.resolution.id).to.equal(attributeFile.resolution)
|
|
|
|
expect(file.resolution.label).to.equal(attributeFile.resolution + 'p')
|
2017-12-29 05:51:55 -05:00
|
|
|
|
|
|
|
const minSize = attributeFile.size - ((10 * attributeFile.size) / 100)
|
|
|
|
const maxSize = attributeFile.size + ((10 * attributeFile.size) / 100)
|
2020-01-31 10:56:52 -05:00
|
|
|
expect(
|
|
|
|
file.size,
|
|
|
|
'File size for resolution ' + file.resolution.label + ' outside confidence interval (' + minSize + '> size <' + maxSize + ')'
|
|
|
|
).to.be.above(minSize).and.below(maxSize)
|
2017-12-29 04:46:27 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const torrent = await webtorrentAdd(file.magnetUri, true)
|
2017-12-29 04:46:27 -05:00
|
|
|
expect(torrent.files).to.be.an('array')
|
|
|
|
expect(torrent.files.length).to.equal(1)
|
|
|
|
expect(torrent.files[0].path).to.exist.and.to.not.equal('')
|
|
|
|
}
|
2020-01-23 08:23:19 -05:00
|
|
|
|
2021-06-02 04:41:46 -04:00
|
|
|
expect(videoDetails.thumbnailPath).to.exist
|
2020-01-23 08:23:19 -05:00
|
|
|
await testImage(url, attributes.thumbnailfile || attributes.fixture, videoDetails.thumbnailPath)
|
|
|
|
|
|
|
|
if (attributes.previewfile) {
|
2021-06-02 04:41:46 -04:00
|
|
|
expect(videoDetails.previewPath).to.exist
|
2020-01-23 08:23:19 -05:00
|
|
|
await testImage(url, attributes.previewfile, videoDetails.previewPath)
|
|
|
|
}
|
2017-12-29 04:46:27 -05:00
|
|
|
}
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
async function videoUUIDToId (url: string, id: number | string) {
|
|
|
|
if (validator.isUUID('' + id) === false) return id
|
|
|
|
|
|
|
|
const res = await getVideo(url, id)
|
|
|
|
return res.body.id
|
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
async function uploadVideoAndGetId (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
server: ServerInfo
|
|
|
|
videoName: string
|
|
|
|
nsfw?: boolean
|
|
|
|
privacy?: VideoPrivacy
|
2020-01-10 04:11:28 -05:00
|
|
|
token?: string
|
2021-01-29 09:31:31 -05:00
|
|
|
fixture?: string
|
2020-01-10 04:11:28 -05:00
|
|
|
}) {
|
2019-03-05 04:58:44 -05:00
|
|
|
const videoAttrs: any = { name: options.videoName }
|
|
|
|
if (options.nsfw) videoAttrs.nsfw = options.nsfw
|
2020-01-10 04:11:28 -05:00
|
|
|
if (options.privacy) videoAttrs.privacy = options.privacy
|
2021-01-29 09:31:31 -05:00
|
|
|
if (options.fixture) videoAttrs.fixture = options.fixture
|
2019-03-05 04:58:44 -05:00
|
|
|
|
|
|
|
const res = await uploadVideo(options.server.url, options.token || options.server.accessToken, videoAttrs)
|
|
|
|
|
2021-06-28 11:30:59 -04:00
|
|
|
return res.body.video as { id: number, uuid: string, shortUUID: string }
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
async function getLocalIdByUUID (url: string, uuid: string) {
|
|
|
|
const res = await getVideo(url, uuid)
|
|
|
|
|
|
|
|
return res.body.id
|
|
|
|
}
|
|
|
|
|
2020-06-16 09:52:05 -04:00
|
|
|
// serverNumber starts from 1
|
|
|
|
async function uploadRandomVideoOnServers (servers: ServerInfo[], serverNumber: number, additionalParams: any = {}) {
|
|
|
|
const server = servers.find(s => s.serverNumber === serverNumber)
|
|
|
|
const res = await uploadRandomVideo(server, false, additionalParams)
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
async function uploadRandomVideo (server: ServerInfo, wait = true, additionalParams: any = {}) {
|
|
|
|
const prefixName = additionalParams.prefixName || ''
|
2021-06-28 11:30:59 -04:00
|
|
|
const name = prefixName + buildUUID()
|
2020-06-16 09:52:05 -04:00
|
|
|
|
|
|
|
const data = Object.assign({ name }, additionalParams)
|
|
|
|
const res = await uploadVideo(server.url, server.accessToken, data)
|
|
|
|
|
|
|
|
if (wait) await waitJobs([ server ])
|
|
|
|
|
|
|
|
return { uuid: res.body.video.uuid, name }
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2017-10-30 05:16:27 -04:00
|
|
|
getVideoDescription,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideoCategories,
|
2020-06-16 09:52:05 -04:00
|
|
|
uploadRandomVideo,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideoLicences,
|
2019-03-05 04:58:44 -05:00
|
|
|
videoUUIDToId,
|
2017-10-31 10:20:35 -04:00
|
|
|
getVideoPrivacies,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideoLanguages,
|
2017-10-31 10:20:35 -04:00
|
|
|
getMyVideos,
|
2018-04-25 04:21:38 -04:00
|
|
|
getAccountVideos,
|
|
|
|
getVideoChannelVideos,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideo,
|
2020-03-10 09:39:40 -04:00
|
|
|
getVideoFileMetadataUrl,
|
2017-10-31 10:20:35 -04:00
|
|
|
getVideoWithToken,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideosList,
|
2020-11-04 08:16:57 -05:00
|
|
|
removeAllVideos,
|
2021-05-10 05:13:41 -04:00
|
|
|
checkUploadVideoParam,
|
2017-09-04 15:21:47 -04:00
|
|
|
getVideosListPagination,
|
|
|
|
getVideosListSort,
|
|
|
|
removeVideo,
|
2018-04-19 05:01:34 -04:00
|
|
|
getVideosListWithToken,
|
2017-09-04 15:21:47 -04:00
|
|
|
uploadVideo,
|
2021-05-10 05:13:41 -04:00
|
|
|
sendResumableChunks,
|
2018-07-20 08:35:18 -04:00
|
|
|
getVideosWithFilters,
|
2020-06-16 09:52:05 -04:00
|
|
|
uploadRandomVideoOnServers,
|
2017-09-04 15:21:47 -04:00
|
|
|
updateVideo,
|
2017-09-07 09:27:35 -04:00
|
|
|
rateVideo,
|
2017-11-30 03:21:11 -05:00
|
|
|
viewVideo,
|
2017-12-29 04:46:27 -05:00
|
|
|
parseTorrentVideo,
|
2018-03-13 05:24:28 -04:00
|
|
|
getLocalVideos,
|
2018-01-18 04:53:54 -05:00
|
|
|
completeVideoCheck,
|
2019-02-26 04:55:40 -05:00
|
|
|
checkVideoFilesWereRemoved,
|
2021-05-03 05:06:19 -04:00
|
|
|
getMyVideosWithFilter,
|
2020-01-10 04:11:28 -05:00
|
|
|
uploadVideoAndGetId,
|
2020-05-22 11:06:26 -04:00
|
|
|
getLocalIdByUUID,
|
2021-05-10 05:13:41 -04:00
|
|
|
getVideoIdFromUUID,
|
|
|
|
prepareResumableUpload
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function buildUploadReq (req: request.Test, attributes: VideoAttributes) {
|
|
|
|
|
|
|
|
for (const key of [ 'name', 'support', 'channelId', 'description', 'originallyPublishedAt' ]) {
|
|
|
|
if (attributes[key] !== undefined) {
|
|
|
|
req.field(key, attributes[key])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const key of [ 'nsfw', 'commentsEnabled', 'downloadEnabled', 'waitTranscoding' ]) {
|
|
|
|
if (attributes[key] !== undefined) {
|
|
|
|
req.field(key, JSON.stringify(attributes[key]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const key of [ 'language', 'privacy', 'category', 'licence' ]) {
|
|
|
|
if (attributes[key] !== undefined) {
|
|
|
|
req.field(key, attributes[key].toString())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const tags = attributes.tags || []
|
|
|
|
for (let i = 0; i < tags.length; i++) {
|
|
|
|
req.field('tags[' + i + ']', attributes.tags[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const key of [ 'thumbnailfile', 'previewfile' ]) {
|
|
|
|
if (attributes[key] !== undefined) {
|
|
|
|
req.attach(key, buildAbsoluteFixturePath(attributes[key]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attributes.scheduleUpdate) {
|
|
|
|
if (attributes.scheduleUpdate.updateAt) {
|
|
|
|
req.field('scheduleUpdate[updateAt]', attributes.scheduleUpdate.updateAt)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attributes.scheduleUpdate.privacy) {
|
|
|
|
req.field('scheduleUpdate[privacy]', attributes.scheduleUpdate.privacy)
|
|
|
|
}
|
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|