]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-miniature/video-miniature.component.ts
Fallback to built in HLS if possible
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / video-miniature.component.ts
1 import { switchMap } from 'rxjs/operators'
2 import {
3 ChangeDetectionStrategy,
4 ChangeDetectorRef,
5 Component,
6 EventEmitter,
7 Inject,
8 Input,
9 LOCALE_ID,
10 OnInit,
11 Output
12 } from '@angular/core'
13 import { AuthService, ScreenService, ServerService, User } from '@app/core'
14 import { I18n } from '@ngx-translate/i18n-polyfill'
15 import { ServerConfig, VideoPlaylistType, VideoPrivacy, VideoState } from '../../../../../shared'
16 import { Video } from '../shared-main'
17 import { VideoPlaylistService } from '../shared-video-playlist'
18 import { VideoActionsDisplayType } from './video-actions-dropdown.component'
19
20 export type OwnerDisplayType = 'account' | 'videoChannel' | 'auto'
21 export type MiniatureDisplayOptions = {
22 date?: boolean
23 views?: boolean
24 by?: boolean
25 avatar?: boolean
26 privacyLabel?: boolean
27 privacyText?: boolean
28 state?: boolean
29 blacklistInfo?: boolean
30 nsfw?: boolean
31 }
32
33 @Component({
34 selector: 'my-video-miniature',
35 styleUrls: [ './video-miniature.component.scss' ],
36 templateUrl: './video-miniature.component.html',
37 changeDetection: ChangeDetectionStrategy.OnPush
38 })
39 export class VideoMiniatureComponent implements OnInit {
40 @Input() user: User
41 @Input() video: Video
42
43 @Input() ownerDisplayType: OwnerDisplayType = 'account'
44 @Input() displayOptions: MiniatureDisplayOptions = {
45 date: true,
46 views: true,
47 by: true,
48 avatar: false,
49 privacyLabel: false,
50 privacyText: false,
51 state: false,
52 blacklistInfo: false
53 }
54 @Input() displayAsRow = false
55 @Input() displayVideoActions = true
56 @Input() fitWidth = false
57
58 @Input() useLazyLoadUrl = false
59
60 @Output() videoBlocked = new EventEmitter()
61 @Output() videoUnblocked = new EventEmitter()
62 @Output() videoRemoved = new EventEmitter()
63 @Output() videoAccountMuted = new EventEmitter()
64
65 videoActionsDisplayOptions: VideoActionsDisplayType = {
66 playlist: true,
67 download: false,
68 update: true,
69 blacklist: true,
70 delete: true,
71 report: true,
72 duplicate: true,
73 mute: true
74 }
75 showActions = false
76 serverConfig: ServerConfig
77
78 addToWatchLaterText: string
79 addedToWatchLaterText: string
80 inWatchLaterPlaylist: boolean
81 channelLinkTitle = ''
82
83 watchLaterPlaylist: {
84 id: number
85 playlistElementId?: number
86 }
87
88 videoLink: any[] = []
89
90 private ownerDisplayTypeChosen: 'account' | 'videoChannel'
91
92 constructor (
93 private screenService: ScreenService,
94 private serverService: ServerService,
95 private i18n: I18n,
96 private authService: AuthService,
97 private videoPlaylistService: VideoPlaylistService,
98 private cd: ChangeDetectorRef,
99 @Inject(LOCALE_ID) private localeId: string
100 ) {}
101
102 get isVideoBlur () {
103 return this.video.isVideoNSFWForUser(this.user, this.serverConfig)
104 }
105
106 ngOnInit () {
107 this.serverConfig = this.serverService.getTmpConfig()
108 this.serverService.getConfig()
109 .subscribe(config => {
110 this.serverConfig = config
111 this.buildVideoLink()
112 })
113
114 this.setUpBy()
115
116 this.channelLinkTitle = this.i18n(
117 '{{name}} (channel page)',
118 { name: this.video.channel.name, handle: this.video.byVideoChannel }
119 )
120
121 // We rely on mouseenter to lazy load actions
122 if (this.screenService.isInTouchScreen()) {
123 this.loadActions()
124 }
125 }
126
127 buildVideoLink () {
128 if (this.useLazyLoadUrl && this.video.url) {
129 const remoteUriConfig = this.serverConfig.search.remoteUri
130
131 // Redirect on the external instance if not allowed to fetch remote data
132 const externalRedirect = (!this.authService.isLoggedIn() && !remoteUriConfig.anonymous) || !remoteUriConfig.users
133 const fromPath = window.location.pathname + window.location.search
134
135 this.videoLink = [ '/search/lazy-load-video', { url: this.video.url, externalRedirect, fromPath } ]
136 return
137 }
138
139 this.videoLink = [ '/videos/watch', this.video.uuid ]
140 }
141
142 displayOwnerAccount () {
143 return this.ownerDisplayTypeChosen === 'account'
144 }
145
146 displayOwnerVideoChannel () {
147 return this.ownerDisplayTypeChosen === 'videoChannel'
148 }
149
150 isUnlistedVideo () {
151 return this.video.privacy.id === VideoPrivacy.UNLISTED
152 }
153
154 isPrivateVideo () {
155 return this.video.privacy.id === VideoPrivacy.PRIVATE
156 }
157
158 getStateLabel (video: Video) {
159 if (!video.state) return ''
160
161 if (video.privacy.id !== VideoPrivacy.PRIVATE && video.state.id === VideoState.PUBLISHED) {
162 return this.i18n('Published')
163 }
164
165 if (video.scheduledUpdate) {
166 const updateAt = new Date(video.scheduledUpdate.updateAt.toString()).toLocaleString(this.localeId)
167 return this.i18n('Publication scheduled on ') + updateAt
168 }
169
170 if (video.state.id === VideoState.TO_TRANSCODE && video.waitTranscoding === true) {
171 return this.i18n('Waiting transcoding')
172 }
173
174 if (video.state.id === VideoState.TO_TRANSCODE) {
175 return this.i18n('To transcode')
176 }
177
178 if (video.state.id === VideoState.TO_IMPORT) {
179 return this.i18n('To import')
180 }
181
182 return ''
183 }
184
185 getAvatarUrl () {
186 if (this.ownerDisplayTypeChosen === 'account') {
187 return this.video.accountAvatarUrl
188 }
189
190 return this.video.videoChannelAvatarUrl
191 }
192
193 loadActions () {
194 if (this.displayVideoActions) this.showActions = true
195
196 this.loadWatchLater()
197 }
198
199 onVideoBlocked () {
200 this.videoBlocked.emit()
201 }
202
203 onVideoUnblocked () {
204 this.videoUnblocked.emit()
205 }
206
207 onVideoRemoved () {
208 this.videoRemoved.emit()
209 }
210
211 onVideoAccountMuted () {
212 this.videoAccountMuted.emit()
213 }
214
215 isUserLoggedIn () {
216 return this.authService.isLoggedIn()
217 }
218
219 onWatchLaterClick (currentState: boolean) {
220 if (currentState === true) this.removeFromWatchLater()
221 else this.addToWatchLater()
222
223 this.inWatchLaterPlaylist = !currentState
224 }
225
226 addToWatchLater () {
227 const body = { videoId: this.video.id }
228
229 this.videoPlaylistService.addVideoInPlaylist(this.watchLaterPlaylist.id, body).subscribe(
230 res => {
231 this.watchLaterPlaylist.playlistElementId = res.videoPlaylistElement.id
232 }
233 )
234 }
235
236 removeFromWatchLater () {
237 this.videoPlaylistService.removeVideoFromPlaylist(this.watchLaterPlaylist.id, this.watchLaterPlaylist.playlistElementId, this.video.id)
238 .subscribe(
239 _ => { /* empty */ }
240 )
241 }
242
243 isWatchLaterPlaylistDisplayed () {
244 return this.displayVideoActions && this.isUserLoggedIn() && this.inWatchLaterPlaylist !== undefined
245 }
246
247 private setUpBy () {
248 if (this.ownerDisplayType === 'account' || this.ownerDisplayType === 'videoChannel') {
249 this.ownerDisplayTypeChosen = this.ownerDisplayType
250 return
251 }
252
253 // If the video channel name an UUID (not really displayable, we changed this behaviour in v1.0.0-beta.12)
254 // -> Use the account name
255 if (
256 this.video.channel.name === `${this.video.account.name}_channel` ||
257 this.video.channel.name.match(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/)
258 ) {
259 this.ownerDisplayTypeChosen = 'account'
260 } else {
261 this.ownerDisplayTypeChosen = 'videoChannel'
262 }
263 }
264
265 private loadWatchLater () {
266 if (!this.isUserLoggedIn() || this.inWatchLaterPlaylist !== undefined) return
267
268 this.authService.userInformationLoaded
269 .pipe(switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id)))
270 .subscribe(existResult => {
271 const watchLaterPlaylist = this.authService.getUser().specialPlaylists.find(p => p.type === VideoPlaylistType.WATCH_LATER)
272 const existsInWatchLater = existResult.find(r => r.playlistId === watchLaterPlaylist.id)
273 this.inWatchLaterPlaylist = false
274
275 this.watchLaterPlaylist = {
276 id: watchLaterPlaylist.id
277 }
278
279 if (existsInWatchLater) {
280 this.inWatchLaterPlaylist = true
281 this.watchLaterPlaylist.playlistElementId = existsInWatchLater.playlistElementId
282 }
283
284 this.cd.markForCheck()
285 })
286
287 this.videoPlaylistService.runPlaylistCheck(this.video.id)
288 }
289 }