1
0
Fork 0
peertube/shared/extra-utils/videos/video-channels.ts

149 lines
3.7 KiB
TypeScript
Raw Normal View History

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