1 Friendica Addon development
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).
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".
19 Addons should contain a comment block with the four following parameters:
22 * Name: My Great Addon
23 * Description: This is what my addon does. It's really cool.
25 * Author: John Q. Public <john@myfriendicasite.com>
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.
33 Register your addon hooks during installation.
35 Addon::registerHook($hookname, $file, $function);
37 $hookname is a string and corresponds to a known Friendica PHP hook.
39 $file is a pathname relative to the top-level Friendica directory.
40 This *should* be 'addon/*addon_name*/*addon_name*.php' in most cases.
42 $function is a string and is the name of the function which will be executed when the hook is called.
45 Your hook callback functions will be called with at least one and possibly two arguments
47 function myhook_function(App $a, &$b) {
52 If you wish to make changes to the calling data, you must declare them as reference variables (with `&`) during function declaration.
55 $a is the Friendica `App` class.
56 It contains a wealth of information about the current state of Friendica:
58 * which module has been called,
59 * configuration information,
60 * the page contents at the point the hook was invoked,
61 * profile and user information, etc.
63 It is recommeded you call this `$a` to match its usage elsewhere.
66 $b can be called anything you like.
67 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.
68 Remember to declare it with `&` if you wish to alter it.
72 If your addon requires adding a stylesheet on all pages of Friendica, add the following hook:
75 function <addon>_install()
77 Addon::registerHook('head', __FILE__, '<addon>_head');
82 function <addon>_head(App $a)
84 $a->registerStylesheet(__DIR__ . '/relative/path/to/addon/stylesheet.css');
88 `__DIR__` is the folder path of your addon.
94 If your addon requires adding a script on all pages of Friendica, add the following hook:
98 function <addon>_install()
100 Addon::registerHook('footer', __FILE__, '<addon>_footer');
104 function <addon>_footer(App $a)
106 $a->registerFooterScript(__DIR__ . '/relative/path/to/addon/script.js');
110 `__DIR__` is the folder path of your addon.
114 The main Friendica script provides hooks via events dispatched on the `document` property.
115 In your Javascript file included as described above, add your event listener like this:
118 document.addEventListener(name, callback);
121 - *name* is the name of the hook and corresponds to a known Friendica JavaScript hook.
122 - *callback* is a JavaScript anonymous function to execute.
124 More info about Javascript event listeners: https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
126 #### Current JavaScript hooks
128 ##### postprocess_liveupdate
129 Called at the end of the live update process (XmlHttpRequest) and on a post preview.
130 No additional data is provided.
134 Addons may also act as "modules" and intercept all page requests for a given URL path.
135 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.
137 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.
138 These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components.
139 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).
144 $a->argv = array(0 => 'addon', 1 => 'arg1', 2 => 'arg2');
147 Your module functions will often contain the function addon_name_content(App $a), which defines and returns the page body content.
148 They may also contain addon_name_post(App $a) which is called before the _content function and typically handles the results of POST forms.
149 You may also have addon_name_init(App $a) which is called very early on and often does module initialisation.
153 If your addon needs some template, you can use the Friendica template system.
154 Friendica uses [smarty3](http://www.smarty.net/) as a template engine.
156 Put your tpl files in the *templates/* subfolder of your addon.
158 In your code, like in the function addon_name_content(), load the template file and execute it passing needed values:
161 # load template file. first argument is the template name,
162 # second is the addon path relative to friendica top folder
163 $tpl = Renderer::getMarkupTemplate('mytemplate.tpl', 'addon/addon_name/');
165 # apply template. first argument is the loaded template,
166 # second an array of 'name' => 'values' to pass to template
167 $output = Renderer::replaceMacros($tpl, array(
168 'title' => 'My beautiful addon',
172 See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide).
177 Called when a user attempts to login.
178 `$b` is an array containing:
180 - **username**: the supplied username
181 - **password**: the supplied password
182 - **authenticated**: set this to non-zero to authenticate the user.
183 - **user_record**: successful authentication must also return a valid user record from the database
186 Called after a user has successfully logged in.
187 `$b` contains the `$a->user` array.
190 Called when formatting a post for display.
193 - **item**: The item (array) details pulled from the database
194 - **output**: the (string) HTML representation of this item prior to adding it to the page
197 Called when a status post or comment is entered on the local system.
198 `$b` is the item array of the information to be stored in the database.
199 Please note: body contents are bbcode - not HTML.
202 Called when a local status post or comment has been stored on the local system.
203 `$b` is the item array of the information which has just been stored in the database.
204 Please note: body contents are bbcode - not HTML
207 Called when receiving a post from another source. This may also be used to post local activity or system generated messages.
208 `$b` is the item array of information to be stored in the database and the item body is bbcode.
211 Called when generating the HTML for the user Settings page.
212 `$b` is the HTML string of the settings page before the final `</form>` tag.
215 Called when the Settings pages are submitted.
216 `$b` is the $_POST array.
219 Called when generating the HTML for the addon settings page.
220 `$b` is the (string) HTML of the addon settings page before the final `</form>` tag.
222 ### addon_settings_post
223 Called when the Addon Settings pages are submitted.
224 `$b` is the $_POST array.
227 Called when posting a profile page.
228 `$b` is the $_POST array.
231 Called prior to output of profile edit page.
232 `$b` is an array containing:
234 - **profile**: profile (array) record from the database
235 - **entry**: the (string) HTML of the generated entry
238 Called when the HTML is generated for the Advanced profile, corresponding to the Profile tab within a person's profile page.
239 `$b` is the HTML string representation of the generated profile.
240 The profile array details are in `$a->profile`.
243 Called from the Directory page when formatting an item for display.
246 - **contact**: contact record array for the person from the database
247 - **entry**: the HTML string of the generated entry
249 ### profile_sidebar_enter
250 Called prior to generating the sidebar "short" profile for a page.
251 `$b` is the person's profile array
254 Called when generating the sidebar "short" profile for a page.
257 - **profile**: profile record array for the person from the database
258 - **entry**: the HTML string of the generated entry
260 ### contact_block_end
261 Called when formatting the block of contacts/friends on a profile sidebar has completed.
264 - **contacts**: array of contacts
265 - **output**: the generated HTML string of the contact block
268 Called after conversion of bbcode to HTML.
269 `$b` is an HTML string converted text.
272 Called after tag conversion of HTML to bbcode (e.g. remote message posting)
273 `$b` is a string converted text
276 Called when building the `<head>` sections.
277 Stylesheets should be registered using this hook.
278 `$b` is an HTML string of the `<head>` tag.
281 Called after building the page navigation section.
282 `$b` is a string HTML of nav region.
285 Called prior to output of personal XRD file.
288 - **user**: the user record array for the person
289 - **xml**: the complete XML string to be output
292 Called prior to output home page content, shown to unlogged users.
293 `$b` is the HTML sring of section region.
296 Called when editing contact details on an individual from the Contacts page.
299 - **contact**: contact record (array) of target contact
300 - **output**: the (string) generated HTML of the contact edit page
302 ### contact_edit_post
303 Called when posting the contact edit page.
304 `$b` is the `$_POST` array
307 Called just after DB has been opened and before session start.
311 Called after HTML content functions have completed.
312 `$b` is (string) HTML of content div.
315 Called after HTML content functions have completed.
316 Deferred Javascript files should be registered using this hook.
317 `$b` is (string) HTML of footer div/element.
320 Called when looking up the avatar. `$b` is an array:
322 - **size**: the size of the avatar that will be looked up
323 - **email**: email to look up the avatar for
324 - **url**: the (string) generated URL of the avatar
326 ### emailer_send_prepare
327 Called from `Emailer::send()` before building the mime message.
328 `$b` is an array of params to `Emailer::send()`.
330 - **fromName**: name of the sender
331 - **fromEmail**: email fo the sender
332 - **replyTo**: replyTo address to direct responses
333 - **toEmail**: destination email address
334 - **messageSubject**: subject of the message
335 - **htmlVersion**: html version of the message
336 - **textVersion**: text only version of the message
337 - **additionalMailHeader**: additions to the smtp mail header
340 Called before calling PHP's `mail()`.
341 `$b` is an array of params to `mail()`.
349 Called during `App` initialization to allow addons to load their own configuration file(s) with `App::loadConfigFile()`.
352 Called after the navigational menu is build in `include/nav.php`.
353 `$b` is an array containing `$nav` from `include/nav.php`.
356 Called before vars are passed to the template engine to render the page.
357 The registered function can add,change or remove variables passed to template.
358 `$b` is an array with:
360 - **template**: filename of template
361 - **vars**: array of vars passed to the template
364 Called after the other queries have passed.
365 The registered function can add, change or remove the `acl_lookup()` variables.
367 - **results**: array of the acl_lookup() vars
369 ### prepare_body_init
370 Called at the start of prepare_body
373 - **item** (input/output): item array
375 ### prepare_body_content_filter
376 Called before the HTML conversion in prepare_body. If the item matches a content filter rule set by an addon, it should
377 just add the reason to the filter_reasons element of the hook data.
380 - **item**: item array (input)
381 - **filter_reasons** (input/output): reasons array
384 Called after the HTML conversion in `prepare_body()`.
387 - **item** (input): item array
388 - **html** (input/output): converted item body
389 - **is_preview** (input): post preview flag
390 - **filter_reasons** (input): reasons array
392 ### prepare_body_final
393 Called at the end of `prepare_body()`.
396 - **item**: item array (input)
397 - **html**: converted item body (input/output)
399 ### put_item_in_cache
400 Called after `prepare_text()` in `put_item_in_cache()`.
403 - **item** (input): item array
404 - **rendered-html** (input/output): final item body HTML
405 - **rendered-hash** (input/output): original item body hash
407 ### magic_auth_success
408 Called when a magic-auth was successful.
411 visitor => array with the contact record of the visitor
412 url => the query string
414 ## Complete list of hook callbacks
416 Here is a complete list of all hook callbacks with file locations (as of 24-Sep-2018). Please see the source for details of any hooks not documented above.
420 Addon::callHooks('init_1');
421 Addon::callHooks('app_menu', $arr);
422 Addon::callHooks('page_content_top', $a->page['content']);
423 Addon::callHooks($a->module.'_mod_init', $placeholder);
424 Addon::callHooks($a->module.'_mod_init', $placeholder);
425 Addon::callHooks($a->module.'_mod_post', $_POST);
426 Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
427 Addon::callHooks($a->module.'_mod_content', $arr);
428 Addon::callHooks($a->module.'_mod_aftercontent', $arr);
429 Addon::callHooks('page_end', $a->page['content']);
433 Addon::callHooks('logged_in', $a->user);
434 Addon::callHooks('authenticate', $addon_auth);
435 Addon::callHooks('logged_in', $a->user);
437 ### include/enotify.php
439 Addon::callHooks('enotify', $h);
440 Addon::callHooks('enotify_store', $datarray);
441 Addon::callHooks('enotify_mail', $datarray);
442 Addon::callHooks('check_item_notification', $notification_data);
444 ### include/conversation.php
446 Addon::callHooks('conversation_start', $cb);
447 Addon::callHooks('render_location', $locate);
448 Addon::callHooks('display_item', $arr);
449 Addon::callHooks('display_item', $arr);
450 Addon::callHooks('item_photo_menu', $args);
451 Addon::callHooks('jot_tool', $jotplugins);
455 Addon::callHooks('contact_block_end', $arr);
456 Addon::callHooks('poke_verbs', $arr);
457 Addon::callHooks('put_item_in_cache', $hook_data);
458 Addon::callHooks('prepare_body_init', $item);
459 Addon::callHooks('prepare_body_content_filter', $hook_data);
460 Addon::callHooks('prepare_body', $hook_data);
461 Addon::callHooks('prepare_body_final', $hook_data);
463 ### include/items.php
465 Addon::callHooks('page_info_data', $data);
467 ### mod/directory.php
469 Addon::callHooks('directory_item', $arr);
473 Addon::callHooks('personal_xrd', $arr);
477 Addon::callHooks('network_ping', $arr);
479 ### mod/parse_url.php
481 Addon::callHooks("parse_link", $arr);
485 Addon::callHooks('home_init', $ret);
489 Addon::callHooks('acl_lookup_end', $results);
493 Addon::callHooks('network_content_init', $arr);
494 Addon::callHooks('network_tabs', $arr);
496 ### mod/friendica.php
498 Addon::callHooks('about_hook', $o);
500 ### mod/subthread.php
502 Addon::callHooks('post_local_end', $arr);
506 Addon::callHooks('profile_post', $_POST);
507 Addon::callHooks('profile_edit', $arr);
511 Addon::callHooks('addon_settings_post', $_POST);
512 Addon::callHooks('connector_settings_post', $_POST);
513 Addon::callHooks('display_settings_post', $_POST);
514 Addon::callHooks('settings_post', $_POST);
515 Addon::callHooks('addon_settings', $settings_addons);
516 Addon::callHooks('connector_settings', $settings_connectors);
517 Addon::callHooks('display_settings', $o);
518 Addon::callHooks('settings_form', $o);
522 Addon::callHooks('photo_post_init', $_POST);
523 Addon::callHooks('photo_post_file', $ret);
524 Addon::callHooks('photo_post_end', $foo);
525 Addon::callHooks('photo_post_end', $foo);
526 Addon::callHooks('photo_post_end', $foo);
527 Addon::callHooks('photo_post_end', $foo);
528 Addon::callHooks('photo_post_end', intval($item_id));
529 Addon::callHooks('photo_upload_form', $ret);
533 Addon::callHooks('profile_advanced', $o);
537 Addon::callHooks('home_init', $ret);
538 Addon::callHooks("home_content", $content);
542 Addon::callHooks('post_local_end', $arr);
546 Addon::callHooks('contact_edit_post', $_POST);
547 Addon::callHooks('contact_edit', $arr);
551 Addon::callHooks('post_local_end', $arr);
555 Addon::callHooks('lockview_content', $item);
559 Addon::callHooks('uexport_options', $options);
563 Addon::callHooks('register_post', $arr);
564 Addon::callHooks('register_form', $arr);
568 Addon::callHooks('post_local_start', $_REQUEST);
569 Addon::callHooks('post_local', $datarray);
570 Addon::callHooks('post_local_end', $datarray);
574 Addon::callHooks('jot_tool', $jotplugins);
576 ### src/Network/FKOAuth1.php
578 Addon::callHooks('logged_in', $a->user);
580 ### src/Render/FriendicaSmartyEngine.php
582 Addon::callHooks("template_vars", $arr);
586 Addon::callHooks('load_config');
587 Addon::callHooks('head');
588 Addon::callHooks('footer');
590 ### src/Model/Item.php
592 Addon::callHooks('post_local', $item);
593 Addon::callHooks('post_remote', $item);
594 Addon::callHooks('post_local_end', $posted_item);
595 Addon::callHooks('post_remote_end', $posted_item);
596 Addon::callHooks('tagged', $arr);
597 Addon::callHooks('post_local_end', $new_item);
599 ### src/Model/Contact.php
601 Addon::callHooks('contact_photo_menu', $args);
602 Addon::callHooks('follow', $arr);
604 ### src/Model/Profile.php
606 Addon::callHooks('profile_sidebar_enter', $profile);
607 Addon::callHooks('profile_sidebar', $arr);
608 Addon::callHooks('profile_tabs', $arr);
609 Addon::callHooks('zrl_init', $arr);
610 Addon::callHooks('magic_auth_success', $arr);
612 ### src/Model/Event.php
614 Addon::callHooks('event_updated', $event['id']);
615 Addon::callHooks("event_created", $event['id']);
617 ### src/Model/User.php
619 Addon::callHooks('register_account', $uid);
620 Addon::callHooks('remove_user', $user);
622 ### src/Content/Text/BBCode.php
624 Addon::callHooks('bbcode', $text);
625 Addon::callHooks('bb2diaspora', $text);
627 ### src/Content/Text/HTML.php
629 Addon::callHooks('html2bbcode', $message);
631 ### src/Content/Smilies.php
633 Addon::callHooks('smilie', $params);
635 ### src/Content/Feature.php
637 Addon::callHooks('isEnabled', $arr);
638 Addon::callHooks('get', $arr);
640 ### src/Content/ContactSelector.php
642 Addon::callHooks('network_to_name', $nets);
643 Addon::callHooks('gender_selector', $select);
644 Addon::callHooks('sexpref_selector', $select);
645 Addon::callHooks('marital_selector', $select);
647 ### src/Content/OEmbed.php
649 Addon::callHooks('oembed_fetch_url', $embedurl, $j);
651 ### src/Content/Nav.php
653 Addon::callHooks('page_header', $a->page['nav']);
654 Addon::callHooks('nav_info', $nav);
656 ### src/Worker/Directory.php
658 Addon::callHooks('globaldir_update', $arr);
660 ### src/Worker/Notifier.php
662 Addon::callHooks('notifier_end', $target_item);
664 ### src/Worker/Queue.php
666 Addon::callHooks('queue_predeliver', $r);
667 Addon::callHooks('queue_deliver', $params);
669 ### src/Module/Login.php
671 Addon::callHooks('authenticate', $addon_auth);
672 Addon::callHooks('login_hook', $o);
674 ### src/Module/Logout.php
676 Addon::callHooks("logging_out");
678 ### src/Object/Post.php
680 Addon::callHooks('render_location', $locate);
681 Addon::callHooks('display_item', $arr);
685 Addon::callHooks('contact_select_options', $x);
686 Addon::callHooks($a->module.'_pre_'.$selname, $arr);
687 Addon::callHooks($a->module.'_post_'.$selname, $o);
688 Addon::callHooks($a->module.'_pre_'.$selname, $arr);
689 Addon::callHooks($a->module.'_post_'.$selname, $o);
690 Addon::callHooks('jot_networks', $jotnets);
692 ### src/Core/Authentication.php
694 Addon::callHooks('logged_in', $a->user);
696 ### src/Core/Hook.php
698 self::callSingle(self::getApp(), 'hook_fork', $fork_hook, $hookdata);
700 ### src/Core/Worker.php
702 Addon::callHooks("proc_run", $arr);
704 ### src/Util/Emailer.php
706 Addon::callHooks('emailer_send_prepare', $params);
707 Addon::callHooks("emailer_send", $hookdata);
711 Addon::callHooks('generate_map', $arr);
712 Addon::callHooks('generate_named_map', $arr);
713 Addon::callHooks('Map::getCoordinates', $arr);
715 ### src/Util/Network.php
717 Addon::callHooks('avatar_lookup', $avatar);
719 ### src/Util/ParseUrl.php
721 Addon::callHooks("getsiteinfo", $siteinfo);
723 ### src/Protocol/DFRN.php
725 Addon::callHooks('atom_feed_end', $atom);
726 Addon::callHooks('atom_feed_end', $atom);
730 document.dispatchEvent(new Event('postprocess_liveupdate'));