Use a single file instead of segments for HLS
[oweals/peertube.git] / client / src / assets / player / utils.ts
1 import { VideoFile } from '../../../../shared/models/videos'
2
3 function toTitleCase (str: string) {
4   return str.charAt(0).toUpperCase() + str.slice(1)
5 }
6
7 // https://github.com/danrevah/ngx-pipes/blob/master/src/pipes/math/bytes.ts
8 // Don't import all Angular stuff, just copy the code with shame
9 const dictionaryBytes: Array<{max: number, type: string}> = [
10   { max: 1024, type: 'B' },
11   { max: 1048576, type: 'KB' },
12   { max: 1073741824, type: 'MB' },
13   { max: 1.0995116e12, type: 'GB' }
14 ]
15 function bytes (value: number) {
16   const format = dictionaryBytes.find(d => value < d.max) || dictionaryBytes[dictionaryBytes.length - 1]
17   const calc = Math.floor(value / (format.max / 1024)).toString()
18
19   return [ calc, format.type ]
20 }
21
22 function isMobile () {
23   return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent)
24 }
25
26 function buildVideoLink (time?: number, url?: string) {
27   if (!url) url = window.location.origin + window.location.pathname.replace('/embed/', '/watch/')
28
29   if (time) {
30     const timeInt = Math.floor(time)
31
32     const params = new URLSearchParams(window.location.search)
33     params.set('start', secondsToTime(timeInt))
34
35     return url + '?' + params.toString()
36   }
37
38   return url
39 }
40
41 function timeToInt (time: number | string) {
42   if (!time) return 0
43   if (typeof time === 'number') return time
44
45   const reg = /^((\d+)h)?((\d+)m)?((\d+)s?)?$/
46   const matches = time.match(reg)
47
48   if (!matches) return 0
49
50   const hours = parseInt(matches[2] || '0', 10)
51   const minutes = parseInt(matches[4] || '0', 10)
52   const seconds = parseInt(matches[6] || '0', 10)
53
54   return hours * 3600 + minutes * 60 + seconds
55 }
56
57 function secondsToTime (seconds: number) {
58   let time = ''
59
60   let hours = Math.floor(seconds / 3600)
61   if (hours >= 1) time = hours + 'h'
62
63   seconds %= 3600
64   let minutes = Math.floor(seconds / 60)
65   if (minutes >= 1) time += minutes + 'm'
66
67   seconds %= 60
68   if (seconds >= 1) time += seconds + 's'
69
70   return time
71 }
72
73 function buildVideoEmbed (embedUrl: string) {
74   return '<iframe width="560" height="315" ' +
75     'sandbox="allow-same-origin allow-scripts" ' +
76     'src="' + embedUrl + '" ' +
77     'frameborder="0" allowfullscreen>' +
78     '</iframe>'
79 }
80
81 function copyToClipboard (text: string) {
82   const el = document.createElement('textarea')
83   el.value = text
84   el.setAttribute('readonly', '')
85   el.style.position = 'absolute'
86   el.style.left = '-9999px'
87   document.body.appendChild(el)
88   el.select()
89   document.execCommand('copy')
90   document.body.removeChild(el)
91 }
92
93 function videoFileMaxByResolution (files: VideoFile[]) {
94   let max = files[0]
95
96   for (let i = 1; i < files.length; i++) {
97     const file = files[i]
98     if (max.resolution.id < file.resolution.id) max = file
99   }
100
101   return max
102 }
103
104 function videoFileMinByResolution (files: VideoFile[]) {
105   let min = files[0]
106
107   for (let i = 1; i < files.length; i++) {
108     const file = files[i]
109     if (min.resolution.id > file.resolution.id) min = file
110   }
111
112   return min
113 }
114
115 function getRtcConfig () {
116   return {
117     iceServers: [
118       {
119         urls: 'stun:stun.stunprotocol.org'
120       },
121       {
122         urls: 'stun:stun.framasoft.org'
123       }
124     ]
125   }
126 }
127
128 // ---------------------------------------------------------------------------
129
130 export {
131   getRtcConfig,
132   toTitleCase,
133   timeToInt,
134   buildVideoLink,
135   buildVideoEmbed,
136   videoFileMaxByResolution,
137   videoFileMinByResolution,
138   copyToClipboard,
139   isMobile,
140   bytes
141 }