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