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

152 lines
4.0 KiB
TypeScript
Raw Normal View History

2017-10-24 19:41:30 +02:00
import * as request from 'supertest'
import { VideoChannelUpdate } from '../../models/videos/channel/video-channel-update.model'
import { VideoChannelCreate } from '../../models/videos/channel/video-channel-create.model'
import { makeGetRequest, updateAvatarRequest } from '../requests/requests'
import { ServerInfo } from '../server/servers'
import { User } from '../../models/users/user.model'
import { getMyUserInformation } from '../users/users'
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/)
}
function getAccountVideoChannelsList (parameters: {
url: string,
accountName: string,
start?: number,
count?: number,
sort?: string,
specialStatus?: number
}) {
const { url, accountName, start, count, sort = 'createdAt', specialStatus = 200 } = parameters
2018-05-25 09:57:16 +02:00
const path = '/api/v1/accounts/' + accountName + '/video-channels'
2017-10-24 19:41:30 +02:00
return makeGetRequest({
url,
path,
query: {
start,
count,
sort
},
statusCodeExpected: specialStatus
})
2017-10-24 19:41:30 +02:00
}
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
) {
const body: any = {}
2018-08-24 11:04:02 +02:00
const path = '/api/v1/video-channels/' + channelName
2017-10-24 19:41:30 +02:00
if (attributes.displayName) body.displayName = attributes.displayName
if (attributes.description) body.description = attributes.description
if (attributes.support) body.support = attributes.support
if (attributes.bulkVideosSupportUpdate) body.bulkVideosSupportUpdate = attributes.bulkVideosSupportUpdate
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 }))
}
2019-03-05 10:58:44 +01:00
function setDefaultVideoChannel (servers: ServerInfo[]) {
const tasks: Promise<any>[] = []
for (const server of servers) {
const p = getMyUserInformation(server.url, server.accessToken)
.then(res => server.videoChannel = (res.body as User).videoChannels[0])
tasks.push(p)
}
return Promise.all(tasks)
}
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,
2019-03-05 10:58:44 +01:00
getVideoChannel,
setDefaultVideoChannel
2017-10-24 19:41:30 +02:00
}