109 lines
4.3 KiB
TypeScript
109 lines
4.3 KiB
TypeScript
import { Observable, ReplaySubject } from 'rxjs'
|
|
import { catchError, map, tap } from 'rxjs/operators'
|
|
import { HttpClient, HttpParams } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { ComponentPaginationLight, RestExtractor, RestService } from '@app/core'
|
|
import { ActorImage, ResultList, VideoChannel as VideoChannelServer, VideoChannelCreate, VideoChannelUpdate } from '@shared/models'
|
|
import { environment } from '../../../../environments/environment'
|
|
import { Account } from '../account'
|
|
import { AccountService } from '../account/account.service'
|
|
import { VideoChannel } from './video-channel.model'
|
|
|
|
@Injectable()
|
|
export class VideoChannelService {
|
|
static BASE_VIDEO_CHANNEL_URL = environment.apiUrl + '/api/v1/video-channels/'
|
|
|
|
videoChannelLoaded = new ReplaySubject<VideoChannel>(1)
|
|
|
|
static extractVideoChannels (result: ResultList<VideoChannelServer>) {
|
|
const videoChannels: VideoChannel[] = []
|
|
|
|
for (const videoChannelJSON of result.data) {
|
|
videoChannels.push(new VideoChannel(videoChannelJSON))
|
|
}
|
|
|
|
return { data: videoChannels, total: result.total }
|
|
}
|
|
|
|
constructor (
|
|
private authHttp: HttpClient,
|
|
private restService: RestService,
|
|
private restExtractor: RestExtractor
|
|
) { }
|
|
|
|
getVideoChannel (videoChannelName: string) {
|
|
return this.authHttp.get<VideoChannel>(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannelName)
|
|
.pipe(
|
|
map(videoChannelHash => new VideoChannel(videoChannelHash)),
|
|
tap(videoChannel => this.videoChannelLoaded.next(videoChannel)),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
|
|
listAccountVideoChannels (
|
|
account: Account,
|
|
componentPagination?: ComponentPaginationLight,
|
|
withStats = false,
|
|
search?: string
|
|
): Observable<ResultList<VideoChannel>> {
|
|
const pagination = componentPagination
|
|
? this.restService.componentPaginationToRestPagination(componentPagination)
|
|
: { start: 0, count: 20 }
|
|
|
|
let params = new HttpParams()
|
|
params = this.restService.addRestGetParams(params, pagination)
|
|
params = params.set('withStats', withStats + '')
|
|
|
|
if (search) {
|
|
params = params.set('search', search)
|
|
}
|
|
|
|
const url = AccountService.BASE_ACCOUNT_URL + account.nameWithHost + '/video-channels'
|
|
return this.authHttp.get<ResultList<VideoChannelServer>>(url, { params })
|
|
.pipe(
|
|
map(res => VideoChannelService.extractVideoChannels(res)),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
|
|
createVideoChannel (videoChannel: VideoChannelCreate) {
|
|
return this.authHttp.post(VideoChannelService.BASE_VIDEO_CHANNEL_URL, videoChannel)
|
|
.pipe(
|
|
map(this.restExtractor.extractDataBool),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
|
|
updateVideoChannel (videoChannelName: string, videoChannel: VideoChannelUpdate) {
|
|
return this.authHttp.put(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannelName, videoChannel)
|
|
.pipe(
|
|
map(this.restExtractor.extractDataBool),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
|
|
changeVideoChannelImage (videoChannelName: string, avatarForm: FormData, type: 'avatar' | 'banner') {
|
|
const url = VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannelName + '/' + type + '/pick'
|
|
|
|
return this.authHttp.post<{ avatar?: ActorImage, banner?: ActorImage }>(url, avatarForm)
|
|
.pipe(catchError(err => this.restExtractor.handleError(err)))
|
|
}
|
|
|
|
deleteVideoChannelImage (videoChannelName: string, type: 'avatar' | 'banner') {
|
|
const url = VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannelName + '/' + type
|
|
|
|
return this.authHttp.delete(url)
|
|
.pipe(
|
|
map(this.restExtractor.extractDataBool),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
|
|
removeVideoChannel (videoChannel: VideoChannel) {
|
|
return this.authHttp.delete(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.nameWithHost)
|
|
.pipe(
|
|
map(this.restExtractor.extractDataBool),
|
|
catchError(err => this.restExtractor.handleError(err))
|
|
)
|
|
}
|
|
}
|