Skip videos count on client if we don't use it
[oweals/peertube.git] / client / src / app / shared / instance / instance.service.ts
1 import { catchError, map } from 'rxjs/operators'
2 import { HttpClient } from '@angular/common/http'
3 import { Injectable } from '@angular/core'
4 import { environment } from '../../../environments/environment'
5 import { RestExtractor, RestService } from '../rest'
6 import { About } from '../../../../../shared/models/server'
7 import { MarkdownService } from '@app/shared/renderer'
8 import { peertubeTranslate } from '@shared/models'
9 import { ServerService } from '@app/core'
10 import { forkJoin } from 'rxjs'
11
12 @Injectable()
13 export class InstanceService {
14   private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config'
15   private static BASE_SERVER_URL = environment.apiUrl + '/api/v1/server'
16
17   constructor (
18     private authHttp: HttpClient,
19     private restService: RestService,
20     private restExtractor: RestExtractor,
21     private markdownService: MarkdownService,
22     private serverService: ServerService
23   ) {
24   }
25
26   getAbout () {
27     return this.authHttp.get<About>(InstanceService.BASE_CONFIG_URL + '/about')
28                .pipe(catchError(res => this.restExtractor.handleError(res)))
29   }
30
31   contactAdministrator (fromEmail: string, fromName: string, subject: string, message: string) {
32     const body = {
33       fromEmail,
34       fromName,
35       subject,
36       body: message
37     }
38
39     return this.authHttp.post(InstanceService.BASE_SERVER_URL + '/contact', body)
40                .pipe(catchError(res => this.restExtractor.handleError(res)))
41
42   }
43
44   async buildHtml (about: About) {
45     const html = {
46       description: '',
47       terms: '',
48       codeOfConduct: '',
49       moderationInformation: '',
50       administrator: '',
51       hardwareInformation: ''
52     }
53
54     for (const key of Object.keys(html)) {
55       html[ key ] = await this.markdownService.textMarkdownToHTML(about.instance[ key ])
56     }
57
58     return html
59   }
60
61   buildTranslatedLanguages (about: About) {
62     return forkJoin([
63       this.serverService.getVideoLanguages(),
64       this.serverService.getServerLocale()
65     ]).pipe(
66       map(([ languagesArray, translations ]) => {
67         return about.instance.languages
68                     .map(l => {
69                       const languageObj = languagesArray.find(la => la.id === l)
70
71                       return peertubeTranslate(languageObj.label, translations)
72                     })
73       })
74     )
75   }
76
77   buildTranslatedCategories (about: About) {
78     return forkJoin([
79       this.serverService.getVideoCategories(),
80       this.serverService.getServerLocale()
81     ]).pipe(
82       map(([ categoriesArray, translations ]) => {
83         return about.instance.categories
84                     .map(c => {
85                       const categoryObj = categoriesArray.find(ca => ca.id === c)
86
87                       return peertubeTranslate(categoryObj.label, translations)
88                     })
89       })
90     )
91   }
92 }