]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/plugins/plugin.service.ts
Add custom modal to plugin helpers (#2631)
[github/Chocobozzz/PeerTube.git] / client / src / app / core / plugins / plugin.service.ts
CommitLineData
d75db01f 1import { Inject, Injectable, LOCALE_ID, NgZone } from '@angular/core'
18a6f04c 2import { Router } from '@angular/router'
d75db01f 3import { getCompleteLocale, isDefaultLocale, peertubeTranslate, ServerConfigPlugin } from '@shared/models'
18a6f04c
C
4import { ServerService } from '@app/core/server/server.service'
5import { ClientScript } from '@shared/models/plugins/plugin-package-json.model'
bfa1a32b 6import { ClientScript as ClientScriptModule } from '../../../types/client-script.model'
18a6f04c 7import { environment } from '../../../environments/environment'
d75db01f 8import { Observable, of, ReplaySubject } from 'rxjs'
23bdacf8 9import { catchError, first, map, shareReplay } from 'rxjs/operators'
93cae479 10import { getHookType, internalRunHook } from '@shared/core-utils/plugins/hooks'
7663e55a 11import { ClientHook, ClientHookName, clientHookObject } from '@shared/models/plugins/client-hook.model'
93cae479 12import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type'
9ae88819 13import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model'
23bdacf8 14import { HttpClient } from '@angular/common/http'
74c2dece 15import { AuthService, Notifier } from '@app/core'
23bdacf8
C
16import { RestExtractor } from '@app/shared/rest'
17import { PluginType } from '@shared/models/plugins/plugin.type'
ba211e73 18import { PublicServerSetting } from '@shared/models/plugins/public-server.setting'
d75db01f
C
19import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
20import { RegisterClientHelpers } from '../../../types/register-client-option.model'
21import { PluginTranslation } from '@shared/models/plugins/plugin-translation.model'
0c503f5c 22import { importModule } from '@app/shared/misc/utils'
437e8e06 23import { CustomModalComponent } from '@app/modal/custom-modal.component'
18a6f04c 24
9ae88819 25interface HookStructValue extends RegisterClientHookOptions {
18a6f04c
C
26 plugin: ServerConfigPlugin
27 clientScript: ClientScript
28}
29
f0c5e8b6
C
30type PluginInfo = {
31 plugin: ServerConfigPlugin
32 clientScript: ClientScript
23bdacf8 33 pluginType: PluginType
f0c5e8b6
C
34 isTheme: boolean
35}
36
18a6f04c 37@Injectable()
93cae479 38export class PluginService implements ClientHook {
d75db01f
C
39 private static BASE_PLUGIN_API_URL = environment.apiUrl + '/api/v1/plugins'
40 private static BASE_PLUGIN_URL = environment.apiUrl + '/plugins'
23bdacf8 41
93cae479
C
42 pluginsBuilt = new ReplaySubject<boolean>(1)
43
44 pluginsLoaded: { [ scope in PluginClientScope ]: ReplaySubject<boolean> } = {
45 common: new ReplaySubject<boolean>(1),
e8f902c0 46 search: new ReplaySubject<boolean>(1),
ba7b7e57
RK
47 'video-watch': new ReplaySubject<boolean>(1),
48 signup: new ReplaySubject<boolean>(1)
93cae479 49 }
18a6f04c 50
d75db01f
C
51 translationsObservable: Observable<PluginTranslation>
52
437e8e06
K
53 customModal: CustomModalComponent
54
18a6f04c 55 private plugins: ServerConfigPlugin[] = []
f0c5e8b6 56 private scopes: { [ scopeName: string ]: PluginInfo[] } = {}
18a6f04c 57 private loadedScripts: { [ script: string ]: boolean } = {}
93cae479 58 private loadedScopes: PluginClientScope[] = []
c9e3eeed 59 private loadingScopes: { [id in PluginClientScope]?: boolean } = {}
18a6f04c
C
60
61 private hooks: { [ name: string ]: HookStructValue[] } = {}
62
63 constructor (
64 private router: Router,
eb8f702c 65 private authService: AuthService,
74c2dece 66 private notifier: Notifier,
23bdacf8 67 private server: ServerService,
16d54696 68 private zone: NgZone,
23bdacf8 69 private authHttp: HttpClient,
d75db01f
C
70 private restExtractor: RestExtractor,
71 @Inject(LOCALE_ID) private localeId: string
18a6f04c 72 ) {
d75db01f 73 this.loadTranslations()
18a6f04c
C
74 }
75
76 initializePlugins () {
ba430d75
C
77 this.server.getConfig()
78 .subscribe(config => {
79 this.plugins = config.plugin.registered
18a6f04c
C
80
81 this.buildScopeStruct()
82
93cae479 83 this.pluginsBuilt.next(true)
18a6f04c
C
84 })
85 }
86
437e8e06
K
87 initializeCustomModal (customModal: CustomModalComponent) {
88 this.customModal = customModal
89 }
90
93cae479
C
91 ensurePluginsAreBuilt () {
92 return this.pluginsBuilt.asObservable()
93 .pipe(first(), shareReplay())
94 .toPromise()
95 }
96
97 ensurePluginsAreLoaded (scope: PluginClientScope) {
c9e3eeed
C
98 this.loadPluginsByScope(scope)
99
93cae479 100 return this.pluginsLoaded[scope].asObservable()
ffb321be 101 .pipe(first(), shareReplay())
18a6f04c
C
102 .toPromise()
103 }
104
b5f919ac 105 addPlugin (plugin: ServerConfigPlugin, isTheme = false) {
f0c5e8b6 106 const pathPrefix = this.getPluginPathPrefix(isTheme)
b5f919ac 107
ffb321be
C
108 for (const key of Object.keys(plugin.clientScripts)) {
109 const clientScript = plugin.clientScripts[key]
110
111 for (const scope of clientScript.scopes) {
112 if (!this.scopes[scope]) this.scopes[scope] = []
113
114 this.scopes[scope].push({
115 plugin,
116 clientScript: {
b5f919ac 117 script: environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`,
ffb321be 118 scopes: clientScript.scopes
f0c5e8b6 119 },
23bdacf8 120 pluginType: isTheme ? PluginType.THEME : PluginType.PLUGIN,
f0c5e8b6 121 isTheme
ffb321be
C
122 })
123
124 this.loadedScripts[clientScript.script] = false
125 }
126 }
127 }
128
129 removePlugin (plugin: ServerConfigPlugin) {
130 for (const key of Object.keys(this.scopes)) {
131 this.scopes[key] = this.scopes[key].filter(o => o.plugin.name !== plugin.name)
132 }
133 }
134
135 async reloadLoadedScopes () {
136 for (const scope of this.loadedScopes) {
f0c5e8b6 137 await this.loadPluginsByScope(scope, true)
ffb321be
C
138 }
139 }
140
93cae479 141 async loadPluginsByScope (scope: PluginClientScope, isReload = false) {
c9e3eeed
C
142 if (this.loadingScopes[scope]) return
143 if (!isReload && this.loadedScopes.includes(scope)) return
144
145 this.loadingScopes[scope] = true
146
18a6f04c 147 try {
93cae479 148 await this.ensurePluginsAreBuilt()
18a6f04c 149
f0c5e8b6 150 if (!isReload) this.loadedScopes.push(scope)
ffb321be 151
18a6f04c 152 const toLoad = this.scopes[ scope ]
e8f902c0 153 if (!Array.isArray(toLoad)) {
c9e3eeed 154 this.loadingScopes[scope] = false
e8f902c0
C
155 this.pluginsLoaded[scope].next(true)
156
157 return
158 }
18a6f04c
C
159
160 const promises: Promise<any>[] = []
f0c5e8b6
C
161 for (const pluginInfo of toLoad) {
162 const clientScript = pluginInfo.clientScript
163
18a6f04c
C
164 if (this.loadedScripts[ clientScript.script ]) continue
165
f0c5e8b6 166 promises.push(this.loadPlugin(pluginInfo))
18a6f04c
C
167
168 this.loadedScripts[ clientScript.script ] = true
169 }
170
ffb321be 171 await Promise.all(promises)
93cae479
C
172
173 this.pluginsLoaded[scope].next(true)
c9e3eeed 174 this.loadingScopes[scope] = false
18a6f04c
C
175 } catch (err) {
176 console.error('Cannot load plugins by scope %s.', scope, err)
177 }
178 }
179
16d54696
C
180 runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T> {
181 return this.zone.runOutsideAngular(async () => {
182 if (!this.hooks[ hookName ]) return result
f0c5e8b6 183
16d54696 184 const hookType = getHookType(hookName)
18a6f04c 185
16d54696
C
186 for (const hook of this.hooks[ hookName ]) {
187 console.log('Running hook %s of plugin %s.', hookName, hook.plugin.name)
93cae479 188
16d54696
C
189 result = await internalRunHook(hook.handler, hookType, result, params, err => {
190 console.error('Cannot run hook %s of script %s of plugin %s.', hookName, hook.clientScript.script, hook.plugin.name, err)
191 })
192 }
18a6f04c 193
16d54696
C
194 return result
195 })
18a6f04c
C
196 }
197
23bdacf8
C
198 nameToNpmName (name: string, type: PluginType) {
199 const prefix = type === PluginType.PLUGIN
200 ? 'peertube-plugin-'
201 : 'peertube-theme-'
202
203 return prefix + name
204 }
205
206 pluginTypeFromNpmName (npmName: string) {
207 return npmName.startsWith('peertube-plugin-')
208 ? PluginType.PLUGIN
209 : PluginType.THEME
210 }
211
f0c5e8b6
C
212 private loadPlugin (pluginInfo: PluginInfo) {
213 const { plugin, clientScript } = pluginInfo
214
9ae88819 215 const registerHook = (options: RegisterClientHookOptions) => {
7663e55a
C
216 if (clientHookObject[options.target] !== true) {
217 console.error('Unknown hook %s of plugin %s. Skipping.', options.target, plugin.name)
218 return
219 }
220
18a6f04c
C
221 if (!this.hooks[options.target]) this.hooks[options.target] = []
222
223 this.hooks[options.target].push({
224 plugin,
225 clientScript,
226 target: options.target,
227 handler: options.handler,
228 priority: options.priority || 0
229 })
230 }
231
f0c5e8b6
C
232 const peertubeHelpers = this.buildPeerTubeHelpers(pluginInfo)
233
18a6f04c
C
234 console.log('Loading script %s of plugin %s.', clientScript.script, plugin.name)
235
16d54696 236 return this.zone.runOutsideAngular(() => {
0c503f5c 237 return importModule(clientScript.script)
16d54696
C
238 .then((script: ClientScriptModule) => script.register({ registerHook, peertubeHelpers }))
239 .then(() => this.sortHooksByPriority())
240 .catch(err => console.error('Cannot import or register plugin %s.', pluginInfo.plugin.name, err))
241 })
18a6f04c
C
242 }
243
244 private buildScopeStruct () {
245 for (const plugin of this.plugins) {
ffb321be 246 this.addPlugin(plugin)
18a6f04c
C
247 }
248 }
249
250 private sortHooksByPriority () {
251 for (const hookName of Object.keys(this.hooks)) {
252 this.hooks[hookName].sort((a, b) => {
253 return b.priority - a.priority
254 })
255 }
256 }
f0c5e8b6 257
d75db01f 258 private buildPeerTubeHelpers (pluginInfo: PluginInfo): RegisterClientHelpers {
f0c5e8b6 259 const { plugin } = pluginInfo
d75db01f 260 const npmName = this.nameToNpmName(pluginInfo.plugin.name, pluginInfo.pluginType)
f0c5e8b6
C
261
262 return {
263 getBaseStaticRoute: () => {
264 const pathPrefix = this.getPluginPathPrefix(pluginInfo.isTheme)
265 return environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/static`
23bdacf8
C
266 },
267
268 getSettings: () => {
d75db01f 269 const path = PluginService.BASE_PLUGIN_API_URL + '/' + npmName + '/public-settings'
23bdacf8 270
ba211e73 271 return this.authHttp.get<PublicServerSetting>(path)
23bdacf8 272 .pipe(
ba211e73 273 map(p => p.publicSettings),
23bdacf8
C
274 catchError(res => this.restExtractor.handleError(res))
275 )
276 .toPromise()
d75db01f
C
277 },
278
eb8f702c
RK
279 isLoggedIn: () => {
280 return this.authService.isLoggedIn()
281 },
282
f757be65
C
283 notifier: {
284 info: (text: string, title?: string, timeout?: number) => this.notifier.info(text, title, timeout),
285 error: (text: string, title?: string, timeout?: number) => this.notifier.error(text, title, timeout),
286 success: (text: string, title?: string, timeout?: number) => this.notifier.success(text, title, timeout)
287 },
74c2dece 288
437e8e06
K
289 showModal: (input: {
290 title: string,
291 content: string,
292 close?: boolean,
293 cancel?: { value: string, action?: () => void },
294 confirm?: { value: string, action?: () => void }
295 }) => {
296 this.customModal.show(input)
297 },
298
d75db01f
C
299 translate: (value: string) => {
300 return this.translationsObservable
301 .pipe(map(allTranslations => allTranslations[npmName]))
302 .pipe(map(translations => peertubeTranslate(value, translations)))
303 .toPromise()
f0c5e8b6
C
304 }
305 }
306 }
307
d75db01f
C
308 private loadTranslations () {
309 const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId)
310
311 // Default locale, nothing to translate
312 if (isDefaultLocale(completeLocale)) this.translationsObservable = of({}).pipe(shareReplay())
313
314 this.translationsObservable = this.authHttp
315 .get<PluginTranslation>(PluginService.BASE_PLUGIN_URL + '/translations/' + completeLocale + '.json')
316 .pipe(shareReplay())
317 }
318
f0c5e8b6
C
319 private getPluginPathPrefix (isTheme: boolean) {
320 return isTheme ? '/themes' : '/plugins'
321 }
18a6f04c 322}