Add ability to disable tracker
[oweals/peertube.git] / client / src / app / core / server / server.service.ts
1 import { map, shareReplay, switchMap, tap } from 'rxjs/operators'
2 import { HttpClient } from '@angular/common/http'
3 import { Inject, Injectable, LOCALE_ID } from '@angular/core'
4 import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage'
5 import { Observable, of, ReplaySubject } from 'rxjs'
6 import { getCompleteLocale, ServerConfig } from '../../../../../shared'
7 import { environment } from '../../../environments/environment'
8 import { VideoConstant, VideoPrivacy } from '../../../../../shared/models/videos'
9 import { isDefaultLocale, peertubeTranslate } from '../../../../../shared/models/i18n'
10 import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
11 import { sortBy } from '@app/shared/misc/utils'
12 import { VideoPlaylistPrivacy } from '@shared/models/videos/playlist/video-playlist-privacy.model'
13
14 @Injectable()
15 export class ServerService {
16   private static BASE_SERVER_URL = environment.apiUrl + '/api/v1/server/'
17   private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/'
18   private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
19   private static BASE_VIDEO_PLAYLIST_URL = environment.apiUrl + '/api/v1/video-playlists/'
20   private static BASE_LOCALE_URL = environment.apiUrl + '/client/locales/'
21   private static CONFIG_LOCAL_STORAGE_KEY = 'server-config'
22
23   configLoaded = new ReplaySubject<boolean>(1)
24   videoPrivaciesLoaded = new ReplaySubject<boolean>(1)
25   videoPlaylistPrivaciesLoaded = new ReplaySubject<boolean>(1)
26   videoCategoriesLoaded = new ReplaySubject<boolean>(1)
27   videoLicencesLoaded = new ReplaySubject<boolean>(1)
28   videoLanguagesLoaded = new ReplaySubject<boolean>(1)
29   localeObservable: Observable<any>
30
31   private config: ServerConfig = {
32     instance: {
33       name: 'PeerTube',
34       shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform  ' +
35                         'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
36       defaultClientRoute: '',
37       isNSFW: false,
38       defaultNSFWPolicy: 'do_not_list' as 'do_not_list',
39       customizations: {
40         javascript: '',
41         css: ''
42       }
43     },
44     email: {
45       enabled: false
46     },
47     contactForm: {
48       enabled: false
49     },
50     serverVersion: 'Unknown',
51     signup: {
52       allowed: false,
53       allowedForCurrentIP: false,
54       requiresEmailVerification: false
55     },
56     transcoding: {
57       enabledResolutions: [],
58       hls: {
59         enabled: false
60       }
61     },
62     avatar: {
63       file: {
64         size: { max: 0 },
65         extensions: []
66       }
67     },
68     video: {
69       image: {
70         size: { max: 0 },
71         extensions: []
72       },
73       file: {
74         extensions: []
75       }
76     },
77     videoCaption: {
78       file: {
79         size: { max: 0 },
80         extensions: []
81       }
82     },
83     user: {
84       videoQuota: -1,
85       videoQuotaDaily: -1
86     },
87     import: {
88       videos: {
89         http: {
90           enabled: false
91         },
92         torrent: {
93           enabled: false
94         }
95       }
96     },
97     trending: {
98       videos: {
99         intervalDays: 0
100       }
101     },
102     autoBlacklist: {
103       videos: {
104         ofUsers: {
105           enabled: false
106         }
107       }
108     },
109     tracker: {
110       enabled: true
111     }
112   }
113   private videoCategories: Array<VideoConstant<number>> = []
114   private videoLicences: Array<VideoConstant<number>> = []
115   private videoLanguages: Array<VideoConstant<string>> = []
116   private videoPrivacies: Array<VideoConstant<VideoPrivacy>> = []
117   private videoPlaylistPrivacies: Array<VideoConstant<VideoPlaylistPrivacy>> = []
118
119   constructor (
120     private http: HttpClient,
121     @Inject(LOCALE_ID) private localeId: string
122   ) {
123     this.loadServerLocale()
124     this.loadConfigLocally()
125   }
126
127   loadConfig () {
128     this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
129         .pipe(tap(this.saveConfigLocally))
130         .subscribe(data => {
131           this.config = data
132
133           this.configLoaded.next(true)
134         })
135   }
136
137   loadVideoCategories () {
138     return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'categories', this.videoCategories, this.videoCategoriesLoaded, true)
139   }
140
141   loadVideoLicences () {
142     return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'licences', this.videoLicences, this.videoLicencesLoaded)
143   }
144
145   loadVideoLanguages () {
146     return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'languages', this.videoLanguages, this.videoLanguagesLoaded, true)
147   }
148
149   loadVideoPrivacies () {
150     return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'privacies', this.videoPrivacies, this.videoPrivaciesLoaded)
151   }
152
153   loadVideoPlaylistPrivacies () {
154     return this.loadAttributeEnum(
155       ServerService.BASE_VIDEO_PLAYLIST_URL,
156       'privacies',
157       this.videoPlaylistPrivacies,
158       this.videoPlaylistPrivaciesLoaded
159     )
160   }
161
162   getConfig () {
163     return this.config
164   }
165
166   getVideoCategories () {
167     return this.videoCategories
168   }
169
170   getVideoLicences () {
171     return this.videoLicences
172   }
173
174   getVideoLanguages () {
175     return this.videoLanguages
176   }
177
178   getVideoPrivacies () {
179     return this.videoPrivacies
180   }
181
182   getVideoPlaylistPrivacies () {
183     return this.videoPlaylistPrivacies
184   }
185
186   private loadAttributeEnum (
187     baseUrl: string,
188     attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
189     hashToPopulate: VideoConstant<string | number>[],
190     notifier: ReplaySubject<boolean>,
191     sort = false
192   ) {
193     this.localeObservable
194         .pipe(
195           switchMap(translations => {
196             return this.http.get<{ [id: string]: string }>(baseUrl + attributeName)
197                        .pipe(map(data => ({ data, translations })))
198           })
199         )
200         .subscribe(({ data, translations }) => {
201           Object.keys(data)
202                 .forEach(dataKey => {
203                   const label = data[ dataKey ]
204
205                   hashToPopulate.push({
206                     id: attributeName === 'languages' ? dataKey : parseInt(dataKey, 10),
207                     label: peertubeTranslate(label, translations)
208                   })
209                 })
210
211           if (sort === true) sortBy(hashToPopulate, 'label')
212
213           notifier.next(true)
214         })
215   }
216
217   private loadServerLocale () {
218     const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
219
220     // Default locale, nothing to translate
221     if (isDefaultLocale(completeLocale)) {
222       this.localeObservable = of({}).pipe(shareReplay())
223       return
224     }
225
226     this.localeObservable = this.http
227                                   .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
228                                   .pipe(shareReplay())
229   }
230
231   private saveConfigLocally (config: ServerConfig) {
232     peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
233   }
234
235   private loadConfigLocally () {
236     const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
237
238     if (configString) {
239       try {
240         const parsed = JSON.parse(configString)
241         Object.assign(this.config, parsed)
242       } catch (err) {
243         console.error('Cannot parse config saved in local storage.', err)
244       }
245     }
246   }
247 }