]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/core/plugins/hooks.service.ts
Add markdown support to plugins (#2654)
[github/Chocobozzz/PeerTube.git] / client / src / app / core / plugins / hooks.service.ts
... / ...
CommitLineData
1import { Injectable } from '@angular/core'
2import { PluginService } from '@app/core/plugins/plugin.service'
3import { ClientActionHookName, ClientFilterHookName } from '@shared/models/plugins/client-hook.model'
4import { from, Observable } from 'rxjs'
5import { mergeMap, switchMap } from 'rxjs/operators'
6import { ServerService } from '@app/core/server'
7import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type'
8
9type RawFunction<U, T> = (params: U) => T
10type ObservableFunction<U, T> = RawFunction<U, Observable<T>>
11
12@Injectable()
13export class HooksService {
14 constructor (
15 private server: ServerService,
16 private pluginService: PluginService
17 ) { }
18
19 wrapObsFun
20 <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName>
21 (fun: ObservableFunction<P, R>, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2) {
22 return from(this.pluginService.ensurePluginsAreLoaded(scope))
23 .pipe(
24 mergeMap(() => this.wrapObjectWithoutScopeLoad(params, hookParamName)),
25 switchMap(params => fun(params)),
26 mergeMap(result => this.pluginService.runHook(hookResultName, result, params))
27 )
28 }
29
30 async wrapFun
31 <P, R, H1 extends ClientFilterHookName, H2 extends ClientFilterHookName>
32 (fun: RawFunction<P, R>, params: P, scope: PluginClientScope, hookParamName: H1, hookResultName: H2) {
33 await this.pluginService.ensurePluginsAreLoaded(scope)
34
35 const newParams = await this.wrapObjectWithoutScopeLoad(params, hookParamName)
36 const result = fun(newParams)
37
38 return this.pluginService.runHook(hookResultName, result, params)
39 }
40
41 runAction<T, U extends ClientActionHookName> (hookName: U, scope: PluginClientScope, params?: T) {
42 this.pluginService.ensurePluginsAreLoaded(scope)
43 .then(() => this.pluginService.runHook(hookName, undefined, params))
44 .catch((err: any) => console.error('Fatal hook error.', { err }))
45 }
46
47 async wrapObject<T, U extends ClientFilterHookName> (result: T, scope: PluginClientScope, hookName: U) {
48 await this.pluginService.ensurePluginsAreLoaded(scope)
49
50 return this.wrapObjectWithoutScopeLoad(result, hookName)
51 }
52
53 private wrapObjectWithoutScopeLoad<T, U extends ClientFilterHookName> (result: T, hookName: U) {
54 return this.pluginService.runHook(hookName, result)
55 }
56}