PeerTube/shared/extra-utils/requests/requests.ts

183 lines
5.2 KiB
TypeScript
Raw Normal View History

2021-07-16 10:42:24 +02:00
/* eslint-disable @typescript-eslint/no-floating-promises */
2020-01-31 16:56:52 +01:00
2020-04-29 09:04:42 +02:00
import { decode } from 'querystring'
2021-07-06 15:33:39 +02:00
import * as request from 'supertest'
import { URL } from 'url'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '@shared/models'
import { buildAbsoluteFixturePath } from '../miscs/tests'
2019-01-29 08:37:25 +01:00
2021-07-16 10:42:24 +02:00
export type CommonRequestParams = {
2020-01-31 16:56:52 +01:00
url: string
path?: string
contentType?: string
range?: string
2020-04-29 09:04:42 +02:00
redirects?: number
accept?: string
2021-07-13 11:05:15 +02:00
host?: string
2021-07-16 10:42:24 +02:00
token?: string
headers?: { [ name: string ]: string }
type?: string
xForwardedFor?: string
expectedStatus?: HttpStatusCode
}
2017-12-28 14:29:57 +01:00
2021-07-16 10:42:24 +02:00
function makeRawRequest (url: string, expectedStatus?: HttpStatusCode, range?: string) {
const { host, protocol, pathname } = new URL(url)
2017-12-28 14:29:57 +01:00
2021-07-16 10:42:24 +02:00
return makeGetRequest({ url: `${protocol}//${host}`, path: pathname, expectedStatus, range })
2017-12-28 14:29:57 +01:00
}
2021-07-16 10:42:24 +02:00
function makeGetRequest (options: CommonRequestParams & {
query?: any
2017-12-28 14:29:57 +01:00
}) {
2021-07-16 10:42:24 +02:00
const req = request(options.url).get(options.path)
.query(options.query)
2017-12-28 14:29:57 +01:00
2021-07-16 10:42:24 +02:00
return buildRequest(req, { contentType: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
}
2017-12-28 14:29:57 +01:00
2021-07-16 10:42:24 +02:00
function makeHTMLRequest (url: string, path: string) {
return makeGetRequest({
url,
path,
accept: 'text/html',
expectedStatus: HttpStatusCode.OK_200
})
}
2017-12-28 14:29:57 +01:00
2021-07-16 10:42:24 +02:00
function makeActivityPubGetRequest (url: string, path: string, expectedStatus = HttpStatusCode.OK_200) {
return makeGetRequest({
url,
path,
expectedStatus: expectedStatus,
accept: 'application/activity+json,text/html;q=0.9,\\*/\\*;q=0.8'
})
2017-09-04 21:21:47 +02:00
}
2021-07-16 10:42:24 +02:00
function makeDeleteRequest (options: CommonRequestParams) {
const req = request(options.url).delete(options.path)
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
}
function makeUploadRequest (options: CommonRequestParams & {
2020-01-31 16:56:52 +01:00
method?: 'POST' | 'PUT'
2021-07-15 10:02:54 +02:00
2020-01-31 16:56:52 +01:00
fields: { [ fieldName: string ]: any }
2020-10-30 15:09:00 +01:00
attaches?: { [ attachName: string ]: any | any[] }
2017-09-04 21:21:47 +02:00
}) {
2021-07-16 10:42:24 +02:00
let req = options.method === 'PUT'
? request(options.url).put(options.path)
: request(options.url).post(options.path)
2017-09-04 21:21:47 +02:00
2021-07-16 10:42:24 +02:00
req = buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
2021-07-16 10:42:24 +02:00
buildFields(req, options.fields)
2017-09-04 21:21:47 +02:00
2020-10-30 15:09:00 +01:00
Object.keys(options.attaches || {}).forEach(attach => {
2017-09-04 21:21:47 +02:00
const value = options.attaches[attach]
2021-07-16 10:42:24 +02:00
2018-08-06 11:45:24 +02:00
if (Array.isArray(value)) {
req.attach(attach, buildAbsoluteFixturePath(value[0]), value[1])
} else {
req.attach(attach, buildAbsoluteFixturePath(value))
}
2017-09-04 21:21:47 +02:00
})
2021-07-15 10:02:54 +02:00
return req
2017-09-04 21:21:47 +02:00
}
2021-07-16 10:42:24 +02:00
function makePostBodyRequest (options: CommonRequestParams & {
2020-01-31 16:56:52 +01:00
fields?: { [ fieldName: string ]: any }
2017-09-04 21:21:47 +02:00
}) {
2021-07-16 10:42:24 +02:00
const req = request(options.url).post(options.path)
.send(options.fields)
2017-09-04 21:21:47 +02:00
2021-07-16 10:42:24 +02:00
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
2017-09-04 21:21:47 +02:00
}
function makePutBodyRequest (options: {
2020-01-31 16:56:52 +01:00
url: string
path: string
token?: string
fields: { [ fieldName: string ]: any }
2021-07-16 10:42:24 +02:00
expectedStatus?: HttpStatusCode
}) {
2021-07-16 10:42:24 +02:00
const req = request(options.url).put(options.path)
.send(options.fields)
2021-07-16 10:42:24 +02:00
return buildRequest(req, { accept: 'application/json', expectedStatus: HttpStatusCode.BAD_REQUEST_400, ...options })
}
2020-04-29 09:04:42 +02:00
function decodeQueryString (path: string) {
return decode(path.split('?')[1])
}
2021-07-06 10:21:35 +02:00
function unwrapBody <T> (test: request.Test): Promise<T> {
2021-07-06 09:55:05 +02:00
return test.then(res => res.body)
}
2021-07-06 10:21:35 +02:00
function unwrapText (test: request.Test): Promise<string> {
return test.then(res => res.text)
}
2017-09-04 21:21:47 +02:00
// ---------------------------------------------------------------------------
export {
makeHTMLRequest,
2017-09-04 21:21:47 +02:00
makeGetRequest,
2020-04-29 09:04:42 +02:00
decodeQueryString,
makeUploadRequest,
2017-09-04 21:21:47 +02:00
makePostBodyRequest,
2017-12-28 14:29:57 +01:00
makePutBodyRequest,
makeDeleteRequest,
2019-01-29 08:37:25 +01:00
makeRawRequest,
2021-07-06 15:33:39 +02:00
makeActivityPubGetRequest,
2021-07-06 10:21:35 +02:00
unwrapBody,
2021-07-16 10:42:24 +02:00
unwrapText
}
// ---------------------------------------------------------------------------
function buildRequest (req: request.Test, options: CommonRequestParams) {
if (options.contentType) req.set('Accept', options.contentType)
if (options.token) req.set('Authorization', 'Bearer ' + options.token)
if (options.range) req.set('Range', options.range)
if (options.accept) req.set('Accept', options.accept)
if (options.host) req.set('Host', options.host)
if (options.redirects) req.redirects(options.redirects)
if (options.expectedStatus) req.expect(options.expectedStatus)
if (options.xForwardedFor) req.set('X-Forwarded-For', options.xForwardedFor)
if (options.type) req.type(options.type)
Object.keys(options.headers || {}).forEach(name => {
req.set(name, options.headers[name])
})
return req
}
function buildFields (req: request.Test, fields: { [ fieldName: string ]: any }, namespace?: string) {
if (!fields) return
let formKey: string
for (const key of Object.keys(fields)) {
if (namespace) formKey = `${namespace}[${key}]`
else formKey = key
if (fields[key] === undefined) continue
if (Array.isArray(fields[key]) && fields[key].length === 0) {
req.field(key, null)
continue
}
if (fields[key] !== null && typeof fields[key] === 'object') {
buildFields(req, fields[key], formKey)
} else {
req.field(formKey, fields[key])
}
}
2017-09-04 21:21:47 +02:00
}