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