X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fserver%2Fserver.service.ts;h=52b50cbe8a851346bff4d4407a8486b1ebbf1094;hb=a84b8fa5cf6e4cafb841af3db9bdfcc9531c09a4;hp=ae507afce3949be6076639fe77fb5afb20df722e;hpb=6a84aafd23c2f887f837cc4826cf7c8c07d1c60f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/server/server.service.ts b/client/src/app/core/server/server.service.ts index ae507afce..52b50cbe8 100644 --- a/client/src/app/core/server/server.service.ts +++ b/client/src/app/core/server/server.service.ts @@ -1,42 +1,122 @@ -import { Injectable } from '@angular/core' +import { map, share, switchMap, tap } from 'rxjs/operators' import { HttpClient } from '@angular/common/http' - -import { ServerConfig } from '../../../../../shared' +import { Inject, Injectable, LOCALE_ID } from '@angular/core' +import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage' +import { Observable, of, ReplaySubject } from 'rxjs' +import { getCompleteLocale, ServerConfig } from '../../../../../shared' +import { About } from '../../../../../shared/models/server/about.model' +import { environment } from '../../../environments/environment' +import { VideoConstant } from '../../../../../shared/models/videos' +import { isDefaultLocale } from '../../../../../shared/models/i18n' +import { getDevLocale, isOnDevLocale, peertubeTranslate } from '@app/shared/i18n/i18n-utils' +import { sortBy } from '@app/shared/misc/utils' @Injectable() export class ServerService { - private static BASE_CONFIG_URL = API_URL + '/api/v1/config/' - private static BASE_VIDEO_URL = API_URL + '/api/v1/videos/' + private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/' + private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/' + private static BASE_LOCALE_URL = environment.apiUrl + '/client/locales/' + private static CONFIG_LOCAL_STORAGE_KEY = 'server-config' + + configLoaded = new ReplaySubject(1) + videoPrivaciesLoaded = new ReplaySubject(1) + videoCategoriesLoaded = new ReplaySubject(1) + videoLicencesLoaded = new ReplaySubject(1) + videoLanguagesLoaded = new ReplaySubject(1) + localeObservable: Observable private config: ServerConfig = { + instance: { + name: 'PeerTube', + shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' + + 'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.', + defaultClientRoute: '', + defaultNSFWPolicy: 'do_not_list' as 'do_not_list', + customizations: { + javascript: '', + css: '' + } + }, + serverVersion: 'Unknown', signup: { - allowed: false + allowed: false, + allowedForCurrentIP: false }, transcoding: { enabledResolutions: [] + }, + avatar: { + file: { + size: { max: 0 }, + extensions: [] + } + }, + video: { + image: { + size: { max: 0 }, + extensions: [] + }, + file: { + extensions: [] + } + }, + videoCaption: { + file: { + size: { max: 0 }, + extensions: [] + } + }, + user: { + videoQuota: -1 + }, + import: { + videos: { + http: { + enabled: false + }, + torrent: { + enabled: false + } + } } } - private videoCategories: Array<{ id: number, label: string }> = [] - private videoLicences: Array<{ id: number, label: string }> = [] - private videoLanguages: Array<{ id: number, label: string }> = [] + private videoCategories: Array> = [] + private videoLicences: Array> = [] + private videoLanguages: Array> = [] + private videoPrivacies: Array> = [] - constructor (private http: HttpClient) {} + constructor ( + private http: HttpClient, + @Inject(LOCALE_ID) private localeId: string + ) { + this.loadServerLocale() + this.loadConfigLocally() + } loadConfig () { this.http.get(ServerService.BASE_CONFIG_URL) - .subscribe(data => this.config = data) + .pipe(tap(this.saveConfigLocally)) + .subscribe(data => { + this.config = data + + this.configLoaded.next(true) + }) } loadVideoCategories () { - return this.loadVideoAttributeEnum('categories', this.videoCategories) + return this.loadVideoAttributeEnum('categories', this.videoCategories, this.videoCategoriesLoaded, true) } loadVideoLicences () { - return this.loadVideoAttributeEnum('licences', this.videoLicences) + return this.loadVideoAttributeEnum('licences', this.videoLicences, this.videoLicencesLoaded) } loadVideoLanguages () { - return this.loadVideoAttributeEnum('languages', this.videoLanguages) + return this.loadVideoAttributeEnum('languages', this.videoLanguages, this.videoLanguagesLoaded, true) + } + + loadVideoPrivacies () { + return this.loadVideoAttributeEnum('privacies', this.videoPrivacies, this.videoPrivaciesLoaded) } getConfig () { @@ -55,16 +135,72 @@ export class ServerService { return this.videoLanguages } - private loadVideoAttributeEnum (attributeName: 'categories' | 'licences' | 'languages', hashToPopulate: { id: number, label: string }[]) { - return this.http.get(ServerService.BASE_VIDEO_URL + attributeName) - .subscribe(data => { - Object.keys(data) - .forEach(dataKey => { - hashToPopulate.push({ - id: parseInt(dataKey, 10), - label: data[dataKey] - }) - }) - }) + getVideoPrivacies () { + return this.videoPrivacies + } + + getAbout () { + return this.http.get(ServerService.BASE_CONFIG_URL + '/about') + } + + private loadVideoAttributeEnum ( + attributeName: 'categories' | 'licences' | 'languages' | 'privacies', + hashToPopulate: VideoConstant[], + notifier: ReplaySubject, + sort = false + ) { + this.localeObservable + .pipe( + switchMap(translations => { + return this.http.get(ServerService.BASE_VIDEO_URL + attributeName) + .pipe(map(data => ({ data, translations }))) + }) + ) + .subscribe(({ data, translations }) => { + Object.keys(data) + .forEach(dataKey => { + const label = data[ dataKey ] + + hashToPopulate.push({ + id: dataKey, + label: peertubeTranslate(label, translations) + }) + }) + + if (sort === true) sortBy(hashToPopulate, 'label') + + notifier.next(true) + }) + } + + private loadServerLocale () { + const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId) + + // Default locale, nothing to translate + if (isDefaultLocale(completeLocale)) { + this.localeObservable = of({}).pipe(share()) + return + } + + this.localeObservable = this.http + .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json') + .pipe(share()) + } + + private saveConfigLocally (config: ServerConfig) { + peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config)) + } + + private loadConfigLocally () { + const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY) + + if (configString) { + try { + const parsed = JSON.parse(configString) + Object.assign(this.config, parsed) + } catch (err) { + console.error('Cannot parse config saved in local storage.', err) + } + } } }