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