]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-add-components/video-go-live.component.ts
Fix video right check
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add-components / video-go-live.component.ts
1 import { forkJoin } from 'rxjs'
2 import { AfterViewInit, Component, EventEmitter, OnInit, Output } from '@angular/core'
3 import { Router } from '@angular/router'
4 import { AuthService, CanComponentDeactivate, HooksService, Notifier, ServerService } from '@app/core'
5 import { scrollToTop } from '@app/helpers'
6 import { FormValidatorService } from '@app/shared/shared-forms'
7 import { Video, VideoCaptionService, VideoEdit, VideoService } from '@app/shared/shared-main'
8 import { LiveVideoService } from '@app/shared/shared-video-live'
9 import { LoadingBarService } from '@ngx-loading-bar/core'
10 import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, PeerTubeProblemDocument, ServerErrorCode } from '@shared/models'
11 import { VideoSend } from './video-send'
12
13 @Component({
14 selector: 'my-video-go-live',
15 templateUrl: './video-go-live.component.html',
16 styleUrls: [
17 '../shared/video-edit.component.scss',
18 './video-go-live.component.scss',
19 './video-send.scss'
20 ]
21 })
22 export class VideoGoLiveComponent extends VideoSend implements OnInit, AfterViewInit, CanComponentDeactivate {
23 @Output() firstStepDone = new EventEmitter<string>()
24 @Output() firstStepError = new EventEmitter<void>()
25
26 firstStepPermanentLive: boolean
27
28 isInUpdateForm = false
29
30 liveVideo: LiveVideo
31
32 videoId: number
33 videoUUID: string
34 videoShortUUID: string
35
36 error: string
37
38 constructor (
39 protected formValidatorService: FormValidatorService,
40 protected loadingBar: LoadingBarService,
41 protected notifier: Notifier,
42 protected authService: AuthService,
43 protected serverService: ServerService,
44 protected videoService: VideoService,
45 protected videoCaptionService: VideoCaptionService,
46 private liveVideoService: LiveVideoService,
47 private router: Router,
48 private hooks: HooksService
49 ) {
50 super()
51 }
52
53 ngOnInit () {
54 super.ngOnInit()
55 }
56
57 ngAfterViewInit () {
58 this.hooks.runAction('action:go-live.init', 'video-edit')
59 }
60
61 canDeactivate () {
62 return { canDeactivate: true }
63 }
64
65 goLive () {
66 const name = 'Live'
67
68 const video: LiveVideoCreate = {
69 name,
70 privacy: this.highestPrivacy,
71 nsfw: this.serverConfig.instance.isNSFW,
72 waitTranscoding: true,
73 permanentLive: this.firstStepPermanentLive,
74 saveReplay: this.isReplayAllowed(),
75 channelId: this.firstStepChannelId
76 }
77
78 // Go live in private mode, but correctly fill the update form with the first user choice
79 const toPatch = Object.assign({}, video, { privacy: this.firstStepPrivacyId })
80 this.form.patchValue(toPatch)
81
82 this.liveVideoService.goLive(video)
83 .subscribe({
84 next: res => {
85 this.videoId = res.video.id
86 this.videoUUID = res.video.uuid
87 this.videoShortUUID = res.video.shortUUID
88 this.isInUpdateForm = true
89
90 this.firstStepDone.emit(name)
91
92 this.fetchVideoLive()
93 },
94
95 error: err => {
96 this.firstStepError.emit()
97
98 let message = err.message
99
100 const error = err.body as PeerTubeProblemDocument
101
102 if (error?.code === ServerErrorCode.MAX_INSTANCE_LIVES_LIMIT_REACHED) {
103 message = $localize`Cannot create live because this instance have too many created lives`
104 } else if (error?.code === ServerErrorCode.MAX_USER_LIVES_LIMIT_REACHED) {
105 message = $localize`Cannot create live because you created too many lives`
106 }
107
108 this.notifier.error(message)
109 }
110 })
111 }
112
113 async updateSecondStep () {
114 if (!await this.isFormValid()) return
115
116 const video = new VideoEdit()
117 video.patch(this.form.value)
118 video.id = this.videoId
119 video.uuid = this.videoUUID
120 video.shortUUID = this.videoShortUUID
121
122 const liveVideoUpdate: LiveVideoUpdate = {
123 saveReplay: this.form.value.saveReplay,
124 permanentLive: this.form.value.permanentLive
125 }
126
127 // Update the video
128 forkJoin([
129 this.updateVideoAndCaptions(video),
130
131 this.liveVideoService.updateLive(this.videoId, liveVideoUpdate)
132 ]).subscribe({
133 next: () => {
134 this.notifier.success($localize`Live published.`)
135
136 this.router.navigateByUrl(Video.buildWatchUrl(video))
137 },
138
139 error: err => {
140 this.error = err.message
141 scrollToTop()
142 console.error(err)
143 }
144 })
145 }
146
147 getMaxLiveDuration () {
148 return this.serverConfig.live.maxDuration / 1000
149 }
150
151 isWaitTranscodingEnabled () {
152 return this.form.value['saveReplay'] === true
153 }
154
155 getNormalLiveDescription () {
156 if (this.isReplayAllowed()) {
157 return $localize`Stream only once, replay will replace your live`
158 }
159
160 return $localize`Stream only once`
161 }
162
163 getPermanentLiveDescription () {
164 if (this.isReplayAllowed()) {
165 return $localize`Stream multiple times, replays will be separate videos`
166 }
167
168 return $localize`Stream multiple times using the same URL`
169 }
170
171 private isReplayAllowed () {
172 return this.serverConfig.live.allowReplay
173 }
174
175 private fetchVideoLive () {
176 this.liveVideoService.getVideoLive(this.videoId)
177 .subscribe({
178 next: liveVideo => {
179 this.liveVideo = liveVideo
180 },
181
182 error: err => {
183 this.firstStepError.emit()
184 this.notifier.error(err.message)
185 }
186 })
187 }
188 }