Chocobozzz/PeerTube

View on GitHub
client/src/app/shared/shared-main/video/video-password.service.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ResultList, VideoPassword } from '@peertube/peertube-models'
import { Injectable } from '@angular/core'
import { catchError, switchMap } from 'rxjs'
import { HttpClient, HttpHeaders } from '@angular/common/http'
import { RestExtractor } from '@app/core'
import { VideoService } from './video.service'

@Injectable()
export class VideoPasswordService {

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

  static buildVideoPasswordHeader (videoPassword: string) {
    return videoPassword
      ? new HttpHeaders().set('x-peertube-video-password', videoPassword)
      : undefined
  }

  getVideoPasswords (options: { videoUUID: string }) {
    return this.authHttp.get<ResultList<VideoPassword>>(`${VideoService.BASE_VIDEO_URL}/${options.videoUUID}/passwords`)
      .pipe(
        switchMap(res => res.data),
        catchError(err => this.restExtractor.handleError(err))
      )
  }
}