2017-10-09 19:12:40 +02:00
|
|
|
import { HttpClient } from '@angular/common/http'
|
2017-12-07 17:22:44 +01:00
|
|
|
import { Injectable } from '@angular/core'
|
|
|
|
import 'rxjs/add/operator/do'
|
|
|
|
import { ReplaySubject } from 'rxjs/ReplaySubject'
|
2017-10-09 19:12:40 +02:00
|
|
|
import { ServerConfig } from '../../../../../shared'
|
2018-01-31 17:47:36 +01:00
|
|
|
import { About } from '../../../../../shared/models/config/about.model'
|
2017-12-11 17:36:46 +01:00
|
|
|
import { environment } from '../../../environments/environment'
|
2017-10-09 19:12:40 +02:00
|
|
|
|
|
|
|
@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'
|
2017-10-09 19:12:40 +02:00
|
|
|
|
2018-02-22 10:22:53 +01:00
|
|
|
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)
|
|
|
|
|
2017-10-09 19:12:40 +02:00
|
|
|
private config: ServerConfig = {
|
2018-01-31 17:47:36 +01:00
|
|
|
instance: {
|
2018-02-22 10:22:53 +01:00
|
|
|
name: 'PeerTube',
|
|
|
|
customizations: {
|
|
|
|
javascript: '',
|
|
|
|
css: ''
|
|
|
|
}
|
2018-01-31 17:47:36 +01:00
|
|
|
},
|
2018-01-31 10:19:34 +01:00
|
|
|
serverVersion: 'Unknown',
|
2017-10-09 19:12:40 +02:00
|
|
|
signup: {
|
|
|
|
allowed: false
|
2017-10-19 17:33:32 +02:00
|
|
|
},
|
|
|
|
transcoding: {
|
|
|
|
enabledResolutions: []
|
2018-01-03 11:10:40 +01:00
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
file: {
|
|
|
|
size: { max: 0 },
|
|
|
|
extensions: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
video: {
|
2018-02-16 16:35:32 +01:00
|
|
|
image: {
|
|
|
|
size: { max: 0 },
|
|
|
|
extensions: []
|
|
|
|
},
|
2018-01-03 11:10:40 +01:00
|
|
|
file: {
|
|
|
|
extensions: []
|
|
|
|
}
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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 }> = []
|
2017-10-09 19:12:40 +02:00
|
|
|
|
2018-01-31 17:47:36 +01:00
|
|
|
constructor (private http: HttpClient) {
|
|
|
|
this.loadConfigLocally()
|
|
|
|
}
|
2017-10-09 19:12:40 +02:00
|
|
|
|
|
|
|
loadConfig () {
|
|
|
|
this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
|
2018-01-31 17:47:36 +01:00
|
|
|
.do(this.saveConfigLocally)
|
2018-02-22 10:22:53 +01:00
|
|
|
.subscribe(data => {
|
|
|
|
this.config = data
|
|
|
|
|
|
|
|
this.configLoaded.next(true)
|
|
|
|
})
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
loadVideoCategories () {
|
2018-02-20 09:50:44 +01:00
|
|
|
return this.loadVideoAttributeEnum('categories', this.videoCategories, this.videoCategoriesLoaded, true)
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
loadVideoLicences () {
|
2017-12-07 17:22:44 +01:00
|
|
|
return this.loadVideoAttributeEnum('licences', this.videoLicences, this.videoLicencesLoaded)
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
loadVideoLanguages () {
|
2018-02-20 09:50:44 +01:00
|
|
|
return this.loadVideoAttributeEnum('languages', this.videoLanguages, this.videoLanguagesLoaded, true)
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-10-09 19:12:40 +02: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
|
|
|
) {
|
2017-10-09 19:12:40 +02: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-10-09 19:12:40 +02:00
|
|
|
})
|
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
|
|
|
})
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|
2018-01-31 17:47:36 +01:00
|
|
|
|
|
|
|
private saveConfigLocally (config: ServerConfig) {
|
|
|
|
localStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
|
|
|
|
}
|
|
|
|
|
|
|
|
private loadConfigLocally () {
|
|
|
|
const configString = localStorage.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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-09 19:12:40 +02:00
|
|
|
}
|