diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-14 14:28:20 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-14 14:36:35 +0100 |
commit | 57d6503286b114fee61b5e4725825e2490dcac29 (patch) | |
tree | 2d3d23f697b2986d7e41bb443754394296b66ec3 /client/src/root-helpers | |
parent | 9597920ee3d4ac99803e7107983ddf98a9dfb3c4 (diff) | |
download | PeerTube-57d6503286b114fee61b5e4725825e2490dcac29.tar.gz PeerTube-57d6503286b114fee61b5e4725825e2490dcac29.tar.zst PeerTube-57d6503286b114fee61b5e4725825e2490dcac29.zip |
Reorganize player files
Diffstat (limited to 'client/src/root-helpers')
-rw-r--r-- | client/src/root-helpers/index.ts | 3 | ||||
-rw-r--r-- | client/src/root-helpers/video.ts | 33 | ||||
-rw-r--r-- | client/src/root-helpers/web-browser.ts | 24 |
3 files changed, 59 insertions, 1 deletions
diff --git a/client/src/root-helpers/index.ts b/client/src/root-helpers/index.ts index aa3b442dd..3b95b4b99 100644 --- a/client/src/root-helpers/index.ts +++ b/client/src/root-helpers/index.ts | |||
@@ -3,5 +3,6 @@ export * from './bytes' | |||
3 | export * from './images' | 3 | export * from './images' |
4 | export * from './local-storage-utils' | 4 | export * from './local-storage-utils' |
5 | export * from './peertube-web-storage' | 5 | export * from './peertube-web-storage' |
6 | export * from './utils' | ||
7 | export * from './plugins-manager' | 6 | export * from './plugins-manager' |
7 | export * from './utils' | ||
8 | export * from './video' | ||
diff --git a/client/src/root-helpers/video.ts b/client/src/root-helpers/video.ts new file mode 100644 index 000000000..4290992aa --- /dev/null +++ b/client/src/root-helpers/video.ts | |||
@@ -0,0 +1,33 @@ | |||
1 | import { HTMLServerConfig, Video } from '@shared/models' | ||
2 | |||
3 | function buildVideoOrPlaylistEmbed (embedUrl: string, embedTitle: string) { | ||
4 | const iframe = document.createElement('iframe') | ||
5 | |||
6 | iframe.title = embedTitle | ||
7 | iframe.width = '560' | ||
8 | iframe.height = '315' | ||
9 | iframe.src = embedUrl | ||
10 | iframe.frameBorder = '0' | ||
11 | iframe.allowFullscreen = true | ||
12 | iframe.sandbox.add('allow-same-origin', 'allow-scripts', 'allow-popups') | ||
13 | |||
14 | return iframe.outerHTML | ||
15 | } | ||
16 | |||
17 | function isP2PEnabled (video: Video, config: HTMLServerConfig, userP2PEnabled: boolean) { | ||
18 | if (video.isLocal && config.tracker.enabled === false) return false | ||
19 | if (isWebRTCDisabled()) return false | ||
20 | |||
21 | return userP2PEnabled | ||
22 | } | ||
23 | |||
24 | export { | ||
25 | buildVideoOrPlaylistEmbed, | ||
26 | isP2PEnabled | ||
27 | } | ||
28 | |||
29 | // --------------------------------------------------------------------------- | ||
30 | |||
31 | function isWebRTCDisabled () { | ||
32 | return !!((window as any).RTCPeerConnection || (window as any).mozRTCPeerConnection || (window as any).webkitRTCPeerConnection) === false | ||
33 | } | ||
diff --git a/client/src/root-helpers/web-browser.ts b/client/src/root-helpers/web-browser.ts new file mode 100644 index 000000000..9dade20e8 --- /dev/null +++ b/client/src/root-helpers/web-browser.ts | |||
@@ -0,0 +1,24 @@ | |||
1 | function isIOS () { | ||
2 | if (/iPad|iPhone|iPod/.test(navigator.platform)) { | ||
3 | return true | ||
4 | } | ||
5 | |||
6 | // Detect iPad Desktop mode | ||
7 | return !!(navigator.maxTouchPoints && | ||
8 | navigator.maxTouchPoints > 2 && | ||
9 | navigator.platform.includes('MacIntel')) | ||
10 | } | ||
11 | |||
12 | function isSafari () { | ||
13 | return /^((?!chrome|android).)*safari/i.test(navigator.userAgent) | ||
14 | } | ||
15 | |||
16 | function isMobile () { | ||
17 | return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent) | ||
18 | } | ||
19 | |||
20 | export { | ||
21 | isIOS, | ||
22 | isSafari, | ||
23 | isMobile | ||
24 | } | ||