]>
git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/fixtures/peertube-plugin-test/main.js
1 async
function register ({ registerHook
, registerSetting
, settingsManager
, storageManager
, peertubeHelpers
}) {
3 'action:application.listening',
4 'action:notifier.notification.created',
6 'action:api.video.updated',
7 'action:api.video.deleted',
8 'action:api.video.uploaded',
9 'action:api.video.viewed',
11 'action:api.video-channel.created',
12 'action:api.video-channel.updated',
13 'action:api.video-channel.deleted',
15 'action:api.live-video.created',
17 'action:api.video-thread.created',
18 'action:api.video-comment-reply.created',
19 'action:api.video-comment.deleted',
21 'action:api.video-caption.created',
22 'action:api.video-caption.deleted',
24 'action:api.user.blocked',
25 'action:api.user.unblocked',
26 'action:api.user.registered',
27 'action:api.user.created',
28 'action:api.user.deleted',
29 'action:api.user.updated',
30 'action:api.user.oauth2-got-token',
32 'action:api.video-playlist-element.created'
35 for (const h
of actionHooks
) {
38 handler: () => peertubeHelpers
.logger
.debug('Run hook %s.', h
)
43 target: 'filter:api.videos.list.params',
44 handler: obj
=> addToCount(obj
)
48 target: 'filter:api.videos.list.result',
49 handler: obj
=> addToTotal(obj
)
53 target: 'filter:api.video-playlist.videos.list.params',
54 handler: obj
=> addToCount(obj
)
58 target: 'filter:api.video-playlist.videos.list.result',
59 handler: obj
=> addToTotal(obj
)
63 target: 'filter:api.accounts.videos.list.params',
64 handler: obj
=> addToCount(obj
)
68 target: 'filter:api.accounts.videos.list.result',
69 handler: obj
=> addToTotal(obj
, 2)
73 target: 'filter:api.video-channels.videos.list.params',
74 handler: obj
=> addToCount(obj
, 3)
78 target: 'filter:api.video-channels.videos.list.result',
79 handler: obj
=> addToTotal(obj
, 3)
83 target: 'filter:api.user.me.videos.list.params',
84 handler: obj
=> addToCount(obj
, 4)
88 target: 'filter:api.user.me.videos.list.result',
89 handler: obj
=> addToTotal(obj
, 4)
93 target: 'filter:api.video.get.result',
101 // ---------------------------------------------------------------------------
104 target: 'filter:api.video-channels.list.params',
105 handler: obj
=> addToCount(obj
, 1)
109 target: 'filter:api.video-channels.list.result',
110 handler: obj
=> addToTotal(obj
, 1)
114 target: 'filter:api.video-channel.get.result',
115 handler: channel
=> {
116 channel
.name
+= ' <3'
122 // ---------------------------------------------------------------------------
124 for (const hook
of [ 'filter:api.video.upload.accept.result', 'filter:api.live-video.create.accept.result' ]) {
127 handler: ({ accepted
}, { videoBody
, liveVideoBody
}) => {
128 if (!accepted
) return { accepted: false }
130 const name
= videoBody
134 if (name
.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word' }
136 return { accepted: true }
142 target: 'filter:api.video.pre-import-url.accept.result',
143 handler: ({ accepted
}, { videoImportBody
}) => {
144 if (!accepted
) return { accepted: false }
145 if (videoImportBody
.targetUrl
.includes('bad')) return { accepted: false, errorMessage: 'bad target url' }
147 return { accepted: true }
152 target: 'filter:api.video.pre-import-torrent.accept.result',
153 handler: ({ accepted
}, { videoImportBody
}) => {
154 if (!accepted
) return { accepted: false }
155 if (videoImportBody
.name
.includes('bad torrent')) return { accepted: false, errorMessage: 'bad torrent' }
157 return { accepted: true }
162 target: 'filter:api.video.post-import-url.accept.result',
163 handler: ({ accepted
}, { video
}) => {
164 if (!accepted
) return { accepted: false }
165 if (video
.name
.includes('bad word')) return { accepted: false, errorMessage: 'bad word' }
167 return { accepted: true }
172 target: 'filter:api.video.post-import-torrent.accept.result',
173 handler: ({ accepted
}, { video
}) => {
174 if (!accepted
) return { accepted: false }
175 if (video
.name
.includes('bad word')) return { accepted: false, errorMessage: 'bad word' }
177 return { accepted: true }
182 target: 'filter:api.video-thread.create.accept.result',
183 handler: ({ accepted
}, { commentBody
}) => checkCommentBadWord(accepted
, commentBody
)
187 target: 'filter:api.video-comment-reply.create.accept.result',
188 handler: ({ accepted
}, { commentBody
}) => checkCommentBadWord(accepted
, commentBody
)
192 target: 'filter:api.video-threads.list.params',
193 handler: obj
=> addToCount(obj
)
197 target: 'filter:api.video-threads.list.result',
198 handler: obj
=> addToTotal(obj
)
202 target: 'filter:api.video-thread-comments.list.result',
204 obj
.data
.forEach(c
=> c
.text
+= ' <3')
211 target: 'filter:video.auto-blacklist.result',
212 handler: (blacklisted
, { video
}) => {
213 if (blacklisted
) return true
214 if (video
.name
.includes('please blacklist me')) return true
221 target: 'filter:api.user.signup.allowed.result',
222 handler: (result
, params
) => {
223 if (params
&& params
.body
&& params
.body
.email
&& params
.body
.email
.includes('jma')) {
224 return { allowed: false, errorMessage: 'No jma' }
232 target: 'filter:api.download.torrent.allowed.result',
233 handler: (result
, params
) => {
234 if (params
&& params
.downloadName
.includes('bad torrent')) {
235 return { allowed: false, errorMessage: 'Liu Bei' }
243 target: 'filter:api.download.video.allowed.result',
244 handler: (result
, params
) => {
245 if (params
&& !params
.streamingPlaylist
&& params
.video
.name
.includes('bad file')) {
246 return { allowed: false, errorMessage: 'Cao Cao' }
249 if (params
&& params
.streamingPlaylist
&& params
.video
.name
.includes('bad playlist file')) {
250 return { allowed: false, errorMessage: 'Sun Jian' }
258 target: 'filter:html.embed.video.allowed.result',
259 handler: (result
, params
) => {
268 target: 'filter:html.embed.video-playlist.allowed.result',
269 handler: (result
, params
) => {
278 target: 'filter:api.server.stats.get.result',
279 handler: (result
) => {
280 return { ...result
, customStats: 14 }
285 target: 'filter:job-queue.process.params',
286 handler: (object
, context
) => {
287 if (context
.type
!== 'video-studio-edition') return object
289 object
.data
.tasks
= [
304 target: 'filter:transcoding.auto.resolutions-to-transcode.result',
305 handler: (object
, context
) => {
306 if (context
.video
.name
.includes('transcode-filter')) {
314 // Upload/import/live attributes
315 for (const target
of [
316 'filter:api.video.upload.video-attribute.result',
317 'filter:api.video.import-url.video-attribute.result',
318 'filter:api.video.import-torrent.video-attribute.result',
319 'filter:api.video.live.video-attribute.result'
323 handler: (result
) => {
324 return { ...result
, description: result
.description
+ ' - ' + target
}
330 const filterHooks
= [
331 'filter:api.search.videos.local.list.params',
332 'filter:api.search.videos.local.list.result',
333 'filter:api.search.videos.index.list.params',
334 'filter:api.search.videos.index.list.result',
335 'filter:api.search.video-channels.local.list.params',
336 'filter:api.search.video-channels.local.list.result',
337 'filter:api.search.video-channels.index.list.params',
338 'filter:api.search.video-channels.index.list.result',
339 'filter:api.search.video-playlists.local.list.params',
340 'filter:api.search.video-playlists.local.list.result',
341 'filter:api.search.video-playlists.index.list.params',
342 'filter:api.search.video-playlists.index.list.result',
344 'filter:api.overviews.videos.list.params',
345 'filter:api.overviews.videos.list.result',
347 'filter:job-queue.process.params',
348 'filter:job-queue.process.result'
351 for (const h
of filterHooks
) {
355 peertubeHelpers
.logger
.debug('Run hook %s.', h
)
364 async
function unregister () {
373 // ############################################################################
375 function addToCount (obj
, amount
= 1) {
376 return Object
.assign({}, obj
, { count: obj
.count
+ amount
})
379 function addToTotal (result
, amount
= 1) {
382 total: result
.total
+ amount
386 function checkCommentBadWord (accepted
, commentBody
) {
387 if (!accepted
) return { accepted: false }
388 if (commentBody
.text
.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word '}
390 return { accepted: true }