2020-01-31 16:56:52 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
|
|
|
|
2017-10-24 19:41:30 +02:00
|
|
|
import * as request from 'supertest'
|
2019-07-11 17:23:24 +02:00
|
|
|
import { VideoChannelUpdate } from '../../models/videos/channel/video-channel-update.model'
|
|
|
|
import { VideoChannelCreate } from '../../models/videos/channel/video-channel-create.model'
|
2019-05-29 15:09:38 +02:00
|
|
|
import { makeGetRequest, updateAvatarRequest } from '../requests/requests'
|
2019-07-11 17:23:24 +02:00
|
|
|
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
|
|
|
|
2020-03-27 22:26:39 +01:00
|
|
|
function getVideoChannelsList (url: string, start: number, count: number, sort?: string, withStats?: boolean) {
|
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 })
|
2020-03-27 22:26:39 +01:00
|
|
|
if (withStats) req.query({ withStats })
|
2017-10-24 19:41:30 +02:00
|
|
|
|
|
|
|
return req.set('Accept', 'application/json')
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2019-05-29 15:09:38 +02:00
|
|
|
function getAccountVideoChannelsList (parameters: {
|
2020-01-31 16:56:52 +01:00
|
|
|
url: string
|
|
|
|
accountName: string
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
2019-05-29 15:09:38 +02:00
|
|
|
specialStatus?: number
|
2020-03-27 22:26:39 +01:00
|
|
|
withStats?: boolean
|
2019-05-29 15:09:38 +02:00
|
|
|
}) {
|
2020-03-27 22:26:39 +01:00
|
|
|
const { url, accountName, start, count, sort = 'createdAt', specialStatus = 200, withStats = false } = parameters
|
2019-05-29 15:09:38 +02:00
|
|
|
|
2018-05-25 09:57:16 +02:00
|
|
|
const path = '/api/v1/accounts/' + accountName + '/video-channels'
|
2017-10-24 19:41:30 +02:00
|
|
|
|
2019-05-29 15:09:38 +02:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
query: {
|
|
|
|
start,
|
|
|
|
count,
|
2020-03-27 22:26:39 +01:00
|
|
|
sort,
|
|
|
|
withStats
|
2019-05-29 15:09:38 +02:00
|
|
|
},
|
|
|
|
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
|
|
|
|
) {
|
2018-04-25 16:15:39 +02:00
|
|
|
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',
|
2018-02-15 14:46:26 +01:00
|
|
|
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
|
|
|
|
) {
|
2019-05-31 16:30:11 +02:00
|
|
|
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
|
|
|
|
2019-05-31 16:30:11 +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/)
|
|
|
|
}
|
|
|
|
|
2018-06-29 11:29:23 +02:00
|
|
|
function updateVideoChannelAvatar (options: {
|
2020-01-31 16:56:52 +01:00
|
|
|
url: string
|
|
|
|
accessToken: string
|
|
|
|
fixture: string
|
2018-08-17 15:45:42 +02:00
|
|
|
videoChannelName: string | number
|
2018-06-29 11:29:23 +02:00
|
|
|
}) {
|
|
|
|
|
2018-08-17 15:45:42 +02:00
|
|
|
const path = '/api/v1/video-channels/' + options.videoChannelName + '/avatar/pick'
|
2018-06-29 11:29:23 +02:00
|
|
|
|
|
|
|
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)
|
2020-01-31 16:56:52 +01:00
|
|
|
.then(res => { server.videoChannel = (res.body as User).videoChannels[0] })
|
2019-03-05 10:58:44 +01:00
|
|
|
|
|
|
|
tasks.push(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.all(tasks)
|
|
|
|
}
|
|
|
|
|
2017-10-24 19:41:30 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-06-29 11:29:23 +02:00
|
|
|
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
|
|
|
}
|