]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-share-modal/video-share.component.ts
Merge branch 'release/5.1.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-share-modal / video-share.component.ts
CommitLineData
63347a0f 1import { Component, ElementRef, Input, ViewChild } from '@angular/core'
f1c86172 2import { DomSanitizer, SafeHtml } from '@angular/platform-browser'
de615445 3import { HooksService, ServerService } from '@app/core'
9162fdd3 4import { VideoDetails } from '@app/shared/shared-main'
67ed6552 5import { VideoPlaylist } from '@app/shared/shared-video-playlist'
82f443de 6import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
57d65032 7import { buildVideoOrPlaylistEmbed } from '@root-helpers/video'
15a7eafb 8import { buildPlaylistLink, buildVideoLink, decoratePlaylistLink, decorateVideoLink } from '@shared/core-utils'
38225867 9import { VideoCaption, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
2f4c784a
C
10
11type Customizations = {
12 startAtCheckbox: boolean
13 startAt: number
14
15 stopAtCheckbox: boolean
16 stopAt: number
17
18 subtitleCheckbox: boolean
19 subtitle: string
20
21 loop: boolean
dd1e2f2f 22 originUrl: boolean
2f4c784a
C
23 autoplay: boolean
24 muted: boolean
85302118
C
25
26 embedP2P: boolean
a871d2a2 27 onlyEmbedUrl: boolean
2f4c784a
C
28 title: boolean
29 warningTitle: boolean
60f013e1 30 controlBar: boolean
189ab8de 31 peertubeLink: boolean
cadc1a1b 32 responsive: boolean
de615445
C
33
34 includeVideoInPlaylist: boolean
2f4c784a 35}
cf02fbfb 36
951b582f
C
37type TabId = 'url' | 'qrcode' | 'embed'
38
cf02fbfb
C
39@Component({
40 selector: 'my-video-share',
c7e1e432
JL
41 templateUrl: './video-share.component.html',
42 styleUrls: [ './video-share.component.scss' ]
cf02fbfb
C
43})
44export class VideoShareComponent {
f36da21e 45 @ViewChild('modal', { static: true }) modal: ElementRef
11b8762f 46
404b54e1 47 @Input() video: VideoDetails = null
2f4c784a 48 @Input() videoCaptions: VideoCaption[] = []
3a1fed11 49 @Input() playlist: VideoPlaylist = null
d142c7b9 50 @Input() playlistPosition: number = null
cf02fbfb 51
951b582f
C
52 activeVideoId: TabId = 'url'
53 activePlaylistId: TabId = 'url'
54
2f4c784a
C
55 customizations: Customizations
56 isAdvancedCustomizationCollapsed = true
57
de615445
C
58 videoUrl: string
59 playlistUrl: string
60
61 videoEmbedUrl: string
62 playlistEmbedUrl: string
63
64 videoEmbedHTML: string
65 videoEmbedSafeHTML: SafeHtml
66 playlistEmbedHTML: string
67 playlistEmbedSafeHTML: SafeHtml
f1c86172
C
68
69 constructor (
70 private modalService: NgbModal,
85302118 71 private sanitizer: DomSanitizer,
de615445
C
72 private server: ServerService,
73 private hooks: HooksService
f1c86172 74 ) { }
cf02fbfb 75
951b582f 76 show (currentVideoTimestamp?: number, currentPlaylistPosition?: number) {
2f4c784a 77 let subtitle: string
82f443de 78 if (this.videoCaptions && this.videoCaptions.length !== 0) {
2f4c784a
C
79 subtitle = this.videoCaptions[0].language.id
80 }
81
f1c86172 82 this.customizations = new Proxy({
2f4c784a
C
83 startAtCheckbox: false,
84 startAt: currentVideoTimestamp ? Math.floor(currentVideoTimestamp) : 0,
85
86 stopAtCheckbox: false,
82f443de 87 stopAt: this.video?.duration,
2f4c784a
C
88
89 subtitleCheckbox: false,
90 subtitle,
91
92 loop: false,
dd1e2f2f 93 originUrl: false,
2f4c784a
C
94 autoplay: false,
95 muted: false,
96
97 // Embed options
a871d2a2
C
98 embedP2P: this.server.getHTMLConfig().defaults.p2p.embed.enabled,
99 onlyEmbedUrl: false,
2f4c784a
C
100 title: true,
101 warningTitle: true,
60f013e1 102 controlBar: true,
de615445 103 peertubeLink: true,
cadc1a1b 104 responsive: false,
de615445
C
105
106 includeVideoInPlaylist: false
f1c86172
C
107 }, {
108 set: (target, prop, value) => {
109 target[prop] = value
110
85302118
C
111 if (prop === 'embedP2P') {
112 // Auto enabled warning title if P2P is enabled
113 this.customizations.warningTitle = value
114 }
115
de615445 116 this.onUpdate()
f1c86172
C
117
118 return true
119 }
120 })
11b8762f 121
951b582f
C
122 this.playlistPosition = currentPlaylistPosition
123
de615445 124 this.onUpdate()
11b8762f 125
de615445
C
126 this.modalService.open(this.modal, { centered: true }).shown.subscribe(() => {
127 this.hooks.runAction('action:modal.share.shown', 'video-watch', { video: this.video, playlist: this.playlist })
128 })
a871d2a2 129 }
951b582f 130
de615445 131 // ---------------------------------------------------------------------------
cf02fbfb 132
df98563e 133 getVideoUrl () {
ab4001aa
C
134 const url = this.customizations.originUrl
135 ? this.video.url
136 : buildVideoLink(this.video, window.location.origin)
d4a8e7a6 137
de615445
C
138 return this.hooks.wrapFun(
139 decorateVideoLink,
140 { url, ...this.getVideoOptions(false) },
141 'video-watch',
142 'filter:share.video-url.build.params',
143 'filter:share.video-url.build.result'
144 )
145 }
2f4c784a 146
de615445
C
147 getVideoEmbedUrl () {
148 return this.hooks.wrapFun(
149 decorateVideoLink,
150 { url: this.video.embedUrl, ...this.getVideoOptions(true) },
151 'video-watch',
152 'filter:share.video-embed-url.build.params',
153 'filter:share.video-embed-url.build.result'
154 )
155 }
156
cadc1a1b
W
157 async getVideoEmbedCode (options: { responsive: boolean }) {
158 const { responsive } = options
de615445
C
159 return this.hooks.wrapFun(
160 buildVideoOrPlaylistEmbed,
cadc1a1b 161 { embedUrl: await this.getVideoEmbedUrl(), embedTitle: this.video.name, responsive },
de615445
C
162 'video-watch',
163 'filter:share.video-embed-code.build.params',
164 'filter:share.video-embed-code.build.result'
165 )
cf02fbfb 166 }
2c8d4697 167
de615445
C
168 // ---------------------------------------------------------------------------
169
3a1fed11 170 getPlaylistUrl () {
9162fdd3 171 const url = buildPlaylistLink(this.playlist)
3a1fed11 172
de615445
C
173 return this.hooks.wrapFun(
174 decoratePlaylistLink,
175 { url, ...this.getPlaylistOptions() },
176 'video-watch',
177 'filter:share.video-playlist-url.build.params',
178 'filter:share.video-playlist-url.build.result'
179 )
180 }
181
182 getPlaylistEmbedUrl () {
183 return this.hooks.wrapFun(
184 decoratePlaylistLink,
185 { url: this.playlist.embedUrl, ...this.getPlaylistOptions() },
186 'video-watch',
187 'filter:share.video-playlist-embed-url.build.params',
188 'filter:share.video-playlist-embed-url.build.result'
189 )
190 }
191
cadc1a1b
W
192 async getPlaylistEmbedCode (options: { responsive: boolean }) {
193 const { responsive } = options
de615445
C
194 return this.hooks.wrapFun(
195 buildVideoOrPlaylistEmbed,
cadc1a1b 196 { embedUrl: await this.getPlaylistEmbedUrl(), embedTitle: this.playlist.displayName, responsive },
de615445
C
197 'video-watch',
198 'filter:share.video-playlist-embed-code.build.params',
199 'filter:share.video-playlist-embed-code.build.result'
200 )
2c8d4697 201 }
c7e1e432 202
de615445
C
203 // ---------------------------------------------------------------------------
204
205 async onUpdate () {
206 console.log('on update')
f1c86172 207
de615445
C
208 if (this.playlist) {
209 this.playlistUrl = await this.getPlaylistUrl()
210 this.playlistEmbedUrl = await this.getPlaylistEmbedUrl()
cadc1a1b
W
211 this.playlistEmbedHTML = await this.getPlaylistEmbedCode({ responsive: this.customizations.responsive })
212 this.playlistEmbedSafeHTML = this.sanitizer.bypassSecurityTrustHtml(await this.getPlaylistEmbedCode({ responsive: false }))
de615445
C
213 }
214
215 if (this.video) {
216 this.videoUrl = await this.getVideoUrl()
217 this.videoEmbedUrl = await this.getVideoEmbedUrl()
cadc1a1b
W
218 this.videoEmbedHTML = await this.getVideoEmbedCode({ responsive: this.customizations.responsive })
219 this.videoEmbedSafeHTML = this.sanitizer.bypassSecurityTrustHtml(await this.getVideoEmbedCode({ responsive: false }))
de615445 220 }
f1c86172
C
221 }
222
3a1fed11
C
223 notSecure () {
224 return window.location.protocol === 'http:'
c7e1e432 225 }
11b8762f 226
a871d2a2 227 isInVideoEmbedTab () {
951b582f 228 return this.activeVideoId === 'embed'
2f4c784a
C
229 }
230
a871d2a2
C
231 isInPlaylistEmbedTab () {
232 return this.activePlaylistId === 'embed'
233 }
234
dd1e2f2f
J
235 isLocalVideo () {
236 return this.video.isLocal
237 }
238
38225867
NR
239 isPrivateVideo () {
240 return this.video.privacy.id === VideoPrivacy.PRIVATE
241 }
242
243 isPrivatePlaylist () {
244 return this.playlist.privacy.id === VideoPlaylistPrivacy.PRIVATE
245 }
246
951b582f
C
247 private getPlaylistOptions (baseUrl?: string) {
248 return {
249 baseUrl,
250
de615445
C
251 playlistPosition: this.playlistPosition && this.customizations.includeVideoInPlaylist
252 ? this.playlistPosition
253 : undefined
951b582f
C
254 }
255 }
256
85302118
C
257 private getVideoOptions (forEmbed: boolean) {
258 const embedOptions = forEmbed
259 ? {
260 title: this.customizations.title,
261 warningTitle: this.customizations.warningTitle,
60f013e1 262 controlBar: this.customizations.controlBar,
85302118
C
263 peertubeLink: this.customizations.peertubeLink,
264
265 // If using default value, we don't need to specify it
266 p2p: this.customizations.embedP2P === this.server.getHTMLConfig().defaults.p2p.embed.enabled
267 ? undefined
268 : this.customizations.embedP2P
269 }
270 : {}
271
2f4c784a 272 return {
2f4c784a
C
273 startTime: this.customizations.startAtCheckbox ? this.customizations.startAt : undefined,
274 stopTime: this.customizations.stopAtCheckbox ? this.customizations.stopAt : undefined,
275
276 subtitle: this.customizations.subtitleCheckbox ? this.customizations.subtitle : undefined,
277
278 loop: this.customizations.loop,
279 autoplay: this.customizations.autoplay,
280 muted: this.customizations.muted,
11b8762f 281
85302118 282 ...embedOptions
2f4c784a 283 }
11b8762f 284 }
cf02fbfb 285}