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/Model/Board.php

388 lines
12 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<?php
namespace Model;
use SimpleValidator\Validator;
use SimpleValidator\Validators;
/**
* Board model
*
* @package model
* @author Frederic Guillot
*/
class Board extends Base
{
/**
* SQL table name
*
* @var string
*/
const TABLE = 'columns';
/**
2014-10-22 19:59:09 +02:00
* Get Kanboard default columns
2014-07-20 12:26:15 +02:00
*
* @access public
2015-01-16 14:23:05 +01:00
* @return string[]
2014-07-20 12:26:15 +02:00
*/
2014-10-22 19:59:09 +02:00
public function getDefaultColumns()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
return array(t('Backlog'), t('Ready'), t('Work in progress'), t('Done'));
2014-07-20 12:26:15 +02:00
}
2014-11-23 20:13:38 +01:00
/**
* Get user default columns
*
* @access public
* @return array
*/
public function getUserColumns()
{
$column_names = explode(',', $this->config->get('board_columns', implode(',', $this->getDefaultColumns())));
$columns = array();
foreach ($column_names as $column_name) {
$column_name = trim($column_name);
if (! empty($column_name)) {
2015-02-25 17:29:06 +01:00
$columns[] = array('title' => $column_name, 'task_limit' => 0, 'description' => '');
2014-11-23 20:13:38 +01:00
}
}
return $columns;
}
2014-07-20 12:26:15 +02:00
/**
* Create a board with default columns, must be executed inside a transaction
*
* @access public
* @param integer $project_id Project id
2014-10-22 19:59:09 +02:00
* @param array $columns Column parameters [ 'title' => 'boo', 'task_limit' => 2 ... ]
2014-07-20 12:26:15 +02:00
* @return boolean
*/
public function create($project_id, array $columns)
{
$position = 0;
2014-10-22 19:59:09 +02:00
foreach ($columns as $column) {
2014-07-20 12:26:15 +02:00
$values = array(
2014-10-22 19:59:09 +02:00
'title' => $column['title'],
2014-07-20 12:26:15 +02:00
'position' => ++$position,
'project_id' => $project_id,
2014-10-22 19:59:09 +02:00
'task_limit' => $column['task_limit'],
2015-02-25 17:29:06 +01:00
'description' => $column['description'],
2014-07-20 12:26:15 +02:00
);
if (! $this->db->table(self::TABLE)->save($values)) {
return false;
}
}
return true;
}
2014-10-22 19:59:09 +02:00
/**
* Copy board columns from a project to another one
*
* @author Antonio Rabelo
* @param integer $project_from Project Template
* @return integer $project_to Project that receives the copy
* @return boolean
*/
public function duplicate($project_from, $project_to)
{
$columns = $this->db->table(Board::TABLE)
2015-02-25 17:29:06 +01:00
->columns('title', 'task_limit', 'description')
2014-10-22 19:59:09 +02:00
->eq('project_id', $project_from)
->asc('position')
->findAll();
return $this->board->create($project_to, $columns);
}
2014-07-20 12:26:15 +02:00
/**
* Add a new column to the board
*
* @access public
2014-10-22 19:59:09 +02:00
* @param integer $project_id Project id
* @param string $title Column title
* @param integer $task_limit Task limit
2015-02-25 17:29:06 +01:00
* @param string $description Column description
2014-12-22 19:15:38 +01:00
* @return boolean|integer
2014-07-20 12:26:15 +02:00
*/
2015-02-25 17:29:06 +01:00
public function addColumn($project_id, $title, $task_limit = 0, $description = '')
2014-07-20 12:26:15 +02:00
{
2014-12-22 19:15:38 +01:00
$values = array(
2014-10-22 19:59:09 +02:00
'project_id' => $project_id,
'title' => $title,
2015-02-25 17:29:06 +01:00
'task_limit' => intval($task_limit),
2014-10-22 19:59:09 +02:00
'position' => $this->getLastColumnPosition($project_id) + 1,
2015-02-25 17:29:06 +01:00
'description' => $description,
2014-12-22 19:15:38 +01:00
);
return $this->persist(self::TABLE, $values);
2014-07-20 12:26:15 +02:00
}
/**
* Update a column
*
* @access public
2014-10-22 19:59:09 +02:00
* @param integer $column_id Column id
* @param string $title Column title
* @param integer $task_limit Task limit
2015-02-25 17:29:06 +01:00
* @param string $description Optional description
2014-07-20 12:26:15 +02:00
* @return boolean
*/
2015-02-25 17:29:06 +01:00
public function updateColumn($column_id, $title, $task_limit = 0, $description = '')
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
return $this->db->table(self::TABLE)->eq('id', $column_id)->update(array(
'title' => $title,
2015-02-25 17:29:06 +01:00
'task_limit' => intval($task_limit),
'description' => $description,
2014-10-22 19:59:09 +02:00
));
2014-07-20 12:26:15 +02:00
}
/**
* Move a column down, increment the column position value
*
* @access public
* @param integer $project_id Project id
* @param integer $column_id Column id
* @return boolean
*/
public function moveDown($project_id, $column_id)
{
2015-02-25 17:29:06 +01:00
$columns = $this->db->hashtable(self::TABLE)->eq('project_id', $project_id)->asc('position')->getAll('id', 'position');
2014-07-20 12:26:15 +02:00
$positions = array_flip($columns);
if (isset($columns[$column_id]) && $columns[$column_id] < count($columns)) {
$position = ++$columns[$column_id];
$columns[$positions[$position]]--;
$this->db->startTransaction();
$this->db->table(self::TABLE)->eq('id', $column_id)->update(array('position' => $position));
$this->db->table(self::TABLE)->eq('id', $positions[$position])->update(array('position' => $columns[$positions[$position]]));
$this->db->closeTransaction();
return true;
}
return false;
}
/**
* Move a column up, decrement the column position value
*
* @access public
* @param integer $project_id Project id
* @param integer $column_id Column id
* @return boolean
*/
public function moveUp($project_id, $column_id)
{
2015-02-25 17:29:06 +01:00
$columns = $this->db->hashtable(self::TABLE)->eq('project_id', $project_id)->asc('position')->getAll('id', 'position');
2014-07-20 12:26:15 +02:00
$positions = array_flip($columns);
if (isset($columns[$column_id]) && $columns[$column_id] > 1) {
$position = --$columns[$column_id];
$columns[$positions[$position]]++;
$this->db->startTransaction();
$this->db->table(self::TABLE)->eq('id', $column_id)->update(array('position' => $position));
$this->db->table(self::TABLE)->eq('id', $positions[$position])->update(array('position' => $columns[$positions[$position]]));
$this->db->closeTransaction();
return true;
}
return false;
}
/**
2015-01-16 14:23:05 +01:00
* Get all tasks sorted by columns and swimlanes
2014-07-20 12:26:15 +02:00
*
* @access public
* @param integer $project_id Project id
* @return array
*/
2015-01-16 14:23:05 +01:00
public function getBoard($project_id)
2014-07-20 12:26:15 +02:00
{
2015-01-16 14:23:05 +01:00
$swimlanes = $this->swimlane->getSwimlanes($project_id);
2014-07-20 12:26:15 +02:00
$columns = $this->getColumns($project_id);
2015-01-16 14:23:05 +01:00
$nb_columns = count($columns);
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
for ($i = 0, $ilen = count($swimlanes); $i < $ilen; $i++) {
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
$swimlanes[$i]['columns'] = $columns;
$swimlanes[$i]['nb_columns'] = $nb_columns;
2015-02-25 17:29:06 +01:00
$swimlanes[$i]['nb_tasks'] = 0;
2014-07-20 12:26:15 +02:00
2015-01-16 14:23:05 +01:00
for ($j = 0; $j < $nb_columns; $j++) {
$swimlanes[$i]['columns'][$j]['tasks'] = $this->taskFinder->getTasksByColumnAndSwimlane($project_id, $columns[$j]['id'], $swimlanes[$i]['id']);
$swimlanes[$i]['columns'][$j]['nb_tasks'] = count($swimlanes[$i]['columns'][$j]['tasks']);
2015-02-25 17:29:06 +01:00
$swimlanes[$i]['nb_tasks'] += $swimlanes[$i]['columns'][$j]['nb_tasks'];
2014-07-20 12:26:15 +02:00
}
}
2015-01-16 14:23:05 +01:00
return $swimlanes;
}
/**
* Get the total of tasks per column
*
* @access public
* @param integer $project_id
2015-02-25 17:29:06 +01:00
* @param boolean $prepend Prepend default value
2015-01-16 14:23:05 +01:00
* @return array
*/
2015-02-25 17:29:06 +01:00
public function getColumnStats($project_id, $prepend = false)
2015-01-16 14:23:05 +01:00
{
2015-02-25 17:29:06 +01:00
$listing = $this->db
->hashtable(Task::TABLE)
->eq('project_id', $project_id)
->eq('is_active', 1)
->groupBy('column_id')
->getAll('column_id', 'COUNT(*) AS total');
return $prepend ? array(-1 => t('All columns')) + $listing : $listing;
2014-07-20 12:26:15 +02:00
}
/**
* Get the first column id for a given project
*
* @access public
* @param integer $project_id Project id
* @return integer
*/
public function getFirstColumn($project_id)
{
return $this->db->table(self::TABLE)->eq('project_id', $project_id)->asc('position')->findOneColumn('id');
}
/**
* Get the list of columns sorted by position [ column_id => title ]
*
* @access public
* @param integer $project_id Project id
2015-02-25 17:29:06 +01:00
* @param boolean $prepend Prepend a default value
2014-07-20 12:26:15 +02:00
* @return array
*/
2015-02-25 17:29:06 +01:00
public function getColumnsList($project_id, $prepend = false)
2014-07-20 12:26:15 +02:00
{
2015-02-25 17:29:06 +01:00
$listing = $this->db->hashtable(self::TABLE)->eq('project_id', $project_id)->asc('position')->getAll('id', 'title');
return $prepend ? array(-1 => t('All columns')) + $listing : $listing;
2014-07-20 12:26:15 +02:00
}
/**
* Get all columns sorted by position for a given project
*
* @access public
* @param integer $project_id Project id
* @return array
*/
public function getColumns($project_id)
{
return $this->db->table(self::TABLE)->eq('project_id', $project_id)->asc('position')->findAll();
}
/**
* Get the number of columns for a given project
*
* @access public
* @param integer $project_id Project id
* @return integer
*/
public function countColumns($project_id)
{
return $this->db->table(self::TABLE)->eq('project_id', $project_id)->count();
}
/**
* Get a column by the id
*
* @access public
* @param integer $column_id Column id
* @return array
*/
public function getColumn($column_id)
{
return $this->db->table(self::TABLE)->eq('id', $column_id)->findOne();
}
/**
* Get the position of the last column for a given project
*
* @access public
* @param integer $project_id Project id
* @return integer
*/
public function getLastColumnPosition($project_id)
{
return (int) $this->db
->table(self::TABLE)
->eq('project_id', $project_id)
->desc('position')
->findOneColumn('position');
}
/**
* Remove a column and all tasks associated to this column
*
* @access public
* @param integer $column_id Column id
* @return boolean
*/
public function removeColumn($column_id)
{
return $this->db->table(self::TABLE)->eq('id', $column_id)->remove();
}
/**
* Validate column modification
*
* @access public
* @param array $values Required parameters to update a column
* @return array $valid, $errors [0] = Success or not, [1] = List of errors
*/
2015-02-25 17:29:06 +01:00
public function validateModification(array $values)
2014-07-20 12:26:15 +02:00
{
2015-02-25 17:29:06 +01:00
$v = new Validator($values, array(
new Validators\Integer('task_limit', t('This value must be an integer')),
new Validators\Required('title', t('The title is required')),
new Validators\MaxLength('title', t('The maximum length is %d characters', 50), 50),
));
2014-07-20 12:26:15 +02:00
return array(
$v->execute(),
$v->getErrors()
);
}
/**
* Validate column creation
*
* @access public
* @param array $values Required parameters to save an action
* @return array $valid, $errors [0] = Success or not, [1] = List of errors
*/
public function validateCreation(array $values)
{
$v = new Validator($values, array(
new Validators\Required('project_id', t('The project id is required')),
new Validators\Integer('project_id', t('This value must be an integer')),
new Validators\Required('title', t('The title is required')),
new Validators\MaxLength('title', t('The maximum length is %d characters', 50), 50),
));
return array(
$v->execute(),
$v->getErrors()
);
}
}