X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fassets%2Fplayer%2Futils.ts;h=8d87567c2b53dd75b412f8080c7c6c92d181571f;hb=b718fd22374d64534bcfe69932cf562894abed6a;hp=f5407ef60d5a5e0c95f8f0dc33451a378616d788;hpb=a8462c8e3a61f4f7314fe18c0c10cc2946c254d1;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/assets/player/utils.ts b/client/src/assets/player/utils.ts index f5407ef60..8d87567c2 100644 --- a/client/src/assets/player/utils.ts +++ b/client/src/assets/player/utils.ts @@ -1,3 +1,5 @@ +import { VideoFile } from '../../../../shared/models/videos' + function toTitleCase (str: string) { return str.charAt(0).toUpperCase() + str.slice(1) } @@ -10,81 +12,130 @@ const dictionaryBytes: Array<{max: number, type: string}> = [ { max: 1073741824, type: 'MB' }, { max: 1.0995116e12, type: 'GB' } ] -function bytes (value) { +function bytes (value: number) { const format = dictionaryBytes.find(d => value < d.max) || dictionaryBytes[dictionaryBytes.length - 1] const calc = Math.floor(value / (format.max / 1024)).toString() return [ calc, format.type ] } -function getStoredVolume () { - const value = getLocalStorage('volume') - if (value !== null && value !== undefined) { - const valueNumber = parseFloat(value) - if (isNaN(valueNumber)) return undefined +function isMobile () { + return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent) +} + +function buildVideoLink (time?: number, url?: string) { + if (!url) url = window.location.origin + window.location.pathname.replace('/embed/', '/watch/') + + if (time) { + const timeInt = Math.floor(time) - return valueNumber + const params = new URLSearchParams(window.location.search) + params.set('start', secondsToTime(timeInt)) + + return url + '?' + params.toString() } - return undefined + return url } -function getStoredMute () { - const value = getLocalStorage('mute') - if (value !== null && value !== undefined) return value === 'true' +function timeToInt (time: number | string) { + if (!time) return 0 + if (typeof time === 'number') return time - return undefined -} + const reg = /^((\d+)h)?((\d+)m)?((\d+)s?)?$/ + const matches = time.match(reg) -function getAverageBandwidth () { - const value = getLocalStorage('average-bandwidth') - if (value !== null && value !== undefined) { - const valueNumber = parseInt(value, 10) - if (isNaN(valueNumber)) return undefined + if (!matches) return 0 - return valueNumber - } + const hours = parseInt(matches[2] || '0', 10) + const minutes = parseInt(matches[4] || '0', 10) + const seconds = parseInt(matches[6] || '0', 10) - return undefined + return hours * 3600 + minutes * 60 + seconds } -function saveVolumeInStore (value: number) { - return setLocalStorage('volume', value.toString()) +function secondsToTime (seconds: number) { + let time = '' + + let hours = Math.floor(seconds / 3600) + if (hours >= 1) time = hours + 'h' + + seconds %= 3600 + let minutes = Math.floor(seconds / 60) + if (minutes >= 1) time += minutes + 'm' + + seconds %= 60 + if (seconds >= 1) time += seconds + 's' + + return time } -function saveMuteInStore (value: boolean) { - return setLocalStorage('mute', value.toString()) +function buildVideoEmbed (embedUrl: string) { + return '' } -function saveAverageBandwidth (value: number) { - return setLocalStorage('average-bandwidth', value.toString()) +function copyToClipboard (text: string) { + const el = document.createElement('textarea') + el.value = text + el.setAttribute('readonly', '') + el.style.position = 'absolute' + el.style.left = '-9999px' + document.body.appendChild(el) + el.select() + document.execCommand('copy') + document.body.removeChild(el) } -export { - toTitleCase, - getStoredVolume, - saveVolumeInStore, - saveAverageBandwidth, - getAverageBandwidth, - saveMuteInStore, - getStoredMute, - bytes +function videoFileMaxByResolution (files: VideoFile[]) { + let max = files[0] + + for (let i = 1; i < files.length; i++) { + const file = files[i] + if (max.resolution.id < file.resolution.id) max = file + } + + return max } -// --------------------------------------------------------------------------- +function videoFileMinByResolution (files: VideoFile[]) { + let min = files[0] -const KEY_PREFIX = 'peertube-videojs-' + for (let i = 1; i < files.length; i++) { + const file = files[i] + if (min.resolution.id > file.resolution.id) min = file + } -function getLocalStorage (key: string) { - try { - return localStorage.getItem(KEY_PREFIX + key) - } catch { - return undefined + return min +} + +function getRtcConfig () { + return { + iceServers: [ + { + urls: 'stun:stun.stunprotocol.org' + }, + { + urls: 'stun:stun.framasoft.org' + } + ] } } -function setLocalStorage (key: string, value: string) { - try { - localStorage.setItem(KEY_PREFIX + key, value) - } catch { /* empty */ } +// --------------------------------------------------------------------------- + +export { + getRtcConfig, + toTitleCase, + timeToInt, + buildVideoLink, + buildVideoEmbed, + videoFileMaxByResolution, + videoFileMinByResolution, + copyToClipboard, + isMobile, + bytes }