2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-floating-promises */
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
import * as request from 'supertest'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { VideoChannelUpdate } from '../../models/videos/channel/video-channel-update.model'
|
|
|
|
import { VideoChannelCreate } from '../../models/videos/channel/video-channel-create.model'
|
2021-04-07 04:36:13 -04:00
|
|
|
import { makeDeleteRequest, makeGetRequest, updateImageRequest } from '../requests/requests'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { ServerInfo } from '../server/servers'
|
2021-05-10 05:13:41 -04:00
|
|
|
import { MyUser, User } from '../../models/users/user.model'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { getMyUserInformation } from '../users/users'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2020-03-27 17:26:39 -04:00
|
|
|
function getVideoChannelsList (url: string, start: number, count: number, sort?: string, withStats?: boolean) {
|
2018-04-24 11:05:32 -04:00
|
|
|
const path = '/api/v1/video-channels'
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
const req = request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ start: start })
|
|
|
|
.query({ count: count })
|
|
|
|
|
|
|
|
if (sort) req.query({ sort })
|
2020-03-27 17:26:39 -04:00
|
|
|
if (withStats) req.query({ withStats })
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
return req.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-10-24 13:41:30 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2019-05-29 09:09:38 -04:00
|
|
|
function getAccountVideoChannelsList (parameters: {
|
2020-01-31 10:56:52 -05:00
|
|
|
url: string
|
|
|
|
accountName: string
|
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
2020-12-07 08:32:36 -05:00
|
|
|
specialStatus?: HttpStatusCode
|
2020-03-27 17:26:39 -04:00
|
|
|
withStats?: boolean
|
2020-07-27 11:00:39 -04:00
|
|
|
search?: string
|
2019-05-29 09:09:38 -04:00
|
|
|
}) {
|
2020-12-07 08:32:36 -05:00
|
|
|
const {
|
|
|
|
url,
|
|
|
|
accountName,
|
|
|
|
start,
|
|
|
|
count,
|
|
|
|
sort = 'createdAt',
|
|
|
|
specialStatus = HttpStatusCode.OK_200,
|
|
|
|
withStats = false,
|
|
|
|
search
|
|
|
|
} = parameters
|
2019-05-29 09:09:38 -04:00
|
|
|
|
2018-05-25 03:57:16 -04:00
|
|
|
const path = '/api/v1/accounts/' + accountName + '/video-channels'
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2019-05-29 09:09:38 -04:00
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
query: {
|
|
|
|
start,
|
|
|
|
count,
|
2020-03-27 17:26:39 -04:00
|
|
|
sort,
|
2020-07-27 11:00:39 -04:00
|
|
|
withStats,
|
|
|
|
search
|
2019-05-29 09:09:38 -04:00
|
|
|
},
|
|
|
|
statusCodeExpected: specialStatus
|
|
|
|
})
|
2017-10-24 13:41:30 -04:00
|
|
|
}
|
|
|
|
|
2018-04-24 11:05:32 -04:00
|
|
|
function addVideoChannel (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
2018-04-26 10:11:38 -04:00
|
|
|
videoChannelAttributesArg: VideoChannelCreate,
|
2020-12-07 08:32:36 -05:00
|
|
|
expectedStatus = HttpStatusCode.OK_200
|
2018-04-24 11:05:32 -04:00
|
|
|
) {
|
2018-04-25 10:15:39 -04:00
|
|
|
const path = '/api/v1/video-channels/'
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
// Default attributes
|
|
|
|
let attributes = {
|
2018-04-26 10:11:38 -04:00
|
|
|
displayName: 'my super video channel',
|
2018-02-15 08:46:26 -05:00
|
|
|
description: 'my super channel description',
|
|
|
|
support: 'my super channel support'
|
2017-10-24 13:41:30 -04: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 11:05:32 -04:00
|
|
|
function updateVideoChannel (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
2018-08-24 05:04:02 -04:00
|
|
|
channelName: string,
|
2018-04-26 10:11:38 -04:00
|
|
|
attributes: VideoChannelUpdate,
|
2020-12-07 08:32:36 -05:00
|
|
|
expectedStatus = HttpStatusCode.NO_CONTENT_204
|
2018-04-24 11:05:32 -04:00
|
|
|
) {
|
2019-05-31 10:30:11 -04:00
|
|
|
const body: any = {}
|
2018-08-24 05:04:02 -04:00
|
|
|
const path = '/api/v1/video-channels/' + channelName
|
2017-10-24 13:41:30 -04:00
|
|
|
|
2019-05-31 10:30:11 -04: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 13:41:30 -04:00
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.put(path)
|
|
|
|
.send(body)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.expect(expectedStatus)
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function deleteVideoChannel (url: string, token: string, channelName: string, expectedStatus = HttpStatusCode.NO_CONTENT_204) {
|
2018-08-24 05:04:02 -04:00
|
|
|
const path = '/api/v1/video-channels/' + channelName
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
return request(url)
|
2018-04-24 11:05:32 -04:00
|
|
|
.delete(path)
|
2017-10-24 13:41:30 -04:00
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.expect(expectedStatus)
|
|
|
|
}
|
|
|
|
|
2018-08-24 05:04:02 -04:00
|
|
|
function getVideoChannel (url: string, channelName: string) {
|
|
|
|
const path = '/api/v1/video-channels/' + channelName
|
2017-10-24 13:41:30 -04:00
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.set('Accept', 'application/json')
|
2020-12-07 08:32:36 -05:00
|
|
|
.expect(HttpStatusCode.OK_200)
|
2017-10-24 13:41:30 -04:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2021-04-07 04:36:13 -04:00
|
|
|
function updateVideoChannelImage (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
url: string
|
|
|
|
accessToken: string
|
|
|
|
fixture: string
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelName: string | number
|
2021-04-07 04:36:13 -04:00
|
|
|
type: 'avatar' | 'banner'
|
2018-06-29 05:29:23 -04:00
|
|
|
}) {
|
2021-04-07 04:36:13 -04:00
|
|
|
const path = `/api/v1/video-channels/${options.videoChannelName}/${options.type}/pick`
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2021-04-07 04:36:13 -04:00
|
|
|
return updateImageRequest({ ...options, path, fieldname: options.type + 'file' })
|
|
|
|
}
|
|
|
|
|
|
|
|
function deleteVideoChannelImage (options: {
|
|
|
|
url: string
|
|
|
|
accessToken: string
|
|
|
|
videoChannelName: string | number
|
|
|
|
type: 'avatar' | 'banner'
|
|
|
|
}) {
|
|
|
|
const path = `/api/v1/video-channels/${options.videoChannelName}/${options.type}`
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2021-04-07 04:36:13 -04:00
|
|
|
return makeDeleteRequest({
|
|
|
|
url: options.url,
|
|
|
|
token: options.accessToken,
|
|
|
|
path,
|
|
|
|
statusCodeExpected: 204
|
|
|
|
})
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
|
2019-03-05 04:58:44 -05:00
|
|
|
function setDefaultVideoChannel (servers: ServerInfo[]) {
|
|
|
|
const tasks: Promise<any>[] = []
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const p = getMyUserInformation(server.url, server.accessToken)
|
2020-01-31 10:56:52 -05:00
|
|
|
.then(res => { server.videoChannel = (res.body as User).videoChannels[0] })
|
2019-03-05 04:58:44 -05:00
|
|
|
|
|
|
|
tasks.push(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.all(tasks)
|
|
|
|
}
|
|
|
|
|
2021-05-10 05:13:41 -04:00
|
|
|
async function getDefaultVideoChannel (url: string, token: string) {
|
|
|
|
const res = await getMyUserInformation(url, token)
|
|
|
|
|
|
|
|
return (res.body as MyUser).videoChannels[0].id
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-04-07 04:36:13 -04:00
|
|
|
updateVideoChannelImage,
|
2017-10-24 13:41:30 -04:00
|
|
|
getVideoChannelsList,
|
2017-11-17 06:05:59 -05:00
|
|
|
getAccountVideoChannelsList,
|
2017-10-24 13:41:30 -04:00
|
|
|
addVideoChannel,
|
|
|
|
updateVideoChannel,
|
|
|
|
deleteVideoChannel,
|
2019-03-05 04:58:44 -05:00
|
|
|
getVideoChannel,
|
2021-04-07 04:36:13 -04:00
|
|
|
setDefaultVideoChannel,
|
2021-05-10 05:13:41 -04:00
|
|
|
deleteVideoChannelImage,
|
|
|
|
getDefaultVideoChannel
|
2017-10-24 13:41:30 -04:00
|
|
|
}
|