Merge pull request #659 from ArthurHoaro/plugin-errors

New init function for plugins, supports errors reporting
This commit is contained in:
Arthur 2016-10-17 08:50:18 +02:00 committed by GitHub
commit 06eec9bf76
8 changed files with 115 additions and 15 deletions

View file

@ -77,9 +77,6 @@ class PageBuilder
$this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false)); $this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false));
$this->tpl->assign('showatom', $this->conf->get('feed.show_atom', false)); $this->tpl->assign('showatom', $this->conf->get('feed.show_atom', false));
$this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false)); $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false));
if (!empty($GLOBALS['plugin_errors'])) {
$this->tpl->assign('plugin_errors', $GLOBALS['plugin_errors']);
}
$this->tpl->assign('token', getToken($this->conf)); $this->tpl->assign('token', getToken($this->conf));
// To be removed with a proper theme configuration. // To be removed with a proper theme configuration.
$this->tpl->assign('conf', $this->conf); $this->tpl->assign('conf', $this->conf);

View file

@ -24,6 +24,11 @@ class PluginManager
*/ */
protected $conf; protected $conf;
/**
* @var array List of plugin errors.
*/
protected $errors;
/** /**
* Plugins subdirectory. * Plugins subdirectory.
* @var string $PLUGINS_PATH * @var string $PLUGINS_PATH
@ -44,6 +49,7 @@ class PluginManager
public function __construct(&$conf) public function __construct(&$conf)
{ {
$this->conf = $conf; $this->conf = $conf;
$this->errors = array();
} }
/** /**
@ -106,6 +112,7 @@ class PluginManager
/** /**
* Load a single plugin from its files. * Load a single plugin from its files.
* Call the init function if it exists, and collect errors.
* Add them in $loadedPlugins if successful. * Add them in $loadedPlugins if successful.
* *
* @param string $dir plugin's directory. * @param string $dir plugin's directory.
@ -128,6 +135,14 @@ class PluginManager
$conf = $this->conf; $conf = $this->conf;
include_once $pluginFilePath; include_once $pluginFilePath;
$initFunction = $pluginName . '_init';
if (function_exists($initFunction)) {
$errors = call_user_func($initFunction, $this->conf);
if (!empty($errors)) {
$this->errors = array_merge($this->errors, $errors);
}
}
$this->loadedPlugins[] = $pluginName; $this->loadedPlugins[] = $pluginName;
} }
@ -195,6 +210,16 @@ class PluginManager
return $metaData; return $metaData;
} }
/**
* Return the list of encountered errors.
*
* @return array List of errors (empty array if none exists).
*/
public function getErrors()
{
return $this->errors;
}
} }
/** /**

View file

@ -778,6 +778,7 @@ function renderPage($conf, $pluginManager)
$PAGE = new PageBuilder($conf); $PAGE = new PageBuilder($conf);
$PAGE->assign('linkcount', count($LINKSDB)); $PAGE->assign('linkcount', count($LINKSDB));
$PAGE->assign('privateLinkcount', count_private($LINKSDB)); $PAGE->assign('privateLinkcount', count_private($LINKSDB));
$PAGE->assign('plugin_errors', $pluginManager->getErrors());
// Determine which page will be rendered. // Determine which page will be rendered.
$query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : ''; $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';

View file

@ -14,6 +14,23 @@
* and check user status with _LOGGEDIN_. * and check user status with _LOGGEDIN_.
*/ */
/**
* Initialization function.
* It will be called when the plugin is loaded.
* This function can be used to return a list of initialization errors.
*
* @param $conf ConfigManager instance.
*
* @return array List of errors (optional).
*/
function demo_plugin_init($conf)
{
$conf->get('toto', 'nope');
$errors[] = 'This a demo init error.';
return $errors;
}
/** /**
* Hook render_header. * Hook render_header.
* Executed on every page redering. * Executed on every page redering.

View file

@ -8,10 +8,21 @@
// it seems kinda dead. // it seems kinda dead.
// Not tested. // Not tested.
$riyUrl = $conf->get('plugins.READITYOUSELF_URL'); /**
if (empty($riyUrl)) { * Init function, return an error if the server is not set.
$GLOBALS['plugin_errors'][] = 'Readityourself plugin error: '. *
'Please define the "READITYOUSELF_URL" setting in the plugin administration page.'; * @param $conf ConfigManager instance.
*
* @return array Eventual error.
*/
function readityourself_init($conf)
{
$riyUrl = $conf->get('plugins.READITYOUSELF_URL');
if (empty($riyUrl)) {
$error = 'Readityourself plugin error: '.
'Please define the "READITYOUSELF_URL" setting in the plugin administration page.';
return array($error);
}
} }
/** /**

View file

@ -6,10 +6,21 @@
require_once 'WallabagInstance.php'; require_once 'WallabagInstance.php';
$wallabagUrl = $conf->get('plugins.WALLABAG_URL'); /**
if (empty($wallabagUrl)) { * Init function, return an error if the server is not set.
$GLOBALS['plugin_errors'][] = 'Wallabag plugin error: '. *
'Please define the "WALLABAG_URL" setting in the plugin administration page.'; * @param $conf ConfigManager instance.
*
* @return array Eventual error.
*/
function wallabag_init($conf)
{
$wallabagUrl = $conf->get('plugins.WALLABAG_URL');
if (empty($wallabagUrl)) {
$error = 'Wallabag plugin error: '.
'Please define the "WALLABAG_URL" setting in the plugin administration page.';
return array($error);
}
} }
/** /**

View file

@ -4,8 +4,6 @@
* PluginReadityourselfTest.php.php * PluginReadityourselfTest.php.php
*/ */
// FIXME! add an init method.
$conf = new ConfigManager('');
require_once 'plugins/readityourself/readityourself.php'; require_once 'plugins/readityourself/readityourself.php';
/** /**
@ -22,6 +20,27 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase
PluginManager::$PLUGINS_PATH = 'plugins'; PluginManager::$PLUGINS_PATH = 'plugins';
} }
/**
* Test Readityourself init without errors.
*/
function testReadityourselfInitNoError()
{
$conf = new ConfigManager('');
$conf->set('plugins.READITYOUSELF_URL', 'value');
$errors = readityourself_init($conf);
$this->assertEmpty($errors);
}
/**
* Test Readityourself init with errors.
*/
function testReadityourselfInitError()
{
$conf = new ConfigManager('');
$errors = readityourself_init($conf);
$this->assertNotEmpty($errors);
}
/** /**
* Test render_linklist hook. * Test render_linklist hook.
*/ */

View file

@ -4,8 +4,6 @@
* PluginWallabagTest.php.php * PluginWallabagTest.php.php
*/ */
// FIXME! add an init method.
$conf = new ConfigManager('');
require_once 'plugins/wallabag/wallabag.php'; require_once 'plugins/wallabag/wallabag.php';
/** /**
@ -22,6 +20,27 @@ class PluginWallabagTest extends PHPUnit_Framework_TestCase
PluginManager::$PLUGINS_PATH = 'plugins'; PluginManager::$PLUGINS_PATH = 'plugins';
} }
/**
* Test wallabag init without errors.
*/
function testWallabagInitNoError()
{
$conf = new ConfigManager('');
$conf->set('plugins.WALLABAG_URL', 'value');
$errors = wallabag_init($conf);
$this->assertEmpty($errors);
}
/**
* Test wallabag init with errors.
*/
function testWallabagInitError()
{
$conf = new ConfigManager('');
$errors = wallabag_init($conf);
$this->assertNotEmpty($errors);
}
/** /**
* Test render_linklist hook. * Test render_linklist hook.
*/ */