PeerTube/shared/utils/videos/video-channels.ts

119 lines
3.1 KiB
TypeScript
Raw Normal View History

2017-10-24 19:41:30 +02:00
import * as request from 'supertest'
2018-10-29 18:06:09 +01:00
import { VideoChannelCreate, VideoChannelUpdate } from '../../models/videos'
2018-11-19 17:08:18 +01:00
import { updateAvatarRequest } from '../requests/requests'
2017-10-24 19:41:30 +02:00
function getVideoChannelsList (url: string, start: number, count: number, sort?: string) {
2018-04-24 17:05:32 +02:00
const path = '/api/v1/video-channels'
2017-10-24 19:41:30 +02:00
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/)
}
2018-05-25 09:57:16 +02:00
function getAccountVideoChannelsList (url: string, accountName: string, specialStatus = 200) {
const path = '/api/v1/accounts/' + accountName + '/video-channels'
2017-10-24 19:41:30 +02:00
return request(url)
.get(path)
.set('Accept', 'application/json')
2017-12-28 16:26:28 +01:00
.expect(specialStatus)
2017-10-24 19:41:30 +02:00
.expect('Content-Type', /json/)
}
2018-04-24 17:05:32 +02:00
function addVideoChannel (
url: string,
token: string,
2018-04-26 16:11:38 +02:00
videoChannelAttributesArg: VideoChannelCreate,
2018-04-24 17:05:32 +02:00
expectedStatus = 200
) {
const path = '/api/v1/video-channels/'
2017-10-24 19:41:30 +02:00
// Default attributes
let attributes = {
2018-04-26 16:11:38 +02:00
displayName: 'my super video channel',
description: 'my super channel description',
support: 'my super channel support'
2017-10-24 19:41:30 +02:00
}
attributes = Object.assign(attributes, videoChannelAttributesArg)
return request(url)
.post(path)
.send(attributes)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-04-24 17:05:32 +02:00
function updateVideoChannel (
url: string,
token: string,
2018-08-24 11:04:02 +02:00
channelName: string,
2018-04-26 16:11:38 +02:00
attributes: VideoChannelUpdate,
2018-04-24 17:05:32 +02:00
expectedStatus = 204
) {
2017-10-24 19:41:30 +02:00
const body = {}
2018-08-24 11:04:02 +02:00
const path = '/api/v1/video-channels/' + channelName
2017-10-24 19:41:30 +02:00
2018-04-26 16:11:38 +02:00
if (attributes.displayName) body['displayName'] = attributes.displayName
2017-10-24 19:41:30 +02:00
if (attributes.description) body['description'] = attributes.description
if (attributes.support) body['support'] = attributes.support
2017-10-24 19:41:30 +02:00
return request(url)
.put(path)
.send(body)
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-08-24 11:04:02 +02:00
function deleteVideoChannel (url: string, token: string, channelName: string, expectedStatus = 204) {
const path = '/api/v1/video-channels/' + channelName
2017-10-24 19:41:30 +02:00
return request(url)
2018-04-24 17:05:32 +02:00
.delete(path)
2017-10-24 19:41:30 +02:00
.set('Accept', 'application/json')
.set('Authorization', 'Bearer ' + token)
.expect(expectedStatus)
}
2018-08-24 11:04:02 +02:00
function getVideoChannel (url: string, channelName: string) {
const path = '/api/v1/video-channels/' + channelName
2017-10-24 19:41:30 +02:00
return request(url)
.get(path)
.set('Accept', 'application/json')
.expect(200)
.expect('Content-Type', /json/)
}
function updateVideoChannelAvatar (options: {
url: string,
accessToken: string,
fixture: string,
2018-08-17 15:45:42 +02:00
videoChannelName: string | number
}) {
2018-08-17 15:45:42 +02:00
const path = '/api/v1/video-channels/' + options.videoChannelName + '/avatar/pick'
return updateAvatarRequest(Object.assign(options, { path }))
}
2017-10-24 19:41:30 +02:00
// ---------------------------------------------------------------------------
export {
updateVideoChannelAvatar,
2017-10-24 19:41:30 +02:00
getVideoChannelsList,
2017-11-17 12:05:59 +01:00
getAccountVideoChannelsList,
2017-10-24 19:41:30 +02:00
addVideoChannel,
updateVideoChannel,
deleteVideoChannel,
getVideoChannel
}