2017-09-04 15:21:47 -04:00
|
|
|
import * as request from 'supertest'
|
2018-10-29 13:06:09 -04:00
|
|
|
import { VideoAbuseUpdate } from '../../models/videos/abuse/video-abuse-update.model'
|
2018-11-19 11:08:18 -05:00
|
|
|
import { makeDeleteRequest, makePutBodyRequest } from '../requests/requests'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2018-08-10 10:54:01 -04:00
|
|
|
function reportVideoAbuse (url: string, token: string, videoId: number | string, reason: string, specialStatus = 200) {
|
2017-09-04 15:21:47 -04:00
|
|
|
const path = '/api/v1/videos/' + videoId + '/abuse'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.post(path)
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.send({ reason })
|
|
|
|
.expect(specialStatus)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoAbusesList (url: string, token: string) {
|
|
|
|
const path = '/api/v1/videos/abuse'
|
|
|
|
|
|
|
|
return request(url)
|
|
|
|
.get(path)
|
|
|
|
.query({ sort: 'createdAt' })
|
|
|
|
.set('Accept', 'application/json')
|
|
|
|
.set('Authorization', 'Bearer ' + token)
|
|
|
|
.expect(200)
|
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
}
|
|
|
|
|
2018-08-10 10:54:01 -04:00
|
|
|
function updateVideoAbuse (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
|
|
|
videoId: string | number,
|
|
|
|
videoAbuseId: number,
|
|
|
|
body: VideoAbuseUpdate,
|
|
|
|
statusCodeExpected = 204
|
|
|
|
) {
|
|
|
|
const path = '/api/v1/videos/' + videoId + '/abuse/' + videoAbuseId
|
|
|
|
|
|
|
|
return makePutBodyRequest({
|
|
|
|
url,
|
|
|
|
token,
|
|
|
|
path,
|
|
|
|
fields: body,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function deleteVideoAbuse (url: string, token: string, videoId: string | number, videoAbuseId: number, statusCodeExpected = 204) {
|
|
|
|
const path = '/api/v1/videos/' + videoId + '/abuse/' + videoAbuseId
|
|
|
|
|
|
|
|
return makeDeleteRequest({
|
|
|
|
url,
|
|
|
|
token,
|
|
|
|
path,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
reportVideoAbuse,
|
2018-08-10 10:54:01 -04:00
|
|
|
getVideoAbusesList,
|
|
|
|
updateVideoAbuse,
|
|
|
|
deleteVideoAbuse
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|