]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/plugins/shared/plugin-api.service.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / plugins / shared / plugin-api.service.ts
CommitLineData
67ed6552 1import { Observable } from 'rxjs'
d75db01f 2import { catchError, map, switchMap } from 'rxjs/operators'
d00dc28d
C
3import { HttpClient, HttpParams } from '@angular/common/http'
4import { Injectable } from '@angular/core'
67ed6552 5import { ComponentPagination, RestExtractor, RestService } from '@app/core'
23bdacf8 6import { PluginService } from '@app/core/plugins/plugin.service'
bd45d503 7import { peertubeTranslate } from '@shared/core-utils/i18n'
67ed6552
C
8import {
9 InstallOrUpdatePlugin,
10 ManagePlugin,
11 PeerTubePlugin,
12 PeerTubePluginIndex,
67ed6552
C
13 PluginType,
14 RegisteredServerSettings,
15 ResultList
16} from '@shared/models'
17import { environment } from '../../../../environments/environment'
d00dc28d
C
18
19@Injectable()
20export class PluginApiService {
23bdacf8 21 private static BASE_PLUGIN_URL = environment.apiUrl + '/api/v1/plugins'
d00dc28d
C
22
23 constructor (
24 private authHttp: HttpClient,
25 private restExtractor: RestExtractor,
26 private restService: RestService,
23bdacf8 27 private pluginService: PluginService
d00dc28d
C
28 ) { }
29
30 getPluginTypeOptions () {
31 return [
32 {
66357162 33 label: $localize`Plugins`,
d00dc28d
C
34 value: PluginType.PLUGIN
35 },
36 {
66357162 37 label: $localize`Themes`,
d00dc28d
C
38 value: PluginType.THEME
39 }
40 ]
41 }
42
dba85a1e
C
43 getPluginTypeLabel (type: PluginType) {
44 if (type === PluginType.PLUGIN) {
66357162 45 return $localize`plugin`
dba85a1e
C
46 }
47
66357162 48 return $localize`theme`
dba85a1e
C
49 }
50
d00dc28d 51 getPlugins (
6702a1b2 52 pluginType: PluginType,
d00dc28d
C
53 componentPagination: ComponentPagination,
54 sort: string
55 ) {
56 const pagination = this.restService.componentPaginationToRestPagination(componentPagination)
57
58 let params = new HttpParams()
59 params = this.restService.addRestGetParams(params, pagination, sort)
6702a1b2 60 params = params.append('pluginType', pluginType.toString())
d00dc28d 61
23bdacf8 62 return this.authHttp.get<ResultList<PeerTubePlugin>>(PluginApiService.BASE_PLUGIN_URL, { params })
d00dc28d
C
63 .pipe(catchError(res => this.restExtractor.handleError(res)))
64 }
dba85a1e 65
6702a1b2
C
66 searchAvailablePlugins (
67 pluginType: PluginType,
68 componentPagination: ComponentPagination,
69 sort: string,
70 search?: string
71 ) {
72 const pagination = this.restService.componentPaginationToRestPagination(componentPagination)
73
74 let params = new HttpParams()
75 params = this.restService.addRestGetParams(params, pagination, sort)
76 params = params.append('pluginType', pluginType.toString())
77
78 if (search) params = params.append('search', search)
79
23bdacf8 80 return this.authHttp.get<ResultList<PeerTubePluginIndex>>(PluginApiService.BASE_PLUGIN_URL + '/available', { params })
6702a1b2
C
81 .pipe(catchError(res => this.restExtractor.handleError(res)))
82 }
83
dba85a1e 84 getPlugin (npmName: string) {
23bdacf8 85 const path = PluginApiService.BASE_PLUGIN_URL + '/' + npmName
dba85a1e
C
86
87 return this.authHttp.get<PeerTubePlugin>(path)
88 .pipe(catchError(res => this.restExtractor.handleError(res)))
89 }
90
91 getPluginRegisteredSettings (pluginName: string, pluginType: PluginType) {
23bdacf8
C
92 const npmName = this.pluginService.nameToNpmName(pluginName, pluginType)
93 const path = PluginApiService.BASE_PLUGIN_URL + '/' + npmName + '/registered-settings'
dba85a1e 94
ba211e73 95 return this.authHttp.get<RegisteredServerSettings>(path)
d75db01f
C
96 .pipe(
97 switchMap(res => this.translateSettingsLabel(npmName, res)),
98 catchError(res => this.restExtractor.handleError(res))
99 )
dba85a1e
C
100 }
101
102 updatePluginSettings (pluginName: string, pluginType: PluginType, settings: any) {
23bdacf8
C
103 const npmName = this.pluginService.nameToNpmName(pluginName, pluginType)
104 const path = PluginApiService.BASE_PLUGIN_URL + '/' + npmName + '/settings'
dba85a1e
C
105
106 return this.authHttp.put(path, { settings })
107 .pipe(catchError(res => this.restExtractor.handleError(res)))
108 }
109
110 uninstall (pluginName: string, pluginType: PluginType) {
111 const body: ManagePlugin = {
23bdacf8 112 npmName: this.pluginService.nameToNpmName(pluginName, pluginType)
dba85a1e
C
113 }
114
23bdacf8 115 return this.authHttp.post(PluginApiService.BASE_PLUGIN_URL + '/uninstall', body)
dba85a1e
C
116 .pipe(catchError(res => this.restExtractor.handleError(res)))
117 }
118
b5f919ac
C
119 update (pluginName: string, pluginType: PluginType) {
120 const body: ManagePlugin = {
23bdacf8 121 npmName: this.pluginService.nameToNpmName(pluginName, pluginType)
b5f919ac
C
122 }
123
23bdacf8 124 return this.authHttp.post(PluginApiService.BASE_PLUGIN_URL + '/update', body)
b5f919ac
C
125 .pipe(catchError(res => this.restExtractor.handleError(res)))
126 }
127
dba85a1e 128 install (npmName: string) {
b5f919ac 129 const body: InstallOrUpdatePlugin = {
dba85a1e
C
130 npmName
131 }
132
23bdacf8 133 return this.authHttp.post(PluginApiService.BASE_PLUGIN_URL + '/install', body)
dba85a1e
C
134 .pipe(catchError(res => this.restExtractor.handleError(res)))
135 }
d75db01f
C
136
137 private translateSettingsLabel (npmName: string, res: RegisteredServerSettings): Observable<RegisteredServerSettings> {
138 return this.pluginService.translationsObservable
139 .pipe(
140 map(allTranslations => allTranslations[npmName]),
141 map(translations => {
142 const registeredSettings = res.registeredSettings
143 .map(r => {
144 return Object.assign({}, r, { label: peertubeTranslate(r.label, translations) })
145 })
146
147 return { registeredSettings }
148 })
149 )
150 }
d00dc28d 151}