]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/server/server.service.ts
Import torrents with webtorrent
[github/Chocobozzz/PeerTube.git] / client / src / app / core / server / server.service.ts
CommitLineData
7ce44a74 1import { map, share, switchMap, tap } from 'rxjs/operators'
db7af09b 2import { HttpClient } from '@angular/common/http'
7ce44a74 3import { Inject, Injectable, LOCALE_ID } from '@angular/core'
0bd78bf3 4import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage'
ad774752 5import { Observable, of, ReplaySubject } from 'rxjs'
74b7c6d4 6import { getCompleteLocale, ServerConfig } from '../../../../../shared'
09cababd 7import { About } from '../../../../../shared/models/server/about.model'
63c4db6d 8import { environment } from '../../../environments/environment'
ad774752 9import { VideoConstant } from '../../../../../shared/models/videos'
74b7c6d4
C
10import { isDefaultLocale } from '../../../../../shared/models/i18n'
11import { getDevLocale, isOnDevLocale, peertubeTranslate } from '@app/shared/i18n/i18n-utils'
ad774752 12import { sortBy } from '@app/shared/misc/utils'
db7af09b
C
13
14@Injectable()
15export class ServerService {
63c4db6d
C
16 private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/'
17 private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
7ce44a74 18 private static BASE_LOCALE_URL = environment.apiUrl + '/client/locales/'
36f9424f 19 private static CONFIG_LOCAL_STORAGE_KEY = 'server-config'
db7af09b 20
00b5556c 21 configLoaded = new ReplaySubject<boolean>(1)
baeefe22
C
22 videoPrivaciesLoaded = new ReplaySubject<boolean>(1)
23 videoCategoriesLoaded = new ReplaySubject<boolean>(1)
24 videoLicencesLoaded = new ReplaySubject<boolean>(1)
25 videoLanguagesLoaded = new ReplaySubject<boolean>(1)
7ce44a74 26 localeObservable: Observable<any>
baeefe22 27
db7af09b 28 private config: ServerConfig = {
36f9424f 29 instance: {
00b5556c 30 name: 'PeerTube',
63ac2857
C
31 shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
32 'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
901637bb 33 defaultClientRoute: '',
0883b324 34 defaultNSFWPolicy: 'do_not_list' as 'do_not_list',
00b5556c
C
35 customizations: {
36 javascript: '',
37 css: ''
38 }
36f9424f 39 },
915c5bbe 40 serverVersion: 'Unknown',
db7af09b 41 signup: {
ff2c1fe8
RK
42 allowed: false,
43 allowedForCurrentIP: false
6a84aafd
C
44 },
45 transcoding: {
46 enabledResolutions: []
01de67b9
C
47 },
48 avatar: {
49 file: {
50 size: { max: 0 },
51 extensions: []
52 }
53 },
54 video: {
6de36768
C
55 image: {
56 size: { max: 0 },
57 extensions: []
58 },
01de67b9
C
59 file: {
60 extensions: []
61 }
1869c875 62 },
40e87e9e
C
63 videoCaption: {
64 file: {
65 size: { max: 0 },
66 extensions: []
67 }
68 },
1869c875
RK
69 user: {
70 videoQuota: -1
5d08a6a7
C
71 },
72 import: {
b2977eec 73 videos: {
5d08a6a7
C
74 http: {
75 enabled: false
76 }
77 }
db7af09b
C
78 }
79 }
ef4c78da
C
80 private videoCategories: Array<VideoConstant<string>> = []
81 private videoLicences: Array<VideoConstant<string>> = []
9d3ef9fe 82 private videoLanguages: Array<VideoConstant<string>> = []
ef4c78da 83 private videoPrivacies: Array<VideoConstant<string>> = []
db7af09b 84
7ce44a74
C
85 constructor (
86 private http: HttpClient,
87 @Inject(LOCALE_ID) private localeId: string
88 ) {
7ce44a74 89 this.loadServerLocale()
74b7c6d4 90 this.loadConfigLocally()
36f9424f 91 }
db7af09b
C
92
93 loadConfig () {
94 this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
db400f44
C
95 .pipe(tap(this.saveConfigLocally))
96 .subscribe(data => {
97 this.config = data
00b5556c 98
db400f44
C
99 this.configLoaded.next(true)
100 })
db7af09b
C
101 }
102
103 loadVideoCategories () {
3580fc00 104 return this.loadVideoAttributeEnum('categories', this.videoCategories, this.videoCategoriesLoaded, true)
db7af09b
C
105 }
106
107 loadVideoLicences () {
baeefe22 108 return this.loadVideoAttributeEnum('licences', this.videoLicences, this.videoLicencesLoaded)
db7af09b
C
109 }
110
111 loadVideoLanguages () {
3580fc00 112 return this.loadVideoAttributeEnum('languages', this.videoLanguages, this.videoLanguagesLoaded, true)
db7af09b
C
113 }
114
fd45e8f4 115 loadVideoPrivacies () {
baeefe22 116 return this.loadVideoAttributeEnum('privacies', this.videoPrivacies, this.videoPrivaciesLoaded)
fd45e8f4
C
117 }
118
db7af09b
C
119 getConfig () {
120 return this.config
121 }
122
123 getVideoCategories () {
124 return this.videoCategories
125 }
126
127 getVideoLicences () {
128 return this.videoLicences
129 }
130
131 getVideoLanguages () {
132 return this.videoLanguages
133 }
134
fd45e8f4
C
135 getVideoPrivacies () {
136 return this.videoPrivacies
137 }
138
36f9424f
C
139 getAbout () {
140 return this.http.get<About>(ServerService.BASE_CONFIG_URL + '/about')
141 }
142
fd45e8f4
C
143 private loadVideoAttributeEnum (
144 attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
ef4c78da 145 hashToPopulate: VideoConstant<string>[],
3580fc00
C
146 notifier: ReplaySubject<boolean>,
147 sort = false
fd45e8f4 148 ) {
7ce44a74
C
149 this.localeObservable
150 .pipe(
151 switchMap(translations => {
152 return this.http.get(ServerService.BASE_VIDEO_URL + attributeName)
153 .pipe(map(data => ({ data, translations })))
154 })
155 )
156 .subscribe(({ data, translations }) => {
157 Object.keys(data)
158 .forEach(dataKey => {
159 const label = data[ dataKey ]
160
161 hashToPopulate.push({
162 id: dataKey,
163 label: peertubeTranslate(label, translations)
164 })
165 })
166
ad774752 167 if (sort === true) sortBy(hashToPopulate, 'label')
7ce44a74
C
168
169 notifier.next(true)
170 })
171 }
172
173 private loadServerLocale () {
74b7c6d4 174 const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
7ce44a74
C
175
176 // Default locale, nothing to translate
74b7c6d4
C
177 if (isDefaultLocale(completeLocale)) {
178 this.localeObservable = of({}).pipe(share())
179 return
180 }
7ce44a74
C
181
182 this.localeObservable = this.http
74b7c6d4 183 .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
7ce44a74 184 .pipe(share())
db7af09b 185 }
36f9424f
C
186
187 private saveConfigLocally (config: ServerConfig) {
0bd78bf3 188 peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
36f9424f
C
189 }
190
191 private loadConfigLocally () {
0bd78bf3 192 const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
36f9424f
C
193
194 if (configString) {
195 try {
196 const parsed = JSON.parse(configString)
197 Object.assign(this.config, parsed)
198 } catch (err) {
199 console.error('Cannot parse config saved in local storage.', err)
200 }
201 }
202 }
db7af09b 203}