aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-main/video/live-video.service.ts
blob: 2cd1c66a5f7acd2763e9f11749198d5932427e6c (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                 
                                                       


                                                                  
                               








                                                                          
                                                                                                          




                                                                            
                                                                              


                                                                            
import { catchError } from 'rxjs/operators'
import { HttpClient } from '@angular/common/http'
import { Injectable } from '@angular/core'
import { RestExtractor } from '@app/core'
import { VideoCreate, LiveVideo } from '@shared/models'
import { environment } from '../../../../environments/environment'

@Injectable()
export class LiveVideoService {
  static BASE_VIDEO_LIVE_URL = environment.apiUrl + '/api/v1/videos/live/'

  constructor (
    private authHttp: HttpClient,
    private restExtractor: RestExtractor
  ) {}

  goLive (video: VideoCreate) {
    return this.authHttp
               .post<{ video: { id: number, uuid: string } }>(LiveVideoService.BASE_VIDEO_LIVE_URL, video)
               .pipe(catchError(err => this.restExtractor.handleError(err)))
  }

  getVideoLive (videoId: number | string) {
    return this.authHttp
               .get<LiveVideo>(LiveVideoService.BASE_VIDEO_LIVE_URL + videoId)
               .pipe(catchError(err => this.restExtractor.handleError(err)))
  }
}