]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/plugins/client/client-hook.model.ts
Allow configuration to be static/readonly (#4315)
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / client / client-hook.model.ts
CommitLineData
7663e55a 1// Data from API hooks: {hookType}:api.{location}.{elementType}.{actionType}.{target}
3d9a63d3 2// Data in internal functions: {hookType}:{location}.{elementType}.{actionType}.{target}
93cae479 3
7663e55a 4export const clientFilterHookObject = {
5f189c9c 5 // Filter params/result of the function that fetch videos of the trending page
7663e55a
C
6 'filter:api.trending-videos.videos.list.params': true,
7 'filter:api.trending-videos.videos.list.result': true,
93cae479 8
c07eb946
JM
9 // Filter params/result of the function that fetch videos of the trending page
10 'filter:api.most-liked-videos.videos.list.params': true,
11 'filter:api.most-liked-videos.videos.list.result': true,
12
5f189c9c 13 // Filter params/result of the function that fetch videos of the local page
7663e55a
C
14 'filter:api.local-videos.videos.list.params': true,
15 'filter:api.local-videos.videos.list.result': true,
93cae479 16
5f189c9c 17 // Filter params/result of the function that fetch videos of the recently-added page
7663e55a
C
18 'filter:api.recently-added-videos.videos.list.params': true,
19 'filter:api.recently-added-videos.videos.list.result': true,
93cae479 20
5f189c9c 21 // Filter params/result of the function that fetch videos of the user subscription page
7663e55a
C
22 'filter:api.user-subscriptions-videos.videos.list.params': true,
23 'filter:api.user-subscriptions-videos.videos.list.result': true,
93cae479 24
5f189c9c 25 // Filter params/result of the function that fetch the video of the video-watch page
7663e55a
C
26 'filter:api.video-watch.video.get.params': true,
27 'filter:api.video-watch.video.get.result': true,
93cae479 28
5f189c9c 29 // Filter params/result of the function that fetch the threads of the video-watch page
7663e55a
C
30 'filter:api.video-watch.video-threads.list.params': true,
31 'filter:api.video-watch.video-threads.list.result': true,
93cae479 32
5f189c9c 33 // Filter params/result of the function that fetch the replies of a thread in the video-watch page
7663e55a
C
34 'filter:api.video-watch.video-thread-replies.list.params': true,
35 'filter:api.video-watch.video-thread-replies.list.result': true,
93cae479 36
5f189c9c 37 // Filter params/result of the function that fetch videos according to the user search
7663e55a
C
38 'filter:api.search.videos.list.params': true,
39 'filter:api.search.videos.list.result': true,
37a44fc9 40 // Filter params/result of the function that fetch video channels according to the user search
7663e55a 41 'filter:api.search.video-channels.list.params': true,
ba7b7e57 42 'filter:api.search.video-channels.list.result': true,
37a44fc9
C
43 // Filter params/result of the function that fetch video playlists according to the user search
44 'filter:api.search.video-playlists.list.params': true,
45 'filter:api.search.video-playlists.list.result': true,
ba7b7e57
RK
46
47 // Filter form
3d9a63d3
C
48 'filter:api.signup.registration.create.params': true,
49
50 // Filter the options to create our player
c2023a9f
C
51 'filter:internal.video-watch.player.build-options.params': true,
52 'filter:internal.video-watch.player.build-options.result': true,
53
54 // Filter our SVG icons content
55 'filter:internal.common.svg-icons.get-content.params': true,
8beea2d3
C
56 'filter:internal.common.svg-icons.get-content.result': true,
57
58 // Filter left menu links
72f611ca 59 'filter:left-menu.links.create.result': true,
60
4e1592da 61 // Filter upload page alert messages
59c8902a 62 'filter:upload.messages.create.result': true,
4e1592da 63
72f611ca 64 // Filter videojs options built for PeerTube player
65 'filter:internal.player.videojs.options.result': true
7663e55a
C
66}
67
68export type ClientFilterHookName = keyof typeof clientFilterHookObject
69
70export const clientActionHookObject = {
5f189c9c 71 // Fired when the application is being initialized
7663e55a 72 'action:application.init': true,
93cae479 73
5f189c9c 74 // Fired when the video watch page is being initialized
7663e55a 75 'action:video-watch.init': true,
5f189c9c 76 // Fired when the video watch page loaded the video
7663e55a 77 'action:video-watch.video.loaded': true,
5f85f8aa
RK
78 // Fired when the player finished loading
79 'action:video-watch.player.loaded': true,
0840ca76
C
80 // Fired when the video watch page comments(threads) are loaded and load more comments on scroll
81 'action:video-watch.video-threads.loaded': true,
cf387740
B
82 // Fired when a user click on 'View x replies' and they're loaded
83 'action:video-watch.video-thread-replies.loaded': true,
7663e55a 84
7294aab0
C
85 // Fired when the video edit page (upload, URL/torrent import, update) is being initialized
86 'action:video-edit.init': true,
87
f375bb3d
C
88 // Fired when the login page is being initialized
89 'action:login.init': true,
90
5f189c9c 91 // Fired when the search page is being initialized
23bdacf8
C
92 'action:search.init': true,
93
94 // Fired every time Angular URL changes
ba7b7e57
RK
95 'action:router.navigation-end': true,
96
97 // Fired when the registration page is being initialized
f9562863
C
98 'action:signup.register.init': true,
99
0ea9f463
C
100 // PeerTube >= 3.2
101 // Fired when the admin plugin settings page is being initialized
102 'action:admin-plugin-settings.init': true,
103
2e257e36
C
104 // Fired when the video upload page is being initalized
105 'action:video-upload.init': true,
106 // Fired when the video import by URL page is being initalized
107 'action:video-url-import.init': true,
108 // Fired when the video import by torrent/magnet URI page is being initalized
109 'action:video-torrent-import.init': true,
110 // Fired when the "Go Live" page is being initalized
111 'action:go-live.init': true,
112
faeec106
C
113 // Fired when the user explicitely logged in/logged out
114 'action:auth-user.logged-in': true,
115 'action:auth-user.logged-out': true,
116 // Fired when the application loaded user information (using tokens from the local storage or after a successful login)
117 'action:auth-user.information-loaded': true,
118
4bc45da3
C
119 // Fired when the modal to download a video/caption is shown
120 'action:modal.video-download.shown': true,
121
f9562863 122 // ####### Embed hooks #######
4bc45da3
C
123 // /!\ In embed scope, peertube helpers are not available
124 // ###########################
f9562863
C
125
126 // Fired when the embed loaded the player
127 'action:embed.player.loaded': true
7663e55a 128}
93cae479 129
7663e55a 130export type ClientActionHookName = keyof typeof clientActionHookObject
93cae479 131
7663e55a
C
132export const clientHookObject = Object.assign({}, clientFilterHookObject, clientActionHookObject)
133export type ClientHookName = keyof typeof clientHookObject
93cae479
C
134
135export interface ClientHook {
136 runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T>
137}