]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/server-hook.model.ts
Add filter hook to forbid embed access
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / server-hook.model.ts
1 // {hookType}:{api?}.{location}.{subLocation?}.{actionType}.{target}
2
3 export const serverFilterHookObject = {
4 // Filter params/result used to list videos for the REST API
5 // (used by the trending page, recently-added page, local page etc)
6 'filter:api.videos.list.params': true,
7 'filter:api.videos.list.result': true,
8
9 // Filter params/result used to list account videos for the REST API
10 'filter:api.accounts.videos.list.params': true,
11 'filter:api.accounts.videos.list.result': true,
12
13 // Filter params/result used to list channel videos for the REST API
14 'filter:api.video-channels.videos.list.params': true,
15 'filter:api.video-channels.videos.list.result': true,
16
17 // Filter params/result used to list my user videos for the REST API
18 'filter:api.user.me.videos.list.params': true,
19 'filter:api.user.me.videos.list.result': true,
20
21 // Filter the result of the get function
22 // Used to get detailed video information (video watch page for example)
23 'filter:api.video.get.result': true,
24
25 // Filter the result of the accept upload/live, import via torrent/url functions
26 // If this function returns false then the upload is aborted with an error
27 'filter:api.video.upload.accept.result': true,
28 'filter:api.live-video.create.accept.result': true,
29 'filter:api.video.pre-import-url.accept.result': true,
30 'filter:api.video.pre-import-torrent.accept.result': true,
31 'filter:api.video.post-import-url.accept.result': true,
32 'filter:api.video.post-import-torrent.accept.result': true,
33 // Filter the result of the accept comment (thread or reply) functions
34 // If the functions return false then the user cannot post its comment
35 'filter:api.video-thread.create.accept.result': true,
36 'filter:api.video-comment-reply.create.accept.result': true,
37
38 // Filter params/result used to list threads of a specific video
39 // (used by the video watch page)
40 'filter:api.video-threads.list.params': true,
41 'filter:api.video-threads.list.result': true,
42
43 // Filter params/result used to list replies of a specific thread
44 // (used by the video watch page when we click on the "View replies" button)
45 'filter:api.video-thread-comments.list.params': true,
46 'filter:api.video-thread-comments.list.result': true,
47
48 // Filter result used to check if we need to auto blacklist a video
49 // (fired when a local or remote video is created or updated)
50 'filter:video.auto-blacklist.result': true,
51
52 // Filter result used to check if a user can register on the instance
53 'filter:api.user.signup.allowed.result': true,
54
55 // Filter result used to check if video/torrent download is allowed
56 'filter:api.download.video.allowed.result': true,
57 'filter:api.download.torrent.allowed.result': true,
58
59 // Filter result to check if the embed is allowed for a particular request
60 'filter:html.embed.video.allowed.result': true,
61 'filter:html.embed.video-playlist.allowed.result': true
62 }
63
64 export type ServerFilterHookName = keyof typeof serverFilterHookObject
65
66 export const serverActionHookObject = {
67 // Fired when the application has been loaded and is listening HTTP requests
68 'action:application.listening': true,
69
70 // Fired when a local video is updated
71 'action:api.video.updated': true,
72 // Fired when a local video is deleted
73 'action:api.video.deleted': true,
74 // Fired when a local video is uploaded
75 'action:api.video.uploaded': true,
76 // Fired when a local video is viewed
77 'action:api.video.viewed': true,
78
79 // Fired when a live video is created
80 'action:api.live-video.created': true,
81
82 // Fired when a thread is created
83 'action:api.video-thread.created': true,
84 // Fired when a reply to a thread is created
85 'action:api.video-comment-reply.created': true,
86 // Fired when a comment (thread or reply) is deleted
87 'action:api.video-comment.deleted': true,
88
89 // Fired when a user is blocked (banned)
90 'action:api.user.blocked': true,
91 // Fired when a user is unblocked (unbanned)
92 'action:api.user.unblocked': true,
93 // Fired when a user registered on the instance
94 'action:api.user.registered': true,
95 // Fired when an admin/moderator created a user
96 'action:api.user.created': true,
97 // Fired when a user is removed by an admin/moderator
98 'action:api.user.deleted': true,
99 // Fired when a user is updated by an admin/moderator
100 'action:api.user.updated': true,
101
102 // Fired when a user got a new oauth2 token
103 'action:api.user.oauth2-got-token': true
104 }
105
106 export type ServerActionHookName = keyof typeof serverActionHookObject
107
108 export const serverHookObject = Object.assign({}, serverFilterHookObject, serverActionHookObject)
109 export type ServerHookName = keyof typeof serverHookObject
110
111 export interface ServerHook {
112 runHook <T> (hookName: ServerHookName, result?: T, params?: any): Promise<T>
113 }