]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/video/video.service.ts
Fix client search
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / video.service.ts
1 import { HttpClient, HttpParams, HttpRequest } from '@angular/common/http'
2 import { Injectable } from '@angular/core'
3 import 'rxjs/add/operator/catch'
4 import 'rxjs/add/operator/map'
5 import { Observable } from 'rxjs/Observable'
6 import { Video as VideoServerModel, VideoDetails as VideoDetailsServerModel } from '../../../../../shared'
7 import { ResultList } from '../../../../../shared/models/result-list.model'
8 import { UserVideoRateUpdate } from '../../../../../shared/models/videos/user-video-rate-update.model'
9 import { UserVideoRate } from '../../../../../shared/models/videos/user-video-rate.model'
10 import { VideoRateType } from '../../../../../shared/models/videos/video-rate.type'
11 import { VideoUpdate } from '../../../../../shared/models/videos/video-update.model'
12 import { RestExtractor } from '../rest/rest-extractor.service'
13 import { RestService } from '../rest/rest.service'
14 import { Search } from '../header/search.model'
15 import { UserService } from '../users/user.service'
16 import { SortField } from './sort-field.type'
17 import { VideoDetails } from './video-details.model'
18 import { VideoEdit } from './video-edit.model'
19 import { VideoPagination } from './video-pagination.model'
20 import { Video } from './video.model'
21
22 @Injectable()
23 export class VideoService {
24 private static BASE_VIDEO_URL = API_URL + '/api/v1/videos/'
25
26 constructor (
27 private authHttp: HttpClient,
28 private restExtractor: RestExtractor,
29 private restService: RestService
30 ) {}
31
32 getVideo (uuid: string): Observable<VideoDetails> {
33 return this.authHttp.get<VideoDetailsServerModel>(VideoService.BASE_VIDEO_URL + uuid)
34 .map(videoHash => new VideoDetails(videoHash))
35 .catch((res) => this.restExtractor.handleError(res))
36 }
37
38 viewVideo (uuid: string): Observable<VideoDetails> {
39 return this.authHttp.post(VideoService.BASE_VIDEO_URL + uuid + '/views', {})
40 .map(this.restExtractor.extractDataBool)
41 .catch(this.restExtractor.handleError)
42 }
43
44 updateVideo (video: VideoEdit) {
45 const language = video.language ? video.language : null
46
47 const body: VideoUpdate = {
48 name: video.name,
49 category: video.category,
50 licence: video.licence,
51 language,
52 description: video.description,
53 privacy: video.privacy,
54 tags: video.tags,
55 nsfw: video.nsfw
56 }
57
58 return this.authHttp.put(VideoService.BASE_VIDEO_URL + video.id, body)
59 .map(this.restExtractor.extractDataBool)
60 .catch(this.restExtractor.handleError)
61 }
62
63 uploadVideo (video: FormData) {
64 const req = new HttpRequest('POST', VideoService.BASE_VIDEO_URL + 'upload', video, { reportProgress: true })
65
66 return this.authHttp
67 .request(req)
68 .catch(this.restExtractor.handleError)
69 }
70
71 getMyVideos (videoPagination: VideoPagination, sort: SortField): Observable<{ videos: Video[], totalVideos: number}> {
72 const pagination = this.videoPaginationToRestPagination(videoPagination)
73
74 let params = new HttpParams()
75 params = this.restService.addRestGetParams(params, pagination, sort)
76
77 return this.authHttp.get(UserService.BASE_USERS_URL + '/me/videos', { params })
78 .map(this.extractVideos)
79 .catch((res) => this.restExtractor.handleError(res))
80 }
81
82 getVideos (videoPagination: VideoPagination, sort: SortField): Observable<{ videos: Video[], totalVideos: number}> {
83 const pagination = this.videoPaginationToRestPagination(videoPagination)
84
85 let params = new HttpParams()
86 params = this.restService.addRestGetParams(params, pagination, sort)
87
88 return this.authHttp
89 .get(VideoService.BASE_VIDEO_URL, { params })
90 .map(this.extractVideos)
91 .catch((res) => this.restExtractor.handleError(res))
92 }
93
94 searchVideos (search: string, videoPagination: VideoPagination, sort: SortField): Observable<{ videos: Video[], totalVideos: number}> {
95 const url = VideoService.BASE_VIDEO_URL + 'search'
96
97 const pagination = this.videoPaginationToRestPagination(videoPagination)
98
99 let params = new HttpParams()
100 params = this.restService.addRestGetParams(params, pagination, sort)
101 params = params.append('search', search)
102
103 return this.authHttp
104 .get<ResultList<VideoServerModel>>(url, { params })
105 .map(this.extractVideos)
106 .catch((res) => this.restExtractor.handleError(res))
107 }
108
109 removeVideo (id: number) {
110 return this.authHttp
111 .delete(VideoService.BASE_VIDEO_URL + id)
112 .map(this.restExtractor.extractDataBool)
113 .catch((res) => this.restExtractor.handleError(res))
114 }
115
116 loadCompleteDescription (descriptionPath: string) {
117 return this.authHttp
118 .get(API_URL + descriptionPath)
119 .map(res => res['description'])
120 .catch((res) => this.restExtractor.handleError(res))
121 }
122
123 setVideoLike (id: number) {
124 return this.setVideoRate(id, 'like')
125 }
126
127 setVideoDislike (id: number) {
128 return this.setVideoRate(id, 'dislike')
129 }
130
131 getUserVideoRating (id: number): Observable<UserVideoRate> {
132 const url = UserService.BASE_USERS_URL + 'me/videos/' + id + '/rating'
133
134 return this.authHttp
135 .get(url)
136 .catch(res => this.restExtractor.handleError(res))
137 }
138
139 private videoPaginationToRestPagination (videoPagination: VideoPagination) {
140 const start: number = (videoPagination.currentPage - 1) * videoPagination.itemsPerPage
141 const count: number = videoPagination.itemsPerPage
142
143 return { start, count }
144 }
145
146 private setVideoRate (id: number, rateType: VideoRateType) {
147 const url = VideoService.BASE_VIDEO_URL + id + '/rate'
148 const body: UserVideoRateUpdate = {
149 rating: rateType
150 }
151
152 return this.authHttp
153 .put(url, body)
154 .map(this.restExtractor.extractDataBool)
155 .catch(res => this.restExtractor.handleError(res))
156 }
157
158 private extractVideos (result: ResultList<VideoServerModel>) {
159 const videosJson = result.data
160 const totalVideos = result.total
161 const videos = []
162
163 for (const videoJson of videosJson) {
164 videos.push(new Video(videoJson))
165 }
166
167 return { videos, totalVideos }
168 }
169 }