]> git.mxchange.org Git - friendica.git/blob - doc/Addons.md
Merge pull request #5258 from Quix0r/rewrites/curly-braces-is-result-usage-002-split1
[friendica.git] / doc / Addons.md
1 Friendica Addon development
2 ==============
3
4 * [Home](help)
5
6 Please see the sample addon 'randplace' for a working example of using some of these features.
7 Addons work by intercepting event hooks - which must be registered.
8 Modules work by intercepting specific page requests (by URL path).
9
10 Addon names cannot contain spaces or other punctuation and are used as filenames and function names.
11 You may supply a "friendly" name within the comment block.
12 Each addon must contain both an install and an uninstall function based on the addon name.
13 For instance "addon1name_install()".
14 These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your addon will require.
15 The install and uninstall functions will also be called (i.e. re-installed) if the addon changes after installation.
16 Therefore your uninstall should not destroy data and install should consider that data may already exist.
17 Future extensions may provide for "setup" amd "remove".
18
19 Addons should contain a comment block with the four following parameters:
20
21     /*
22      * Name: My Great Addon
23      * Description: This is what my addon does. It's really cool.
24      * Version: 1.0
25      * Author: John Q. Public <john@myfriendicasite.com>
26      */
27
28 Please also add a README or README.md file to the addon directory.
29 It will be displayed in the admin panel and should include some further information in addition to the header information.
30
31 PHP addon hooks
32 ---
33
34 Register your addon hooks during installation.
35
36     Addon::registerHook($hookname, $file, $function);
37
38 $hookname is a string and corresponds to a known Friendica PHP hook.
39
40 $file is a pathname relative to the top-level Friendica directory.
41 This *should* be 'addon/*addon_name*/*addon_name*.php' in most cases.
42
43 $function is a string and is the name of the function which will be executed when the hook is called.
44
45 #### Arguments
46 Your hook callback functions will be called with at least one and possibly two arguments
47
48     function myhook_function(App $a, &$b) {
49
50     }
51
52
53 If you wish to make changes to the calling data, you must declare them as reference variables (with '&') during function declaration.
54
55 ##### $a
56 $a is the Friendica 'App' class.
57 It contains a wealth of information about the current state of Friendica:
58
59 * which module has been called,
60 * configuration information,
61 * the page contents at the point the hook was invoked,
62 * profile and user information, etc.
63
64 It is recommeded you call this '$a' to match its usage elsewhere.
65
66 ##### $b
67 $b can be called anything you like.
68 This is information specific to the hook currently being processed, and generally contains information that is being immediately processed or acted on that you can use, display, or alter.
69 Remember to declare it with '&' if you wish to alter it.
70
71 JavaScript addon hooks
72 ---
73
74 #### PHP part
75 Make sure your JavaScript addon file (addon/*addon_name*/*addon_name*.js) is listed in the document response.
76
77 In your addon install function, add:
78
79     Addon::registerHook('template_vars', 'addon/<addon_name>/<addon_name>.php', '<addon_name>_template_vars');
80
81 In your addon uninstall function, add:
82
83     Addon::unregisterHook('template_vars', 'addon/<addon_name>/<addon_name>.php', '<addon_name>_template_vars');
84
85 Then, add your addon name to the *addon_hooks* template variable array:
86
87      function <addon_name>_template_vars($a, &$arr)
88        {
89          if (!array_key_exists('addon_hooks',$arr['vars']))
90          {
91             $arr['vars']['addon_hooks'] = array();
92          }
93        $arr['vars']['addon_hooks'][] = "<addon_name>";
94        }
95
96 #### JavaScript part
97 Register your addon hooks in file 'addon/*addon_name*/*addon_name*.js'.
98
99     Addon_registerHook(type,hookfnstr);
100
101 *type* is the name of the hook and corresponds to a known Friendica JavaScript hook.
102 *hookfnstr* is the name of your JavaScript function to execute.
103
104 No arguments are provided to your JavaScript callback function. Example:
105
106     function myhook_function() {
107
108     }
109
110 Modules
111 ---
112
113 Addons may also act as "modules" and intercept all page requests for a given URL path.
114 In order for a addon to act as a module it needs to define a function "addon_name_module()" which takes no arguments and needs not do anything.
115
116 If this function exists, you will now receive all page requests for "http://my.web.site/addon_name" - with any number of URL components as additional arguments.
117 These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components.
118 So http://my.web.site/addon/arg1/arg2 would look for a module named "addon" and pass its module functions the $a App structure (which is available to many components).
119 This will include:
120
121     $a->argc = 3
122     $a->argv = array(0 => 'addon', 1 => 'arg1', 2 => 'arg2');
123
124 Your module functions will often contain the function addon_name_content(App $a), which defines and returns the page body content.
125 They may also contain addon_name_post(App $a) which is called before the _content function and typically handles the results of POST forms.
126 You may also have addon_name_init(App $a) which is called very early on and often does module initialisation.
127
128 Templates
129 ---
130
131 If your addon needs some template, you can use the Friendica template system.
132 Friendica uses [smarty3](http://www.smarty.net/) as a template engine.
133
134 Put your tpl files in the *templates/* subfolder of your addon.
135
136 In your code, like in the function addon_name_content(), load the template file and execute it passing needed values:
137
138     # load template file. first argument is the template name,
139     # second is the addon path relative to friendica top folder
140     $tpl = get_markup_template('mytemplate.tpl', 'addon/addon_name/');
141
142     # apply template. first argument is the loaded template,
143     # second an array of 'name'=>'values' to pass to template
144     $output = replace_macros($tpl,array(
145         'title' => 'My beautiful addon',
146     ));
147
148 See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide).
149
150 Current PHP hooks
151 -------------
152
153 ### 'authenticate'
154 'authenticate' is called when a user attempts to login.
155 $b is an array containing:
156
157     'username' => the supplied username
158     'password' => the supplied password
159     'authenticated' => set this to non-zero to authenticate the user.
160     'user_record' => successful authentication must also return a valid user record from the database
161
162 ### 'logged_in'
163 'logged_in' is called after a user has successfully logged in.
164 $b contains the $a->user array.
165
166 ### 'display_item'
167 'display_item' is called when formatting a post for display.
168 $b is an array:
169
170     'item' => The item (array) details pulled from the database
171     'output' => the (string) HTML representation of this item prior to adding it to the page
172
173 ### 'post_local'
174 * called when a status post or comment is entered on the local system
175 * $b is the item array of the information to be stored in the database
176 * Please note: body contents are bbcode - not HTML
177
178 ### 'post_local_end'
179 * called when a local status post or comment has been stored on the local system
180 * $b is the item array of the information which has just been stored in the database
181 * Please note: body contents are bbcode - not HTML
182
183 ### 'post_remote'
184 * called when receiving a post from another source. This may also be used to post local activity or system generated messages.
185 * $b is the item array of information to be stored in the database and the item body is bbcode.
186
187 ### 'settings_form'
188 * called when generating the HTML for the user Settings page
189 * $b is the (string) HTML of the settings page before the final '</form>' tag.
190
191 ### 'settings_post'
192 * called when the Settings pages are submitted
193 * $b is the $_POST array
194
195 ### 'addon_settings'
196 * called when generating the HTML for the addon settings page
197 * $b is the (string) HTML of the addon settings page before the final '</form>' tag.
198
199 ### 'addon_settings_post'
200 * called when the Addon Settings pages are submitted
201 * $b is the $_POST array
202
203 ### 'profile_post'
204 * called when posting a profile page
205 * $b is the $_POST array
206
207 ### 'profile_edit'
208 'profile_edit' is called prior to output of profile edit page.
209 $b is an array containing:
210
211     'profile' => profile (array) record from the database
212     'entry' => the (string) HTML of the generated entry
213
214 ### 'profile_advanced'
215 * called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page
216 * $b is the (string) HTML representation of the generated profile
217 * The profile array details are in $a->profile.
218
219 ### 'directory_item'
220 'directory_item' is called from the Directory page when formatting an item for display.
221 $b is an array:
222
223     'contact' => contact (array) record for the person from the database
224     'entry' => the (string) HTML of the generated entry
225
226 ### 'profile_sidebar_enter'
227 * called prior to generating the sidebar "short" profile for a page
228 * $b is the person's profile array
229
230 ### 'profile_sidebar'
231 'profile_sidebar is called when generating the sidebar "short" profile for a page.
232 $b is an array:
233
234     'profile' => profile (array) record for the person from the database
235     'entry' => the (string) HTML of the generated entry
236
237 ### 'contact_block_end'
238 is called when formatting the block of contacts/friends on a profile sidebar has completed.
239 $b is an array:
240
241     'contacts' => array of contacts
242     'output' => the (string) generated HTML of the contact block
243
244 ### 'bbcode'
245 * called during conversion of bbcode to html
246 * $b is a string converted text
247
248 ### 'html2bbcode'
249 * called during conversion of html to bbcode (e.g. remote message posting)
250 * $b is a string converted text
251
252 ### 'page_header'
253 * called after building the page navigation section
254 * $b is a string HTML of nav region
255
256 ### 'personal_xrd'
257 'personal_xrd' is called prior to output of personal XRD file.
258 $b is an array:
259
260     'user' => the user record for the person
261     'xml' => the complete XML to be output
262
263 ### 'home_content'
264 * called prior to output home page content, shown to unlogged users
265 * $b is (string) HTML of section region
266
267 ### 'contact_edit'
268 is called when editing contact details on an individual from the Contacts page.
269 $b is an array:
270
271     'contact' => contact record (array) of target contact
272     'output' => the (string) generated HTML of the contact edit page
273
274 ### 'contact_edit_post'
275 * called when posting the contact edit page.
276 * $b is the $_POST array
277
278 ### 'init_1'
279 * called just after DB has been opened and before session start
280 * $b is not used or passed
281
282 ### 'page_end'
283 * called after HTML content functions have completed
284 * $b is (string) HTML of content div
285
286 ### 'avatar_lookup'
287 'avatar_lookup' is called when looking up the avatar.
288 $b is an array:
289
290     'size' => the size of the avatar that will be looked up
291     'email' => email to look up the avatar for
292     'url' => the (string) generated URL of the avatar
293
294 ### 'emailer_send_prepare'
295 'emailer_send_prepare' called from Emailer::send() before building the mime message.
296 $b is an array, params to Emailer::send()
297
298     'fromName' => name of the sender
299     'fromEmail' => email fo the sender
300     'replyTo' => replyTo address to direct responses
301     'toEmail' => destination email address
302     'messageSubject' => subject of the message
303     'htmlVersion' => html version of the message
304     'textVersion' => text only version of the message
305     'additionalMailHeader' => additions to the smtp mail header
306
307 ### 'emailer_send'
308 is called before calling PHP's mail().
309 $b is an array, params to mail()
310
311     'to'
312     'subject'
313     'body'
314     'headers'
315
316 ### 'nav_info'
317 is called after the navigational menu is build in include/nav.php.
318 $b is an array containing $nav from nav.php.
319
320 ### 'template_vars'
321 is called before vars are passed to the template engine to render the page.
322 The registered function can add,change or remove variables passed to template.
323 $b is an array with:
324
325     'template' => filename of template
326     'vars' => array of vars passed to template
327
328 ### 'acl_lookup_end'
329 is called after the other queries have passed.
330 The registered function can add, change or remove the acl_lookup() variables.
331
332     'results' => array of the acl_lookup() vars
333
334 ### 'prepare_body_init'
335 Called at the start of prepare_body
336 Hook data:
337     'item' => item array (input/output)
338
339 ### 'prepare_body_content_filter'
340 Called before the HTML conversion in prepare_body. If the item matches a content filter rule set by an addon, it should
341 just add the reason to the filter_reasons element of the hook data.
342 Hook data:
343     'item' => item array (input)
344     'filter_reasons' => reasons array (input/output)
345
346 ### 'prepare_body'
347 Called after the HTML conversion in prepare_body.
348 Hook data:
349     'item' => item array (input)
350     'html' => converted item body (input/output)
351     'is_preview' => post preview flag (input)
352     'filter_reasons' => reasons array (input)
353
354 ### 'prepare_body_final'
355 Called at the end of prepare_body.
356 Hook data:
357     'item' => item array (input)
358     'html' => converted item body (input/output)
359
360 Current JavaScript hooks
361 -------------
362
363 ### 'postprocess_liveupdate'
364 Called at the end of the live update process (XmlHttpRequest)
365
366 Complete list of hook callbacks
367 ---
368
369 Here is a complete list of all hook callbacks with file locations (as of 01-Apr-2018). Please see the source for details of any hooks not documented above.
370
371 ### index.php
372
373     Addon::callHooks('init_1');
374     Addon::callHooks('app_menu', $arr);
375     Addon::callHooks('page_content_top', $a->page['content']);
376     Addon::callHooks($a->module.'_mod_init', $placeholder);
377     Addon::callHooks($a->module.'_mod_init', $placeholder);
378     Addon::callHooks($a->module.'_mod_post', $_POST);
379     Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
380     Addon::callHooks($a->module.'_mod_content', $arr);
381     Addon::callHooks($a->module.'_mod_aftercontent', $arr);
382     Addon::callHooks('page_end', $a->page['content']);
383     
384 ### include/api.php
385
386     Addon::callHooks('logged_in', $a->user);
387     Addon::callHooks('authenticate', $addon_auth);
388     Addon::callHooks('logged_in', $a->user);
389
390 ### include/enotify.php
391     
392     Addon::callHooks('enotify', $h);
393     Addon::callHooks('enotify_store', $datarray);
394     Addon::callHooks('enotify_mail', $datarray);
395     Addon::callHooks('check_item_notification', $notification_data);
396     
397 ### include/conversation.php
398
399     Addon::callHooks('conversation_start', $cb);
400     Addon::callHooks('render_location', $locate);
401     Addon::callHooks('display_item', $arr);
402     Addon::callHooks('display_item', $arr);
403     Addon::callHooks('item_photo_menu', $args);
404     Addon::callHooks('jot_tool', $jotplugins);
405
406 ### include/security.php
407
408     Addon::callHooks('logged_in', $a->user);
409
410 ### include/text.php
411
412     Addon::callHooks('contact_block_end', $arr);
413     Addon::callHooks('poke_verbs', $arr);
414     Addon::callHooks('prepare_body_init', $item);
415     Addon::callHooks('prepare_body_content_filter', $hook_data);
416     Addon::callHooks('prepare_body', $hook_data);
417     Addon::callHooks('prepare_body_final', $hook_data);
418
419 ### include/items.php
420
421     Addon::callHooks('page_info_data', $data);
422
423 ### mod/directory.php
424
425     Addon::callHooks('directory_item', $arr);
426
427 ### mod/xrd.php
428
429     Addon::callHooks('personal_xrd', $arr);
430
431 ### mod/ping.php
432
433     Addon::callHooks('network_ping', $arr);
434
435 ### mod/parse_url.php
436
437     Addon::callHooks("parse_link", $arr);
438
439 ### mod/manage.php
440
441     Addon::callHooks('home_init', $ret);
442
443 ### mod/acl.php
444
445     Addon::callHooks('acl_lookup_end', $results);
446
447 ### mod/network.php
448
449     Addon::callHooks('network_content_init', $arr);
450     Addon::callHooks('network_tabs', $arr);
451
452 ### mod/friendica.php
453
454     Addon::callHooks('about_hook', $o);
455     
456 ### mod/subthread.php
457
458     Addon::callHooks('post_local_end', $arr);
459
460 ### mod/profiles.php
461
462     Addon::callHooks('profile_post', $_POST);
463     Addon::callHooks('profile_edit', $arr);
464
465 ### mod/settings.php
466
467     Addon::callHooks('addon_settings_post', $_POST);
468     Addon::callHooks('connector_settings_post', $_POST);
469     Addon::callHooks('display_settings_post', $_POST);
470     Addon::callHooks('settings_post', $_POST);
471     Addon::callHooks('addon_settings', $settings_addons);
472     Addon::callHooks('connector_settings', $settings_connectors);
473     Addon::callHooks('display_settings', $o);
474     Addon::callHooks('settings_form', $o);
475
476 ### mod/photos.php
477
478     Addon::callHooks('photo_post_init', $_POST);
479     Addon::callHooks('photo_post_file', $ret);
480     Addon::callHooks('photo_post_end', $foo);
481     Addon::callHooks('photo_post_end', $foo);
482     Addon::callHooks('photo_post_end', $foo);
483     Addon::callHooks('photo_post_end', $foo);
484     Addon::callHooks('photo_post_end', intval($item_id));
485     Addon::callHooks('photo_upload_form', $ret);
486
487 ### mod/profile.php
488
489     Addon::callHooks('profile_advanced', $o);
490
491 ### mod/home.php
492
493     Addon::callHooks('home_init', $ret);
494     Addon::callHooks("home_content", $content);
495
496 ### mod/poke.php
497
498     Addon::callHooks('post_local_end', $arr);
499
500 ### mod/contacts.php
501
502     Addon::callHooks('contact_edit_post', $_POST);
503     Addon::callHooks('contact_edit', $arr);
504
505 ### mod/tagger.php
506
507     Addon::callHooks('post_local_end', $arr);
508
509 ### mod/lockview.php
510
511     Addon::callHooks('lockview_content', $item);
512
513 ### mod/uexport.php
514
515     Addon::callHooks('uexport_options', $options);
516
517 ### mod/register.php
518
519     Addon::callHooks('register_post', $arr);
520     Addon::callHooks('register_form', $arr);
521
522 ### mod/item.php
523
524     Addon::callHooks('post_local_start', $_REQUEST);
525     Addon::callHooks('post_local', $datarray);
526     Addon::callHooks('post_local_end', $datarray);
527
528 ### mod/editpost.php    
529
530     Addon::callHooks('jot_tool', $jotplugins);
531
532 ### src/Network/FKOAuth1.php
533
534     Addon::callHooks('logged_in', $a->user);
535
536 ### src/Render/FriendicaSmartyEngine.php
537
538     Addon::callHooks("template_vars", $arr);
539
540 ### src/Model/Item.php
541
542     Addon::callHooks('post_local', $item);
543     Addon::callHooks('post_remote', $item);
544     Addon::callHooks('post_local_end', $posted_item);
545     Addon::callHooks('post_remote_end', $posted_item);
546     Addon::callHooks('tagged', $arr);
547     Addon::callHooks('post_local_end', $new_item);
548
549 ### src/Model/Contact.php
550
551     Addon::callHooks('contact_photo_menu', $args);
552     Addon::callHooks('follow', $arr);
553
554 ### src/Model/Profile.php
555
556     Addon::callHooks('profile_sidebar_enter', $profile);
557     Addon::callHooks('profile_sidebar', $arr);
558     Addon::callHooks('profile_tabs', $arr);
559     Addon::callHooks('zrl_init', $arr);
560
561 ### src/Model/Event.php
562
563     Addon::callHooks('event_updated', $event['id']);
564     Addon::callHooks("event_created", $event['id']);
565
566 ### src/Model/User.php
567
568     Addon::callHooks('register_account', $uid);
569     Addon::callHooks('remove_user', $user);
570
571 ### src/Content/Text/BBCode.php
572
573     Addon::callHooks('bbcode', $text);
574     Addon::callHooks('bb2diaspora', $text);
575
576 ### src/Content/Text/HTML.php
577
578     Addon::callHooks('html2bbcode', $message);
579
580 ### src/Content/Smilies.php
581
582     Addon::callHooks('smilie', $params);
583
584 ### src/Content/Feature.php
585
586     Addon::callHooks('isEnabled', $arr);
587     Addon::callHooks('get', $arr);
588
589 ### src/Content/ContactSelector.php
590
591     Addon::callHooks('network_to_name', $nets);
592     Addon::callHooks('gender_selector', $select);
593     Addon::callHooks('sexpref_selector', $select);
594     Addon::callHooks('marital_selector', $select);
595
596 ### src/Content/OEmbed.php    
597
598     Addon::callHooks('oembed_fetch_url', $embedurl, $j);
599
600 ### src/Content/Nav.php    
601
602     Addon::callHooks('page_header', $a->page['nav']);
603     Addon::callHooks('nav_info', $nav);
604
605 ### src/Worker/Directory.php
606
607     Addon::callHooks('globaldir_update', $arr);
608
609 ### src/Worker/Notifier.php
610
611     Addon::callHooks('notifier_end', $target_item);
612
613 ### src/Worker/Queue.php    
614
615     Addon::callHooks('queue_predeliver', $r);
616     Addon::callHooks('queue_deliver', $params);
617
618 ### src/Module/Login.php
619
620     Addon::callHooks('authenticate', $addon_auth);
621     Addon::callHooks('login_hook', $o);
622
623 ### src/Module/Logout.php    
624
625     Addon::callHooks("logging_out");
626
627 ### src/Object/Post.php
628
629     Addon::callHooks('render_location', $locate);
630     Addon::callHooks('display_item', $arr);
631
632 ### src/Core/ACL.php
633
634     Addon::callHooks('contact_select_options', $x);
635     Addon::callHooks($a->module.'_pre_'.$selname, $arr);
636     Addon::callHooks($a->module.'_post_'.$selname, $o);
637     Addon::callHooks($a->module.'_pre_'.$selname, $arr);
638     Addon::callHooks($a->module.'_post_'.$selname, $o);
639     Addon::callHooks('jot_networks', $jotnets);
640
641 ### src/Core/Worker.php
642
643     Addon::callHooks("proc_run", $arr);
644
645 ### src/Util/Emailer.php
646
647     Addon::callHooks('emailer_send_prepare', $params);
648     Addon::callHooks("emailer_send", $hookdata);
649
650 ### src/Util/Map.php
651
652     Addon::callHooks('generate_map', $arr);
653     Addon::callHooks('generate_named_map', $arr);
654     Addon::callHooks('Map::getCoordinates', $arr);
655
656 ### src/Util/Network.php
657
658     Addon::callHooks('avatar_lookup', $avatar);
659
660 ### src/Util/ParseUrl.php
661
662     Addon::callHooks("getsiteinfo", $siteinfo);
663
664 ### src/Protocol/DFRN.php
665
666     Addon::callHooks('atom_feed_end', $atom);
667     Addon::callHooks('atom_feed_end', $atom);
668
669 ### view/js/main.js
670
671     callAddonHooks("postprocess_liveupdate");