diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-08 10:23:21 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:17 +0200 |
commit | d897210c2db1ca2acc1e7b28a13127647ab2222c (patch) | |
tree | d36bcc0d17f1ff3c787beb395175e7a20d36e449 /shared/extra-utils/videos/services.ts | |
parent | 4f2199144e428c16460750305f737b890c1ac322 (diff) | |
download | PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.gz PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.tar.zst PeerTube-d897210c2db1ca2acc1e7b28a13127647ab2222c.zip |
Introduce services command
Diffstat (limited to 'shared/extra-utils/videos/services.ts')
-rw-r--r-- | shared/extra-utils/videos/services.ts | 24 |
1 files changed, 0 insertions, 24 deletions
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 @@ | |||
1 | import * as request from 'supertest' | ||
2 | import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' | ||
3 | |||
4 | function 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 | |||
22 | export { | ||
23 | getOEmbed | ||
24 | } | ||