]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/fixtures/peertube-plugin-test/main.js
Merge branch 'release/5.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / fixtures / peertube-plugin-test / main.js
1 async function register ({ registerHook, registerSetting, settingsManager, storageManager, peertubeHelpers }) {
2 const actionHooks = [
3 'action:application.listening',
4 'action:notifier.notification.created',
5
6 'action:api.video.updated',
7 'action:api.video.deleted',
8 'action:api.video.uploaded',
9 'action:api.video.viewed',
10
11 'action:api.video-channel.created',
12 'action:api.video-channel.updated',
13 'action:api.video-channel.deleted',
14
15 'action:api.live-video.created',
16
17 'action:api.video-thread.created',
18 'action:api.video-comment-reply.created',
19 'action:api.video-comment.deleted',
20
21 'action:api.video-caption.created',
22 'action:api.video-caption.deleted',
23
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',
31
32 'action:api.video-playlist-element.created'
33 ]
34
35 for (const h of actionHooks) {
36 registerHook({
37 target: h,
38 handler: () => peertubeHelpers.logger.debug('Run hook %s.', h)
39 })
40 }
41
42 registerHook({
43 target: 'filter:api.videos.list.params',
44 handler: obj => addToCount(obj)
45 })
46
47 registerHook({
48 target: 'filter:api.videos.list.result',
49 handler: obj => addToTotal(obj)
50 })
51
52 registerHook({
53 target: 'filter:api.video-playlist.videos.list.params',
54 handler: obj => addToCount(obj)
55 })
56
57 registerHook({
58 target: 'filter:api.video-playlist.videos.list.result',
59 handler: obj => addToTotal(obj)
60 })
61
62 registerHook({
63 target: 'filter:api.accounts.videos.list.params',
64 handler: obj => addToCount(obj)
65 })
66
67 registerHook({
68 target: 'filter:api.accounts.videos.list.result',
69 handler: obj => addToTotal(obj, 2)
70 })
71
72 registerHook({
73 target: 'filter:api.video-channels.videos.list.params',
74 handler: obj => addToCount(obj, 3)
75 })
76
77 registerHook({
78 target: 'filter:api.video-channels.videos.list.result',
79 handler: obj => addToTotal(obj, 3)
80 })
81
82 registerHook({
83 target: 'filter:api.user.me.videos.list.params',
84 handler: obj => addToCount(obj, 4)
85 })
86
87 registerHook({
88 target: 'filter:api.user.me.videos.list.result',
89 handler: obj => addToTotal(obj, 4)
90 })
91
92 registerHook({
93 target: 'filter:api.video.get.result',
94 handler: video => {
95 video.name += ' <3'
96
97 return video
98 }
99 })
100
101 // ---------------------------------------------------------------------------
102
103 registerHook({
104 target: 'filter:api.video-channels.list.params',
105 handler: obj => addToCount(obj, 1)
106 })
107
108 registerHook({
109 target: 'filter:api.video-channels.list.result',
110 handler: obj => addToTotal(obj, 1)
111 })
112
113 registerHook({
114 target: 'filter:api.video-channel.get.result',
115 handler: channel => {
116 channel.name += ' <3'
117
118 return channel
119 }
120 })
121
122 // ---------------------------------------------------------------------------
123
124 for (const hook of [ 'filter:api.video.upload.accept.result', 'filter:api.live-video.create.accept.result' ]) {
125 registerHook({
126 target: hook,
127 handler: ({ accepted }, { videoBody, liveVideoBody }) => {
128 if (!accepted) return { accepted: false }
129
130 const name = videoBody
131 ? videoBody.name
132 : liveVideoBody.name
133
134 if (name.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word' }
135
136 return { accepted: true }
137 }
138 })
139 }
140
141 registerHook({
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' }
146
147 return { accepted: true }
148 }
149 })
150
151 registerHook({
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' }
156
157 return { accepted: true }
158 }
159 })
160
161 registerHook({
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' }
166
167 return { accepted: true }
168 }
169 })
170
171 registerHook({
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' }
176
177 return { accepted: true }
178 }
179 })
180
181 // ---------------------------------------------------------------------------
182
183 registerHook({
184 target: 'filter:api.video-thread.create.accept.result',
185 handler: ({ accepted }, { commentBody }) => checkCommentBadWord(accepted, commentBody)
186 })
187
188 registerHook({
189 target: 'filter:api.video-comment-reply.create.accept.result',
190 handler: ({ accepted }, { commentBody }) => checkCommentBadWord(accepted, commentBody)
191 })
192
193 registerHook({
194 target: 'filter:activity-pub.remote-video-comment.create.accept.result',
195 handler: ({ accepted }, { comment }) => checkCommentBadWord(accepted, comment)
196 })
197
198 // ---------------------------------------------------------------------------
199
200 registerHook({
201 target: 'filter:api.video-threads.list.params',
202 handler: obj => addToCount(obj)
203 })
204
205 registerHook({
206 target: 'filter:api.video-threads.list.result',
207 handler: obj => addToTotal(obj)
208 })
209
210 registerHook({
211 target: 'filter:api.video-thread-comments.list.result',
212 handler: obj => {
213 obj.data.forEach(c => c.text += ' <3')
214
215 return obj
216 }
217 })
218
219 registerHook({
220 target: 'filter:video.auto-blacklist.result',
221 handler: (blacklisted, { video }) => {
222 if (blacklisted) return true
223 if (video.name.includes('please blacklist me')) return true
224
225 return false
226 }
227 })
228
229 registerHook({
230 target: 'filter:api.user.signup.allowed.result',
231 handler: (result, params) => {
232 if (params && params.body && params.body.email && params.body.email.includes('jma')) {
233 return { allowed: false, errorMessage: 'No jma' }
234 }
235
236 return result
237 }
238 })
239
240 registerHook({
241 target: 'filter:api.download.torrent.allowed.result',
242 handler: (result, params) => {
243 if (params && params.downloadName.includes('bad torrent')) {
244 return { allowed: false, errorMessage: 'Liu Bei' }
245 }
246
247 return result
248 }
249 })
250
251 registerHook({
252 target: 'filter:api.download.video.allowed.result',
253 handler: async (result, params) => {
254 const loggedInUser = await peertubeHelpers.user.getAuthUser(params.res)
255 if (loggedInUser) return { allowed: true }
256
257 if (params && !params.streamingPlaylist && params.video.name.includes('bad file')) {
258 return { allowed: false, errorMessage: 'Cao Cao' }
259 }
260
261 if (params && params.streamingPlaylist && params.video.name.includes('bad playlist file')) {
262 return { allowed: false, errorMessage: 'Sun Jian' }
263 }
264
265 return result
266 }
267 })
268
269 registerHook({
270 target: 'filter:html.embed.video.allowed.result',
271 handler: (result, params) => {
272 return {
273 allowed: false,
274 html: 'Lu Bu'
275 }
276 }
277 })
278
279 registerHook({
280 target: 'filter:html.embed.video-playlist.allowed.result',
281 handler: (result, params) => {
282 return {
283 allowed: false,
284 html: 'Diao Chan'
285 }
286 }
287 })
288
289 registerHook({
290 target: 'filter:api.server.stats.get.result',
291 handler: (result) => {
292 return { ...result, customStats: 14 }
293 }
294 })
295
296 registerHook({
297 target: 'filter:job-queue.process.params',
298 handler: (object, context) => {
299 if (context.type !== 'video-studio-edition') return object
300
301 object.data.tasks = [
302 {
303 name: 'cut',
304 options: {
305 start: 0,
306 end: 1
307 }
308 }
309 ]
310
311 return object
312 }
313 })
314
315 registerHook({
316 target: 'filter:transcoding.auto.resolutions-to-transcode.result',
317 handler: (object, context) => {
318 if (context.video.name.includes('transcode-filter')) {
319 object = [ 100 ]
320 }
321
322 return object
323 }
324 })
325
326 // Upload/import/live attributes
327 for (const target of [
328 'filter:api.video.upload.video-attribute.result',
329 'filter:api.video.import-url.video-attribute.result',
330 'filter:api.video.import-torrent.video-attribute.result',
331 'filter:api.video.live.video-attribute.result'
332 ]) {
333 registerHook({
334 target,
335 handler: (result) => {
336 return { ...result, description: result.description + ' - ' + target }
337 }
338 })
339 }
340
341 {
342 const filterHooks = [
343 'filter:api.search.videos.local.list.params',
344 'filter:api.search.videos.local.list.result',
345 'filter:api.search.videos.index.list.params',
346 'filter:api.search.videos.index.list.result',
347 'filter:api.search.video-channels.local.list.params',
348 'filter:api.search.video-channels.local.list.result',
349 'filter:api.search.video-channels.index.list.params',
350 'filter:api.search.video-channels.index.list.result',
351 'filter:api.search.video-playlists.local.list.params',
352 'filter:api.search.video-playlists.local.list.result',
353 'filter:api.search.video-playlists.index.list.params',
354 'filter:api.search.video-playlists.index.list.result',
355
356 'filter:api.overviews.videos.list.params',
357 'filter:api.overviews.videos.list.result',
358
359 'filter:job-queue.process.params',
360 'filter:job-queue.process.result'
361 ]
362
363 for (const h of filterHooks) {
364 registerHook({
365 target: h,
366 handler: (obj) => {
367 peertubeHelpers.logger.debug('Run hook %s.', h)
368
369 return obj
370 }
371 })
372 }
373 }
374 }
375
376 async function unregister () {
377 return
378 }
379
380 module.exports = {
381 register,
382 unregister
383 }
384
385 // ############################################################################
386
387 function addToCount (obj, amount = 1) {
388 return Object.assign({}, obj, { count: obj.count + amount })
389 }
390
391 function addToTotal (result, amount = 1) {
392 return {
393 data: result.data,
394 total: result.total + amount
395 }
396 }
397
398 function checkCommentBadWord (accepted, commentBody) {
399 if (!accepted) return { accepted: false }
400 if (commentBody.text.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word '}
401
402 return { accepted: true }
403 }