]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - support/doc/plugins/guide.md
Add ability to hide plugin form fields
[github/Chocobozzz/PeerTube.git] / support / doc / plugins / guide.md
1 # Plugins & Themes
2
3 <!-- START doctoc generated TOC please keep comment here to allow auto update -->
4 <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
5
6
7 - [Concepts](#concepts)
8 - [Hooks](#hooks)
9 - [Static files](#static-files)
10 - [CSS](#css)
11 - [Server API (only for plugins)](#server-api-only-for-plugins)
12 - [Settings](#settings)
13 - [Storage](#storage)
14 - [Update video constants](#update-video-constants)
15 - [Add custom routes](#add-custom-routes)
16 - [Add external auth methods](#add-external-auth-methods)
17 - [Add new transcoding profiles](#add-new-transcoding-profiles)
18 - [Server helpers](#server-helpers)
19 - [Client API (themes & plugins)](#client-api-themes--plugins)
20 - [Plugin static route](#plugin-static-route)
21 - [Notifier](#notifier)
22 - [Markdown Renderer](#markdown-renderer)
23 - [Auth header](#auth-header)
24 - [Custom Modal](#custom-modal)
25 - [Translate](#translate)
26 - [Get public settings](#get-public-settings)
27 - [Get server config](#get-server-config)
28 - [Add custom fields to video form](#add-custom-fields-to-video-form)
29 - [Register settings script](#register-settings-script)
30 - [HTML placeholder elements](#html-placeholder-elements)
31 - [Publishing](#publishing)
32 - [Write a plugin/theme](#write-a-plugintheme)
33 - [Clone the quickstart repository](#clone-the-quickstart-repository)
34 - [Configure your repository](#configure-your-repository)
35 - [Update README](#update-readme)
36 - [Update package.json](#update-packagejson)
37 - [Write code](#write-code)
38 - [Add translations](#add-translations)
39 - [Build your plugin](#build-your-plugin)
40 - [Test your plugin/theme](#test-your-plugintheme)
41 - [Publish](#publish)
42 - [Plugin & Theme hooks/helpers API](#plugin--theme-hookshelpers-api)
43 - [Tips](#tips)
44 - [Compatibility with PeerTube](#compatibility-with-peertube)
45 - [Spam/moderation plugin](#spammoderation-plugin)
46 - [Other plugin examples](#other-plugin-examples)
47
48 <!-- END doctoc generated TOC please keep comment here to allow auto update -->
49
50 ## Concepts
51
52 Themes are exactly the same as plugins, except that:
53 * Their name starts with `peertube-theme-` instead of `peertube-plugin-`
54 * They cannot declare server code (so they cannot register server hooks or settings)
55 * CSS files are loaded by client only if the theme is chosen by the administrator or the user
56
57 ### Hooks
58
59 A plugin registers functions in JavaScript to execute when PeerTube (server and client) fires events. There are 3 types of hooks:
60 * `filter`: used to filter functions parameters or return values.
61 For example to replace words in video comments, or change the videos list behaviour
62 * `action`: used to do something after a certain trigger. For example to send a hook every time a video is published
63 * `static`: same than `action` but PeerTube waits their execution
64
65 On server side, these hooks are registered by the `library` file defined in `package.json`.
66
67 ```json
68 {
69 ...,
70 "library": "./main.js",
71 ...,
72 }
73 ```
74
75 And `main.js` defines a `register` function:
76
77 Example:
78
79 ```js
80 async function register ({
81 registerHook,
82
83 registerSetting,
84 settingsManager,
85
86 storageManager,
87
88 videoCategoryManager,
89 videoLicenceManager,
90 videoLanguageManager,
91
92 peertubeHelpers,
93
94 getRouter,
95
96 registerExternalAuth,
97 unregisterExternalAuth,
98 registerIdAndPassAuth,
99 unregisterIdAndPassAuth
100 }) {
101 registerHook({
102 target: 'action:application.listening',
103 handler: () => displayHelloWorld()
104 })
105 }
106 ```
107
108
109 On client side, these hooks are registered by the `clientScripts` files defined in `package.json`.
110 All client scripts have scopes so PeerTube client only loads scripts it needs:
111
112 ```json
113 {
114 ...,
115 "clientScripts": [
116 {
117 "script": "client/common-client-plugin.js",
118 "scopes": [ "common" ]
119 },
120 {
121 "script": "client/video-watch-client-plugin.js",
122 "scopes": [ "video-watch" ]
123 }
124 ],
125 ...
126 }
127 ```
128
129 And these scripts also define a `register` function:
130
131 ```js
132 function register ({ registerHook, peertubeHelpers }) {
133 registerHook({
134 target: 'action:application.init',
135 handler: () => onApplicationInit(peertubeHelpers)
136 })
137 }
138 ```
139
140 ### Static files
141
142 Plugins can declare static directories that PeerTube will serve (images for example)
143 from `/plugins/{plugin-name}/{plugin-version}/static/`
144 or `/themes/{theme-name}/{theme-version}/static/` routes.
145
146 ### CSS
147
148 Plugins can declare CSS files that PeerTube will automatically inject in the client.
149 If you need to override existing style, you can use the `#custom-css` selector:
150
151 ```
152 body#custom-css {
153 color: red;
154 }
155
156 #custom-css .header {
157 background-color: red;
158 }
159 ```
160
161 ### Server API (only for plugins)
162
163 #### Settings
164
165 Plugins can register settings, that PeerTube will inject in the administration interface.
166 The following fields will be automatically translated using the plugin translation files: `label`, `html`, `descriptionHTML`, `options.label`.
167 **These fields are injected in the plugin settings page as HTML, so pay attention to your translation files.**
168
169 Example:
170
171 ```js
172 function register (...) {
173 registerSetting({
174 name: 'admin-name',
175 label: 'Admin name',
176 type: 'input',
177 // type: input | input-checkbox | input-password | input-textarea | markdown-text | markdown-enhanced | 'select' | 'html'
178 default: 'my super name'
179 })
180
181 const adminName = await settingsManager.getSetting('admin-name')
182
183 const result = await settingsManager.getSettings([ 'admin-name', 'admin-password' ])
184 result['admin-name]
185
186 settingsManager.onSettingsChange(settings => {
187 settings['admin-name])
188 })
189 }
190 ```
191
192 #### Storage
193
194 Plugins can store/load JSON data, that PeerTube will store in its database (so don't put files in there).
195
196 Example:
197
198 ```js
199 function register ({
200 storageManager
201 }) {
202 const value = await storageManager.getData('mykey')
203 await storageManager.storeData('mykey', { subkey: 'value' })
204 }
205 ```
206
207 You can also store files in the plugin data directory (`/{plugins-directory}/data/{npm-plugin-name}`) **in PeerTube >= 3.2**.
208 This directory and its content won't be deleted when your plugin is uninstalled/upgraded.
209
210 ```js
211 function register ({
212 storageManager,
213 peertubeHelpers
214 }) {
215 const basePath = peertubeHelpers.plugin.getDataDirectoryPath()
216
217 fs.writeFile(path.join(basePath, 'filename.txt'), 'content of my file', function (err) {
218 ...
219 })
220 }
221 ```
222
223 #### Update video constants
224
225 You can add/delete video categories, licences or languages using the appropriate managers:
226
227 ```js
228 function register (...) {
229 videoLanguageManager.addLanguage('al_bhed', 'Al Bhed')
230 videoLanguageManager.deleteLanguage('fr')
231
232 videoCategoryManager.addCategory(42, 'Best category')
233 videoCategoryManager.deleteCategory(1) // Music
234
235 videoLicenceManager.addLicence(42, 'Best licence')
236 videoLicenceManager.deleteLicence(7) // Public domain
237
238 videoPrivacyManager.deletePrivacy(2) // Remove Unlisted video privacy
239 playlistPrivacyManager.deletePlaylistPrivacy(3) // Remove Private video playlist privacy
240 }
241 ```
242
243 #### Add custom routes
244
245 You can create custom routes using an [express Router](https://expressjs.com/en/4x/api.html#router) for your plugin:
246
247 ```js
248 function register ({
249 router
250 }) {
251 const router = getRouter()
252 router.get('/ping', (req, res) => res.json({ message: 'pong' }))
253
254 // Users are automatically authenticated
255 router.get('/auth', (res, res) => {
256 const user = peertubeHelpers.user.getAuthUser(res)
257
258 const isAdmin = user.role === 0
259 const isModerator = user.role === 1
260 const isUser = user.role === 2
261
262 res.json({
263 username: user.username,
264 isAdmin,
265 isModerator,
266 isUser
267 })
268 })
269 }
270 ```
271
272 The `ping` route can be accessed using:
273 * `/plugins/:pluginName/:pluginVersion/router/ping`
274 * Or `/plugins/:pluginName/router/ping`
275
276
277 #### Add external auth methods
278
279 If you want to add a classic username/email and password auth method (like [LDAP](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-ldap) for example):
280
281 ```js
282 function register (...) {
283
284 registerIdAndPassAuth({
285 authName: 'my-auth-method',
286
287 // PeerTube will try all id and pass plugins in the weight DESC order
288 // Exposing this value in the plugin settings could be interesting
289 getWeight: () => 60,
290
291 // Optional function called by PeerTube when the user clicked on the logout button
292 onLogout: user => {
293 console.log('User %s logged out.', user.username')
294 },
295
296 // Optional function called by PeerTube when the access token or refresh token are generated/refreshed
297 hookTokenValidity: ({ token, type }) => {
298 if (type === 'access') return { valid: true }
299 if (type === 'refresh') return { valid: false }
300 },
301
302 // Used by PeerTube when the user tries to authenticate
303 login: ({ id, password }) => {
304 if (id === 'user' && password === 'super password') {
305 return {
306 username: 'user'
307 email: 'user@example.com'
308 role: 2
309 displayName: 'User display name'
310 }
311 }
312
313 // Auth failed
314 return null
315 }
316 })
317
318 // Unregister this auth method
319 unregisterIdAndPassAuth('my-auth-method')
320 }
321 ```
322
323 You can also add an external auth method (like [OpenID](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-openid-connect), [SAML2](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-saml2) etc):
324
325 ```js
326 function register (...) {
327
328 // result contains the userAuthenticated auth method you can call to authenticate a user
329 const result = registerExternalAuth({
330 authName: 'my-auth-method',
331
332 // Will be displayed in a button next to the login form
333 authDisplayName: () => 'Auth method'
334
335 // If the user click on the auth button, PeerTube will forward the request in this function
336 onAuthRequest: (req, res) => {
337 res.redirect('https://external-auth.example.com/auth')
338 },
339
340 // Same than registerIdAndPassAuth option
341 // onLogout: ...
342
343 // Same than registerIdAndPassAuth option
344 // hookTokenValidity: ...
345 })
346
347 router.use('/external-auth-callback', (req, res) => {
348 // Forward the request to PeerTube
349 result.userAuthenticated({
350 req,
351 res,
352 username: 'user'
353 email: 'user@example.com'
354 role: 2
355 displayName: 'User display name'
356 })
357 })
358
359 // Unregister this external auth method
360 unregisterExternalAuth('my-auth-method)
361 }
362 ```
363
364 #### Add new transcoding profiles
365
366 Adding transcoding profiles allow admins to change ffmpeg encoding parameters and/or encoders.
367 A transcoding profile has to be chosen by the admin of the instance using the admin configuration.
368
369 ```js
370 async function register ({
371 transcodingManager
372 }) {
373
374 // Adapt bitrate when using libx264 encoder
375 {
376 const builder = (options) => {
377 const { input, resolution, fps, streamNum } = options
378
379 const streamString = streamNum ? ':' + streamNum : ''
380
381 // You can also return a promise
382 // All these options are optional
383 return {
384 scaleFilter: {
385 // Used to define an alternative scale filter, needed by some encoders
386 // Default to 'scale'
387 name: 'scale_vaapi'
388 },
389 // Default to []
390 inputOptions: [],
391 // Default to []
392 outputOptions: [
393 // Use a custom bitrate
394 '-b' + streamString + ' 10K'
395 ]
396 }
397 }
398
399 const encoder = 'libx264'
400 const profileName = 'low-quality'
401
402 // Support this profile for VOD transcoding
403 transcodingManager.addVODProfile(encoder, profileName, builder)
404
405 // And/Or support this profile for live transcoding
406 transcodingManager.addLiveProfile(encoder, profileName, builder)
407 }
408
409 {
410 const builder = (options) => {
411 const { streamNum } = options
412
413 const streamString = streamNum ? ':' + streamNum : ''
414
415 // Always copy stream when PeerTube use libfdk_aac or aac encoders
416 return {
417 copy: true
418 }
419 }
420
421 const profileName = 'copy-audio'
422
423 for (const encoder of [ 'libfdk_aac', 'aac' ]) {
424 transcodingManager.addVODProfile(encoder, profileName, builder)
425 }
426 }
427 ```
428
429 PeerTube will try different encoders depending on their priority.
430 If the encoder is not available in the current transcoding profile or in ffmpeg, it tries the next one.
431 Plugins can change the order of these encoders and add their custom encoders:
432
433 ```js
434 async function register ({
435 transcodingManager
436 }) {
437
438 // Adapt bitrate when using libx264 encoder
439 {
440 const builder = () => {
441 return {
442 inputOptions: [],
443 outputOptions: []
444 }
445 }
446
447 // Support libopus and libvpx-vp9 encoders (these codecs could be incompatible with the player)
448 transcodingManager.addVODProfile('libopus', 'test-vod-profile', builder)
449
450 // Default priorities are ~100
451 // Lowest priority = 1
452 transcodingManager.addVODEncoderPriority('audio', 'libopus', 1000)
453
454 transcodingManager.addVODProfile('libvpx-vp9', 'test-vod-profile', builder)
455 transcodingManager.addVODEncoderPriority('video', 'libvpx-vp9', 1000)
456
457 transcodingManager.addLiveProfile('libopus', 'test-live-profile', builder)
458 transcodingManager.addLiveEncoderPriority('audio', 'libopus', 1000)
459 }
460 ```
461
462 During live transcode input options are applied once for each target resolution.
463 Plugins are responsible for detecting such situation and applying input options only once if necessary.
464
465 #### Server helpers
466
467 PeerTube provides your plugin some helpers. For example:
468
469 ```js
470 async function register ({
471 peertubeHelpers
472 }) {
473 // Block a server
474 {
475 const serverActor = await peertubeHelpers.server.getServerActor()
476
477 await peertubeHelpers.moderation.blockServer({ byAccountId: serverActor.Account.id, hostToBlock: '...' })
478 }
479
480 // Load a video
481 {
482 const video = await peertubeHelpers.videos.loadByUrl('...')
483 }
484 }
485 ```
486
487 See the [plugin API reference](https://docs.joinpeertube.org/api-plugins) to see the complete helpers list.
488
489 ### Client API (themes & plugins)
490
491 #### Plugin static route
492
493 To get your plugin static route:
494
495 ```js
496 function register (...) {
497 const baseStaticUrl = peertubeHelpers.getBaseStaticRoute()
498 const imageUrl = baseStaticUrl + '/images/chocobo.png'
499 }
500 ```
501
502 #### Notifier
503
504 To notify the user with the PeerTube ToastModule:
505
506 ```js
507 function register (...) {
508 const { notifier } = peertubeHelpers
509 notifier.success('Success message content.')
510 notifier.error('Error message content.')
511 }
512 ```
513
514 #### Markdown Renderer
515
516 To render a formatted markdown text to HTML:
517
518 ```js
519 function register (...) {
520 const { markdownRenderer } = peertubeHelpers
521
522 await markdownRenderer.textMarkdownToHTML('**My Bold Text**')
523 // return <strong>My Bold Text</strong>
524
525 await markdownRenderer.enhancedMarkdownToHTML('![alt-img](http://.../my-image.jpg)')
526 // return <img alt=alt-img src=http://.../my-image.jpg />
527 }
528 ```
529
530 #### Auth header
531
532 **PeerTube >= 3.2**
533
534 To make your own HTTP requests using the current authenticated user, use an helper to automatically set appropriate headers:
535
536 ```js
537 function register (...) {
538 registerHook({
539 target: 'action:auth-user.information-loaded',
540 handler: ({ user }) => {
541
542 // Useless because we have the same info in the ({ user }) parameter
543 // It's just an example
544 fetch('/api/v1/users/me', {
545 method: 'GET',
546 headers: peertubeHelpers.getAuthHeader()
547 }).then(res => res.json())
548 .then(data => console.log('Hi %s.', data.username))
549 }
550 })
551 }
552 ```
553
554 #### Custom Modal
555
556 To show a custom modal:
557
558 ```js
559 function register (...) {
560 peertubeHelpers.showModal({
561 title: 'My custom modal title',
562 content: '<p>My custom modal content</p>',
563 // Optionals parameters :
564 // show close icon
565 close: true,
566 // show cancel button and call action() after hiding modal
567 cancel: { value: 'cancel', action: () => {} },
568 // show confirm button and call action() after hiding modal
569 confirm: { value: 'confirm', action: () => {} },
570 })
571 }
572 ```
573
574 #### Translate
575
576 You can translate some strings of your plugin (PeerTube will use your `translations` object of your `package.json` file):
577
578 ```js
579 function register (...) {
580 peertubeHelpers.translate('User name')
581 .then(translation => console.log('Translated User name by ' + translation))
582 }
583 ```
584
585 #### Get public settings
586
587 To get your public plugin settings:
588
589 ```js
590 function register (...) {
591 peertubeHelpers.getSettings()
592 .then(s => {
593 if (!s || !s['site-id'] || !s['url']) {
594 console.error('Matomo settings are not set.')
595 return
596 }
597
598 // ...
599 })
600 }
601 ```
602
603 #### Get server config
604
605 ```js
606 function register (...) {
607 peertubeHelpers.getServerConfig()
608 .then(config => {
609 console.log('Fetched server config.', config)
610 })
611 }
612 ```
613
614 #### Add custom fields to video form
615
616 To add custom fields in the video form (in *Plugin settings* tab):
617
618 ```js
619 async function register ({ registerVideoField, peertubeHelpers }) {
620 const descriptionHTML = await peertubeHelpers.translate(descriptionSource)
621 const commonOptions = {
622 name: 'my-field-name,
623 label: 'My added field',
624 descriptionHTML: 'Optional description',
625 type: 'input-textarea',
626 default: '',
627 // Optional, to hide a field depending on the current form state
628 // liveVideo is in the options object when the user is creating/updating a live
629 // videoToUpdate is in the options object when the user is updating a video
630 hidden: ({ formValues, videoToUpdate, liveVideo }) => {
631 return formValues.pluginData['other-field'] === 'toto'
632 }
633 }
634
635 for (const type of [ 'upload', 'import-url', 'import-torrent', 'update', 'go-live' ]) {
636 registerVideoField(commonOptions, { type })
637 }
638 }
639 ```
640
641 PeerTube will send this field value in `body.pluginData['my-field-name']` and fetch it from `video.pluginData['my-field-name']`.
642
643 So for example, if you want to store an additional metadata for videos, register the following hooks in **server**:
644
645 ```js
646 async function register ({
647 registerHook,
648 storageManager
649 }) {
650 const fieldName = 'my-field-name'
651
652 // Store data associated to this video
653 registerHook({
654 target: 'action:api.video.updated',
655 handler: ({ video, body }) => {
656 if (!body.pluginData) return
657
658 const value = body.pluginData[fieldName]
659 if (!value) return
660
661 storageManager.storeData(fieldName + '-' + video.id, value)
662 }
663 })
664
665 // Add your custom value to the video, so the client autofill your field using the previously stored value
666 registerHook({
667 target: 'filter:api.video.get.result',
668 handler: async (video) => {
669 if (!video) return video
670 if (!video.pluginData) video.pluginData = {}
671
672 const result = await storageManager.getData(fieldName + '-' + video.id)
673 video.pluginData[fieldName] = result
674
675 return video
676 }
677 })
678 }
679 ```
680
681 #### Register settings script
682
683 To hide some fields in your settings plugin page depending on the form state:
684
685 ```js
686 async function register ({ registerSettingsScript }) {
687 registerSettingsScript({
688 isSettingHidden: options => {
689 if (options.setting.name === 'my-setting' && options.formValues['field45'] === '2') {
690 return true
691 }
692
693 return false
694 }
695 })
696 }
697 ```
698
699 #### HTML placeholder elements
700
701 PeerTube provides some HTML id so plugins can easily insert their own element:
702
703 ```js
704 async function register (...) {
705 const elem = document.createElement('div')
706 elem.className = 'hello-world-h4'
707 elem.innerHTML = '<h4>Hello everybody! This is an element next to the player</h4>'
708
709 document.getElementById('plugin-placeholder-player-next').appendChild(elem)
710 }
711 ```
712
713 See the complete list on https://docs.joinpeertube.org/api-plugins
714
715 ### Publishing
716
717 PeerTube plugins and themes should be published on [NPM](https://www.npmjs.com/) so that PeerTube indexes
718 take into account your plugin (after ~ 1 day). An official PeerTube index is available on https://packages.joinpeertube.org/ (it's just a REST API, so don't expect a beautiful website).
719
720 ## Write a plugin/theme
721
722 Steps:
723 * Find a name for your plugin or your theme (must not have spaces, it can only contain lowercase letters and `-`)
724 * Add the appropriate prefix:
725 * If you develop a plugin, add `peertube-plugin-` prefix to your plugin name (for example: `peertube-plugin-mysupername`)
726 * If you develop a theme, add `peertube-theme-` prefix to your theme name (for example: `peertube-theme-mysupertheme`)
727 * Clone the quickstart repository
728 * Configure your repository
729 * Update `README.md`
730 * Update `package.json`
731 * Register hooks, add CSS and static files
732 * Test your plugin/theme with a local PeerTube installation
733 * Publish your plugin/theme on NPM
734
735 ### Clone the quickstart repository
736
737 If you develop a plugin, clone the `peertube-plugin-quickstart` repository:
738
739 ```
740 $ git clone https://framagit.org/framasoft/peertube/peertube-plugin-quickstart.git peertube-plugin-mysupername
741 ```
742
743 If you develop a theme, clone the `peertube-theme-quickstart` repository:
744
745 ```
746 $ git clone https://framagit.org/framasoft/peertube/peertube-theme-quickstart.git peertube-theme-mysupername
747 ```
748
749 ### Configure your repository
750
751 Set your repository URL:
752
753 ```
754 $ cd peertube-plugin-mysupername # or cd peertube-theme-mysupername
755 $ git remote set-url origin https://your-git-repo
756 ```
757
758 ### Update README
759
760 Update `README.md` file:
761
762 ```
763 $ $EDITOR README.md
764 ```
765
766 ### Update package.json
767
768 Update the `package.json` fields:
769 * `name` (should start with `peertube-plugin-` or `peertube-theme-`)
770 * `description`
771 * `homepage`
772 * `author`
773 * `bugs`
774 * `engine.peertube` (the PeerTube version compatibility, must be `>=x.y.z` and nothing else)
775
776 **Caution:** Don't update or remove other keys, or PeerTube will not be able to index/install your plugin.
777 If you don't need static directories, use an empty `object`:
778
779 ```json
780 {
781 ...,
782 "staticDirs": {},
783 ...
784 }
785 ```
786
787 And if you don't need CSS or client script files, use an empty `array`:
788
789 ```json
790 {
791 ...,
792 "css": [],
793 "clientScripts": [],
794 ...
795 }
796 ```
797
798 ### Write code
799
800 Now you can register hooks or settings, write CSS and add static directories to your plugin or your theme :)
801
802 **Caution:** It's up to you to check the code you write will be compatible with the PeerTube NodeJS version,
803 and will be supported by web browsers.
804 If you want to write modern JavaScript, please use a transpiler like [Babel](https://babeljs.io/).
805
806 ### Add translations
807
808 If you want to translate strings of your plugin (like labels of your registered settings), create a file and add it to `package.json`:
809
810 ```json
811 {
812 ...,
813 "translations": {
814 "fr": "./languages/fr.json",
815 "pt-BR": "./languages/pt-BR.json"
816 },
817 ...
818 }
819 ```
820
821 The key should be one of the locales defined in [i18n.ts](https://github.com/Chocobozzz/PeerTube/blob/develop/shared/models/i18n/i18n.ts).
822
823 Translation files are just objects, with the english sentence as the key and the translation as the value.
824 `fr.json` could contain for example:
825
826 ```json
827 {
828 "Hello world": "Hello le monde"
829 }
830 ```
831
832 ### Build your plugin
833
834 If you added client scripts, you'll need to build them using webpack.
835
836 Install webpack:
837
838 ```
839 $ npm install
840 ```
841
842 Add/update your files in the `clientFiles` array of `webpack.config.js`:
843
844 ```
845 $ $EDITOR ./webpack.config.js
846 ```
847
848 Build your client files:
849
850 ```
851 $ npm run build
852 ```
853
854 You built files are in the `dist/` directory. Check `package.json` to correctly point to them.
855
856
857 ### Test your plugin/theme
858
859 You'll need to have a local PeerTube instance:
860 * Follow the [dev prerequisites](https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#prerequisites)
861 (to clone the repository, install dependencies and prepare the database)
862 * Build PeerTube (`--light` to only build the english language):
863
864 ```
865 $ npm run build -- --light
866 ```
867
868 * Build the CLI:
869
870 ```
871 $ npm run setup:cli
872 ```
873
874 * Run PeerTube (you can access to your instance on http://localhost:9000):
875
876 ```
877 $ NODE_ENV=test npm start
878 ```
879
880 * Register the instance via the CLI:
881
882 ```
883 $ node ./dist/server/tools/peertube.js auth add -u 'http://localhost:9000' -U 'root' --password 'test'
884 ```
885
886 Then, you can install or reinstall your local plugin/theme by running:
887
888 ```
889 $ node ./dist/server/tools/peertube.js plugins install --path /your/absolute/plugin-or-theme/path
890 ```
891
892 ### Publish
893
894 Go in your plugin/theme directory, and run:
895
896 ```
897 $ npm publish
898 ```
899
900 Every time you want to publish another version of your plugin/theme, just update the `version` key from the `package.json`
901 and republish it on NPM. Remember that the PeerTube index will take into account your new plugin/theme version after ~24 hours.
902
903
904 ## Plugin & Theme hooks/helpers API
905
906 See the dedicated documentation: https://docs.joinpeertube.org/api-plugins
907
908
909 ## Tips
910
911 ### Compatibility with PeerTube
912
913 Unfortunately, we don't have enough resources to provide hook compatibility between minor releases of PeerTube (for example between `1.2.x` and `1.3.x`).
914 So please:
915 * Don't make assumptions and check every parameter you want to use. For example:
916
917 ```js
918 registerHook({
919 target: 'filter:api.video.get.result',
920 handler: video => {
921 // We check the parameter exists and the name field exists too, to avoid exceptions
922 if (video && video.name) video.name += ' <3'
923
924 return video
925 }
926 })
927 ```
928 * Don't try to require parent PeerTube modules, only use `peertubeHelpers`. If you need another helper or a specific hook, please [create an issue](https://github.com/Chocobozzz/PeerTube/issues/new/choose)
929 * Don't use PeerTube dependencies. Use your own :)
930
931 If your plugin is broken with a new PeerTube release, update your code and the `peertubeEngine` field of your `package.json` field.
932 This way, older PeerTube versions will still use your old plugin, and new PeerTube versions will use your updated plugin.
933
934 ### Spam/moderation plugin
935
936 If you want to create an antispam/moderation plugin, you could use the following hooks:
937 * `filter:api.video.upload.accept.result`: to accept or not local uploads
938 * `filter:api.video-thread.create.accept.result`: to accept or not local thread
939 * `filter:api.video-comment-reply.create.accept.result`: to accept or not local replies
940 * `filter:api.video-threads.list.result`: to change/hide the text of threads
941 * `filter:api.video-thread-comments.list.result`: to change/hide the text of replies
942 * `filter:video.auto-blacklist.result`: to automatically blacklist local or remote videos
943
944 ### Other plugin examples
945
946 You can take a look to "official" PeerTube plugins if you want to take inspiration from them: https://framagit.org/framasoft/peertube/official-plugins