]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/server/server.service.ts
Add ability to disable tracker
[github/Chocobozzz/PeerTube.git] / client / src / app / core / server / server.service.ts
CommitLineData
4bda2e47 1import { map, shareReplay, 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'
63c4db6d 7import { environment } from '../../../environments/environment'
8cd7faaa 8import { VideoConstant, VideoPrivacy } from '../../../../../shared/models/videos'
3dfa8494
C
9import { isDefaultLocale, peertubeTranslate } from '../../../../../shared/models/i18n'
10import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
ad774752 11import { sortBy } from '@app/shared/misc/utils'
830b4faf 12import { VideoPlaylistPrivacy } from '@shared/models/videos/playlist/video-playlist-privacy.model'
db7af09b
C
13
14@Injectable()
15export class ServerService {
d3e56c0c 16 private static BASE_SERVER_URL = environment.apiUrl + '/api/v1/server/'
63c4db6d
C
17 private static BASE_CONFIG_URL = environment.apiUrl + '/api/v1/config/'
18 private static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
830b4faf 19 private static BASE_VIDEO_PLAYLIST_URL = environment.apiUrl + '/api/v1/video-playlists/'
7ce44a74 20 private static BASE_LOCALE_URL = environment.apiUrl + '/client/locales/'
36f9424f 21 private static CONFIG_LOCAL_STORAGE_KEY = 'server-config'
db7af09b 22
00b5556c 23 configLoaded = new ReplaySubject<boolean>(1)
baeefe22 24 videoPrivaciesLoaded = new ReplaySubject<boolean>(1)
830b4faf 25 videoPlaylistPrivaciesLoaded = new ReplaySubject<boolean>(1)
baeefe22
C
26 videoCategoriesLoaded = new ReplaySubject<boolean>(1)
27 videoLicencesLoaded = new ReplaySubject<boolean>(1)
28 videoLanguagesLoaded = new ReplaySubject<boolean>(1)
7ce44a74 29 localeObservable: Observable<any>
baeefe22 30
db7af09b 31 private config: ServerConfig = {
36f9424f 32 instance: {
00b5556c 33 name: 'PeerTube',
63ac2857
C
34 shortDescription: 'PeerTube, a federated (ActivityPub) video streaming platform ' +
35 'using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.',
901637bb 36 defaultClientRoute: '',
f8802489 37 isNSFW: false,
0883b324 38 defaultNSFWPolicy: 'do_not_list' as 'do_not_list',
00b5556c
C
39 customizations: {
40 javascript: '',
41 css: ''
42 }
36f9424f 43 },
3b3b1820
C
44 email: {
45 enabled: false
46 },
3866f1a0
C
47 contactForm: {
48 enabled: false
49 },
915c5bbe 50 serverVersion: 'Unknown',
db7af09b 51 signup: {
ff2c1fe8 52 allowed: false,
d9eaee39
JM
53 allowedForCurrentIP: false,
54 requiresEmailVerification: false
6a84aafd
C
55 },
56 transcoding: {
09209296
C
57 enabledResolutions: [],
58 hls: {
59 enabled: false
60 }
01de67b9
C
61 },
62 avatar: {
63 file: {
64 size: { max: 0 },
65 extensions: []
66 }
67 },
68 video: {
6de36768
C
69 image: {
70 size: { max: 0 },
71 extensions: []
72 },
01de67b9
C
73 file: {
74 extensions: []
75 }
1869c875 76 },
40e87e9e
C
77 videoCaption: {
78 file: {
79 size: { max: 0 },
80 extensions: []
81 }
82 },
1869c875 83 user: {
bee0abff
FA
84 videoQuota: -1,
85 videoQuotaDaily: -1
5d08a6a7
C
86 },
87 import: {
b2977eec 88 videos: {
5d08a6a7
C
89 http: {
90 enabled: false
a84b8fa5
C
91 },
92 torrent: {
93 enabled: false
5d08a6a7
C
94 }
95 }
9b4b15f9
AB
96 },
97 trending: {
98 videos: {
99 intervalDays: 0
100 }
7ccddd7b
JM
101 },
102 autoBlacklist: {
103 videos: {
104 ofUsers: {
105 enabled: false
106 }
107 }
31b6ddf8
C
108 },
109 tracker: {
110 enabled: true
db7af09b
C
111 }
112 }
8cd7faaa
C
113 private videoCategories: Array<VideoConstant<number>> = []
114 private videoLicences: Array<VideoConstant<number>> = []
9d3ef9fe 115 private videoLanguages: Array<VideoConstant<string>> = []
8cd7faaa 116 private videoPrivacies: Array<VideoConstant<VideoPrivacy>> = []
830b4faf 117 private videoPlaylistPrivacies: Array<VideoConstant<VideoPlaylistPrivacy>> = []
db7af09b 118
7ce44a74
C
119 constructor (
120 private http: HttpClient,
121 @Inject(LOCALE_ID) private localeId: string
122 ) {
7ce44a74 123 this.loadServerLocale()
74b7c6d4 124 this.loadConfigLocally()
36f9424f 125 }
db7af09b
C
126
127 loadConfig () {
128 this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
db400f44
C
129 .pipe(tap(this.saveConfigLocally))
130 .subscribe(data => {
131 this.config = data
00b5556c 132
db400f44
C
133 this.configLoaded.next(true)
134 })
db7af09b
C
135 }
136
137 loadVideoCategories () {
830b4faf 138 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'categories', this.videoCategories, this.videoCategoriesLoaded, true)
db7af09b
C
139 }
140
141 loadVideoLicences () {
830b4faf 142 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'licences', this.videoLicences, this.videoLicencesLoaded)
db7af09b
C
143 }
144
145 loadVideoLanguages () {
830b4faf 146 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'languages', this.videoLanguages, this.videoLanguagesLoaded, true)
db7af09b
C
147 }
148
fd45e8f4 149 loadVideoPrivacies () {
830b4faf
C
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 )
fd45e8f4
C
160 }
161
db7af09b
C
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
fd45e8f4
C
178 getVideoPrivacies () {
179 return this.videoPrivacies
180 }
181
830b4faf
C
182 getVideoPlaylistPrivacies () {
183 return this.videoPlaylistPrivacies
184 }
185
186 private loadAttributeEnum (
187 baseUrl: string,
fd45e8f4 188 attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
8cd7faaa 189 hashToPopulate: VideoConstant<string | number>[],
3580fc00
C
190 notifier: ReplaySubject<boolean>,
191 sort = false
fd45e8f4 192 ) {
7ce44a74
C
193 this.localeObservable
194 .pipe(
195 switchMap(translations => {
830b4faf 196 return this.http.get<{ [id: string]: string }>(baseUrl + attributeName)
c199c427 197 .pipe(map(data => ({ data, translations })))
7ce44a74
C
198 })
199 )
200 .subscribe(({ data, translations }) => {
201 Object.keys(data)
202 .forEach(dataKey => {
203 const label = data[ dataKey ]
204
205 hashToPopulate.push({
8cd7faaa 206 id: attributeName === 'languages' ? dataKey : parseInt(dataKey, 10),
7ce44a74
C
207 label: peertubeTranslate(label, translations)
208 })
209 })
210
ad774752 211 if (sort === true) sortBy(hashToPopulate, 'label')
7ce44a74
C
212
213 notifier.next(true)
214 })
215 }
216
217 private loadServerLocale () {
74b7c6d4 218 const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
7ce44a74
C
219
220 // Default locale, nothing to translate
74b7c6d4 221 if (isDefaultLocale(completeLocale)) {
4bda2e47 222 this.localeObservable = of({}).pipe(shareReplay())
74b7c6d4
C
223 return
224 }
7ce44a74
C
225
226 this.localeObservable = this.http
74b7c6d4 227 .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
4bda2e47 228 .pipe(shareReplay())
db7af09b 229 }
36f9424f
C
230
231 private saveConfigLocally (config: ServerConfig) {
0bd78bf3 232 peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
36f9424f
C
233 }
234
235 private loadConfigLocally () {
0bd78bf3 236 const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
36f9424f
C
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 }
db7af09b 247}