]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/video/video-import.service.ts
Add ability to list imports of a channel sync
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / video / video-import.service.ts
CommitLineData
67ed6552
C
1import { SortMeta } from 'primeng/api'
2import { Observable } from 'rxjs'
ed31c059
C
3import { catchError, map, switchMap } from 'rxjs/operators'
4import { HttpClient, HttpParams } from '@angular/common/http'
fbad87b0 5import { Injectable } from '@angular/core'
67ed6552
C
6import { RestExtractor, RestPagination, RestService, ServerService, UserService } from '@app/core'
7import { objectToFormData } from '@app/helpers'
bd45d503
C
8import { peertubeTranslate } from '@shared/core-utils/i18n'
9import { ResultList, VideoImport, VideoImportCreate, VideoUpdate } from '@shared/models'
67ed6552 10import { environment } from '../../../../environments/environment'
fbad87b0
C
11
12@Injectable()
13export class VideoImportService {
14 private static BASE_VIDEO_IMPORT_URL = environment.apiUrl + '/api/v1/videos/imports/'
15
16 constructor (
17 private authHttp: HttpClient,
18 private restService: RestService,
ed31c059
C
19 private restExtractor: RestExtractor,
20 private serverService: ServerService
fbad87b0
C
21 ) {}
22
ce33919c 23 importVideoUrl (targetUrl: string, video: VideoUpdate): Observable<VideoImport> {
fbad87b0 24 const url = VideoImportService.BASE_VIDEO_IMPORT_URL
ce33919c
C
25
26 const body = this.buildImportVideoObject(video)
27 body.targetUrl = targetUrl
28
29 const data = objectToFormData(body)
30 return this.authHttp.post<VideoImport>(url, data)
31 .pipe(catchError(res => this.restExtractor.handleError(res)))
32 }
33
34 importVideoTorrent (target: string | Blob, video: VideoUpdate): Observable<VideoImport> {
35 const url = VideoImportService.BASE_VIDEO_IMPORT_URL
36 const body: VideoImportCreate = this.buildImportVideoObject(video)
37
38 if (typeof target === 'string') body.magnetUri = target
39 else body.torrentfile = target
40
41 const data = objectToFormData(body)
42 return this.authHttp.post<VideoImport>(url, data)
43 .pipe(catchError(res => this.restExtractor.handleError(res)))
44 }
45
a3b472a1 46 getMyVideoImports (pagination: RestPagination, sort: SortMeta, search?: string): Observable<ResultList<VideoImport>> {
ce33919c
C
47 let params = new HttpParams()
48 params = this.restService.addRestGetParams(params, pagination, sort)
49
a3b472a1
C
50 if (search) {
51 const filters = this.restService.parseQueryStringFilter(search, {
52 videoChannelSyncId: {
53 prefix: 'videoChannelSyncId:'
54 },
55 targetUrl: {
56 prefix: 'targetUrl:'
57 }
58 })
59
60 params = this.restService.addObjectParams(params, filters)
61 }
62
ce33919c
C
63 return this.authHttp
64 .get<ResultList<VideoImport>>(UserService.BASE_USERS_URL + '/me/videos/imports', { params })
65 .pipe(
66 switchMap(res => this.extractVideoImports(res)),
67 map(res => this.restExtractor.convertResultListDateToHuman(res)),
68 catchError(err => this.restExtractor.handleError(err))
69 )
70 }
71
419b520c
C
72 deleteVideoImport (videoImport: VideoImport) {
73 return this.authHttp.delete(VideoImportService.BASE_VIDEO_IMPORT_URL + videoImport.id)
74 .pipe(catchError(err => this.restExtractor.handleError(err)))
75 }
76
77 cancelVideoImport (videoImport: VideoImport) {
78 return this.authHttp.post(VideoImportService.BASE_VIDEO_IMPORT_URL + videoImport.id + '/cancel', {})
79 .pipe(catchError(err => this.restExtractor.handleError(err)))
80 }
81
ce33919c 82 private buildImportVideoObject (video: VideoUpdate): VideoImportCreate {
fbad87b0
C
83 const language = video.language || null
84 const licence = video.licence || null
85 const category = video.category || null
86 const description = video.description || null
87 const support = video.support || null
88 const scheduleUpdate = video.scheduleUpdate || null
1e74f19a 89 const originallyPublishedAt = video.originallyPublishedAt || null
fbad87b0 90
ce33919c 91 return {
fbad87b0
C
92 name: video.name,
93 category,
94 licence,
95 language,
96 support,
97 description,
98 channelId: video.channelId,
99 privacy: video.privacy,
100 tags: video.tags,
101 nsfw: video.nsfw,
102 waitTranscoding: video.waitTranscoding,
103 commentsEnabled: video.commentsEnabled,
7f2cfe3a 104 downloadEnabled: video.downloadEnabled,
fbad87b0
C
105 thumbnailfile: video.thumbnailfile,
106 previewfile: video.previewfile,
1e74f19a 107 scheduleUpdate,
108 originallyPublishedAt
fbad87b0 109 }
ed31c059
C
110 }
111
112 private extractVideoImports (result: ResultList<VideoImport>): Observable<ResultList<VideoImport>> {
ba430d75 113 return this.serverService.getServerLocale()
ed31c059
C
114 .pipe(
115 map(translations => {
116 result.data.forEach(d =>
117 d.state.label = peertubeTranslate(d.state.label, translations)
118 )
119
120 return result
121 })
122 )
123 }
fbad87b0 124}