]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/server/server.service.ts
Add the video tags restrictions to the API docs
[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 }
db7af09b
C
101 }
102 }
8cd7faaa
C
103 private videoCategories: Array<VideoConstant<number>> = []
104 private videoLicences: Array<VideoConstant<number>> = []
9d3ef9fe 105 private videoLanguages: Array<VideoConstant<string>> = []
8cd7faaa 106 private videoPrivacies: Array<VideoConstant<VideoPrivacy>> = []
830b4faf 107 private videoPlaylistPrivacies: Array<VideoConstant<VideoPlaylistPrivacy>> = []
db7af09b 108
7ce44a74
C
109 constructor (
110 private http: HttpClient,
111 @Inject(LOCALE_ID) private localeId: string
112 ) {
7ce44a74 113 this.loadServerLocale()
74b7c6d4 114 this.loadConfigLocally()
36f9424f 115 }
db7af09b
C
116
117 loadConfig () {
118 this.http.get<ServerConfig>(ServerService.BASE_CONFIG_URL)
db400f44
C
119 .pipe(tap(this.saveConfigLocally))
120 .subscribe(data => {
121 this.config = data
00b5556c 122
db400f44
C
123 this.configLoaded.next(true)
124 })
db7af09b
C
125 }
126
127 loadVideoCategories () {
830b4faf 128 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'categories', this.videoCategories, this.videoCategoriesLoaded, true)
db7af09b
C
129 }
130
131 loadVideoLicences () {
830b4faf 132 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'licences', this.videoLicences, this.videoLicencesLoaded)
db7af09b
C
133 }
134
135 loadVideoLanguages () {
830b4faf 136 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'languages', this.videoLanguages, this.videoLanguagesLoaded, true)
db7af09b
C
137 }
138
fd45e8f4 139 loadVideoPrivacies () {
830b4faf
C
140 return this.loadAttributeEnum(ServerService.BASE_VIDEO_URL, 'privacies', this.videoPrivacies, this.videoPrivaciesLoaded)
141 }
142
143 loadVideoPlaylistPrivacies () {
144 return this.loadAttributeEnum(
145 ServerService.BASE_VIDEO_PLAYLIST_URL,
146 'privacies',
147 this.videoPlaylistPrivacies,
148 this.videoPlaylistPrivaciesLoaded
149 )
fd45e8f4
C
150 }
151
db7af09b
C
152 getConfig () {
153 return this.config
154 }
155
156 getVideoCategories () {
157 return this.videoCategories
158 }
159
160 getVideoLicences () {
161 return this.videoLicences
162 }
163
164 getVideoLanguages () {
165 return this.videoLanguages
166 }
167
fd45e8f4
C
168 getVideoPrivacies () {
169 return this.videoPrivacies
170 }
171
830b4faf
C
172 getVideoPlaylistPrivacies () {
173 return this.videoPlaylistPrivacies
174 }
175
176 private loadAttributeEnum (
177 baseUrl: string,
fd45e8f4 178 attributeName: 'categories' | 'licences' | 'languages' | 'privacies',
8cd7faaa 179 hashToPopulate: VideoConstant<string | number>[],
3580fc00
C
180 notifier: ReplaySubject<boolean>,
181 sort = false
fd45e8f4 182 ) {
7ce44a74
C
183 this.localeObservable
184 .pipe(
185 switchMap(translations => {
830b4faf 186 return this.http.get<{ [id: string]: string }>(baseUrl + attributeName)
c199c427 187 .pipe(map(data => ({ data, translations })))
7ce44a74
C
188 })
189 )
190 .subscribe(({ data, translations }) => {
191 Object.keys(data)
192 .forEach(dataKey => {
193 const label = data[ dataKey ]
194
195 hashToPopulate.push({
8cd7faaa 196 id: attributeName === 'languages' ? dataKey : parseInt(dataKey, 10),
7ce44a74
C
197 label: peertubeTranslate(label, translations)
198 })
199 })
200
ad774752 201 if (sort === true) sortBy(hashToPopulate, 'label')
7ce44a74
C
202
203 notifier.next(true)
204 })
205 }
206
207 private loadServerLocale () {
74b7c6d4 208 const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
7ce44a74
C
209
210 // Default locale, nothing to translate
74b7c6d4 211 if (isDefaultLocale(completeLocale)) {
4bda2e47 212 this.localeObservable = of({}).pipe(shareReplay())
74b7c6d4
C
213 return
214 }
7ce44a74
C
215
216 this.localeObservable = this.http
74b7c6d4 217 .get(ServerService.BASE_LOCALE_URL + completeLocale + '/server.json')
4bda2e47 218 .pipe(shareReplay())
db7af09b 219 }
36f9424f
C
220
221 private saveConfigLocally (config: ServerConfig) {
0bd78bf3 222 peertubeLocalStorage.setItem(ServerService.CONFIG_LOCAL_STORAGE_KEY, JSON.stringify(config))
36f9424f
C
223 }
224
225 private loadConfigLocally () {
0bd78bf3 226 const configString = peertubeLocalStorage.getItem(ServerService.CONFIG_LOCAL_STORAGE_KEY)
36f9424f
C
227
228 if (configString) {
229 try {
230 const parsed = JSON.parse(configString)
231 Object.assign(this.config, parsed)
232 } catch (err) {
233 console.error('Cannot parse config saved in local storage.', err)
234 }
235 }
236 }
db7af09b 237}