X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2F%2Bvideo-watch%2Fvideo-watch.component.ts;h=e4edb42fb893391aac6a73a671faa012ed345dab;hb=da0310f821b039fea1fcbf8aea49e1d2279ba98e;hp=f048edec4c943d09cd58c25252fb0779c58dab16;hpb=5d666c0eb25a1b665caa46c4210c1dc2a6b5b333;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts index f048edec4..e4edb42fb 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts @@ -4,7 +4,17 @@ import { catchError } from 'rxjs/operators' import { PlatformLocation } from '@angular/common' import { ChangeDetectorRef, Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { AuthService, AuthUser, ConfirmService, MarkdownService, Notifier, RestExtractor, ServerService, UserService } from '@app/core' +import { + AuthService, + AuthUser, + ConfirmService, + MarkdownService, + Notifier, + PeerTubeSocket, + RestExtractor, + ServerService, + UserService +} from '@app/core' import { HooksService } from '@app/core/plugins/hooks.service' import { RedirectService } from '@app/core/routing/redirect.service' import { isXPercentInViewport, scrollToTop } from '@app/helpers' @@ -30,6 +40,8 @@ import { environment } from '../../../environments/environment' import { VideoSupportComponent } from './modal/video-support.component' import { VideoWatchPlaylistComponent } from './video-watch-playlist.component' +type URLOptions = CustomizationOptions & { playerMode: PlayerMode } + @Component({ selector: 'my-video-watch', templateUrl: './video-watch.component.html', @@ -76,6 +88,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private paramsSub: Subscription private queryParamsSub: Subscription private configSub: Subscription + private liveVideosSub: Subscription private serverConfig: ServerConfig @@ -99,6 +112,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private videoCaptionService: VideoCaptionService, private hotkeysService: HotkeysService, private hooks: HooksService, + private peertubeSocket: PeerTubeSocket, private location: PlatformLocation, @Inject(LOCALE_ID) private localeId: string ) { @@ -117,6 +131,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy { } async ngOnInit () { + PeertubePlayerManager.initState() + this.serverConfig = this.serverService.getTmpConfig() this.configSub = this.serverService.getConfig() @@ -163,6 +179,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { if (this.paramsSub) this.paramsSub.unsubscribe() if (this.queryParamsSub) this.queryParamsSub.unsubscribe() if (this.configSub) this.configSub.unsubscribe() + if (this.liveVideosSub) this.liveVideosSub.unsubscribe() // Unbind hotkeys this.hotkeysService.remove(this.hotkeys) @@ -187,7 +204,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { getRatePopoverText () { if (this.isUserLoggedIn()) return undefined - return $localize`You need to be connected to rate this content.` + return $localize`You need to be logged in to rate this video.` } showMoreDescription () { @@ -304,6 +321,18 @@ export class VideoWatchComponent implements OnInit, OnDestroy { return this.video && this.video.scheduledUpdate !== undefined } + isLive () { + return !!(this.video?.isLive) + } + + isWaitingForLive () { + return this.video?.state.id === VideoState.WAITING_FOR_LIVE + } + + isLiveEnded () { + return this.video?.state.id === VideoState.LIVE_ENDED + } + isVideoBlur (video: Video) { return video.isVideoNSFWForUser(this.user, this.serverConfig) } @@ -468,8 +497,10 @@ export class VideoWatchComponent implements OnInit, OnDestroy { private async onVideoFetched ( video: VideoDetails, videoCaptions: VideoCaption[], - urlOptions: CustomizationOptions & { playerMode: PlayerMode } + urlOptions: URLOptions ) { + this.subscribeToLiveEventsIfNeeded(this.video, video) + this.video = video this.videoCaptions = videoCaptions @@ -487,6 +518,9 @@ export class VideoWatchComponent implements OnInit, OnDestroy { if (res === false) return this.location.back() } + const videoState = this.video.state.id + if (videoState === VideoState.LIVE_ENDED || videoState === VideoState.WAITING_FOR_LIVE) return + // Flush old player if needed this.flushPlayer() @@ -792,6 +826,29 @@ export class VideoWatchComponent implements OnInit, OnDestroy { return !this.player.paused() } + private async subscribeToLiveEventsIfNeeded (oldVideo: VideoDetails, newVideo: VideoDetails) { + if (!this.liveVideosSub) { + this.liveVideosSub = this.peertubeSocket.getLiveVideosObservable() + .subscribe(({ payload }) => { + if (payload.state !== VideoState.PUBLISHED || this.video.state.id !== VideoState.WAITING_FOR_LIVE) return + + const videoUUID = this.video.uuid + + // Reset to refetch the video + this.video = undefined + this.loadVideo(videoUUID) + }) + } + + if (oldVideo && oldVideo.id !== newVideo.id) { + await this.peertubeSocket.unsubscribeLiveVideos(oldVideo.id) + } + + if (!newVideo.isLive) return + + await this.peertubeSocket.subscribeToLiveVideosSocket(newVideo.id) + } + private initHotkeys () { this.hotkeys = [ // These hotkeys are managed by the player