source: trunk/include/functions_plugins.inc.php @ 27238

Last change on this file since 27238 was 27238, checked in by mistic100, 10 years ago

feature 3041: Give include path to add_event_handler
$accepted_args is replaced by $include_path (retrocompatible)

  • Property svn:eol-style set to LF
File size: 11.3 KB
RevLine 
[1578]1<?php
2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[26461]5// | Copyright(C) 2008-2014 Piwigo Team                  http://piwigo.org |
[2297]6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[1578]23
[25601]24/**
25 * @package functions\plugins
26 */
[1578]27
[25601]28
29/** base directory of plugins */
[1699]30define('PHPWG_PLUGINS_PATH', PHPWG_ROOT_PATH.'plugins/');
[25601]31/** default priority for plugins handlers */
[1590]32define('EVENT_HANDLER_PRIORITY_NEUTRAL', 50);
33
[25406]34
35/**
[25601]36 * Used to declare maintenance methods of a plugin.
[25406]37 */
[27221]38class PluginMaintain 
[25406]39{
[25601]40  /** @var string $plugin_id */
[25406]41  protected $plugin_id;
[25601]42
43  /**
44   * @param string $id
45   */
[25406]46  function __construct($id)
47  {
48    $this->plugin_id = $id;
49  }
[25601]50
51  /**
52   * @param string $plugin_version
[25658]53   * @param array &$errors - used to return error messages
[25601]54   */
[27221]55  function install($plugin_version, &$errors=array()) {}
[25601]56
57  /**
58   * @param string $plugin_version
[25658]59   * @param array &$errors - used to return error messages
[25601]60   */
[27221]61  function activate($plugin_version, &$errors=array()) {}
[25601]62
[27221]63  function deactivate() {}
[25601]64
[27221]65  function uninstall() {}
[25601]66
67  /**
68   * Tests if the plugin needs to be updated and call an update function
69   *
70   * @param string $version version exposed by the plugin (potentially new)
71   * @param string $on_update name of a method to call when an update is needed
[25406]72   *          it receives the previous version as first parameter
73   */
74  function autoUpdate($version, $on_update=null)
75  {
76    global $pwg_loaded_plugins;
77   
78    $current_version = $pwg_loaded_plugins[$this->plugin_id]['version'];
79   
80    if ( $version == 'auto' or $current_version == 'auto'
[26591]81        or safe_version_compare($current_version, $version, '<')
[25406]82      )
83    {
84      if (!empty($on_update))
85      {
86        call_user_func(array(&$this, $on_update), $current_version);
87      }
88     
89      if ($version != 'auto')
90      {
91        $query = '
92UPDATE '. PLUGINS_TABLE .'
93  SET version = "'. $version .'"
94  WHERE id = "'. $this->plugin_id .'"
95;';
96        pwg_query($query);
97       
98        $pwg_loaded_plugins[$this->plugin_id]['version'] = $version;
99      }
100    }
101  }
102}
103
104/**
[25601]105 * Used to declare maintenance methods of a theme.
[25406]106 */
[27221]107class ThemeMaintain 
[25406]108{
[25601]109  /** @var string $theme_id */
[25406]110  protected $theme_id;
[25601]111
112  /**
113   * @param string $id
114   */
[25406]115  function __construct($id)
116  {
117    $this->theme_id = $id;
118  }
[25601]119
120  /**
121   * @param string $theme_version
[25658]122   * @param array &$errors - used to return error messages
[25601]123   */
[27221]124  function activate($theme_version, &$errors=array()) {}
[25601]125
[27221]126  function deactivate() {}
[25601]127
[27221]128  function delete() {}
[25406]129 
[25601]130  /**
131   * Tests if the theme needs to be updated and call an update function
132   *
133   * @param string $version version exposed by the theme (potentially new)
134   * @param string $on_update name of a method to call when an update is needed
[25406]135   *          it receives the previous version as first parameter
136   */
137  function autoUpdate($version, $on_update=null)
138  {
139    $query = '
140SELECT version
141  FROM '. THEMES_TABLE .'
142  WHERE id = "'. $this->theme_id .'"
143;';
144    list($current_version) = pwg_db_fetch_row(pwg_query($query));
145   
146    if ( $version == 'auto' or $current_version == 'auto'
[26591]147        or safe_version_compare($current_version, $version, '<')
[25406]148      )
149    {
150      if (!empty($on_update))
151      {
152        call_user_func(array(&$this, $on_update), $current_version);
153      }
154     
155      if ($version != 'auto')
156      {
157        $query = '
158UPDATE '. THEMES_TABLE .'
159  SET version = "'. $version .'"
160  WHERE id = "'. $this->theme_id .'"
161;';
162        pwg_query($query);
163      }
164    }
165  }
166}
167
168
[25601]169/**
170 * Register an event handler.
171 *
[1578]172 * @param string $event the name of the event to listen to
[25601]173 * @param Callable $func the callback function
174 * @param int $priority greater priority will be executed at last
[27238]175 * @param string $include_path file to include before executing the callback
176 * @return bool false is handler already exists
[25601]177 */
[1590]178function add_event_handler($event, $func,
[27238]179    $priority=EVENT_HANDLER_PRIORITY_NEUTRAL, $include_path=null)
[1578]180{
181  global $pwg_event_handlers;
182
[27238]183  if (isset($pwg_event_handlers[$event][$priority]))
[1578]184  {
[27238]185    foreach ($pwg_event_handlers[$event][$priority] as $handler)
[1578]186    {
[27238]187      if ($handler['function'] == $func)
[1578]188      {
[1604]189        return false;
[1578]190      }
191    }
192  }
193
[27238]194  $pwg_event_handlers[$event][$priority][] = array(
195    'function' => $func,
196    'include_path' => is_string($include_path) ? $include_path : null,
197    );
198
199  ksort($pwg_event_handlers[$event]);
[1578]200  return true;
201}
202
[25601]203/**
204 * Removes an event handler.
205 * @see add_event_handler()
206 *
207 * @param string $event
208 * @param Callable $func
209 * @param int $priority
210 */
[1590]211function remove_event_handler($event, $func,
212   $priority=EVENT_HANDLER_PRIORITY_NEUTRAL)
213{
214  global $pwg_event_handlers;
[1578]215
[27238]216  if (!isset($pwg_event_handlers[$event][$priority]))
[1590]217  {
218    return false;
219  }
220  for ($i=0; $i<count($pwg_event_handlers[$event][$priority]); $i++)
221  {
222    if ($pwg_event_handlers[$event][$priority][$i]['function']==$func)
223    {
224      unset($pwg_event_handlers[$event][$priority][$i]);
225      $pwg_event_handlers[$event][$priority] =
226        array_values($pwg_event_handlers[$event][$priority]);
227
[27238]228      if (empty($pwg_event_handlers[$event][$priority]))
[1590]229      {
[27238]230        unset($pwg_event_handlers[$event][$priority]);
231        if (empty($pwg_event_handlers[$event]))
[1590]232        {
[27238]233          unset($pwg_event_handlers[$event]);
[1590]234        }
235      }
236      return true;
237    }
238  }
239  return false;
240}
241
[25601]242/**
243 * Triggers a modifier event and calls all registered event handlers.
[25602]244 * trigger_change() is used as a modifier: it allows to transmit _$data_
[25601]245 * through all handlers, thus each handler MUST return a value,
246 * optional _$args_ are not transmitted.
247 *
[25602]248 * @since 2.6
249 * @todo remove trigger_event()
250 *
[25601]251 * @param string $event
252 * @param mixed $data data to transmit to all handlers
253 * @param mixed $args,... optional arguments
254 * @return mixed $data
255 */
[25602]256function trigger_change($event, $data=null)
257{
[26846]258  $args = func_get_args();
259  return call_user_func_array('trigger_event', $args);
[25602]260}
261
262/**
263 * @deprecated 2.6
264 * @see trigger_change
265 */
[1578]266function trigger_event($event, $data=null)
267{
268  global $pwg_event_handlers;
[1590]269
[27238]270  if (isset($pwg_event_handlers['trigger']))
271  {// debugging
[3136]272    trigger_action('trigger',
[27238]273      array('type'=>'event', 'event'=>$event, 'data'=>$data)
274      );
[3136]275  }
[1578]276
[27238]277  if (!isset($pwg_event_handlers[$event]))
[1578]278  {
279    return $data;
280  }
[8263]281  $args = func_get_args();
[1578]282
283  foreach ($pwg_event_handlers[$event] as $priority => $handlers)
284  {
[27238]285    foreach ($handlers as $handler)
[1578]286    {
[8263]287      $args[1] = $data;
[27238]288
289      if (!empty($handler['include_path']))
290      {
291        include_once($handler['include_path']);
292      }
293
294      $data = call_user_func_array($handler['function'], array_slice($args, 1));
[1578]295    }
296  }
[27238]297
298  if (isset($pwg_event_handlers['trigger']))
299  {// debugging
300    trigger_action('trigger',
301      array('type'=>'post_event', 'event'=>$event, 'data'=>$data)
302      );
303  }
304
[1590]305  return $data;
306}
[1578]307
[25601]308/**
[25602]309 * Triggers a notifier event and calls all registered event handlers.
310 * trigger_notify() is only used as a notifier, no modification of data is possible
[25601]311 *
[25602]312 * @since 2.6
313 * @todo remove trigger_action()
314 *
[25601]315 * @param string $event
316 * @param mixed $args,... optional arguments
317 */
[25602]318function trigger_notify($event)
319{
[26846]320  $args = func_get_args();
321  return call_user_func_array('trigger_action', $args);
[25602]322}
323
324/**
325 * @deprecated 2.6
326 * @see trigger_notify
327 */
[25601]328function trigger_action($event)
[1590]329{
330  global $pwg_event_handlers;
[27238]331
332  if (isset($pwg_event_handlers['trigger']) and $event!='trigger')
333  {// debugging - avoid recursive calls
[3136]334    trigger_action('trigger',
[27238]335      array('type'=>'action', 'event'=>$event, 'data'=>null)
336      );
[1578]337  }
338
[27238]339  if (!isset($pwg_event_handlers[$event]))
[1590]340  {
341    return;
342  }
[8263]343  $args = func_get_args();
[1578]344
[1590]345  foreach ($pwg_event_handlers[$event] as $priority => $handlers)
346  {
[27238]347    foreach ($handlers as $handler)
[1590]348    {
[27238]349      if (!empty($handler['include_path']))
350      {
351        include_once($handler['include_path']);
352      }
[1578]353
[27238]354      call_user_func_array($handler['function'], array_slice($args,1));
[1590]355    }
356  }
357}
[1578]358
[25601]359/**
360 * Saves some data with the associated plugin id, data are only available
361 * during script lifetime.
362 * @depracted 2.6
363 *
364 * @param string $plugin_id
[25658]365 * @param mixed &$data
[25601]366 * @return bool
[1705]367 */
368function set_plugin_data($plugin_id, &$data)
369{
370  global $pwg_loaded_plugins;
371  if ( isset($pwg_loaded_plugins[$plugin_id]) )
372  {
373    $pwg_loaded_plugins[$plugin_id]['plugin_data'] = &$data;
374    return true;
375  }
376  return false;
377}
[1590]378
[25601]379/**
380 * Retrieves plugin data saved previously with set_plugin_data.
381 * @see set_plugin_data()
382 * @depracted 2.6
383 *
384 * @param string $plugin_id
385 * @return mixed
[1705]386 */
387function &get_plugin_data($plugin_id)
388{
389  global $pwg_loaded_plugins;
[25601]390  if ( isset($pwg_loaded_plugins[$plugin_id]['plugin_data']) )
[1705]391  {
392    return $pwg_loaded_plugins[$plugin_id]['plugin_data'];
393  }
394  return null;
395}
396
[25601]397/**
398 * Returns an array of plugins defined in the database.
399 *
400 * @param string $state optional filter
401 * @param string $id returns only data about given plugin
402 * @return array
403 */
[1584]404function get_db_plugins($state='', $id='')
[1578]405{
[1584]406  $query = '
407SELECT * FROM '.PLUGINS_TABLE;
[3136]408  $clauses = array();
409  if (!empty($state))
[1578]410  {
[4367]411    $clauses[] = 'state=\''.$state.'\'';
[3136]412  }
413  if (!empty($id))
414  {
415    $clauses[] = 'id="'.$id.'"';
416  }
417  if (count($clauses))
418  {
[27221]419    $query .= '
[3136]420  WHERE '. implode(' AND ', $clauses);
[1578]421  }
[27221]422 
423  return query2array($query);
[1578]424}
425
[25601]426/**
427 * Loads a plugin, it includes the main.inc.php file and updates _$pwg_loaded_plugins_.
428 *
429 * @param string $plugin
430 */
[1604]431function load_plugin($plugin)
432{
433  $file_name = PHPWG_PLUGINS_PATH.$plugin['id'].'/main.inc.php';
434  if ( file_exists($file_name) )
435  {
[1705]436    global $pwg_loaded_plugins;
437    $pwg_loaded_plugins[ $plugin['id'] ] = $plugin;
[1604]438    include_once( $file_name );
439  }
440}
441
[25601]442/**
443 * Loads all the registered plugins.
444 */
[1578]445function load_plugins()
446{
[1705]447  global $conf, $pwg_loaded_plugins;
448  $pwg_loaded_plugins = array();
[1616]449  if ($conf['enable_plugins'])
[1584]450  {
[1616]451    $plugins = get_db_plugins('active');
452    foreach( $plugins as $plugin)
453    {// include main from a function to avoid using same function context
454      load_plugin($plugin);
455    }
456    trigger_action('plugins_loaded');
[1584]457  }
[1578]458}
[24160]459
[1578]460?>
Note: See TracBrowser for help on using the repository browser.