mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
256 lines
7.5 KiB
PHP
256 lines
7.5 KiB
PHP
<?php
|
|
|
|
namespace Controller;
|
|
|
|
use Model\Swimlane as SwimlaneModel;
|
|
|
|
/**
|
|
* Swimlanes
|
|
*
|
|
* @package controller
|
|
* @author Frederic Guillot
|
|
*/
|
|
class Swimlane extends Base
|
|
{
|
|
/**
|
|
* Get the swimlane (common method between actions)
|
|
*
|
|
* @access private
|
|
* @param integer $project_id
|
|
* @return array
|
|
*/
|
|
private function getSwimlane($project_id)
|
|
{
|
|
$swimlane = $this->swimlane->getById($this->request->getIntegerParam('swimlane_id'));
|
|
|
|
if (empty($swimlane)) {
|
|
$this->session->flashError(t('Swimlane not found.'));
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project_id)));
|
|
}
|
|
|
|
return $swimlane;
|
|
}
|
|
|
|
/**
|
|
* List of swimlanes for a given project
|
|
*
|
|
* @access public
|
|
*/
|
|
public function index(array $values = array(), array $errors = array())
|
|
{
|
|
$project = $this->getProject();
|
|
|
|
$this->response->html($this->projectLayout('swimlane/index', array(
|
|
'default_swimlane' => $this->swimlane->getDefault($project['id']),
|
|
'active_swimlanes' => $this->swimlane->getAllByStatus($project['id'], SwimlaneModel::ACTIVE),
|
|
'inactive_swimlanes' => $this->swimlane->getAllByStatus($project['id'], SwimlaneModel::INACTIVE),
|
|
'values' => $values + array('project_id' => $project['id']),
|
|
'errors' => $errors,
|
|
'project' => $project,
|
|
'title' => t('Swimlanes')
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Validate and save a new swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function save()
|
|
{
|
|
$project = $this->getProject();
|
|
|
|
$values = $this->request->getValues();
|
|
list($valid, $errors) = $this->swimlane->validateCreation($values);
|
|
|
|
if ($valid) {
|
|
|
|
if ($this->swimlane->create($project['id'], $values['name'])) {
|
|
$this->session->flash(t('Your swimlane have been created successfully.'));
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
else {
|
|
$this->session->flashError(t('Unable to create your swimlane.'));
|
|
}
|
|
}
|
|
|
|
$this->index($values, $errors);
|
|
}
|
|
|
|
/**
|
|
* Change the default swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function change()
|
|
{
|
|
$project = $this->getProject();
|
|
|
|
$values = $this->request->getValues() + array('show_default_swimlane' => 0);
|
|
list($valid,) = $this->swimlane->validateDefaultModification($values);
|
|
|
|
if ($valid) {
|
|
|
|
if ($this->swimlane->updateDefault($values)) {
|
|
$this->session->flash(t('The default swimlane have been updated successfully.'));
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
else {
|
|
$this->session->flashError(t('Unable to update this swimlane.'));
|
|
}
|
|
}
|
|
|
|
$this->index();
|
|
}
|
|
|
|
/**
|
|
* Edit a swimlane (display the form)
|
|
*
|
|
* @access public
|
|
*/
|
|
public function edit(array $values = array(), array $errors = array())
|
|
{
|
|
$project = $this->getProject();
|
|
$swimlane = $this->getSwimlane($project['id']);
|
|
|
|
$this->response->html($this->projectLayout('swimlane/edit', array(
|
|
'values' => empty($values) ? $swimlane : $values,
|
|
'errors' => $errors,
|
|
'project' => $project,
|
|
'title' => t('Swimlanes')
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Edit a swimlane (validate the form and update the database)
|
|
*
|
|
* @access public
|
|
*/
|
|
public function update()
|
|
{
|
|
$project = $this->getProject();
|
|
|
|
$values = $this->request->getValues();
|
|
list($valid, $errors) = $this->swimlane->validateModification($values);
|
|
|
|
if ($valid) {
|
|
|
|
if ($this->swimlane->rename($values['id'], $values['name'])) {
|
|
$this->session->flash(t('Swimlane updated successfully.'));
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
else {
|
|
$this->session->flashError(t('Unable to update this swimlane.'));
|
|
}
|
|
}
|
|
|
|
$this->edit($values, $errors);
|
|
}
|
|
|
|
/**
|
|
* Confirmation dialog before removing a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function confirm()
|
|
{
|
|
$project = $this->getProject();
|
|
$swimlane = $this->getSwimlane($project['id']);
|
|
|
|
$this->response->html($this->projectLayout('swimlane/remove', array(
|
|
'project' => $project,
|
|
'swimlane' => $swimlane,
|
|
'title' => t('Remove a swimlane')
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Remove a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function remove()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$project = $this->getProject();
|
|
$swimlane_id = $this->request->getIntegerParam('swimlane_id');
|
|
|
|
if ($this->swimlane->remove($project['id'], $swimlane_id)) {
|
|
$this->session->flash(t('Swimlane removed successfully.'));
|
|
} else {
|
|
$this->session->flashError(t('Unable to remove this swimlane.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
|
|
/**
|
|
* Disable a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function disable()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$project = $this->getProject();
|
|
$swimlane_id = $this->request->getIntegerParam('swimlane_id');
|
|
|
|
if ($this->swimlane->disable($project['id'], $swimlane_id)) {
|
|
$this->session->flash(t('Swimlane updated successfully.'));
|
|
} else {
|
|
$this->session->flashError(t('Unable to update this swimlane.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
|
|
/**
|
|
* Enable a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function enable()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$project = $this->getProject();
|
|
$swimlane_id = $this->request->getIntegerParam('swimlane_id');
|
|
|
|
if ($this->swimlane->enable($project['id'], $swimlane_id)) {
|
|
$this->session->flash(t('Swimlane updated successfully.'));
|
|
} else {
|
|
$this->session->flashError(t('Unable to update this swimlane.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
|
|
/**
|
|
* Move up a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function moveup()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$project = $this->getProject();
|
|
$swimlane_id = $this->request->getIntegerParam('swimlane_id');
|
|
|
|
$this->swimlane->moveUp($project['id'], $swimlane_id);
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
|
|
/**
|
|
* Move down a swimlane
|
|
*
|
|
* @access public
|
|
*/
|
|
public function movedown()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$project = $this->getProject();
|
|
$swimlane_id = $this->request->getIntegerParam('swimlane_id');
|
|
|
|
$this->swimlane->moveDown($project['id'], $swimlane_id);
|
|
$this->response->redirect($this->helper->url->to('swimlane', 'index', array('project_id' => $project['id'])));
|
|
}
|
|
}
|