diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 12:28:28 -0400 |
commit | 2230dd4e6b148346c0ec596b9e3e12996a762ed8 (patch) | |
tree | ef99ccde4f8b18592a3fb06a6ec45162c501fe38 /actions | |
parent | a750b8ab2a0cb715da6fd9025a7ec8375db68a4d (diff) |
Code refactoring (add autoloader and change files organization)
Diffstat (limited to 'actions')
-rw-r--r-- | actions/.htaccess | 1 | ||||
-rw-r--r-- | actions/base.php | 140 | ||||
-rw-r--r-- | actions/task_assign_color_category.php | 85 | ||||
-rw-r--r-- | actions/task_assign_color_user.php | 85 | ||||
-rw-r--r-- | actions/task_assign_current_user.php | 94 | ||||
-rw-r--r-- | actions/task_assign_specific_user.php | 85 | ||||
-rw-r--r-- | actions/task_close.php | 79 | ||||
-rw-r--r-- | actions/task_duplicate_another_project.php | 83 |
8 files changed, 0 insertions, 652 deletions
diff --git a/actions/.htaccess b/actions/.htaccess deleted file mode 100644 index 14249c50..00000000 --- a/actions/.htaccess +++ /dev/null @@ -1 +0,0 @@ -Deny from all
\ No newline at end of file diff --git a/actions/base.php b/actions/base.php deleted file mode 100644 index 13e4b6ee..00000000 --- a/actions/base.php +++ /dev/null @@ -1,140 +0,0 @@ -<?php - -namespace Action; - -/** - * Base class for automatic actions - * - * @package action - * @author Frederic Guillot - */ -abstract class Base implements \Core\Listener -{ - /** - * Project id - * - * @access private - * @var integer - */ - private $project_id = 0; - - /** - * User parameters - * - * @access private - * @var array - */ - private $params = array(); - - /** - * 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(); - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - */ - public function __construct($project_id) - { - $this->project_id = $project_id; - } - - /** - * 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) - { - if (isset($data['project_id']) && $data['project_id'] == $this->project_id && $this->hasRequiredParameters($data)) { - return true; - } - - return false; - } - - /** - * 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) { - if (! isset($data[$parameter])) return false; - } - - 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; - } -} diff --git a/actions/task_assign_color_category.php b/actions/task_assign_color_category.php deleted file mode 100644 index 6fba5223..00000000 --- a/actions/task_assign_color_category.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Assign a color to a specific category - * - * @package action - * @author Frederic Guillot - */ -class TaskAssignColorCategory extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - */ - public function __construct($project_id, \Model\Task $task) - { - parent::__construct($project_id); - $this->task = $task; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'color_id' => t('Color'), - 'category_id' => t('Category'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'category_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['category_id'] == $this->getParam('category_id')) { - - $this->task->update(array( - 'id' => $data['task_id'], - 'color_id' => $this->getParam('color_id'), - )); - - return true; - } - - return false; - } -} diff --git a/actions/task_assign_color_user.php b/actions/task_assign_color_user.php deleted file mode 100644 index d5784270..00000000 --- a/actions/task_assign_color_user.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Assign a color to a specific user - * - * @package action - * @author Frederic Guillot - */ -class TaskAssignColorUser extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - */ - public function __construct($project_id, \Model\Task $task) - { - parent::__construct($project_id); - $this->task = $task; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'color_id' => t('Color'), - 'user_id' => t('Assignee'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'owner_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['owner_id'] == $this->getParam('user_id')) { - - $this->task->update(array( - 'id' => $data['task_id'], - 'color_id' => $this->getParam('color_id'), - )); - - return true; - } - - return false; - } -} diff --git a/actions/task_assign_current_user.php b/actions/task_assign_current_user.php deleted file mode 100644 index a3d9559e..00000000 --- a/actions/task_assign_current_user.php +++ /dev/null @@ -1,94 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Assign a task to the logged user - * - * @package action - * @author Frederic Guillot - */ -class TaskAssignCurrentUser extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Acl model - * - * @accesss private - * @var \Model\Acl - */ - private $acl; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - * @param \Model\Acl $acl Acl model instance - */ - public function __construct($project_id, \Model\Task $task, \Model\Acl $acl) - { - parent::__construct($project_id); - $this->task = $task; - $this->acl = $acl; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'column_id' => t('Column'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'column_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['column_id'] == $this->getParam('column_id')) { - - $this->task->update(array( - 'id' => $data['task_id'], - 'owner_id' => $this->acl->getUserId(), - )); - - return true; - } - - return false; - } -} diff --git a/actions/task_assign_specific_user.php b/actions/task_assign_specific_user.php deleted file mode 100644 index aabe5420..00000000 --- a/actions/task_assign_specific_user.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Assign a task to a specific user - * - * @package action - * @author Frederic Guillot - */ -class TaskAssignSpecificUser extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - */ - public function __construct($project_id, \Model\Task $task) - { - parent::__construct($project_id); - $this->task = $task; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'column_id' => t('Column'), - 'user_id' => t('Assignee'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'column_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['column_id'] == $this->getParam('column_id')) { - - $this->task->update(array( - 'id' => $data['task_id'], - 'owner_id' => $this->getParam('user_id'), - )); - - return true; - } - - return false; - } -} diff --git a/actions/task_close.php b/actions/task_close.php deleted file mode 100644 index 22d61f29..00000000 --- a/actions/task_close.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Close automatically a task - * - * @package action - * @author Frederic Guillot - */ -class TaskClose extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - */ - public function __construct($project_id, \Model\Task $task) - { - parent::__construct($project_id); - $this->task = $task; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'column_id' => t('Column'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'column_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['column_id'] == $this->getParam('column_id')) { - $this->task->close($data['task_id']); - return true; - } - - return false; - } -} diff --git a/actions/task_duplicate_another_project.php b/actions/task_duplicate_another_project.php deleted file mode 100644 index 6e1ee84b..00000000 --- a/actions/task_duplicate_another_project.php +++ /dev/null @@ -1,83 +0,0 @@ -<?php - -namespace Action; - -require_once __DIR__.'/base.php'; - -/** - * Duplicate a task to another project - * - * @package action - * @author Frederic Guillot - */ -class TaskDuplicateAnotherProject extends Base -{ - /** - * Task model - * - * @accesss private - * @var \Model\Task - */ - private $task; - - /** - * Constructor - * - * @access public - * @param integer $project_id Project id - * @param \Model\Task $task Task model instance - */ - public function __construct($project_id, \Model\Task $task) - { - parent::__construct($project_id); - $this->task = $task; - } - - /** - * Get the required parameter for the action (defined by the user) - * - * @access public - * @return array - */ - public function getActionRequiredParameters() - { - return array( - 'column_id' => t('Column'), - 'project_id' => t('Project'), - ); - } - - /** - * Get the required parameter for the event - * - * @access public - * @return string[] - */ - public function getEventRequiredParameters() - { - return array( - 'task_id', - 'column_id', - 'project_id', - ); - } - - /** - * 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 doAction(array $data) - { - if ($data['column_id'] == $this->getParam('column_id') && $data['project_id'] != $this->getParam('project_id')) { - - $this->task->duplicateToAnotherProject($data['task_id'], $this->getParam('project_id')); - - return true; - } - - return false; - } -} |