1
0
Fork 0
peertube/shared/utils/videos/videos.ts

578 lines
17 KiB
TypeScript
Raw Normal View History

2017-12-29 09:46:27 +00:00
/* tslint:disable:no-unused-expression */
import { expect } from 'chai'
2018-08-27 14:23:34 +00:00
import { existsSync, readdir, readFile } from 'fs-extra'
2017-09-07 13:27:35 +00:00
import * as parseTorrent from 'parse-torrent'
2018-02-14 14:56:07 +00:00
import { extname, join } from 'path'
2017-12-28 12:59:22 +00:00
import * as request from 'supertest'
import {
buildAbsoluteFixturePath,
2018-08-27 14:23:34 +00:00
getMyUserInformation,
immutableAssign,
makeGetRequest,
makePutBodyRequest,
makeUploadRequest,
root,
ServerInfo,
testImage
} from '../'
2018-10-29 17:06:09 +00:00
import { VideoDetails, VideoPrivacy } from '../../models/videos'
import { VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../server/initializers/constants'
2018-11-19 16:08:18 +00:00
import { dateIsValid, webtorrentAdd } from '../miscs/miscs'
2017-09-04 19:21:47 +00:00
type VideoAttributes = {
name?: string
category?: number
licence?: number
2018-04-23 12:39:52 +00:00
language?: string
2017-09-04 19:21:47 +00:00
nsfw?: boolean
2018-01-03 09:12:36 +00:00
commentsEnabled?: boolean
waitTranscoding?: boolean
2017-09-04 19:21:47 +00:00
description?: string
tags?: string[]
2017-10-24 17:41:30 +00:00
channelId?: number
privacy?: VideoPrivacy
2017-09-04 19:21:47 +00:00
fixture?: string
thumbnailfile?: string
previewfile?: string
scheduleUpdate?: {
updateAt: string
privacy?: VideoPrivacy
}
2017-09-04 19:21:47 +00:00
}
function getVideoCategories (url: string) {
const path = '/api/v1/videos/categories'
2017-12-28 13:29:57 +00:00
return makeGetRequest({
url,
2017-12-28 16:25:10 +00:00
path,
statusCodeExpected: 200
2017-12-28 13:29:57 +00:00
})
2017-09-04 19:21:47 +00:00
}
function getVideoLicences (url: string) {
const path = '/api/v1/videos/licences'
2017-12-28 13:29:57 +00:00
return makeGetRequest({
url,
2017-12-28 16:25:10 +00:00
path,
statusCodeExpected: 200
2017-12-28 13:29:57 +00:00
})
2017-09-04 19:21:47 +00:00
}
function getVideoLanguages (url: string) {
const path = '/api/v1/videos/languages'
2017-12-28 13:29:57 +00:00
return makeGetRequest({
url,
2017-12-28 16:25:10 +00:00
path,
statusCodeExpected: 200
2017-12-28 13:29:57 +00:00
})
2017-09-04 19:21:47 +00:00
}
function getVideoPrivacies (url: string) {
const path = '/api/v1/videos/privacies'
2017-12-28 13:29:57 +00:00
return makeGetRequest({
url,
2017-12-28 16:25:10 +00:00
path,
statusCodeExpected: 200
2017-12-28 13:29:57 +00:00
})
}
function getVideo (url: string, id: number | string, expectedStatus = 200) {
2017-09-04 19:21:47 +00:00
const path = '/api/v1/videos/' + id
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(expectedStatus)
}
2018-03-29 08:58:24 +00:00
function viewVideo (url: string, id: number | string, expectedStatus = 204, xForwardedFor?: string) {
2017-11-30 08:21:11 +00:00
const path = '/api/v1/videos/' + id + '/views'
2018-03-29 08:58:24 +00:00
const req = request(url)
2017-11-30 08:21:11 +00:00
.post(path)
.set('Accept', 'application/json')
2018-03-29 08:58:24 +00:00
if (xForwardedFor) {
req.set('X-Forwarded-For', xForwardedFor)
}
return req.expect(expectedStatus)
2017-11-30 08:21:11 +00:00
}
function getVideoWithToken (url: string, token: string, id: number | string, expectedStatus = 200) {
const path = '/api/v1/videos/' + id
return request(url)
.get(path)
.set('Authorization', 'Bearer ' + token)
.set('Accept', 'application/json')
.expect(expectedStatus)
2017-09-04 19:21:47 +00:00
}
2017-10-30 09:16:27 +00:00
function getVideoDescription (url: string, descriptionPath: string) {
return request(url)
.get(descriptionPath)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
2017-09-04 19:21:47 +00:00
function getVideosList (url: string) {
const path = '/api/v1/videos'
return request(url)
.get(path)
.query({ sort: 'name' })
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
2018-07-20 12:35:18 +00:00
function getVideosListWithToken (url: string, token: string, query: { nsfw?: boolean } = {}) {
const path = '/api/v1/videos'
return request(url)
.get(path)
.set('Authorization', 'Bearer ' + token)
2018-07-20 12:35:18 +00:00
.query(immutableAssign(query, { sort: 'name' }))
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
2018-03-13 09:24:28 +00:00
function getLocalVideos (url: string) {
const path = '/api/v1/videos'
return request(url)
.get(path)
.query({ sort: 'name', filter: 'local' })
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
function getMyVideos (url: string, accessToken: string, start: number, count: number, sort?: string) {
const path = '/api/v1/users/me/videos'
const req = request(url)
.get(path)
.query({ start: start })
.query({ count: count })
if (sort) req.query({ sort })
return req.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
.expect(200)
.expect('Content-Type', /json/)
}
2018-07-20 12:35:18 +00:00
function getAccountVideos (
url: string,
accessToken: string,
accountName: string,
start: number,
count: number,
sort?: string,
query: { nsfw?: boolean } = {}
) {
2018-05-25 07:57:16 +00:00
const path = '/api/v1/accounts/' + accountName + '/videos'
2018-04-25 08:21:38 +00:00
return makeGetRequest({
url,
path,
2018-07-20 12:35:18 +00:00
query: immutableAssign(query, {
2018-04-25 08:21:38 +00:00
start,
count,
sort
2018-07-20 12:35:18 +00:00
}),
2018-04-25 08:21:38 +00:00
token: accessToken,
statusCodeExpected: 200
})
}
function getVideoChannelVideos (
url: string,
accessToken: string,
2018-08-17 13:45:42 +00:00
videoChannelName: string,
2018-04-25 08:21:38 +00:00
start: number,
count: number,
2018-07-20 12:35:18 +00:00
sort?: string,
query: { nsfw?: boolean } = {}
2018-04-25 08:21:38 +00:00
) {
2018-08-17 13:45:42 +00:00
const path = '/api/v1/video-channels/' + videoChannelName + '/videos'
2018-04-25 08:21:38 +00:00
return makeGetRequest({
url,
path,
2018-07-20 12:35:18 +00:00
query: immutableAssign(query, {
2018-04-25 08:21:38 +00:00
start,
count,
sort
2018-07-20 12:35:18 +00:00
}),
2018-04-25 08:21:38 +00:00
token: accessToken,
statusCodeExpected: 200
})
}
2017-09-04 19:21:47 +00:00
function getVideosListPagination (url: string, start: number, count: number, sort?: string) {
const path = '/api/v1/videos'
const req = request(url)
.get(path)
.query({ start: start })
.query({ count: count })
if (sort) req.query({ sort })
return req.set('Accept', 'application/json')
.expect(200)
.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')
.expect(200)
.expect('Content-Type', /json/)
}
2018-07-20 12:35:18 +00:00
function getVideosWithFilters (url: string, query: { tagsAllOf: string[], categoryOneOf: number[] | number }) {
2017-09-04 19:21:47 +00:00
const path = '/api/v1/videos'
return request(url)
2018-07-19 14:17:54 +00:00
.get(path)
2018-07-20 12:35:18 +00:00
.query(query)
2017-12-05 16:46:33 +00:00
.set('Accept', 'application/json')
2018-07-20 12:35:18 +00:00
.expect(200)
2017-12-05 16:46:33 +00:00
.expect('Content-Type', /json/)
2017-09-04 19:21:47 +00:00
}
2018-07-20 12:35:18 +00:00
function removeVideo (url: string, token: string, id: number | string, expectedStatus = 204) {
const path = '/api/v1/videos'
2017-09-04 19:21:47 +00:00
return request(url)
2018-07-20 12:35:18 +00:00
.delete(path + '/' + id)
2017-09-04 19:21:47 +00:00
.set('Accept', 'application/json')
2018-07-20 12:35:18 +00:00
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
2017-09-04 19:21:47 +00:00
}
2018-10-03 14:43:57 +00:00
async function checkVideoFilesWereRemoved (
videoUUID: string,
serverNumber: number,
2018-12-11 08:16:41 +00:00
directories = [ 'redundancy', 'videos', 'thumbnails', 'torrents', 'previews', 'captions' ]
2018-10-03 14:43:57 +00:00
) {
const testDirectory = 'test' + serverNumber
2018-10-03 14:43:57 +00:00
for (const directory of directories) {
const directoryPath = join(root(), testDirectory, directory)
const directoryExists = existsSync(directoryPath)
expect(directoryExists).to.be.true
2018-08-27 14:23:34 +00:00
const files = await readdir(directoryPath)
for (const file of files) {
expect(file).to.not.contain(videoUUID)
}
}
}
2017-12-08 09:08:36 +00:00
async function uploadVideo (url: string, accessToken: string, videoAttributesArg: VideoAttributes, specialStatus = 200) {
const path = '/api/v1/videos/upload'
2017-10-24 17:41:30 +00:00
let defaultChannelId = '1'
try {
const res = await getMyUserInformation(url, accessToken)
defaultChannelId = res.body.videoChannels[0].id
} catch (e) { /* empty */ }
2017-09-04 19:21:47 +00:00
// Override default attributes
const attributes = Object.assign({
2017-09-04 19:21:47 +00:00
name: 'my super video',
category: 5,
licence: 4,
2018-04-23 12:39:52 +00:00
language: 'zh',
2017-10-24 17:41:30 +00:00
channelId: defaultChannelId,
2017-09-04 19:21:47 +00:00
nsfw: true,
waitTranscoding: false,
2017-09-04 19:21:47 +00:00
description: 'my super description',
support: 'my super support text',
2017-09-04 19:21:47 +00:00
tags: [ 'tag' ],
privacy: VideoPrivacy.PUBLIC,
2018-01-03 09:12:36 +00:00
commentsEnabled: true,
2017-09-04 19:21:47 +00:00
fixture: 'video_short.webm'
}, videoAttributesArg)
2017-09-04 19:21:47 +00:00
const req = request(url)
.post(path)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
.field('name', attributes.name)
.field('nsfw', JSON.stringify(attributes.nsfw))
2018-01-03 09:12:36 +00:00
.field('commentsEnabled', JSON.stringify(attributes.commentsEnabled))
.field('waitTranscoding', JSON.stringify(attributes.waitTranscoding))
.field('privacy', attributes.privacy.toString())
2017-10-24 17:41:30 +00:00
.field('channelId', attributes.channelId)
2017-09-04 19:21:47 +00:00
2018-02-12 11:48:58 +00:00
if (attributes.description !== undefined) {
req.field('description', attributes.description)
}
2017-09-07 15:58:09 +00:00
if (attributes.language !== undefined) {
req.field('language', attributes.language.toString())
}
2018-02-09 15:47:06 +00:00
if (attributes.category !== undefined) {
req.field('category', attributes.category.toString())
}
if (attributes.licence !== undefined) {
req.field('licence', attributes.licence.toString())
}
2017-09-07 15:58:09 +00:00
for (let i = 0; i < attributes.tags.length; i++) {
req.field('tags[' + i + ']', attributes.tags[i])
}
if (attributes.thumbnailfile !== undefined) {
req.attach('thumbnailfile', buildAbsoluteFixturePath(attributes.thumbnailfile))
}
if (attributes.previewfile !== undefined) {
req.attach('previewfile', buildAbsoluteFixturePath(attributes.previewfile))
2017-09-04 19:21:47 +00:00
}
if (attributes.scheduleUpdate) {
req.field('scheduleUpdate[updateAt]', attributes.scheduleUpdate.updateAt)
if (attributes.scheduleUpdate.privacy) {
req.field('scheduleUpdate[privacy]', attributes.scheduleUpdate.privacy)
}
}
return req.attach('videofile', buildAbsoluteFixturePath(attributes.fixture))
2017-09-04 19:21:47 +00:00
.expect(specialStatus)
}
function updateVideo (url: string, accessToken: string, id: number | string, attributes: VideoAttributes, statusCodeExpected = 204) {
2017-09-04 19:21:47 +00: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 09:12:36 +00:00
if (attributes.nsfw !== undefined) body['nsfw'] = JSON.stringify(attributes.nsfw)
if (attributes.commentsEnabled !== undefined) body['commentsEnabled'] = JSON.stringify(attributes.commentsEnabled)
2017-09-04 19:21:47 +00:00
if (attributes.description) body['description'] = attributes.description
if (attributes.tags) body['tags'] = attributes.tags
if (attributes.privacy) body['privacy'] = attributes.privacy
2018-05-11 13:10:13 +00:00
if (attributes.channelId) body['channelId'] = attributes.channelId
if (attributes.scheduleUpdate) body['scheduleUpdate'] = attributes.scheduleUpdate
2017-09-04 19:21:47 +00: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 19:21:47 +00:00
}
function rateVideo (url: string, accessToken: string, id: number, rating: string, specialStatus = 204) {
const path = '/api/v1/videos/' + id + '/rate'
return request(url)
.put(path)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + accessToken)
.send({ rating })
.expect(specialStatus)
}
function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) {
2017-09-07 13:27:35 +00:00
return new Promise<any>((res, rej) => {
const torrentName = videoUUID + '-' + resolution + '.torrent'
const torrentPath = join(root(), 'test' + server.serverNumber, 'torrents', torrentName)
2017-09-07 13:27:35 +00:00
readFile(torrentPath, (err, data) => {
if (err) return rej(err)
return res(parseTorrent(data))
})
})
}
2017-12-29 09:46:27 +00:00
async function completeVideoCheck (
url: string,
video: any,
attributes: {
name: string
category: number
licence: number
2018-04-23 12:39:52 +00:00
language: string
2017-12-29 09:46:27 +00:00
nsfw: boolean
2018-01-03 09:12:36 +00:00
commentsEnabled: boolean
2017-12-29 09:46:27 +00:00
description: string
publishedAt?: string
support: string
2018-03-12 10:06:15 +00:00
account: {
name: string
host: string
}
isLocal: boolean
tags: string[]
privacy: number
likes?: number
dislikes?: number
duration: number
2017-12-29 09:46:27 +00:00
channel: {
displayName: string
name: string
2017-12-29 10:51:55 +00:00
description
2017-12-29 09:46:27 +00:00
isLocal: boolean
}
fixture: string
2017-12-29 09:46:27 +00:00
files: {
resolution: number
size: number
}[],
thumbnailfile?: string
previewfile?: string
2017-12-29 09:46:27 +00:00
}
) {
2017-12-29 10:51:55 +00:00
if (!attributes.likes) attributes.likes = 0
if (!attributes.dislikes) attributes.dislikes = 0
2017-12-29 09:46:27 +00:00
expect(video.name).to.equal(attributes.name)
expect(video.category.id).to.equal(attributes.category)
2018-04-23 12:39:52 +00:00
expect(video.category.label).to.equal(attributes.category !== null ? VIDEO_CATEGORIES[attributes.category] : 'Misc')
expect(video.licence.id).to.equal(attributes.licence)
2018-04-23 12:39:52 +00:00
expect(video.licence.label).to.equal(attributes.licence !== null ? VIDEO_LICENCES[attributes.licence] : 'Unknown')
expect(video.language.id).to.equal(attributes.language)
2018-04-23 12:39:52 +00:00
expect(video.language.label).to.equal(attributes.language !== null ? VIDEO_LANGUAGES[attributes.language] : 'Unknown')
expect(video.privacy.id).to.deep.equal(attributes.privacy)
expect(video.privacy.label).to.deep.equal(VIDEO_PRIVACIES[attributes.privacy])
2017-12-29 09:46:27 +00:00
expect(video.nsfw).to.equal(attributes.nsfw)
expect(video.description).to.equal(attributes.description)
2018-04-25 12:32:19 +00:00
expect(video.account.id).to.be.a('number')
expect(video.account.uuid).to.be.a('string')
2018-03-12 10:06:15 +00:00
expect(video.account.host).to.equal(attributes.account.host)
expect(video.account.name).to.equal(attributes.account.name)
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
expect(video.channel.name).to.equal(attributes.channel.name)
2017-12-29 10:51:55 +00:00
expect(video.likes).to.equal(attributes.likes)
expect(video.dislikes).to.equal(attributes.dislikes)
2017-12-29 09:46:27 +00:00
expect(video.isLocal).to.equal(attributes.isLocal)
2017-12-29 10:51:55 +00:00
expect(video.duration).to.equal(attributes.duration)
2017-12-29 09:46:27 +00:00
expect(dateIsValid(video.createdAt)).to.be.true
2018-04-04 08:21:36 +00:00
expect(dateIsValid(video.publishedAt)).to.be.true
2017-12-29 09:46:27 +00:00
expect(dateIsValid(video.updatedAt)).to.be.true
if (attributes.publishedAt) {
expect(video.publishedAt).to.equal(attributes.publishedAt)
}
const res = await getVideo(url, video.uuid)
2018-05-11 13:10:13 +00:00
const videoDetails: VideoDetails = res.body
2017-12-29 09:46:27 +00:00
expect(videoDetails.files).to.have.lengthOf(attributes.files.length)
expect(videoDetails.tags).to.deep.equal(attributes.tags)
2018-03-12 10:29:46 +00:00
expect(videoDetails.account.name).to.equal(attributes.account.name)
expect(videoDetails.account.host).to.equal(attributes.account.host)
expect(video.channel.displayName).to.equal(attributes.channel.displayName)
expect(video.channel.name).to.equal(attributes.channel.name)
2018-05-11 13:10:13 +00:00
expect(videoDetails.channel.host).to.equal(attributes.account.host)
2017-12-29 09:46:27 +00:00
expect(videoDetails.channel.isLocal).to.equal(attributes.channel.isLocal)
2018-05-11 13:10:13 +00: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)
2017-12-29 09:46:27 +00:00
for (const attributeFile of attributes.files) {
2018-03-19 11:36:41 +00:00
const file = videoDetails.files.find(f => f.resolution.id === attributeFile.resolution)
2017-12-29 09:46:27 +00:00
expect(file).not.to.be.undefined
2017-12-29 10:51:55 +00:00
let extension = extname(attributes.fixture)
// Transcoding enabled on server 2, extension will always be .mp4
2018-03-12 10:06:15 +00:00
if (attributes.account.host === 'localhost:9002') extension = '.mp4'
2017-12-29 10:51:55 +00:00
2017-12-29 09:46:27 +00:00
const magnetUri = file.magnetUri
expect(file.magnetUri).to.have.lengthOf.above(2)
2018-03-19 11:36:41 +00:00
expect(file.torrentUrl).to.equal(`http://${attributes.account.host}/static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
expect(file.fileUrl).to.equal(`http://${attributes.account.host}/static/webseed/${videoDetails.uuid}-${file.resolution.id}${extension}`)
expect(file.resolution.id).to.equal(attributeFile.resolution)
expect(file.resolution.label).to.equal(attributeFile.resolution + 'p')
2017-12-29 10:51:55 +00:00
const minSize = attributeFile.size - ((10 * attributeFile.size) / 100)
const maxSize = attributeFile.size + ((10 * attributeFile.size) / 100)
expect(file.size,
2018-07-28 00:59:01 +00:00
'File size for resolution ' + file.resolution.label + ' outside confidence interval (' + minSize + '> size <' + maxSize + ')')
.to.be.above(minSize).and.below(maxSize)
2017-12-29 09:46:27 +00:00
{
2018-02-14 17:21:14 +00:00
await testImage(url, attributes.thumbnailfile || attributes.fixture, videoDetails.thumbnailPath)
}
if (attributes.previewfile) {
2018-02-14 17:21:14 +00:00
await testImage(url, attributes.previewfile, videoDetails.previewPath)
}
2017-12-29 09:46:27 +00:00
const torrent = await webtorrentAdd(magnetUri, true)
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('')
}
}
2017-09-04 19:21:47 +00:00
// ---------------------------------------------------------------------------
export {
2017-10-30 09:16:27 +00:00
getVideoDescription,
2017-09-04 19:21:47 +00:00
getVideoCategories,
getVideoLicences,
getVideoPrivacies,
2017-09-04 19:21:47 +00:00
getVideoLanguages,
getMyVideos,
2018-04-25 08:21:38 +00:00
getAccountVideos,
getVideoChannelVideos,
2017-09-04 19:21:47 +00:00
getVideo,
getVideoWithToken,
2017-09-04 19:21:47 +00:00
getVideosList,
getVideosListPagination,
getVideosListSort,
removeVideo,
getVideosListWithToken,
2017-09-04 19:21:47 +00:00
uploadVideo,
2018-07-20 12:35:18 +00:00
getVideosWithFilters,
2017-09-04 19:21:47 +00:00
updateVideo,
2017-09-07 13:27:35 +00:00
rateVideo,
2017-11-30 08:21:11 +00:00
viewVideo,
2017-12-29 09:46:27 +00:00
parseTorrentVideo,
2018-03-13 09:24:28 +00:00
getLocalVideos,
completeVideoCheck,
checkVideoFilesWereRemoved
2017-09-04 19:21:47 +00:00
}