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