]> git.mxchange.org Git - friendica.git/blob - doc/Addons.md
port hubzillas OpenWebAuth - remote authentification
[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 ### 'magic_auth_success'
361 Called when a magic-auth was successful.
362 Hook data:
363     'visitor' => array with the contact record of the visitor
364     'url' => the query string
365     'session' => $_SESSION array
366
367 Current JavaScript hooks
368 -------------
369
370 ### 'postprocess_liveupdate'
371 Called at the end of the live update process (XmlHttpRequest)
372
373 Complete list of hook callbacks
374 ---
375
376 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.
377
378 ### index.php
379
380     Addon::callHooks('init_1');
381     Addon::callHooks('app_menu', $arr);
382     Addon::callHooks('page_content_top', $a->page['content']);
383     Addon::callHooks($a->module.'_mod_init', $placeholder);
384     Addon::callHooks($a->module.'_mod_init', $placeholder);
385     Addon::callHooks($a->module.'_mod_post', $_POST);
386     Addon::callHooks($a->module.'_mod_afterpost', $placeholder);
387     Addon::callHooks($a->module.'_mod_content', $arr);
388     Addon::callHooks($a->module.'_mod_aftercontent', $arr);
389     Addon::callHooks('page_end', $a->page['content']);
390     
391 ### include/api.php
392
393     Addon::callHooks('logged_in', $a->user);
394     Addon::callHooks('authenticate', $addon_auth);
395     Addon::callHooks('logged_in', $a->user);
396
397 ### include/enotify.php
398     
399     Addon::callHooks('enotify', $h);
400     Addon::callHooks('enotify_store', $datarray);
401     Addon::callHooks('enotify_mail', $datarray);
402     Addon::callHooks('check_item_notification', $notification_data);
403     
404 ### include/conversation.php
405
406     Addon::callHooks('conversation_start', $cb);
407     Addon::callHooks('render_location', $locate);
408     Addon::callHooks('display_item', $arr);
409     Addon::callHooks('display_item', $arr);
410     Addon::callHooks('item_photo_menu', $args);
411     Addon::callHooks('jot_tool', $jotplugins);
412
413 ### include/security.php
414
415     Addon::callHooks('logged_in', $a->user);
416
417 ### include/text.php
418
419     Addon::callHooks('contact_block_end', $arr);
420     Addon::callHooks('poke_verbs', $arr);
421     Addon::callHooks('prepare_body_init', $item);
422     Addon::callHooks('prepare_body_content_filter', $hook_data);
423     Addon::callHooks('prepare_body', $hook_data);
424     Addon::callHooks('prepare_body_final', $hook_data);
425
426 ### include/items.php
427
428     Addon::callHooks('page_info_data', $data);
429
430 ### mod/directory.php
431
432     Addon::callHooks('directory_item', $arr);
433
434 ### mod/xrd.php
435
436     Addon::callHooks('personal_xrd', $arr);
437
438 ### mod/ping.php
439
440     Addon::callHooks('network_ping', $arr);
441
442 ### mod/parse_url.php
443
444     Addon::callHooks("parse_link", $arr);
445
446 ### mod/manage.php
447
448     Addon::callHooks('home_init', $ret);
449
450 ### mod/acl.php
451
452     Addon::callHooks('acl_lookup_end', $results);
453
454 ### mod/network.php
455
456     Addon::callHooks('network_content_init', $arr);
457     Addon::callHooks('network_tabs', $arr);
458
459 ### mod/friendica.php
460
461     Addon::callHooks('about_hook', $o);
462     
463 ### mod/subthread.php
464
465     Addon::callHooks('post_local_end', $arr);
466
467 ### mod/profiles.php
468
469     Addon::callHooks('profile_post', $_POST);
470     Addon::callHooks('profile_edit', $arr);
471
472 ### mod/settings.php
473
474     Addon::callHooks('addon_settings_post', $_POST);
475     Addon::callHooks('connector_settings_post', $_POST);
476     Addon::callHooks('display_settings_post', $_POST);
477     Addon::callHooks('settings_post', $_POST);
478     Addon::callHooks('addon_settings', $settings_addons);
479     Addon::callHooks('connector_settings', $settings_connectors);
480     Addon::callHooks('display_settings', $o);
481     Addon::callHooks('settings_form', $o);
482
483 ### mod/photos.php
484
485     Addon::callHooks('photo_post_init', $_POST);
486     Addon::callHooks('photo_post_file', $ret);
487     Addon::callHooks('photo_post_end', $foo);
488     Addon::callHooks('photo_post_end', $foo);
489     Addon::callHooks('photo_post_end', $foo);
490     Addon::callHooks('photo_post_end', $foo);
491     Addon::callHooks('photo_post_end', intval($item_id));
492     Addon::callHooks('photo_upload_form', $ret);
493
494 ### mod/profile.php
495
496     Addon::callHooks('profile_advanced', $o);
497
498 ### mod/home.php
499
500     Addon::callHooks('home_init', $ret);
501     Addon::callHooks("home_content", $content);
502
503 ### mod/poke.php
504
505     Addon::callHooks('post_local_end', $arr);
506
507 ### mod/contacts.php
508
509     Addon::callHooks('contact_edit_post', $_POST);
510     Addon::callHooks('contact_edit', $arr);
511
512 ### mod/tagger.php
513
514     Addon::callHooks('post_local_end', $arr);
515
516 ### mod/lockview.php
517
518     Addon::callHooks('lockview_content', $item);
519
520 ### mod/uexport.php
521
522     Addon::callHooks('uexport_options', $options);
523
524 ### mod/register.php
525
526     Addon::callHooks('register_post', $arr);
527     Addon::callHooks('register_form', $arr);
528
529 ### mod/item.php
530
531     Addon::callHooks('post_local_start', $_REQUEST);
532     Addon::callHooks('post_local', $datarray);
533     Addon::callHooks('post_local_end', $datarray);
534
535 ### mod/editpost.php    
536
537     Addon::callHooks('jot_tool', $jotplugins);
538
539 ### src/Network/FKOAuth1.php
540
541     Addon::callHooks('logged_in', $a->user);
542
543 ### src/Render/FriendicaSmartyEngine.php
544
545     Addon::callHooks("template_vars", $arr);
546
547 ### src/Model/Item.php
548
549     Addon::callHooks('post_local', $item);
550     Addon::callHooks('post_remote', $item);
551     Addon::callHooks('post_local_end', $posted_item);
552     Addon::callHooks('post_remote_end', $posted_item);
553     Addon::callHooks('tagged', $arr);
554     Addon::callHooks('post_local_end', $new_item);
555
556 ### src/Model/Contact.php
557
558     Addon::callHooks('contact_photo_menu', $args);
559     Addon::callHooks('follow', $arr);
560
561 ### src/Model/Profile.php
562
563     Addon::callHooks('profile_sidebar_enter', $profile);
564     Addon::callHooks('profile_sidebar', $arr);
565     Addon::callHooks('profile_tabs', $arr);
566     Addon::callHooks('zrl_init', $arr);
567     Addon::callHooks('magic_auth_success', $arr);
568
569 ### src/Model/Event.php
570
571     Addon::callHooks('event_updated', $event['id']);
572     Addon::callHooks("event_created", $event['id']);
573
574 ### src/Model/User.php
575
576     Addon::callHooks('register_account', $uid);
577     Addon::callHooks('remove_user', $user);
578
579 ### src/Content/Text/BBCode.php
580
581     Addon::callHooks('bbcode', $text);
582     Addon::callHooks('bb2diaspora', $text);
583
584 ### src/Content/Text/HTML.php
585
586     Addon::callHooks('html2bbcode', $message);
587
588 ### src/Content/Smilies.php
589
590     Addon::callHooks('smilie', $params);
591
592 ### src/Content/Feature.php
593
594     Addon::callHooks('isEnabled', $arr);
595     Addon::callHooks('get', $arr);
596
597 ### src/Content/ContactSelector.php
598
599     Addon::callHooks('network_to_name', $nets);
600     Addon::callHooks('gender_selector', $select);
601     Addon::callHooks('sexpref_selector', $select);
602     Addon::callHooks('marital_selector', $select);
603
604 ### src/Content/OEmbed.php    
605
606     Addon::callHooks('oembed_fetch_url', $embedurl, $j);
607
608 ### src/Content/Nav.php    
609
610     Addon::callHooks('page_header', $a->page['nav']);
611     Addon::callHooks('nav_info', $nav);
612
613 ### src/Worker/Directory.php
614
615     Addon::callHooks('globaldir_update', $arr);
616
617 ### src/Worker/Notifier.php
618
619     Addon::callHooks('notifier_end', $target_item);
620
621 ### src/Worker/Queue.php    
622
623     Addon::callHooks('queue_predeliver', $r);
624     Addon::callHooks('queue_deliver', $params);
625
626 ### src/Module/Login.php
627
628     Addon::callHooks('authenticate', $addon_auth);
629     Addon::callHooks('login_hook', $o);
630
631 ### src/Module/Logout.php    
632
633     Addon::callHooks("logging_out");
634
635 ### src/Object/Post.php
636
637     Addon::callHooks('render_location', $locate);
638     Addon::callHooks('display_item', $arr);
639
640 ### src/Core/ACL.php
641
642     Addon::callHooks('contact_select_options', $x);
643     Addon::callHooks($a->module.'_pre_'.$selname, $arr);
644     Addon::callHooks($a->module.'_post_'.$selname, $o);
645     Addon::callHooks($a->module.'_pre_'.$selname, $arr);
646     Addon::callHooks($a->module.'_post_'.$selname, $o);
647     Addon::callHooks('jot_networks', $jotnets);
648
649 ### src/Core/Worker.php
650
651     Addon::callHooks("proc_run", $arr);
652
653 ### src/Util/Emailer.php
654
655     Addon::callHooks('emailer_send_prepare', $params);
656     Addon::callHooks("emailer_send", $hookdata);
657
658 ### src/Util/Map.php
659
660     Addon::callHooks('generate_map', $arr);
661     Addon::callHooks('generate_named_map', $arr);
662     Addon::callHooks('Map::getCoordinates', $arr);
663
664 ### src/Util/Network.php
665
666     Addon::callHooks('avatar_lookup', $avatar);
667
668 ### src/Util/ParseUrl.php
669
670     Addon::callHooks("getsiteinfo", $siteinfo);
671
672 ### src/Protocol/DFRN.php
673
674     Addon::callHooks('atom_feed_end', $atom);
675     Addon::callHooks('atom_feed_end', $atom);
676
677 ### view/js/main.js
678
679     callAddonHooks("postprocess_liveupdate");