]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/server/server.service.ts
only count comments from people other than the video author
[github/Chocobozzz/PeerTube.git] / client / src / app / core / server / server.service.ts
CommitLineData
5fb2e288 1import { Observable, of, Subject } from 'rxjs'
ba430d75 2import { first, map, share, shareReplay, switchMap, tap } from 'rxjs/operators'
db7af09b 3import { HttpClient } from '@angular/common/http'
7ce44a74 4import { Inject, Injectable, LOCALE_ID } from '@angular/core'
4504f09f
RK
5import { getDevLocale, isOnDevLocale, sortBy } from '@app/helpers'
6import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage'
bd45d503
C
7import { getCompleteLocale, isDefaultLocale, peertubeTranslate } from '@shared/core-utils/i18n'
8import { SearchTargetType, ServerConfig, ServerStats, VideoConstant } from '@shared/models'
5fb2e288 9import { environment } from '../../../environments/environment'
db7af09b
C
10
11@Injectable()
12export class ServerService {
63c4db6d
C
13 private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/'
14 private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
830b4faf 15 private static BASE_VIDEO_PLAYLIST_URL = environment.apiUrl + '/api/v1/video-playlists/'
7ce44a74 16 private static BASE_LOCALE_URL = environment.apiUrl + '/client/locales/'
b764380a
C
17 private static BASE_STATS_URL = environment.apiUrl + '/api/v1/server/stats'
18
36f9424f 19 private static CONFIG_LOCAL_STORAGE_KEY = 'server-config'
db7af09b 20
72c33e71 21 configReloaded = new Subject<ServerConfig>()
baeefe22 22
ba430d75
C
23 private localeObservable: Observable<any>
24 private videoLicensesObservable: Observable<VideoConstant<number>[]>
25 private videoCategoriesObservable: Observable<VideoConstant<number>[]>
26 private videoPrivaciesObservable: Observable<VideoConstant<number>[]>
27 private videoPlaylistPrivaciesObservable: Observable<VideoConstant<number>[]>
28 private videoLanguagesObservable: Observable<VideoConstant<string>[]>
29 private configObservable: Observable<ServerConfig>
30
31 private configReset = false
32
33 private configLoaded = false
db7af09b 34 private config: ServerConfig = {
36f9424f 35 instance: {
00b5556c 36 name: 'PeerTube',
63ac2857
C
37 shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
38 'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
901637bb 39 defaultClientRoute: '',
f8802489 40 isNSFW: false,
0883b324 41 defaultNSFWPolicy: 'do_not_list' as 'do_not_list',
00b5556c
C
42 customizations: {
43 javascript: '',
44 css: ''
45 }
36f9424f 46 },
7cd4d2ba 47 plugin: {
4a8d113b
C
48 registered: [],
49 registeredExternalAuths: [],
50 registeredIdAndPassAuths: []
7cd4d2ba
C
51 },
52 theme: {
53 registered: [],
54 default: 'default'
55 },
3b3b1820
C
56 email: {
57 enabled: false
58 },
3866f1a0
C
59 contactForm: {
60 enabled: false
61 },
915c5bbe 62 serverVersion: 'Unknown',
db7af09b 63 signup: {
ff2c1fe8 64 allowed: false,
d9eaee39
JM
65 allowedForCurrentIP: false,
66 requiresEmailVerification: false
6a84aafd
C
67 },
68 transcoding: {
09209296
C
69 enabledResolutions: [],
70 hls: {
71 enabled: false
5a71acd2
C
72 },
73 webtorrent: {
74 enabled: true
09209296 75 }
01de67b9 76 },
c6c0fa6c
C
77 live: {
78 enabled: false,
fb719404
C
79 allowReplay: true,
80 maxDuration: null,
a056ca48
C
81 maxInstanceLives: -1,
82 maxUserLives: -1,
c6c0fa6c
C
83 transcoding: {
84 enabled: false,
85 enabledResolutions: []
4f20856e
C
86 },
87 rtmp: {
88 port: 1935
c6c0fa6c
C
89 }
90 },
01de67b9
C
91 avatar: {
92 file: {
93 size: { max: 0 },
94 extensions: []
95 }
96 },
97 video: {
6de36768
C
98 image: {
99 size: { max: 0 },
100 extensions: []
101 },
01de67b9
C
102 file: {
103 extensions: []
104 }
1869c875 105 },
40e87e9e
C
106 videoCaption: {
107 file: {
108 size: { max: 0 },
109 extensions: []
110 }
111 },
1869c875 112 user: {
bee0abff
FA
113 videoQuota: -1,
114 videoQuotaDaily: -1
5d08a6a7
C
115 },
116 import: {
b2977eec 117 videos: {
5d08a6a7
C
118 http: {
119 enabled: false
a84b8fa5
C
120 },
121 torrent: {
122 enabled: false
5d08a6a7
C
123 }
124 }
9b4b15f9
AB
125 },
126 trending: {
127 videos: {
128 intervalDays: 0
129 }
7ccddd7b
JM
130 },
131 autoBlacklist: {
132 videos: {
133 ofUsers: {
134 enabled: false
135 }
136 }
31b6ddf8
C
137 },
138 tracker: {
139 enabled: true
f24c8b14
RK
140 },
141 followings: {
142 instance: {
143 autoFollowIndex: {
144 indexUrl: 'https://instances.joinpeertube.org'
145 }
146 }
72c33e71
C
147 },
148 broadcastMessage: {
149 enabled: false,
150 message: '',
151 level: 'info',
152 dismissable: false
5fb2e288
C
153 },
154 search: {
155 remoteUri: {
156 users: true,
157 anonymous: false
158 },
159 searchIndex: {
160 enabled: false,
161 url: '',
162 disableLocalSearch: false,
163 isDefaultSearch: false
164 }
db7af09b
C
165 }
166 }
db7af09b 167
7ce44a74
C
168 constructor (
169 private http: HttpClient,
170 @Inject(LOCALE_ID) private localeId: string
171 ) {
74b7c6d4 172 this.loadConfigLocally()
36f9424f 173 }
db7af09b 174
ba430d75
C
175 getServerVersionAndCommit () {
176 const serverVersion = this.config.serverVersion
177 const commit = this.config.serverCommit || ''
00b5556c 178
ba430d75
C
179 let result = serverVersion
180 if (commit) result += '...' + commit
db7af09b 181
ba430d75 182 return result
db7af09b
C
183 }
184
ba430d75
C
185 resetConfig () {
186 this.configLoaded = false
187 this.configReset = true
72c33e71
C
188
189 // Notify config update
190 this.getConfig().subscribe(() => {
191 // empty, to fire a reset config event
192 })
db7af09b
C
193 }
194
ba430d75
C
195 getConfig () {
196 if (this.configLoaded) return of(this.config)
db7af09b 197
ba430d75
C
198 if (!this.configObservable) {
199 this.configObservable = this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
200 .pipe(
017fbe18
C
201 tap(config => this.saveConfigLocally(config)),
202 tap(config => {
203 this.config = config
204 this.configLoaded = true
205 }),
72c33e71 206 tap(config => {
ba430d75 207 if (this.configReset) {
72c33e71 208 this.configReloaded.next(config)
ba430d75
C
209 this.configReset = false
210 }
211 }),
212 share()
213 )
214 }
830b4faf 215
ba430d75 216 return this.configObservable
fd45e8f4
C
217 }
218
ba430d75
C
219 getTmpConfig () {
220 return this.config
dbdf2d51
C
221 }
222
db7af09b 223 getVideoCategories () {
ba430d75
C
224 if (!this.videoCategoriesObservable) {
225 this.videoCategoriesObservable = this.loadAttributeEnum<number>(ServerService.BASE_VIDEO_URL, 'categories', true)
226 }
227
228 return this.videoCategoriesObservable.pipe(first())
db7af09b
C
229 }
230
231 getVideoLicences () {
ba430d75
C
232 if (!this.videoLicensesObservable) {
233 this.videoLicensesObservable = this.loadAttributeEnum<number>(ServerService.BASE_VIDEO_URL, 'licences')
234 }
235
236 return this.videoLicensesObservable.pipe(first())
db7af09b
C
237 }
238
239 getVideoLanguages () {
ba430d75
C
240 if (!this.videoLanguagesObservable) {
241 this.videoLanguagesObservable = this.loadAttributeEnum<string>(ServerService.BASE_VIDEO_URL, 'languages', true)
242 }
243
244 return this.videoLanguagesObservable.pipe(first())
db7af09b
C
245 }
246
fd45e8f4 247 getVideoPrivacies () {
ba430d75
C
248 if (!this.videoPrivaciesObservable) {
249 this.videoPrivaciesObservable = this.loadAttributeEnum<number>(ServerService.BASE_VIDEO_URL, 'privacies')
250 }
251
252 return this.videoPrivaciesObservable.pipe(first())
fd45e8f4
C
253 }
254
830b4faf 255 getVideoPlaylistPrivacies () {
ba430d75
C
256 if (!this.videoPlaylistPrivaciesObservable) {
257 this.videoPlaylistPrivaciesObservable = this.loadAttributeEnum<number>(ServerService.BASE_VIDEO_PLAYLIST_URL, 'privacies')
258 }
259
260 return this.videoPlaylistPrivaciesObservable.pipe(first())
261 }
262
263 getServerLocale () {
264 if (!this.localeObservable) {
265 const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
266
267 // Default locale, nothing to translate
268 if (isDefaultLocale(completeLocale)) {
269 this.localeObservable = of({}).pipe(shareReplay())
270 } else {
271 this.localeObservable = this.http
272 .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
273 .pipe(shareReplay())
274 }
275 }
276
277 return this.localeObservable.pipe(first())
830b4faf
C
278 }
279
b764380a
C
280 getServerStats () {
281 return this.http.get<ServerStats>(ServerService.BASE_STATS_URL)
282 }
283
5fb2e288
C
284 getDefaultSearchTarget (): Promise<SearchTargetType> {
285 return this.getConfig().pipe(
286 map(config => {
287 const searchIndexConfig = config.search.searchIndex
288
289 if (searchIndexConfig.enabled && (searchIndexConfig.isDefaultSearch || searchIndexConfig.disableLocalSearch)) {
290 return 'search-index'
291 }
292
293 return 'local'
294 })
295 ).toPromise()
296 }
297
ba430d75 298 private loadAttributeEnum <T extends string | number> (
830b4faf 299 baseUrl: string,
fd45e8f4 300 attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
3580fc00 301 sort = false
fd45e8f4 302 ) {
ba430d75
C
303 return this.getServerLocale()
304 .pipe(
305 switchMap(translations => {
306 return this.http.get<{ [ id: string ]: string }>(baseUrl + attributeName)
307 .pipe(map(data => ({ data, translations })))
308 }),
309 map(({ data, translations }) => {
111fdc26
C
310 const hashToPopulate: VideoConstant<T>[] = Object.keys(data)
311 .map(dataKey => {
312 const label = data[ dataKey ]
313
314 const id = attributeName === 'languages'
315 ? dataKey as T
316 : parseInt(dataKey, 10) as T
317
318 return {
319 id,
320 label: peertubeTranslate(label, translations)
321 }
322 })
ba430d75
C
323
324 if (sort === true) sortBy(hashToPopulate, 'label')
7ce44a74 325
ba430d75
C
326 return hashToPopulate
327 }),
328 shareReplay()
329 )
db7af09b 330 }
36f9424f
C
331
332 private saveConfigLocally (config: ServerConfig) {
0bd78bf3 333 peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
36f9424f
C
334 }
335
336 private loadConfigLocally () {
0bd78bf3 337 const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
36f9424f
C
338
339 if (configString) {
340 try {
341 const parsed = JSON.parse(configString)
342 Object.assign(this.config, parsed)
343 } catch (err) {
344 console.error('Cannot parse config saved in local storage.', err)
345 }
346 }
347 }
db7af09b 348}