1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Action/Base.php

236 lines
5.4 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<?php
namespace Action;
use Core\Listener;
2014-11-23 20:13:38 +01:00
use Core\Registry;
use Core\Tool;
2014-07-20 12:26:15 +02:00
/**
* Base class for automatic actions
*
* @package action
* @author Frederic Guillot
2014-11-23 20:13:38 +01:00
*
* @property \Model\Acl $acl
* @property \Model\Comment $comment
* @property \Model\Task $task
* @property \Model\TaskFinder $taskFinder
2014-07-20 12:26:15 +02:00
*/
abstract class Base implements Listener
{
/**
* 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 = '';
/**
* Registry instance
*
* @access protected
* @var \Core\Registry
*/
protected $registry;
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-11-23 20:13:38 +01:00
* @param \Core\Registry $registry Regsitry instance
* @param integer $project_id Project id
* @param string $event_name Attached event name
2014-07-20 12:26:15 +02:00
*/
2014-11-23 20:13:38 +01:00
public function __construct(Registry $registry, $project_id, $event_name)
2014-07-20 12:26:15 +02:00
{
2014-11-23 20:13:38 +01:00
$this->registry = $registry;
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;
}
/**
* Return class information
*
* @access public
* @return string
*/
public function __toString()
{
return get_called_class();
}
/**
* Load automatically models
*
* @access public
* @param string $name Model name
* @return mixed
*/
public function __get($name)
{
return Tool::loadModel($this->registry, $name);
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
* @param array $data Event data dictionary
* @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
* @param array $data Event data dictionary
* @return bool True if the action was executed or false when not executed
*/
public function execute(array $data)
{
if ($this->isExecutable($data)) {
return $this->doAction($data);
}
return false;
}
}