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