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