X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fassets%2Fplayer%2Futils.ts;h=280f721bdbcdf3d4ec5437e70215e59607d79b4d;hb=afff310e50f2fa8419bb4242470cbde46ab54463;hp=fa902e1f1822dd3a7d18f76b7c26fedd3c0cf3ce;hpb=2ad9dcda240ee843c5e4a5b98cc94f7b2aab2c89;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/assets/player/utils.ts b/client/src/assets/player/utils.ts index fa902e1f1..280f721bd 100644 --- a/client/src/assets/player/utils.ts +++ b/client/src/assets/player/utils.ts @@ -1,4 +1,4 @@ -import { VideoFile } from '../../../../shared/models/videos' +import { VideoFile } from '@shared/models' function toTitleCase (str: string) { return str.charAt(0).toUpperCase() + str.slice(1) @@ -8,6 +8,21 @@ function isWebRTCDisabled () { return !!((window as any).RTCPeerConnection || (window as any).mozRTCPeerConnection || (window as any).webkitRTCPeerConnection) === false } +function isIOS () { + if (/iPad|iPhone|iPod/.test(navigator.platform)) { + return true + } + + // Detect iPad Desktop mode + return !!(navigator.maxTouchPoints && + navigator.maxTouchPoints > 2 && + /MacIntel/.test(navigator.platform)) +} + +function isSafari () { + return /^((?!chrome|android).)*safari/i.test(navigator.userAgent) +} + // https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts // Don't import all Angular stuff, just copy the code with shame const dictionaryBytes: Array<{max: number, type: string}> = [ @@ -28,21 +43,22 @@ function isMobile () { } function buildVideoLink (options: { - baseUrl?: string, + baseUrl?: string - startTime?: number, - stopTime?: number, + startTime?: number + stopTime?: number - subtitle?: string, + subtitle?: string - loop?: boolean, - autoplay?: boolean, - muted?: boolean, + loop?: boolean + autoplay?: boolean + muted?: boolean // Embed options - title?: boolean, - warningTitle?: boolean, + title?: boolean + warningTitle?: boolean controls?: boolean + peertubeLink?: boolean } = {}) { const { baseUrl } = options @@ -50,10 +66,7 @@ function buildVideoLink (options: { ? baseUrl : window.location.origin + window.location.pathname.replace('/embed/', '/watch/') - const params = new URLSearchParams(window.location.search) - // Remove these unused parameters when we are on a playlist page - params.delete('videoId') - params.delete('resume') + const params = generateParams(window.location.search) if (options.startTime) { const startTimeInt = Math.floor(options.startTime) @@ -73,7 +86,30 @@ function buildVideoLink (options: { if (options.title === false) params.set('title', '0') if (options.warningTitle === false) params.set('warningTitle', '0') if (options.controls === false) params.set('controls', '0') + if (options.peertubeLink === false) params.set('peertubeLink', '0') + + return buildUrl(url, params) +} + +function buildPlaylistLink (options: { + baseUrl?: string + playlistPosition: number +}) { + const { baseUrl } = options + + const url = baseUrl + ? baseUrl + : window.location.origin + window.location.pathname.replace('/video-playlists/embed/', '/videos/watch/playlist/') + + const params = generateParams(window.location.search) + + if (options.playlistPosition) params.set('playlistPosition', '' + options.playlistPosition) + + return buildUrl(url, params) +} + +function buildUrl (url: string, params: URLSearchParams) { let hasParams = false params.forEach(() => hasParams = true) @@ -82,6 +118,15 @@ function buildVideoLink (options: { return url } +function generateParams (url: string) { + const params = new URLSearchParams(window.location.search) + // Unused parameters in embed + params.delete('videoId') + params.delete('resume') + + return params +} + function timeToInt (time: number | string) { if (!time) return 0 if (typeof time === 'number') return time @@ -123,7 +168,7 @@ function secondsToTime (seconds: number, full = false, symbol?: string) { return time } -function buildVideoEmbed (embedUrl: string) { +function buildVideoOrPlaylistEmbed (embedUrl: string) { return '