]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/video.service.ts
Add language filters in user preferences
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / video.service.ts
CommitLineData
7ce44a74 1import { catchError, map, switchMap } from 'rxjs/operators'
7a8032bb 2import { HttpClient, HttpParams, HttpRequest } from '@angular/common/http'
202f6b6c 3import { Injectable } from '@angular/core'
db400f44 4import { Observable } from 'rxjs'
202f6b6c
C
5import { Video as VideoServerModel, VideoDetails as VideoDetailsServerModel } from '../../../../../shared'
6import { ResultList } from '../../../../../shared/models/result-list.model'
8cd7faaa
C
7import {
8 UserVideoRate,
5c6d985f 9 UserVideoRateType,
8cd7faaa
C
10 UserVideoRateUpdate,
11 VideoConstant,
12 VideoFilter,
13 VideoPrivacy,
8cd7faaa
C
14 VideoUpdate
15} from '../../../../../shared/models/videos'
244e76a5 16import { FeedFormat } from '../../../../../shared/models/feeds/feed-format.enum'
63c4db6d 17import { environment } from '../../../environments/environment'
4635f59d 18import { ComponentPagination } from '../rest/component-pagination.model'
202f6b6c
C
19import { RestExtractor } from '../rest/rest-extractor.service'
20import { RestService } from '../rest/rest.service'
202f6b6c 21import { UserService } from '../users/user.service'
7b87d2d5 22import { VideoSortField } from './sort-field.type'
404b54e1
C
23import { VideoDetails } from './video-details.model'
24import { VideoEdit } from './video-edit.model'
202f6b6c 25import { Video } from './video.model'
6de36768 26import { objectToFormData } from '@app/shared/misc/utils'
0626e7af
C
27import { Account } from '@app/shared/account/account.model'
28import { AccountService } from '@app/shared/account/account.service'
170726f5 29import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
7ce44a74 30import { ServerService } from '@app/core'
39ba2e8e 31import { UserSubscriptionService } from '@app/shared/user-subscription/user-subscription.service'
f5b0af50 32import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
8cd7faaa 33import { I18n } from '@ngx-translate/i18n-polyfill'
f0a39880
C
34import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model'
35import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
dc8bc31b 36
7f5f4152 37export interface VideosProvider {
3caf77d3 38 getVideos (parameters: {
7f5f4152
BJ
39 videoPagination: ComponentPagination,
40 sort: VideoSortField,
41 filter?: VideoFilter,
3caf77d3
C
42 categoryOneOf?: number,
43 languageOneOf?: string[]
44 }): Observable<{ videos: Video[], totalVideos: number }>
7f5f4152
BJ
45}
46
dc8bc31b 47@Injectable()
7f5f4152 48export class VideoService implements VideosProvider {
40e87e9e
C
49 static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos/'
50 static BASE_FEEDS_URL = environment.apiUrl + '/feeds/videos.'
dc8bc31b 51
df98563e 52 constructor (
d592e0a9 53 private authHttp: HttpClient,
de59c48f 54 private restExtractor: RestExtractor,
7ce44a74 55 private restService: RestService,
8cd7faaa
C
56 private serverService: ServerService,
57 private i18n: I18n
4fd8aa32
C
58 ) {}
59
8cac1b64
C
60 getVideoViewUrl (uuid: string) {
61 return VideoService.BASE_VIDEO_URL + uuid + '/views'
62 }
63
6e46de09
C
64 getUserWatchingVideoUrl (uuid: string) {
65 return VideoService.BASE_VIDEO_URL + uuid + '/watching'
66 }
67
9d9597df 68 getVideo (uuid: string): Observable<VideoDetails> {
7ce44a74 69 return this.serverService.localeObservable
db400f44 70 .pipe(
7ce44a74 71 switchMap(translations => {
74b7c6d4
C
72 return this.authHttp.get<VideoDetailsServerModel>(VideoService.BASE_VIDEO_URL + uuid)
73 .pipe(map(videoHash => ({ videoHash, translations })))
7ce44a74
C
74 }),
75 map(({ videoHash, translations }) => new VideoDetails(videoHash, translations)),
e4f0e92e 76 catchError(err => this.restExtractor.handleError(err))
db400f44 77 )
4fd8aa32 78 }
dc8bc31b 79
404b54e1 80 updateVideo (video: VideoEdit) {
360329cc
C
81 const language = video.language || null
82 const licence = video.licence || null
83 const category = video.category || null
84 const description = video.description || null
85 const support = video.support || null
e94fc297 86 const scheduleUpdate = video.scheduleUpdate || null
1e74f19a 87 const originallyPublishedAt = video.originallyPublishedAt || null
c24ac1c1 88
4771e000 89 const body: VideoUpdate = {
d8e689b8 90 name: video.name,
cadb46d8
C
91 category,
92 licence,
c24ac1c1 93 language,
3bf1ec2e 94 support,
cadb46d8 95 description,
0f320037 96 channelId: video.channelId,
fd45e8f4 97 privacy: video.privacy,
4771e000 98 tags: video.tags,
47564bbe 99 nsfw: video.nsfw,
2186386c 100 waitTranscoding: video.waitTranscoding,
6de36768 101 commentsEnabled: video.commentsEnabled,
7f2cfe3a 102 downloadEnabled: video.downloadEnabled,
6de36768 103 thumbnailfile: video.thumbnailfile,
bbe0f064 104 previewfile: video.previewfile,
1e74f19a 105 scheduleUpdate,
106 originallyPublishedAt
df98563e 107 }
c24ac1c1 108
6de36768
C
109 const data = objectToFormData(body)
110
111 return this.authHttp.put(VideoService.BASE_VIDEO_URL + video.id, data)
db400f44
C
112 .pipe(
113 map(this.restExtractor.extractDataBool),
e4f0e92e 114 catchError(err => this.restExtractor.handleError(err))
db400f44 115 )
d8e689b8
C
116 }
117
db7af09b 118 uploadVideo (video: FormData) {
334ddfa4 119 const req = new HttpRequest('POST', VideoService.BASE_VIDEO_URL + 'upload', video, { reportProgress: true })
bfb3a98f 120
fd45e8f4 121 return this.authHttp
2186386c 122 .request<{ video: { id: number, uuid: string } }>(req)
e4f0e92e 123 .pipe(catchError(err => this.restExtractor.handleError(err)))
bfb3a98f
C
124 }
125
2186386c 126 getMyVideos (videoPagination: ComponentPagination, sort: VideoSortField): Observable<{ videos: Video[], totalVideos: number }> {
4635f59d 127 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
cf20596c 128
d592e0a9
C
129 let params = new HttpParams()
130 params = this.restService.addRestGetParams(params, pagination, sort)
dc8bc31b 131
7ce44a74
C
132 return this.authHttp
133 .get<ResultList<Video>>(UserService.BASE_USERS_URL + '/me/videos', { params })
db400f44 134 .pipe(
7ce44a74 135 switchMap(res => this.extractVideos(res)),
e4f0e92e 136 catchError(err => this.restExtractor.handleError(err))
db400f44 137 )
dc8bc31b
C
138 }
139
0626e7af
C
140 getAccountVideos (
141 account: Account,
142 videoPagination: ComponentPagination,
143 sort: VideoSortField
2186386c 144 ): Observable<{ videos: Video[], totalVideos: number }> {
0626e7af
C
145 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
146
147 let params = new HttpParams()
148 params = this.restService.addRestGetParams(params, pagination, sort)
149
150 return this.authHttp
7ce44a74 151 .get<ResultList<Video>>(AccountService.BASE_ACCOUNT_URL + account.nameWithHost + '/videos', { params })
db400f44 152 .pipe(
7ce44a74 153 switchMap(res => this.extractVideos(res)),
e4f0e92e 154 catchError(err => this.restExtractor.handleError(err))
db400f44 155 )
0626e7af
C
156 }
157
170726f5
C
158 getVideoChannelVideos (
159 videoChannel: VideoChannel,
160 videoPagination: ComponentPagination,
161 sort: VideoSortField
2186386c 162 ): Observable<{ videos: Video[], totalVideos: number }> {
170726f5
C
163 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
164
165 let params = new HttpParams()
166 params = this.restService.addRestGetParams(params, pagination, sort)
167
168 return this.authHttp
f5b0af50 169 .get<ResultList<Video>>(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.nameWithHost + '/videos', { params })
db400f44 170 .pipe(
7ce44a74 171 switchMap(res => this.extractVideos(res)),
e4f0e92e 172 catchError(err => this.restExtractor.handleError(err))
db400f44 173 )
170726f5
C
174 }
175
f0a39880
C
176 getPlaylistVideos (
177 videoPlaylistId: number | string,
178 videoPagination: ComponentPagination
179 ): Observable<{ videos: Video[], totalVideos: number }> {
180 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
181
182 let params = new HttpParams()
183 params = this.restService.addRestGetParams(params, pagination)
184
185 return this.authHttp
186 .get<ResultList<Video>>(VideoPlaylistService.BASE_VIDEO_PLAYLIST_URL + videoPlaylistId + '/videos', { params })
187 .pipe(
188 switchMap(res => this.extractVideos(res)),
189 catchError(err => this.restExtractor.handleError(err))
190 )
191 }
192
22a16e36
C
193 getUserSubscriptionVideos (
194 videoPagination: ComponentPagination,
195 sort: VideoSortField
196 ): Observable<{ videos: Video[], totalVideos: number }> {
197 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
198
199 let params = new HttpParams()
200 params = this.restService.addRestGetParams(params, pagination, sort)
201
202 return this.authHttp
203 .get<ResultList<Video>>(UserSubscriptionService.BASE_USER_SUBSCRIPTIONS_URL + '/videos', { params })
204 .pipe(
205 switchMap(res => this.extractVideos(res)),
206 catchError(err => this.restExtractor.handleError(err))
207 )
208 }
209
3caf77d3 210 getVideos (parameters: {
066e94c5 211 videoPagination: ComponentPagination,
7b87d2d5 212 sort: VideoSortField,
61b909b9 213 filter?: VideoFilter,
3caf77d3
C
214 categoryOneOf?: number,
215 languageOneOf?: string[]
216 }): Observable<{ videos: Video[], totalVideos: number }> {
217 const { videoPagination, sort, filter, categoryOneOf, languageOneOf } = parameters
218
4635f59d 219 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
fd45e8f4
C
220
221 let params = new HttpParams()
222 params = this.restService.addRestGetParams(params, pagination, sort)
223
066e94c5
C
224 if (filter) {
225 params = params.set('filter', filter)
226 }
227
d59cba29
C
228 if (categoryOneOf) {
229 params = params.set('categoryOneOf', categoryOneOf + '')
61b909b9
P
230 }
231
3caf77d3
C
232 if (languageOneOf) {
233 for (const l of languageOneOf) {
234 params = params.append('languageOneOf[]', l)
235 }
236 }
237
fd45e8f4 238 return this.authHttp
7ce44a74 239 .get<ResultList<Video>>(VideoService.BASE_VIDEO_URL, { params })
db400f44 240 .pipe(
7ce44a74 241 switchMap(res => this.extractVideos(res)),
e4f0e92e 242 catchError(err => this.restExtractor.handleError(err))
db400f44 243 )
fd45e8f4
C
244 }
245
7b87d2d5 246 buildBaseFeedUrls (params: HttpParams) {
cc1561f9
C
247 const feeds = [
248 {
39ba2e8e 249 format: FeedFormat.RSS,
cc1561f9
C
250 label: 'rss 2.0',
251 url: VideoService.BASE_FEEDS_URL + FeedFormat.RSS.toLowerCase()
252 },
253 {
39ba2e8e 254 format: FeedFormat.ATOM,
cc1561f9
C
255 label: 'atom 1.0',
256 url: VideoService.BASE_FEEDS_URL + FeedFormat.ATOM.toLowerCase()
257 },
258 {
39ba2e8e 259 format: FeedFormat.JSON,
cc1561f9
C
260 label: 'json 1.0',
261 url: VideoService.BASE_FEEDS_URL + FeedFormat.JSON.toLowerCase()
262 }
263 ]
264
7b87d2d5
C
265 if (params && params.keys().length !== 0) {
266 for (const feed of feeds) {
267 feed.url += '?' + params.toString()
268 }
269 }
270
cc1561f9 271 return feeds
244e76a5
RK
272 }
273
d59cba29 274 getVideoFeedUrls (sort: VideoSortField, filter?: VideoFilter, categoryOneOf?: number) {
7b87d2d5 275 let params = this.restService.addRestGetParams(new HttpParams(), undefined, sort)
244e76a5 276
cc1561f9
C
277 if (filter) params = params.set('filter', filter)
278
d59cba29 279 if (categoryOneOf) params = params.set('categoryOneOf', categoryOneOf + '')
61b909b9 280
7b87d2d5 281 return this.buildBaseFeedUrls(params)
244e76a5
RK
282 }
283
cc1561f9 284 getAccountFeedUrls (accountId: number) {
244e76a5 285 let params = this.restService.addRestGetParams(new HttpParams())
244e76a5 286 params = params.set('accountId', accountId.toString())
cc1561f9 287
7b87d2d5 288 return this.buildBaseFeedUrls(params)
244e76a5
RK
289 }
290
170726f5
C
291 getVideoChannelFeedUrls (videoChannelId: number) {
292 let params = this.restService.addRestGetParams(new HttpParams())
293 params = params.set('videoChannelId', videoChannelId.toString())
294
295 return this.buildBaseFeedUrls(params)
296 }
297
d592e0a9 298 removeVideo (id: number) {
fd45e8f4 299 return this.authHttp
db400f44
C
300 .delete(VideoService.BASE_VIDEO_URL + id)
301 .pipe(
302 map(this.restExtractor.extractDataBool),
e4f0e92e 303 catchError(err => this.restExtractor.handleError(err))
db400f44 304 )
4fd8aa32
C
305 }
306
2de96f4d
C
307 loadCompleteDescription (descriptionPath: string) {
308 return this.authHttp
c199c427 309 .get<{ description: string }>(environment.apiUrl + descriptionPath)
db400f44 310 .pipe(
c199c427 311 map(res => res.description),
e4f0e92e 312 catchError(err => this.restExtractor.handleError(err))
db400f44 313 )
d38b8281
C
314 }
315
0a6658fd 316 setVideoLike (id: number) {
df98563e 317 return this.setVideoRate(id, 'like')
d38b8281
C
318 }
319
0a6658fd 320 setVideoDislike (id: number) {
df98563e 321 return this.setVideoRate(id, 'dislike')
d38b8281
C
322 }
323
57a49263
BB
324 unsetVideoLike (id: number) {
325 return this.setVideoRate(id, 'none')
326 }
327
5fcbd898 328 getUserVideoRating (id: number) {
334ddfa4 329 const url = UserService.BASE_USERS_URL + 'me/videos/' + id + '/rating'
d38b8281 330
5fcbd898 331 return this.authHttp.get<UserVideoRate>(url)
e4f0e92e 332 .pipe(catchError(err => this.restExtractor.handleError(err)))
d38b8281
C
333 }
334
57c36b27 335 extractVideos (result: ResultList<VideoServerModel>) {
7ce44a74 336 return this.serverService.localeObservable
2186386c
C
337 .pipe(
338 map(translations => {
339 const videosJson = result.data
340 const totalVideos = result.total
341 const videos: Video[] = []
342
343 for (const videoJson of videosJson) {
344 videos.push(new Video(videoJson, translations))
345 }
346
347 return { videos, totalVideos }
348 })
349 )
501bc6c2 350 }
57c36b27 351
8cd7faaa
C
352 explainedPrivacyLabels (privacies: VideoConstant<VideoPrivacy>[]) {
353 const newPrivacies = privacies.slice()
354
355 const privatePrivacy = newPrivacies.find(p => p.id === VideoPrivacy.PRIVATE)
356 if (privatePrivacy) privatePrivacy.label = this.i18n('Only I can see this video')
357
358 const unlistedPrivacy = newPrivacies.find(p => p.id === VideoPrivacy.UNLISTED)
359 if (unlistedPrivacy) unlistedPrivacy.label = this.i18n('Only people with the private link can see this video')
360
361 const publicPrivacy = newPrivacies.find(p => p.id === VideoPrivacy.PUBLIC)
362 if (publicPrivacy) publicPrivacy.label = this.i18n('Anyone can see this video')
363
364 return privacies
365 }
366
5c6d985f 367 private setVideoRate (id: number, rateType: UserVideoRateType) {
57c36b27
C
368 const url = VideoService.BASE_VIDEO_URL + id + '/rate'
369 const body: UserVideoRateUpdate = {
370 rating: rateType
371 }
372
373 return this.authHttp
374 .put(url, body)
375 .pipe(
376 map(this.restExtractor.extractDataBool),
377 catchError(err => this.restExtractor.handleError(err))
378 )
379 }
dc8bc31b 380}