]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - plugins/demo_plugin/demo_plugin.php
New plugin hook: ability to add custom filters to Shaarli search engine
[github/shaarli/Shaarli.git] / plugins / demo_plugin / demo_plugin.php
CommitLineData
786ddad9 1<?php
53054b2b 2
786ddad9
A
3/**
4 * Demo Plugin.
5 *
83ef0ff1
PB
6 * This plugin tries to completely cover Shaarli's plugin API.
7 * Can be used by plugin developers to make their own plugin.
786ddad9
A
8 */
9
a6e9c084
A
10require_once __DIR__ . '/DemoPluginController.php';
11
786ddad9
A
12/*
13 * RENDER HEADER, INCLUDES, FOOTER
14 *
15 * Those hooks are called at every page rendering.
16 * You can filter its execution by checking _PAGE_ value
17 * and check user status with _LOGGEDIN_.
18 */
19
bcba6bd3 20use Shaarli\Bookmark\Bookmark;
6a65bc57 21use Shaarli\Config\ConfigManager;
e1850388 22use Shaarli\Plugin\PluginManager;
1a8ac737 23use Shaarli\Render\TemplatePage;
6a65bc57
A
24
25/**
26 * In the footer hook, there is a working example of a translation extension for Shaarli.
27 *
28 * The extension must be attached to a new translation domain (i.e. NOT 'shaarli').
29 * Use case: any custom theme or non official plugin can use the translation system.
30 *
31 * See the documentation for more information.
32 */
33const EXT_TRANSLATION_DOMAIN = 'demo';
34
35/*
36 * This is not necessary, but it's easier if you don't want Poedit to mix up your translations.
37 */
38function demo_plugin_t($text, $nText = '', $nb = 1)
39{
40 return t($text, $nText, $nb, EXT_TRANSLATION_DOMAIN);
41}
42
7fde6de1
A
43/**
44 * Initialization function.
45 * It will be called when the plugin is loaded.
46 * This function can be used to return a list of initialization errors.
47 *
48 * @param $conf ConfigManager instance.
49 *
50 * @return array List of errors (optional).
51 */
52function demo_plugin_init($conf)
53{
54 $conf->get('toto', 'nope');
55
6a65bc57
A
56 if (! $conf->exists('translation.extensions.demo')) {
57 // Custom translation with the domain 'demo'
58 $conf->set('translation.extensions.demo', 'plugins/demo_plugin/languages/');
59 $conf->write(true);
60 }
61
7fde6de1
A
62 $errors[] = 'This a demo init error.';
63 return $errors;
64}
65
a6e9c084
A
66function demo_plugin_register_routes(): array
67{
68 return [
69 [
70 'method' => 'GET',
71 'route' => '/custom',
72 'callable' => 'Shaarli\DemoPlugin\DemoPluginController:index',
73 ],
74 ];
75}
76
786ddad9
A
77/**
78 * Hook render_header.
83ef0ff1 79 * Executed on every page render.
786ddad9
A
80 *
81 * Template placeholders:
82 * - buttons_toolbar
83 * - fields_toolbar
84 *
85 * @param array $data data passed to plugin
86 *
87 * @return array altered $data.
88 */
89function hook_demo_plugin_render_header($data)
90{
91 // Only execute when linklist is rendered.
1a8ac737 92 if ($data['_PAGE_'] == TemplatePage::LINKLIST) {
786ddad9
A
93 // If loggedin
94 if ($data['_LOGGEDIN_'] === true) {
ba0fd807
A
95 /*
96 * Links in toolbar:
97 * A link is an array of its attributes (key="value"),
98 * and a mandatory `html` key, which contains its value.
99 */
53054b2b
A
100 $button = [
101 'attr' => [
ba0fd807
A
102 'href' => '#',
103 'class' => 'mybutton',
104 'title' => 'hover me',
53054b2b 105 ],
ba0fd807 106 'html' => 'DEMO buttons toolbar',
53054b2b 107 ];
ba0fd807 108 $data['buttons_toolbar'][] = $button;
786ddad9
A
109 }
110
ba0fd807
A
111 /*
112 * Add additional input fields in the tools.
113 * A field is an array containing:
114 * [
115 * 'form-attribute-1' => 'form attribute 1 value',
116 * 'form-attribute-2' => 'form attribute 2 value',
117 * 'inputs' => [
118 * [
119 * 'input-1-attribute-1 => 'input 1 attribute 1 value',
120 * 'input-1-attribute-2 => 'input 1 attribute 2 value',
121 * ],
122 * [
123 * 'input-2-attribute-1 => 'input 2 attribute 1 value',
124 * ],
125 * ],
126 * ]
127 * This example renders as:
9d9f6d75
V
128 * <form form-attribute-1="form attribute 1 value" form-attribute-2="form attribute 2 value">
129 * <input input-1-attribute-1="input 1 attribute 1 value" input-1-attribute-2="input 1 attribute 2 value">
130 * <input input-2-attribute-1="input 2 attribute 1 value">
131 * </form>
ba0fd807 132 */
53054b2b
A
133 $form = [
134 'attr' => [
ba0fd807 135 'method' => 'GET',
9fbc4229 136 'action' => $data['_BASE_PATH_'] . '/',
ba0fd807 137 'class' => 'addform',
53054b2b
A
138 ],
139 'inputs' => [
140 [
ba0fd807
A
141 'type' => 'text',
142 'name' => 'demo',
143 'placeholder' => 'demo',
53054b2b
A
144 ]
145 ]
146 ];
ba0fd807 147 $data['fields_toolbar'][] = $form;
786ddad9 148 }
38603b24 149 // Another button always displayed
53054b2b
A
150 $button = [
151 'attr' => [
ba0fd807 152 'href' => '#',
53054b2b 153 ],
ba0fd807 154 'html' => 'Demo',
53054b2b 155 ];
ba0fd807 156 $data['buttons_toolbar'][] = $button;
786ddad9
A
157
158 return $data;
159}
160
161/**
162 * Hook render_includes.
83ef0ff1 163 * Executed on every page render.
786ddad9
A
164 *
165 * Template placeholders:
166 * - css_files
167 *
168 * Data:
169 * - _PAGE_: current page
170 * - _LOGGEDIN_: true/false
171 *
172 * @param array $data data passed to plugin
173 *
174 * @return array altered $data.
175 */
176function hook_demo_plugin_render_includes($data)
177{
178 // List of plugin's CSS files.
179 // Note that you just need to specify CSS path.
180 $data['css_files'][] = PluginManager::$PLUGINS_PATH . '/demo_plugin/custom_demo.css';
181
182 return $data;
183}
184
185/**
186 * Hook render_footer.
83ef0ff1 187 * Executed on every page render.
786ddad9
A
188 *
189 * Template placeholders:
190 * - text
40a5f296 191 * - endofpage
786ddad9
A
192 * - js_files
193 *
194 * Data:
195 * - _PAGE_: current page
196 * - _LOGGEDIN_: true/false
197 *
198 * @param array $data data passed to plugin
199 *
200 * @return array altered $data.
201 */
202function hook_demo_plugin_render_footer($data)
203{
83ef0ff1 204 // Footer text
53054b2b 205 $data['text'][] = '<br>' . demo_plugin_t('Shaarli is now enhanced by the awesome demo_plugin.');
786ddad9 206
40a5f296
A
207 // Free elements at the end of the page.
208 $data['endofpage'][] = '<marquee id="demo_marquee">' .
209 'DEMO: it\'s 1999 all over again!' .
210 '</marquee>';
211
786ddad9
A
212 // List of plugin's JS files.
213 // Note that you just need to specify CSS path.
214 $data['js_files'][] = PluginManager::$PLUGINS_PATH . '/demo_plugin/demo_plugin.js';
215
216 return $data;
217}
218
219/*
220 * SPECIFIC PAGES
221 */
222
223/**
224 * Hook render_linklist.
225 *
226 * Template placeholders:
227 * - action_plugin: next to 'private only' button.
228 * - plugin_start_zone: page start
229 * - plugin_end_zone: page end
230 * - link_plugin: icons below each links.
231 *
232 * Data:
233 * - _LOGGEDIN_: true/false
234 *
235 * @param array $data data passed to plugin
236 *
237 * @return array altered $data.
238 */
239function hook_demo_plugin_render_linklist($data)
240{
ba0fd807
A
241 /*
242 * Action links (action_plugin):
243 * A link is an array of its attributes (key="value"),
244 * and a mandatory `html` key, which contains its value.
245 * It's also recommended to add key 'on' or 'off' for theme rendering.
246 */
53054b2b
A
247 $action = [
248 'attr' => [
ba0fd807
A
249 'href' => '?up',
250 'title' => 'Uppercase!',
53054b2b 251 ],
ba0fd807 252 'html' => '←',
53054b2b 253 ];
786ddad9
A
254
255 if (isset($_GET['up'])) {
256 // Manipulate link data
257 foreach ($data['links'] as &$value) {
258 $value['description'] = strtoupper($value['description']);
259 $value['title'] = strtoupper($value['title']);
260 }
ba0fd807
A
261 $action['on'] = true;
262 } else {
263 $action['off'] = true;
786ddad9 264 }
ba0fd807 265 $data['action_plugin'][] = $action;
786ddad9 266
bcba6bd3
A
267 // Action to trigger custom filter hiding bookmarks not containing 'e' letter in their description
268 $action = [
269 'attr' => [
270 'href' => '?e',
271 'title' => 'Hide bookmarks without "e" in their description.',
272 ],
273 'html' => 'e',
274 'on' => isset($_GET['e'])
275 ];
276 $data['action_plugin'][] = $action;
277
786ddad9
A
278 // link_plugin (for each link)
279 foreach ($data['links'] as &$value) {
280 $value['link_plugin'][] = ' DEMO \o/';
281 }
282
283 // plugin_start_zone
284 $data['plugin_start_zone'][] = '<center>BEFORE</center>';
285 // plugin_start_zone
286 $data['plugin_end_zone'][] = '<center>AFTER</center>';
287
288 return $data;
289}
290
291/**
292 * Hook render_editlink.
293 *
294 * Template placeholders:
295 * - field_plugin: add link fields after tags.
296 *
297 * @param array $data data passed to plugin
298 *
299 * @return array altered $data.
300 */
301function hook_demo_plugin_render_editlink($data)
302{
303 // Load HTML into a string
53054b2b 304 $html = file_get_contents(PluginManager::$PLUGINS_PATH . '/demo_plugin/field.html');
786ddad9 305
83ef0ff1 306 // Replace value in HTML if it exists in $data
786ddad9
A
307 if (!empty($data['link']['stuff'])) {
308 $html = sprintf($html, $data['link']['stuff']);
309 } else {
310 $html = sprintf($html, '');
311 }
312
313 // field_plugin
314 $data['edit_link_plugin'][] = $html;
315
316 return $data;
317}
318
319/**
320 * Hook render_tools.
321 *
322 * Template placeholders:
323 * - tools_plugin: after other tools.
324 *
325 * @param array $data data passed to plugin
326 *
327 * @return array altered $data.
328 */
329function hook_demo_plugin_render_tools($data)
330{
331 // field_plugin
a6e9c084
A
332 $data['tools_plugin'][] = '<div class="tools-item">
333 <a href="' . $data['_BASE_PATH_'] . '/plugin/demo_plugin/custom">
334 <span class="pure-button pure-u-lg-2-3 pure-u-3-4">Demo Plugin Custom Route</span>
335 </a>
336 </div>';
786ddad9
A
337
338 return $data;
339}
340
341/**
342 * Hook render_picwall.
343 *
344 * Template placeholders:
345 * - plugin_start_zone: page start.
346 * - plugin_end_zone: page end.
347 *
348 * Data:
349 * - _LOGGEDIN_: true/false
350 *
351 * @param array $data data passed to plugin
352 *
353 * @return array altered $data.
354 */
355function hook_demo_plugin_render_picwall($data)
356{
786ddad9 357 $data['plugin_start_zone'][] = '<center>BEFORE</center>';
786ddad9
A
358 $data['plugin_end_zone'][] = '<center>AFTER</center>';
359
360 return $data;
361}
362
363/**
364 * Hook render_tagcloud.
365 *
366 * Template placeholders:
367 * - plugin_start_zone: page start.
368 * - plugin_end_zone: page end.
369 *
370 * Data:
371 * - _LOGGEDIN_: true/false
372 *
373 * @param array $data data passed to plugin
374 *
375 * @return array altered $data.
376 */
377function hook_demo_plugin_render_tagcloud($data)
378{
786ddad9 379 $data['plugin_start_zone'][] = '<center>BEFORE</center>';
786ddad9
A
380 $data['plugin_end_zone'][] = '<center>AFTER</center>';
381
382 return $data;
383}
384
385/**
386 * Hook render_daily.
387 *
388 * Template placeholders:
389 * - plugin_start_zone: page start.
390 * - plugin_end_zone: page end.
391 *
392 * Data:
393 * - _LOGGEDIN_: true/false
394 *
395 * @param array $data data passed to plugin
396 *
397 * @return array altered $data.
398 */
399function hook_demo_plugin_render_daily($data)
400{
786ddad9 401 $data['plugin_start_zone'][] = '<center>BEFORE</center>';
786ddad9
A
402 $data['plugin_end_zone'][] = '<center>AFTER</center>';
403
404
405 // Manipulate columns data
50142efd 406 foreach ($data['linksToDisplay'] as &$value) {
407 $value['formatedDescription'] .= ' ಠ_ಠ';
786ddad9
A
408 }
409
410 // Add plugin content at the end of each link
50142efd 411 foreach ($data['linksToDisplay'] as &$value) {
412 $value['link_plugin'][] = 'DEMO';
786ddad9
A
413 }
414
415 return $data;
416}
417
418/*
419 * DATA SAVING HOOK.
420 */
421
422/**
423 * Hook savelink.
424 *
425 * Triggered when a link is save (new or edit).
426 * All new links now contain a 'stuff' value.
427 *
428 * @param array $data contains the new link data.
429 *
430 * @return array altered $data.
431 */
432function hook_demo_plugin_save_link($data)
433{
434
435 // Save stuff added in editlink field
436 if (!empty($_POST['lf_stuff'])) {
437 $data['stuff'] = escape($_POST['lf_stuff']);
438 }
439
440 return $data;
441}
442
443/**
444 * Hook delete_link.
445 *
446 * Triggered when a link is deleted.
447 *
448 * @param array $data contains the link to be deleted.
449 *
450 * @return array altered data.
451 */
452function hook_demo_plugin_delete_link($data)
453{
454 if (strpos($data['url'], 'youtube.com') !== false) {
455 exit('You can not delete a YouTube link. Don\'t ask.');
456 }
bcd078bf
A
457}
458
459/**
460 * Execute render_feed hook.
461 * Called with ATOM and RSS feed.
462 *
463 * Special data keys:
464 * - _PAGE_: current page
465 * - _LOGGEDIN_: true/false
466 *
467 * @param array $data data passed to plugin
468 *
469 * @return array altered $data.
470 */
471function hook_demo_plugin_render_feed($data)
472{
473 foreach ($data['links'] as &$link) {
1a8ac737 474 if ($data['_PAGE_'] == TemplatePage::FEED_ATOM) {
bcd078bf 475 $link['description'] .= ' - ATOM Feed' ;
1a8ac737 476 } elseif ($data['_PAGE_'] == TemplatePage::FEED_RSS) {
bcd078bf
A
477 $link['description'] .= ' - RSS Feed';
478 }
479 }
480 return $data;
481}
12266213 482
15a61e59
A
483/**
484 * When plugin parameters are saved.
485 *
486 * @param array $data $_POST array
487 *
488 * @return array Updated $_POST array
489 */
490function hook_demo_plugin_save_plugin_parameters($data)
491{
83ef0ff1
PB
492 // Here we edit the provided value.
493 // This hook can also be used to generate config files, etc.
15a61e59
A
494 if (! empty($data['DEMO_PLUGIN_PARAMETER']) && ! endsWith($data['DEMO_PLUGIN_PARAMETER'], '_SUFFIX')) {
495 $data['DEMO_PLUGIN_PARAMETER'] .= '_SUFFIX';
496 }
497
498 return $data;
499}
500
bcba6bd3
A
501/**
502 * This hook is called when a search is performed, on every search entry.
503 * It allows to add custom filters, and filter out additional link.
504 *
505 * For exemple here, we hide all bookmarks not containing the letter 'e' in their description.
506 *
507 * @param Bookmark $bookmark Search entry. Note that this is a Bookmark object, and not a link array.
508 * It should NOT be altered.
509 * @param array $context Additional info on the search performed.
510 *
511 * @return bool True if the bookmark should be kept in the search result, false to discard it.
512 */
513function hook_demo_plugin_filter_search_entry(Bookmark $bookmark, array $context): bool
514{
515 if (isset($_GET['e'])) {
516 return strpos($bookmark->getDescription(), 'e') !== false;
517 }
518
519 return true;
520}
521
12266213
A
522/**
523 * This function is never called, but contains translation calls for GNU gettext extraction.
524 */
525function demo_dummy_translation()
526{
527 // meta
528 t('A demo plugin covering all use cases for template designers and plugin developers.');
15a61e59
A
529 t('This is a parameter dedicated to the demo plugin. It\'ll be suffixed.');
530 t('Other demo parameter');
12266213 531}