]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/video/video.service.ts
Filter videos by live in custom markup
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / video / video.service.ts
CommitLineData
29510651
RK
1import { Observable } from 'rxjs'
2import { catchError, map, switchMap } from 'rxjs/operators'
3import { HttpClient, HttpParams, HttpRequest } from '@angular/common/http'
202f6b6c 4import { Injectable } from '@angular/core'
29510651 5import { ComponentPaginationLight, RestExtractor, RestService, ServerService, UserService } 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)
1fd61899
C
127
128 if (search) {
129 const filters = this.restService.parseQueryStringFilter(search, {
130 isLive: {
131 prefix: 'isLive:',
1a7d0887 132 isBoolean: true
1fd61899
C
133 }
134 })
135
136 params = this.restService.addObjectParams(params, filters)
137 }
dc8bc31b 138
7ce44a74 139 return this.authHttp
bf64ed41 140 .get<ResultList<Video>>(UserService.BASE_USERS_URL + 'me/videos', { params })
db400f44 141 .pipe(
7ce44a74 142 switchMap(res => this.extractVideos(res)),
e4f0e92e 143 catchError(err => this.restExtractor.handleError(err))
db400f44 144 )
dc8bc31b
C
145 }
146
0aa52e17 147 getAccountVideos (parameters: {
674d903b 148 account: Pick<Account, 'nameWithHost'>,
440d39c5 149 videoPagination: ComponentPaginationLight,
0626e7af 150 sort: VideoSortField
0aa52e17
C
151 nsfwPolicy?: NSFWPolicyType
152 videoFilter?: VideoFilter
37024082 153 search?: string
0aa52e17 154 }): Observable<ResultList<Video>> {
37024082 155 const { account, videoPagination, sort, videoFilter, nsfwPolicy, search } = parameters
0aa52e17 156
0626e7af
C
157 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
158
159 let params = new HttpParams()
160 params = this.restService.addRestGetParams(params, pagination, sort)
161
0aa52e17
C
162 if (nsfwPolicy) {
163 params = params.set('nsfw', this.nsfwPolicyToParam(nsfwPolicy))
164 }
165
166 if (videoFilter) {
167 params = params.set('filter', videoFilter)
168 }
169
37024082
RK
170 if (search) {
171 params = params.set('search', search)
172 }
173
0626e7af 174 return this.authHttp
7ce44a74 175 .get<ResultList<Video>>(AccountService.BASE_ACCOUNT_URL + account.nameWithHost + '/videos', { params })
db400f44 176 .pipe(
7ce44a74 177 switchMap(res => this.extractVideos(res)),
e4f0e92e 178 catchError(err => this.restExtractor.handleError(err))
db400f44 179 )
0626e7af
C
180 }
181
0aa52e17 182 getVideoChannelVideos (parameters: {
674d903b 183 videoChannel: Pick<VideoChannel, 'nameWithHost'>,
440d39c5 184 videoPagination: ComponentPaginationLight,
5c20a455
C
185 sort: VideoSortField,
186 nsfwPolicy?: NSFWPolicyType
0aa52e17
C
187 videoFilter?: VideoFilter
188 }): Observable<ResultList<Video>> {
189 const { videoChannel, videoPagination, sort, nsfwPolicy, videoFilter } = parameters
190
170726f5
C
191 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
192
193 let params = new HttpParams()
194 params = this.restService.addRestGetParams(params, pagination, sort)
195
5c20a455
C
196 if (nsfwPolicy) {
197 params = params.set('nsfw', this.nsfwPolicyToParam(nsfwPolicy))
198 }
199
0aa52e17
C
200 if (videoFilter) {
201 params = params.set('filter', videoFilter)
202 }
203
170726f5 204 return this.authHttp
f5b0af50 205 .get<ResultList<Video>>(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.nameWithHost + '/videos', { params })
db400f44 206 .pipe(
7ce44a74 207 switchMap(res => this.extractVideos(res)),
22a16e36
C
208 catchError(err => this.restExtractor.handleError(err))
209 )
210 }
211
3caf77d3 212 getVideos (parameters: {
ff4de383
C
213 videoPagination: ComponentPaginationLight
214 sort: VideoSortField
215 filter?: VideoFilter
216 categoryOneOf?: number[]
217 languageOneOf?: string[]
218 isLive?: boolean
219 skipCount?: boolean
5c20a455 220 nsfwPolicy?: NSFWPolicyType
93cae479 221 }): Observable<ResultList<Video>> {
ff4de383 222 const { videoPagination, sort, filter, categoryOneOf, languageOneOf, skipCount, nsfwPolicy, isLive } = parameters
3caf77d3 223
4635f59d 224 const pagination = this.restService.componentPaginationToRestPagination(videoPagination)
fd45e8f4
C
225
226 let params = new HttpParams()
227 params = this.restService.addRestGetParams(params, pagination, sort)
228
440d39c5 229 if (filter) params = params.set('filter', filter)
440d39c5 230 if (skipCount) params = params.set('skipCount', skipCount + '')
61b909b9 231
ff4de383
C
232 if (isLive) params = params.set('isLive', isLive)
233 if (nsfwPolicy) params = params.set('nsfw', this.nsfwPolicyToParam(nsfwPolicy))
234 if (languageOneOf) this.restService.addArrayParams(params, 'languageOneOf', languageOneOf)
235 if (categoryOneOf) this.restService.addArrayParams(params, 'categoryOneOf', categoryOneOf)
5c20a455 236
fd45e8f4 237 return this.authHttp
7ce44a74 238 .get<ResultList<Video>>(VideoService.BASE_VIDEO_URL, { params })
db400f44 239 .pipe(
7ce44a74 240 switchMap(res => this.extractVideos(res)),
e4f0e92e 241 catchError(err => this.restExtractor.handleError(err))
db400f44 242 )
fd45e8f4
C
243 }
244
5beb89f2 245 buildBaseFeedUrls (params: HttpParams, base = VideoService.BASE_FEEDS_URL) {
cc1561f9
C
246 const feeds = [
247 {
39ba2e8e 248 format: FeedFormat.RSS,
2d011d94 249 label: 'media rss 2.0',
5beb89f2 250 url: base + FeedFormat.RSS.toLowerCase()
cc1561f9
C
251 },
252 {
39ba2e8e 253 format: FeedFormat.ATOM,
cc1561f9 254 label: 'atom 1.0',
5beb89f2 255 url: base + FeedFormat.ATOM.toLowerCase()
cc1561f9
C
256 },
257 {
39ba2e8e 258 format: FeedFormat.JSON,
cc1561f9 259 label: 'json 1.0',
5beb89f2 260 url: base + FeedFormat.JSON.toLowerCase()
cc1561f9
C
261 }
262 ]
263
7b87d2d5
C
264 if (params && params.keys().length !== 0) {
265 for (const feed of feeds) {
266 feed.url += '?' + params.toString()
267 }
268 }
269
cc1561f9 270 return feeds
244e76a5
RK
271 }
272
5c20a455 273 getVideoFeedUrls (sort: VideoSortField, filter?: VideoFilter, categoryOneOf?: number[]) {
7b87d2d5 274 let params = this.restService.addRestGetParams(new HttpParams(), undefined, sort)
244e76a5 275
cc1561f9
C
276 if (filter) params = params.set('filter', filter)
277
5c20a455
C
278 if (categoryOneOf) {
279 for (const c of categoryOneOf) {
280 params = params.append('categoryOneOf[]', c + '')
281 }
282 }
61b909b9 283
7b87d2d5 284 return this.buildBaseFeedUrls(params)
244e76a5
RK
285 }
286
cc1561f9 287 getAccountFeedUrls (accountId: number) {
244e76a5 288 let params = this.restService.addRestGetParams(new HttpParams())
244e76a5 289 params = params.set('accountId', accountId.toString())
cc1561f9 290
7b87d2d5 291 return this.buildBaseFeedUrls(params)
244e76a5
RK
292 }
293
170726f5
C
294 getVideoChannelFeedUrls (videoChannelId: number) {
295 let params = this.restService.addRestGetParams(new HttpParams())
296 params = params.set('videoChannelId', videoChannelId.toString())
297
298 return this.buildBaseFeedUrls(params)
299 }
300
5beb89f2 301 getVideoSubscriptionFeedUrls (accountId: number, feedToken: string) {
afff310e
RK
302 let params = this.restService.addRestGetParams(new HttpParams())
303 params = params.set('accountId', accountId.toString())
afff310e
RK
304 params = params.set('token', feedToken)
305
5beb89f2 306 return this.buildBaseFeedUrls(params, VideoService.BASE_SUBSCRIPTION_FEEDS_URL)
afff310e
RK
307 }
308
8319d6ae
RK
309 getVideoFileMetadata (metadataUrl: string) {
310 return this.authHttp
583eb04b 311 .get<VideoFileMetadata>(metadataUrl)
8319d6ae
RK
312 .pipe(
313 catchError(err => this.restExtractor.handleError(err))
314 )
315 }
316
d592e0a9 317 removeVideo (id: number) {
fd45e8f4 318 return this.authHttp
db400f44
C
319 .delete(VideoService.BASE_VIDEO_URL + id)
320 .pipe(
321 map(this.restExtractor.extractDataBool),
e4f0e92e 322 catchError(err => this.restExtractor.handleError(err))
db400f44 323 )
4fd8aa32
C
324 }
325
2de96f4d
C
326 loadCompleteDescription (descriptionPath: string) {
327 return this.authHttp
c199c427 328 .get<{ description: string }>(environment.apiUrl + descriptionPath)
db400f44 329 .pipe(
c199c427 330 map(res => res.description),
e4f0e92e 331 catchError(err => this.restExtractor.handleError(err))
db400f44 332 )
d38b8281
C
333 }
334
0a6658fd 335 setVideoLike (id: number) {
df98563e 336 return this.setVideoRate(id, 'like')
d38b8281
C
337 }
338
0a6658fd 339 setVideoDislike (id: number) {
df98563e 340 return this.setVideoRate(id, 'dislike')
d38b8281
C
341 }
342
57a49263
BB
343 unsetVideoLike (id: number) {
344 return this.setVideoRate(id, 'none')
345 }
346
5fcbd898 347 getUserVideoRating (id: number) {
334ddfa4 348 const url = UserService.BASE_USERS_URL + 'me/videos/' + id + '/rating'
d38b8281 349
5fcbd898 350 return this.authHttp.get<UserVideoRate>(url)
e4f0e92e 351 .pipe(catchError(err => this.restExtractor.handleError(err)))
d38b8281
C
352 }
353
57c36b27 354 extractVideos (result: ResultList<VideoServerModel>) {
ba430d75 355 return this.serverService.getServerLocale()
2186386c
C
356 .pipe(
357 map(translations => {
358 const videosJson = result.data
359 const totalVideos = result.total
360 const videos: Video[] = []
361
362 for (const videoJson of videosJson) {
363 videos.push(new Video(videoJson, translations))
364 }
365
93cae479 366 return { total: totalVideos, data: videos }
2186386c
C
367 })
368 )
501bc6c2 369 }
57c36b27 370
b980bcff 371 explainedPrivacyLabels (serverPrivacies: VideoConstant<VideoPrivacy>[], defaultPrivacyId = VideoPrivacy.PUBLIC) {
d91714ca
C
372 const descriptions = {
373 [VideoPrivacy.PRIVATE]: $localize`Only I can see this video`,
374 [VideoPrivacy.UNLISTED]: $localize`Only shareable via a private link`,
375 [VideoPrivacy.PUBLIC]: $localize`Anyone can see this video`,
376 [VideoPrivacy.INTERNAL]: $localize`Only users of this instance can see this video`
377 }
378
379 const videoPrivacies = serverPrivacies.map(p => {
380 return {
381 ...p,
382
383 description: descriptions[p.id]
22a73cb8 384 }
d91714ca 385 })
8cd7faaa 386
29510651 387 return {
d91714ca
C
388 videoPrivacies,
389 defaultPrivacyId: serverPrivacies.find(p => p.id === defaultPrivacyId)?.id || serverPrivacies[0].id
29510651 390 }
8cd7faaa
C
391 }
392
a3f45a2a
C
393 getHighestAvailablePrivacy (serverPrivacies: VideoConstant<VideoPrivacy>[]) {
394 const order = [ VideoPrivacy.PRIVATE, VideoPrivacy.INTERNAL, VideoPrivacy.UNLISTED, VideoPrivacy.PUBLIC ]
395
396 for (const privacy of order) {
397 if (serverPrivacies.find(p => p.id === privacy)) {
398 return privacy
399 }
400 }
401
402 throw new Error('No highest privacy available')
403 }
404
5c20a455
C
405 nsfwPolicyToParam (nsfwPolicy: NSFWPolicyType) {
406 return nsfwPolicy === 'do_not_list'
407 ? 'false'
408 : 'both'
409 }
410
5c6d985f 411 private setVideoRate (id: number, rateType: UserVideoRateType) {
57c36b27
C
412 const url = VideoService.BASE_VIDEO_URL + id + '/rate'
413 const body: UserVideoRateUpdate = {
414 rating: rateType
415 }
416
417 return this.authHttp
418 .put(url, body)
419 .pipe(
420 map(this.restExtractor.extractDataBool),
421 catchError(err => this.restExtractor.handleError(err))
422 )
423 }
dc8bc31b 424}