friendica/doc/Addons.md

474 lines
16 KiB
Markdown
Raw Normal View History

Friendica Addon development
==============
* [Home](help)
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
Please see the sample addon 'randplace' for a working example of using some of these features.
Addons work by intercepting event hooks - which must be registered.
2015-11-06 19:33:14 +01:00
Modules work by intercepting specific page requests (by URL path).
2015-04-19 18:41:42 +02:00
Addon names cannot contain spaces or other punctuation and are used as filenames and function names.
2015-04-19 18:41:42 +02:00
You may supply a "friendly" name within the comment block.
2018-01-18 01:38:14 +01:00
Each addon must contain both an install and an uninstall function based on the addon name.
For instance "addon1name_install()".
These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your addon will require.
The install and uninstall functions will also be called (i.e. re-installed) if the addon changes after installation.
2015-04-19 18:41:42 +02:00
Therefore your uninstall should not destroy data and install should consider that data may already exist.
2015-11-06 19:33:14 +01:00
Future extensions may provide for "setup" amd "remove".
2012-02-14 04:06:15 +01:00
Addons should contain a comment block with the four following parameters:
2012-02-14 04:06:15 +01:00
/*
* Name: My Great Addon
* Description: This is what my addon does. It's really cool.
* Version: 1.0
* Author: John Q. Public <john@myfriendicasite.com>
*/
2012-02-14 04:06:15 +01:00
Register your addon hooks during installation.
2011-04-13 16:07:21 +02:00
Addon::registerHook($hookname, $file, $function);
2011-04-13 16:07:21 +02:00
2011-11-08 23:12:01 +01:00
$hookname is a string and corresponds to a known Friendica hook.
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
$file is a pathname relative to the top-level Friendica directory.
This *should* be 'addon/addon_name/addon_name.php' in most cases.
2011-04-13 16:07:21 +02:00
$function is a string and is the name of the function which will be executed when the hook is called.
2017-09-21 09:45:17 +02:00
Please also add a README or README.md file to the addon directory.
It will be displayed in the admin panel and should include some further information in addition to the header information.
2015-04-19 18:41:42 +02:00
Arguments
---
2011-04-13 16:07:21 +02:00
Your hook callback functions will be called with at least one and possibly two arguments
function myhook_function(App $a, &$b) {
2011-04-13 16:07:21 +02:00
}
2015-04-19 18:41:42 +02:00
If you wish to make changes to the calling data, you must declare them as reference variables (with '&') during function declaration.
#### $a
2015-04-19 18:41:42 +02:00
$a is the Friendica 'App' class.
It contains a wealth of information about the current state of Friendica:
* which module has been called,
* configuration information,
* the page contents at the point the hook was invoked,
2015-11-06 19:33:14 +01:00
* profile and user information, etc.
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
It is recommeded you call this '$a' to match its usage elsewhere.
2011-04-13 16:07:21 +02:00
#### $b
2015-04-19 18:41:42 +02:00
$b can be called anything you like.
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.
Remember to declare it with '&' if you wish to alter it.
2011-04-13 16:07:21 +02:00
Modules
---
2011-04-13 16:07:21 +02:00
2018-01-18 01:38:14 +01:00
Addons may also act as "modules" and intercept all page requests for a given URL path.
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.
2015-04-19 18:41:42 +02:00
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.
2015-04-19 18:41:42 +02:00
These are parsed into an array $a->argv, with a corresponding $a->argc indicating the number of URL components.
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).
2015-04-19 18:41:42 +02:00
This will include:
2011-04-13 16:07:21 +02:00
$a->argc = 3
$a->argv = array(0 => 'addon', 1 => 'arg1', 2 => 'arg2');
2011-04-13 16:07:21 +02:00
Your module functions will often contain the function addon_name_content(App $a), which defines and returns the page body content.
They may also contain addon_name_post(App $a) which is called before the _content function and typically handles the results of POST forms.
You may also have addon_name_init(App $a) which is called very early on and often does module initialisation.
2011-04-13 16:07:21 +02:00
Templates
---
2011-04-13 16:07:21 +02:00
If your addon needs some template, you can use the Friendica template system.
2015-04-19 18:41:42 +02:00
Friendica uses [smarty3](http://www.smarty.net/) as a template engine.
Put your tpl files in the *templates/* subfolder of your addon.
In your code, like in the function addon_name_content(), load the template file and execute it passing needed values:
2015-11-06 19:33:14 +01:00
# load template file. first argument is the template name,
# second is the addon path relative to friendica top folder
$tpl = get_markup_template('mytemplate.tpl', 'addon/addon_name/');
2015-11-06 19:33:14 +01:00
# apply template. first argument is the loaded template,
# second an array of 'name'=>'values' to pass to template
$output = replace_macros($tpl,array(
'title' => 'My beautiful addon',
));
2015-04-19 18:41:42 +02:00
See also the wiki page [Quick Template Guide](https://github.com/friendica/friendica/wiki/Quick-Template-Guide).
Current hooks
-------------
### 'authenticate'
2015-04-19 18:41:42 +02:00
'authenticate' is called when a user attempts to login.
$b is an array containing:
'username' => the supplied username
'password' => the supplied password
2015-04-19 18:41:42 +02:00
'authenticated' => set this to non-zero to authenticate the user.
'user_record' => successful authentication must also return a valid user record from the database
### 'logged_in'
2015-04-19 18:41:42 +02:00
'logged_in' is called after a user has successfully logged in.
$b contains the $a->user array.
### 'display_item'
2015-04-19 18:41:42 +02:00
'display_item' is called when formatting a post for display.
$b is an array:
'item' => The item (array) details pulled from the database
'output' => the (string) HTML representation of this item prior to adding it to the page
### 'post_local'
2015-04-19 18:41:42 +02:00
* called when a status post or comment is entered on the local system
* $b is the item array of the information to be stored in the database
* Please note: body contents are bbcode - not HTML
### 'post_local_end'
2015-04-19 18:41:42 +02:00
* called when a local status post or comment has been stored on the local system
* $b is the item array of the information which has just been stored in the database
* Please note: body contents are bbcode - not HTML
### 'post_remote'
2015-04-19 18:41:42 +02:00
* called when receiving a post from another source. This may also be used to post local activity or system generated messages.
* $b is the item array of information to be stored in the database and the item body is bbcode.
2011-04-13 16:07:21 +02:00
### 'settings_form'
2015-04-19 18:41:42 +02:00
* called when generating the HTML for the user Settings page
* $b is the (string) HTML of the settings page before the final '</form>' tag.
2011-04-13 16:07:21 +02:00
### 'settings_post'
2015-04-19 18:41:42 +02:00
* called when the Settings pages are submitted
* $b is the $_POST array
2011-04-13 16:07:21 +02:00
### 'addon_settings'
2015-04-19 18:41:42 +02:00
* called when generating the HTML for the addon settings page
* $b is the (string) HTML of the addon settings page before the final '</form>' tag.
2011-04-13 16:07:21 +02:00
### 'addon_settings_post'
2015-04-19 18:41:42 +02:00
* called when the Addon Settings pages are submitted
* $b is the $_POST array
2011-04-13 16:07:21 +02:00
### 'profile_post'
2015-04-19 18:41:42 +02:00
* called when posting a profile page
* $b is the $_POST array
2011-04-13 16:07:21 +02:00
### 'profile_edit'
2015-04-19 18:41:42 +02:00
'profile_edit' is called prior to output of profile edit page.
$b is an array containing:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'profile' => profile (array) record from the database
'entry' => the (string) HTML of the generated entry
2011-04-13 16:07:21 +02:00
### 'profile_advanced'
2015-04-19 18:41:42 +02:00
* called when the HTML is generated for the 'Advanced profile', corresponding to the 'Profile' tab within a person's profile page
* $b is the (string) HTML representation of the generated profile
* The profile array details are in $a->profile.
2011-04-13 16:07:21 +02:00
### 'directory_item'
2015-04-19 18:41:42 +02:00
'directory_item' is called from the Directory page when formatting an item for display.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'contact' => contact (array) record for the person from the database
'entry' => the (string) HTML of the generated entry
2011-04-13 16:07:21 +02:00
### 'profile_sidebar_enter'
2015-04-19 18:41:42 +02:00
* called prior to generating the sidebar "short" profile for a page
* $b is the person's profile array
2011-04-13 16:07:21 +02:00
### 'profile_sidebar'
2015-04-19 18:41:42 +02:00
'profile_sidebar is called when generating the sidebar "short" profile for a page.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'profile' => profile (array) record for the person from the database
'entry' => the (string) HTML of the generated entry
2011-04-13 16:07:21 +02:00
### 'contact_block_end'
2015-04-19 18:41:42 +02:00
is called when formatting the block of contacts/friends on a profile sidebar has completed.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'contacts' => array of contacts
'output' => the (string) generated HTML of the contact block
2011-04-13 16:07:21 +02:00
### 'bbcode'
2015-04-19 18:41:42 +02:00
* called during conversion of bbcode to html
* $b is a string converted text
2011-04-13 16:07:21 +02:00
### 'html2bbcode'
2015-04-19 18:41:42 +02:00
* called during conversion of html to bbcode (e.g. remote message posting)
* $b is a string converted text
2011-04-13 16:07:21 +02:00
### 'page_header'
2015-04-19 18:41:42 +02:00
* called after building the page navigation section
* $b is a string HTML of nav region
2011-04-13 16:07:21 +02:00
### 'personal_xrd'
2015-04-19 18:41:42 +02:00
'personal_xrd' is called prior to output of personal XRD file.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'user' => the user record for the person
'xml' => the complete XML to be output
2011-04-13 16:07:21 +02:00
### 'home_content'
2015-04-19 18:41:42 +02:00
* called prior to output home page content, shown to unlogged users
* $b is (string) HTML of section region
2011-04-13 16:07:21 +02:00
### 'contact_edit'
2015-04-19 18:41:42 +02:00
is called when editing contact details on an individual from the Contacts page.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'contact' => contact record (array) of target contact
'output' => the (string) generated HTML of the contact edit page
2011-04-13 16:07:21 +02:00
### 'contact_edit_post'
2015-04-19 18:41:42 +02:00
* called when posting the contact edit page.
* $b is the $_POST array
2011-04-13 16:07:21 +02:00
### 'init_1'
2015-04-19 18:41:42 +02:00
* called just after DB has been opened and before session start
* $b is not used or passed
2011-04-13 16:07:21 +02:00
### 'page_end'
2015-04-19 18:41:42 +02:00
* called after HTML content functions have completed
* $b is (string) HTML of content div
2011-04-13 16:07:21 +02:00
### 'avatar_lookup'
2015-04-19 18:41:42 +02:00
'avatar_lookup' is called when looking up the avatar.
$b is an array:
2011-04-13 16:07:21 +02:00
2015-04-19 18:41:42 +02:00
'size' => the size of the avatar that will be looked up
'email' => email to look up the avatar for
'url' => the (string) generated URL of the avatar
2011-04-13 16:07:21 +02:00
### 'emailer_send_prepare'
2015-04-19 18:41:42 +02:00
'emailer_send_prepare' called from Emailer::send() before building the mime message.
$b is an array, params to Emailer::send()
'fromName' => name of the sender
2015-04-19 18:41:42 +02:00
'fromEmail' => email fo the sender
'replyTo' => replyTo address to direct responses
'toEmail' => destination email address
'messageSubject' => subject of the message
'htmlVersion' => html version of the message
'textVersion' => text only version of the message
'additionalMailHeader' => additions to the smtp mail header
### 'emailer_send'
2015-04-19 18:41:42 +02:00
is called before calling PHP's mail().
$b is an array, params to mail()
'to'
'subject'
2015-04-19 18:41:42 +02:00
'body'
'headers'
2011-04-13 16:07:21 +02:00
### 'nav_info'
is called after the navigational menu is build in include/nav.php.
$b is an array containing $nav from nav.php.
### 'template_vars'
2015-11-06 19:33:14 +01:00
is called before vars are passed to the template engine to render the page.
The registered function can add,change or remove variables passed to template.
$b is an array with:
'template' => filename of template
'vars' => array of vars passed to template
2016-04-28 23:18:38 +02:00
### ''acl_lookup_end'
is called after the other queries have passed.
The registered function can add, change or remove the acl_lookup() variables.
'results' => array of the acl_lookup() vars
2015-11-06 19:33:14 +01:00
2015-04-19 18:41:42 +02:00
Complete list of hook callbacks
---
2012-02-14 04:06:15 +01:00
2015-04-19 18:41:42 +02:00
Here is a complete list of all hook callbacks with file locations (as of 14-Feb-2012). Please see the source for details of any hooks not documented above.
2011-11-09 00:38:06 +01:00
boot.php: Addon::callHooks('login_hook',$o);
2011-11-09 00:38:06 +01:00
boot.php: Addon::callHooks('profile_sidebar_enter', $profile);
2011-11-09 00:38:06 +01:00
boot.php: Addon::callHooks('profile_sidebar', $arr);
2011-11-09 00:38:06 +01:00
boot.php: Addon::callHooks("proc_run", $arr);
2011-11-09 00:38:06 +01:00
include/contact_selectors.php: Addon::callHooks('network_to_name', $nets);
2011-11-09 00:38:06 +01:00
include/api.php: Addon::callHooks('logged_in', $a->user);
2011-11-09 00:38:06 +01:00
include/api.php: Addon::callHooks('logged_in', $a->user);
2011-11-09 00:38:06 +01:00
include/queue.php: Addon::callHooks('queue_predeliver', $a, $r);
2011-11-09 00:38:06 +01:00
include/queue.php: Addon::callHooks('queue_deliver', $a, $params);
2011-11-09 00:38:06 +01:00
include/text.php: Addon::callHooks('contact_block_end', $arr);
2011-11-09 00:38:06 +01:00
include/text.php: Addon::callHooks('smilie', $s);
2011-04-13 16:07:21 +02:00
include/text.php: Addon::callHooks('prepare_body_init', $item);
2011-04-13 16:07:21 +02:00
include/text.php: Addon::callHooks('prepare_body', $prep_arr);
2011-04-13 16:07:21 +02:00
include/text.php: Addon::callHooks('prepare_body_final', $prep_arr);
2011-04-13 16:07:21 +02:00
include/nav.php: Addon::callHooks('page_header', $a->page['nav']);
2011-04-13 16:07:21 +02:00
include/auth.php: Addon::callHooks('authenticate', $addon_auth);
2011-04-13 16:07:21 +02:00
include/bbcode.php: Addon::callHooks('bbcode',$Text);
2011-04-13 16:07:21 +02:00
include/oauth.php: Addon::callHooks('logged_in', $a->user);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_pre_' . $selname, $arr);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_post_' . $selname, $o);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks('contact_select_options', $x);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_pre_' . $selname, $arr);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_post_' . $selname, $o);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_pre_' . $selname, $arr);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php: Addon::callHooks($a->module . '_post_' . $selname, $o);
2011-04-13 16:07:21 +02:00
include/acl_selectors.php Addon::callHooks('acl_lookup_end', $results);
2016-04-28 23:18:38 +02:00
include/notifier.php: Addon::callHooks('notifier_normal',$target_item);
2011-04-13 16:07:21 +02:00
include/notifier.php: Addon::callHooks('notifier_end',$target_item);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('atom_feed', $atom);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('atom_feed_end', $atom);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('atom_feed_end', $atom);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('parse_atom', $arr);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('post_remote',$arr);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('atom_author', $o);
2011-04-13 16:07:21 +02:00
include/items.php: Addon::callHooks('atom_entry', $o);
2011-04-13 16:07:21 +02:00
include/bb2diaspora.php: Addon::callHooks('bb2diaspora',$Text);
2011-04-13 16:07:21 +02:00
include/cronhooks.php: Addon::callHooks('cron', $d);
2011-04-13 16:07:21 +02:00
include/security.php: Addon::callHooks('logged_in', $a->user);
2012-02-14 04:06:15 +01:00
include/html2bbcode.php: Addon::callHooks('html2bbcode', $text);
2011-04-13 16:07:21 +02:00
include/Contact.php: Addon::callHooks('remove_user',$r[0]);
2012-02-14 04:06:15 +01:00
include/Contact.php: Addon::callHooks('contact_photo_menu', $args);
2011-11-09 00:38:06 +01:00
include/conversation.php: Addon::callHooks('conversation_start',$cb);
2012-02-14 04:06:15 +01:00
include/conversation.php: Addon::callHooks('render_location',$locate);
2012-02-14 04:06:15 +01:00
include/conversation.php: Addon::callHooks('display_item', $arr);
2011-11-09 00:38:06 +01:00
include/conversation.php: Addon::callHooks('render_location',$locate);
2012-02-14 04:06:15 +01:00
include/conversation.php: Addon::callHooks('display_item', $arr);
2011-11-09 00:38:06 +01:00
include/conversation.php: Addon::callHooks('item_photo_menu', $args);
2011-11-09 00:38:06 +01:00
include/conversation.php: Addon::callHooks('jot_tool', $jotplugins);
2011-11-09 00:38:06 +01:00
include/conversation.php: Addon::callHooks('jot_networks', $jotnets);
2011-11-09 00:38:06 +01:00
index.php: Addon::callHooks('init_1');
2011-04-13 16:07:21 +02:00
index.php:Addon::callHooks('app_menu', $arr);
2011-04-13 16:07:21 +02:00
index.php:Addon::callHooks('page_end', $a->page['content']);
2011-04-13 16:07:21 +02:00
mod/photos.php: Addon::callHooks('photo_post_init', $_POST);
2011-11-09 00:38:06 +01:00
mod/photos.php: Addon::callHooks('photo_post_file',$ret);
2011-11-09 00:38:06 +01:00
mod/photos.php: Addon::callHooks('photo_post_end',$foo);
2011-11-09 00:38:06 +01:00
mod/photos.php: Addon::callHooks('photo_post_end',$foo);
2011-11-09 00:38:06 +01:00
mod/photos.php: Addon::callHooks('photo_post_end',$foo);
2011-11-09 00:38:06 +01:00
mod/photos.php: Addon::callHooks('photo_post_end',intval($item_id));
2011-04-13 16:07:21 +02:00
mod/photos.php: Addon::callHooks('photo_upload_form',$ret);
2011-04-13 16:07:21 +02:00
mod/friendica.php: Addon::callHooks('about_hook', $o);
2011-04-13 16:07:21 +02:00
mod/editpost.php: Addon::callHooks('jot_tool', $jotplugins);
2011-04-13 16:07:21 +02:00
mod/editpost.php: Addon::callHooks('jot_networks', $jotnets);
2011-04-13 16:07:21 +02:00
mod/parse_url.php: Addon::callHooks('parse_link', $arr);
2011-04-13 16:07:21 +02:00
mod/home.php: Addon::callHooks('home_init',$ret);
2012-02-14 04:06:15 +01:00
mod/home.php: Addon::callHooks("home_content",$o);
2011-04-13 16:07:21 +02:00
mod/contacts.php: Addon::callHooks('contact_edit_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/contacts.php: Addon::callHooks('contact_edit', $arr);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('addon_settings_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('connector_settings_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('settings_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('addon_settings', $settings_addons);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('connector_settings', $settings_connectors);
2011-04-13 16:07:21 +02:00
mod/settings.php: Addon::callHooks('settings_form',$o);
2011-04-13 16:07:21 +02:00
mod/register.php: Addon::callHooks('register_account', $newuid);
2011-04-13 16:07:21 +02:00
mod/like.php: Addon::callHooks('post_local_end', $arr);
2011-04-13 16:07:21 +02:00
mod/xrd.php: Addon::callHooks('personal_xrd', $arr);
2011-04-13 16:07:21 +02:00
mod/item.php: Addon::callHooks('post_local_start', $_REQUEST);
2011-04-13 16:07:21 +02:00
mod/item.php: Addon::callHooks('post_local',$datarray);
2011-04-13 16:07:21 +02:00
mod/item.php: Addon::callHooks('post_local_end', $datarray);
2011-04-13 16:07:21 +02:00
mod/profile.php: Addon::callHooks('profile_advanced',$o);
2011-04-13 16:07:21 +02:00
mod/profiles.php: Addon::callHooks('profile_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/profiles.php: Addon::callHooks('profile_edit', $arr);
2011-04-13 16:07:21 +02:00
mod/tagger.php: Addon::callHooks('post_local_end', $arr);
2011-04-13 16:07:21 +02:00
mod/cb.php: Addon::callHooks('cb_init');
2011-04-13 16:07:21 +02:00
mod/cb.php: Addon::callHooks('cb_post', $_POST);
2011-04-13 16:07:21 +02:00
mod/cb.php: Addon::callHooks('cb_afterpost');
2011-04-13 16:07:21 +02:00
mod/cb.php: Addon::callHooks('cb_content', $o);
2011-04-13 16:07:21 +02:00
mod/directory.php: Addon::callHooks('directory_item', $arr);