]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/utils.ts
Add/update/delete/list my playlists
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / utils.ts
CommitLineData
6cca7360 1import { VideoFile } from '../../../../shared/models/videos'
e945b184 2
c6352f2c
C
3function 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
9const 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]
c199c427 15function bytes (value: number) {
c6352f2c
C
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
d1bd87e0
C
22function isMobile () {
23 return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent)
24}
25
11b8762f
C
26function buildVideoLink (time?: number, url?: string) {
27 if (!url) url = window.location.origin + window.location.pathname.replace('/embed/', '/watch/')
1f6824c9 28
960a11e8
C
29 if (time) {
30 const timeInt = Math.floor(time)
31
1f6824c9
C
32 const params = new URLSearchParams(window.location.search)
33 params.set('start', secondsToTime(timeInt))
34
11b8762f 35 return url + '?' + params.toString()
960a11e8
C
36 }
37
11b8762f 38 return url
1f6824c9
C
39}
40
41function timeToInt (time: number | string) {
3b019808 42 if (!time) return 0
1f6824c9
C
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
57function 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
960a11e8
C
71}
72
73function buildVideoEmbed (embedUrl: string) {
74 return '<iframe width="560" height="315" ' +
77540346 75 'sandbox="allow-same-origin allow-scripts" ' +
960a11e8
C
76 'src="' + embedUrl + '" ' +
77 'frameborder="0" allowfullscreen>' +
78 '</iframe>'
79}
80
81function 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
6cca7360
C
93function 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
104function 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
09209296
C
115function 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
7b3a99d5
C
128// ---------------------------------------------------------------------------
129
c6352f2c 130export {
09209296 131 getRtcConfig,
c6352f2c 132 toTitleCase,
1f6824c9 133 timeToInt,
960a11e8 134 buildVideoLink,
960a11e8 135 buildVideoEmbed,
6cca7360
C
136 videoFileMaxByResolution,
137 videoFileMinByResolution,
960a11e8 138 copyToClipboard,
d1bd87e0 139 isMobile,
c6352f2c
C
140 bytes
141}