PeerTube/client/src/app/core/server/server.service.ts

160 lines
4.4 KiB
TypeScript
Raw Normal View History

import { HttpClient } from '@angular/common/http'
2017-12-07 17:22:44 +01:00
import { Injectable } from '@angular/core'
import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage'
2017-12-07 17:22:44 +01:00
import 'rxjs/add/operator/do'
import { ReplaySubject } from 'rxjs/ReplaySubject'
import { ServerConfig } from '../../../../../shared'
2018-02-28 18:04:46 +01:00
import { About } from '../../../../../shared/models/server/about.model'
2017-12-11 17:36:46 +01:00
import { environment } from '../../../environments/environment'
@Injectable()
export class ServerService {
2017-12-11 17:36:46 +01:00
private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/'
private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
2018-01-31 17:47:36 +01:00
private static CONFIG_LOCAL_STORAGE_KEY = 'server-config'
configLoaded = new ReplaySubject<boolean>(1)
2017-12-07 17:22:44 +01:00
videoPrivaciesLoaded = new ReplaySubject<boolean>(1)
videoCategoriesLoaded = new ReplaySubject<boolean>(1)
videoLicencesLoaded = new ReplaySubject<boolean>(1)
videoLanguagesLoaded = new ReplaySubject<boolean>(1)
private config: ServerConfig = {
2018-01-31 17:47:36 +01:00
instance: {
name: 'PeerTube',
2018-03-22 14:13:30 +01:00
shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
2018-03-01 13:57:29 +01:00
defaultClientRoute: '',
customizations: {
javascript: '',
css: ''
}
2018-01-31 17:47:36 +01:00
},
2018-01-31 10:19:34 +01:00
serverVersion: 'Unknown',
signup: {
allowed: false
},
transcoding: {
enabledResolutions: []
2018-01-03 11:10:40 +01:00
},
avatar: {
file: {
size: { max: 0 },
extensions: []
}
},
video: {
image: {
size: { max: 0 },
extensions: []
},
2018-01-03 11:10:40 +01:00
file: {
extensions: []
}
}
}
private videoCategories: Array<{ id: number, label: string }> = []
private videoLicences: Array<{ id: number, label: string }> = []
private videoLanguages: Array<{ id: number, label: string }> = []
2017-10-31 11:52:52 +01:00
private videoPrivacies: Array<{ id: number, label: string }> = []
2018-01-31 17:47:36 +01:00
constructor (private http: HttpClient) {
this.loadConfigLocally()
}
loadConfig () {
this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
2018-01-31 17:47:36 +01:00
.do(this.saveConfigLocally)
.subscribe(data => {
this.config = data
this.configLoaded.next(true)
})
}
loadVideoCategories () {
2018-02-20 09:50:44 +01:00
return this.loadVideoAttributeEnum('categories', this.videoCategories, this.videoCategoriesLoaded, true)
}
loadVideoLicences () {
2017-12-07 17:22:44 +01:00
return this.loadVideoAttributeEnum('licences', this.videoLicences, this.videoLicencesLoaded)
}
loadVideoLanguages () {
2018-02-20 09:50:44 +01:00
return this.loadVideoAttributeEnum('languages', this.videoLanguages, this.videoLanguagesLoaded, true)
}
2017-10-31 11:52:52 +01:00
loadVideoPrivacies () {
2017-12-07 17:22:44 +01:00
return this.loadVideoAttributeEnum('privacies', this.videoPrivacies, this.videoPrivaciesLoaded)
2017-10-31 11:52:52 +01:00
}
getConfig () {
return this.config
}
getVideoCategories () {
return this.videoCategories
}
getVideoLicences () {
return this.videoLicences
}
getVideoLanguages () {
return this.videoLanguages
}
2017-10-31 11:52:52 +01:00
getVideoPrivacies () {
return this.videoPrivacies
}
2018-01-31 17:47:36 +01:00
getAbout () {
return this.http.get<About>(ServerService.BASE_CONFIG_URL + '/about')
}
2017-10-31 11:52:52 +01:00
private loadVideoAttributeEnum (
attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
2017-12-07 17:22:44 +01:00
hashToPopulate: { id: number, label: string }[],
2018-02-20 09:50:44 +01:00
notifier: ReplaySubject<boolean>,
sort = false
2017-10-31 11:52:52 +01:00
) {
return this.http.get(ServerService.BASE_VIDEO_URL + attributeName)
2017-12-07 17:22:44 +01:00
.subscribe(data => {
Object.keys(data)
.forEach(dataKey => {
hashToPopulate.push({
id: parseInt(dataKey, 10),
label: data[dataKey]
})
})
2017-12-08 08:39:15 +01:00
2018-02-20 09:50:44 +01:00
if (sort === true) {
hashToPopulate.sort((a, b) => {
if (a.label < b.label) return -1
if (a.label === b.label) return 0
return 1
})
}
2017-12-08 08:39:15 +01:00
notifier.next(true)
2017-12-07 17:22:44 +01:00
})
}
2018-01-31 17:47:36 +01:00
private saveConfigLocally (config: ServerConfig) {
peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
2018-01-31 17:47:36 +01:00
}
private loadConfigLocally () {
const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
2018-01-31 17:47:36 +01:00
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)
}
}
}
}