2014-07-20 12:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Action;
|
|
|
|
|
2015-01-16 14:23:05 +01:00
|
|
|
use Event\GenericEvent;
|
2014-12-22 19:15:38 +01:00
|
|
|
use Pimple\Container;
|
2014-07-20 12:26:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for automatic actions
|
|
|
|
*
|
|
|
|
* @package action
|
|
|
|
* @author Frederic Guillot
|
|
|
|
*/
|
2015-08-16 17:04:56 +02:00
|
|
|
abstract class Base extends \Core\Base
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
2015-01-16 14:23:05 +01:00
|
|
|
/**
|
|
|
|
* Flag for called listener
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
private $called = false;
|
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
/**
|
|
|
|
* Project id
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @var integer
|
|
|
|
*/
|
|
|
|
private $project_id = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User parameters
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $params = array();
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Attached event name
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $event_name = '';
|
|
|
|
|
|
|
|
/**
|
2014-12-22 19:15:38 +01:00
|
|
|
* Container instance
|
2014-11-23 20:13:38 +01:00
|
|
|
*
|
|
|
|
* @access protected
|
2014-12-22 19:15:38 +01:00
|
|
|
* @var \Pimple\Container
|
2014-11-23 20:13:38 +01:00
|
|
|
*/
|
2014-12-22 19:15:38 +01:00
|
|
|
protected $container;
|
2014-11-23 20:13:38 +01:00
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
/**
|
|
|
|
* Execute the action
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
* @access public
|
|
|
|
* @param array $data Event data dictionary
|
|
|
|
* @return bool True if the action was executed or false when not executed
|
|
|
|
*/
|
|
|
|
abstract public function doAction(array $data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the required parameter for the action (defined by the user)
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
* @access public
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
abstract public function getActionRequiredParameters();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the required parameter for the event (check if for the event data)
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
* @access public
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
abstract public function getEventRequiredParameters();
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Get the compatible events
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
* @access public
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
abstract public function getCompatibleEvents();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the event data meet the action condition
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $data Event data dictionary
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
abstract public function hasRequiredCondition(array $data);
|
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @access public
|
2014-12-22 19:15:38 +01:00
|
|
|
* @param \Pimple\Container $container Container
|
|
|
|
* @param integer $project_id Project id
|
|
|
|
* @param string $event_name Attached event name
|
2014-07-20 12:26:15 +02:00
|
|
|
*/
|
2014-12-22 19:15:38 +01:00
|
|
|
public function __construct(Container $container, $project_id, $event_name)
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
2014-12-22 19:15:38 +01:00
|
|
|
$this->container = $container;
|
2014-07-20 12:26:15 +02:00
|
|
|
$this->project_id = $project_id;
|
2014-11-23 20:13:38 +01:00
|
|
|
$this->event_name = $event_name;
|
2015-01-16 14:23:05 +01:00
|
|
|
$this->called = false;
|
2014-11-23 20:13:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return class information
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function __toString()
|
|
|
|
{
|
|
|
|
return get_called_class();
|
|
|
|
}
|
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
/**
|
|
|
|
* Set an user defined parameter
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $name Parameter name
|
|
|
|
* @param mixed $value Value
|
|
|
|
*/
|
|
|
|
public function setParam($name, $value)
|
|
|
|
{
|
|
|
|
$this->params[$name] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an user defined parameter
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $name Parameter name
|
|
|
|
* @param mixed $default_value Default value
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getParam($name, $default_value = null)
|
|
|
|
{
|
|
|
|
return isset($this->params[$name]) ? $this->params[$name] : $default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if an action is executable (right project and required parameters)
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $data Event data dictionary
|
|
|
|
* @return bool True if the action is executable
|
|
|
|
*/
|
|
|
|
public function isExecutable(array $data)
|
|
|
|
{
|
2014-11-23 20:13:38 +01:00
|
|
|
return $this->hasCompatibleEvent() &&
|
|
|
|
$this->hasRequiredProject($data) &&
|
|
|
|
$this->hasRequiredParameters($data) &&
|
|
|
|
$this->hasRequiredCondition($data);
|
|
|
|
}
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Check if the event is compatible with the action
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasCompatibleEvent()
|
|
|
|
{
|
|
|
|
return in_array($this->event_name, $this->getCompatibleEvents());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the event data has the required project
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $data Event data dictionary
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasRequiredProject(array $data)
|
|
|
|
{
|
|
|
|
return isset($data['project_id']) && $data['project_id'] == $this->project_id;
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the event data has required parameters to execute the action
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $data Event data dictionary
|
|
|
|
* @return bool True if all keys are there
|
|
|
|
*/
|
|
|
|
public function hasRequiredParameters(array $data)
|
|
|
|
{
|
|
|
|
foreach ($this->getEventRequiredParameters() as $parameter) {
|
2014-11-23 20:13:38 +01:00
|
|
|
if (! isset($data[$parameter])) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the action
|
|
|
|
*
|
|
|
|
* @access public
|
2015-01-16 14:23:05 +01:00
|
|
|
* @param \Event\GenericEvent $event Event data dictionary
|
|
|
|
* @return bool True if the action was executed or false when not executed
|
2014-07-20 12:26:15 +02:00
|
|
|
*/
|
2015-01-16 14:23:05 +01:00
|
|
|
public function execute(GenericEvent $event)
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
2015-01-16 14:23:05 +01:00
|
|
|
// Avoid infinite loop, a listener instance can be called only one time
|
|
|
|
if ($this->called) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = $event->getAll();
|
2015-08-16 17:04:56 +02:00
|
|
|
$result = false;
|
2015-01-16 14:23:05 +01:00
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
if ($this->isExecutable($data)) {
|
2015-01-16 14:23:05 +01:00
|
|
|
$this->called = true;
|
2015-08-16 17:04:56 +02:00
|
|
|
$result = $this->doAction($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DEBUG) {
|
|
|
|
$this->container['logger']->debug(get_called_class().' => '.($result ? 'true' : 'false'));
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
return $result;
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
}
|