aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-07-08 10:23:21 +0200
committerChocobozzz <me@florianbigard.com>2021-07-20 15:27:17 +0200
commitd897210c2db1ca2acc1e7b28a13127647ab2222c (patch)
treed36bcc0d17f1ff3c787beb395175e7a20d36e449 /shared/extra-utils/videos
parent4f2199144e428c16460750305f737b890c1ac322 (diff)
downloadPeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.gz
PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.zst
PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.zip
Introduce services command
Diffstat (limited to 'shared/extra-utils/videos')
-rw-r--r--shared/extra-utils/videos/index.ts2
-rw-r--r--shared/extra-utils/videos/services-command.ts28
-rw-r--r--shared/extra-utils/videos/services.ts24
3 files changed, 29 insertions, 25 deletions
diff --git a/shared/extra-utils/videos/index.ts b/shared/extra-utils/videos/index.ts
index c9c884285..fe5dc6655 100644
--- a/shared/extra-utils/videos/index.ts
+++ b/shared/extra-utils/videos/index.ts
@@ -1,6 +1,6 @@
1export * from './live-command' 1export * from './live-command'
2export * from './live' 2export * from './live'
3export * from './services' 3export * from './services-command'
4export * from './video-blacklist' 4export * from './video-blacklist'
5export * from './video-captions' 5export * from './video-captions'
6export * from './video-change-ownership' 6export * from './video-change-ownership'
diff --git a/shared/extra-utils/videos/services-command.ts b/shared/extra-utils/videos/services-command.ts
new file mode 100644
index 000000000..3b618ef66
--- /dev/null
+++ b/shared/extra-utils/videos/services-command.ts
@@ -0,0 +1,28 @@
1import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
2import { AbstractCommand, OverrideCommandOptions } from '../shared'
3
4export class ServicesCommand extends AbstractCommand {
5
6 getOEmbed (options: OverrideCommandOptions & {
7 oembedUrl: string
8 format?: string
9 maxHeight?: number
10 maxWidth?: number
11 }) {
12 const path = '/services/oembed'
13 const query = {
14 url: options.oembedUrl,
15 format: options.format,
16 maxheight: options.maxHeight,
17 maxwidth: options.maxWidth
18 }
19
20 return this.getRequest({
21 ...options,
22
23 path,
24 query,
25 defaultExpectedStatus: HttpStatusCode.OK_200
26 })
27 }
28}
diff --git a/shared/extra-utils/videos/services.ts b/shared/extra-utils/videos/services.ts
deleted file mode 100644
index e13a788bd..000000000
--- a/shared/extra-utils/videos/services.ts
+++ /dev/null
@@ -1,24 +0,0 @@
1import * as request from 'supertest'
2import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
3
4function getOEmbed (url: string, oembedUrl: string, format?: string, maxHeight?: number, maxWidth?: number) {
5 const path = '/services/oembed'
6 const query = {
7 url: oembedUrl,
8 format,
9 maxheight: maxHeight,
10 maxwidth: maxWidth
11 }
12
13 return request(url)
14 .get(path)
15 .query(query)
16 .set('Accept', 'application/json')
17 .expect(HttpStatusCode.OK_200)
18}
19
20// ---------------------------------------------------------------------------
21
22export {
23 getOEmbed
24}