]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/video-list/overview/overview.service.ts
Increase global font size
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / video-list / overview / overview.service.ts
1 import { forkJoin, Observable, of } from 'rxjs'
2 import { catchError, map, switchMap, tap } from 'rxjs/operators'
3 import { HttpClient, HttpParams } from '@angular/common/http'
4 import { Injectable } from '@angular/core'
5 import { RestExtractor, ServerService } from '@app/core'
6 import { immutableAssign } from '@app/helpers'
7 import { VideoService } from '@app/shared/shared-main'
8 import { peertubeTranslate } from '@shared/core-utils/i18n'
9 import { VideosOverview as VideosOverviewServer } from '@shared/models'
10 import { environment } from '../../../../environments/environment'
11 import { VideosOverview } from './videos-overview.model'
12
13 @Injectable()
14 export class OverviewService {
15 static BASE_OVERVIEW_URL = environment.apiUrl + '/api/v1/overviews/'
16
17 constructor (
18 private authHttp: HttpClient,
19 private restExtractor: RestExtractor,
20 private videosService: VideoService,
21 private serverService: ServerService
22 ) {}
23
24 getVideosOverview (page: number): Observable<VideosOverview> {
25 let params = new HttpParams()
26 params = params.append('page', page + '')
27
28 return this.authHttp
29 .get<VideosOverviewServer>(OverviewService.BASE_OVERVIEW_URL + 'videos', { params })
30 .pipe(
31 switchMap(serverVideosOverview => this.updateVideosOverview(serverVideosOverview)),
32 catchError(err => this.restExtractor.handleError(err))
33 )
34 }
35
36 private updateVideosOverview (serverVideosOverview: VideosOverviewServer): Observable<VideosOverview> {
37 const observables: Observable<any>[] = []
38 const videosOverviewResult: VideosOverview = {
39 tags: [],
40 categories: [],
41 channels: []
42 }
43
44 // Build videos objects
45 for (const key of Object.keys(serverVideosOverview)) {
46 for (const object of serverVideosOverview[key]) {
47 observables.push(
48 of(object.videos)
49 .pipe(
50 switchMap(videos => this.videosService.extractVideos({ total: 0, data: videos })),
51 map(result => result.data),
52 tap(videos => {
53 videosOverviewResult[key].push(immutableAssign(object, { videos }))
54 })
55 )
56 )
57 }
58 }
59
60 if (observables.length === 0) return of(videosOverviewResult)
61
62 return forkJoin(observables)
63 .pipe(
64 // Translate categories
65 switchMap(() => {
66 return this.serverService.getServerLocale()
67 .pipe(
68 tap(translations => {
69 for (const c of videosOverviewResult.categories) {
70 c.category.label = peertubeTranslate(c.category.label, translations)
71 }
72 })
73 )
74 }),
75 map(() => videosOverviewResult)
76 )
77 }
78
79 }