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/Controller/Project.php

561 lines
15 KiB
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<?php
namespace Controller;
use Model\Task as TaskModel;
2014-10-22 19:59:09 +02:00
use Core\Translator;
2014-07-20 12:26:15 +02:00
/**
* Project controller
*
* @package controller
* @author Frederic Guillot
*/
class Project extends Base
{
/**
2014-10-22 19:59:09 +02:00
* List of projects
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function index()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$projects = $this->project->getAll($this->acl->isRegularUser());
$nb_projects = count($projects);
$active_projects = array();
$inactive_projects = array();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
foreach ($projects as $project) {
if ($project['is_active'] == 1) {
$active_projects[] = $project;
}
else {
$inactive_projects[] = $project;
}
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
$this->response->html($this->template->layout('project_index', array(
'active_projects' => $active_projects,
'inactive_projects' => $inactive_projects,
'nb_projects' => $nb_projects,
'menu' => 'projects',
'title' => t('Projects').' ('.$nb_projects.')'
)));
}
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
/**
* Show the project information page
*
* @access public
*/
public function show()
{
$project = $this->getProject();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$this->response->html($this->projectLayout('project_show', array(
'project' => $project,
'stats' => $this->project->getStats($project['id']),
'menu' => 'projects',
'title' => $project['name'],
)));
}
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
/**
* Task export
*
* @access public
*/
public function export()
{
$project = $this->getProject();
$from = $this->request->getStringParam('from');
$to = $this->request->getStringParam('to');
if ($from && $to) {
$data = $this->task->export($project['id'], $from, $to);
$this->response->forceDownload('Export_'.date('Y_m_d_H_i_S').'.csv');
$this->response->csv($data);
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
$this->response->html($this->projectLayout('project_export', array(
2014-07-20 12:26:15 +02:00
'values' => array(
'controller' => 'project',
2014-10-22 19:59:09 +02:00
'action' => 'export',
2014-07-20 12:26:15 +02:00
'project_id' => $project['id'],
2014-10-22 19:59:09 +02:00
'from' => $from,
'to' => $to,
2014-07-20 12:26:15 +02:00
),
2014-10-22 19:59:09 +02:00
'errors' => array(),
2014-07-20 12:26:15 +02:00
'menu' => 'projects',
'project' => $project,
2014-10-22 19:59:09 +02:00
'title' => t('Tasks Export')
2014-07-20 12:26:15 +02:00
)));
}
/**
2014-10-22 19:59:09 +02:00
* Public access management
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function share()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$this->response->html($this->projectLayout('project_share', array(
'project' => $project,
'menu' => 'projects',
'title' => t('Public access'),
)));
}
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
/**
* Enable public access for a project
*
* @access public
*/
public function enablePublic()
{
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
if ($project_id && $this->project->enablePublicAccess($project_id)) {
$this->session->flash(t('Project updated successfully.'));
} else {
$this->session->flashError(t('Unable to update this project.'));
}
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$this->response->redirect('?controller=project&action=share&project_id='.$project_id);
2014-07-20 12:26:15 +02:00
}
/**
2014-10-22 19:59:09 +02:00
* Disable public access for a project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function disablePublic()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
if ($project_id && $this->project->disablePublicAccess($project_id)) {
$this->session->flash(t('Project updated successfully.'));
} else {
$this->session->flashError(t('Unable to update this project.'));
}
$this->response->redirect('?controller=project&action=share&project_id='.$project_id);
2014-07-20 12:26:15 +02:00
}
/**
2014-10-22 19:59:09 +02:00
* Display a form to edit a project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function edit()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
$this->response->html($this->projectLayout('project_edit', array(
2014-07-20 12:26:15 +02:00
'errors' => array(),
2014-10-22 19:59:09 +02:00
'values' => $project,
'project' => $project,
2014-07-20 12:26:15 +02:00
'menu' => 'projects',
2014-10-22 19:59:09 +02:00
'title' => t('Edit project')
2014-07-20 12:26:15 +02:00
)));
}
/**
2014-10-22 19:59:09 +02:00
* Validate and update a project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function update()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
$values = $this->request->getValues() + array('is_active' => 0);
list($valid, $errors) = $this->project->validateModification($values);
2014-07-20 12:26:15 +02:00
if ($valid) {
2014-10-22 19:59:09 +02:00
if ($this->project->update($values)) {
$this->session->flash(t('Project updated successfully.'));
$this->response->redirect('?controller=project&action=edit&project_id='.$project['id']);
2014-07-20 12:26:15 +02:00
}
else {
2014-10-22 19:59:09 +02:00
$this->session->flashError(t('Unable to update this project.'));
2014-07-20 12:26:15 +02:00
}
}
2014-10-22 19:59:09 +02:00
$this->response->html($this->projectLayout('project_edit', array(
2014-07-20 12:26:15 +02:00
'errors' => $errors,
'values' => $values,
2014-10-22 19:59:09 +02:00
'project' => $project,
2014-07-20 12:26:15 +02:00
'menu' => 'projects',
2014-10-22 19:59:09 +02:00
'title' => t('Edit Project')
2014-07-20 12:26:15 +02:00
)));
}
2014-10-22 19:59:09 +02:00
/**
* Users list for the selected project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function users()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$this->response->html($this->projectLayout('project_users', array(
'project' => $project,
'users' => $this->project->getAllUsers($project['id']),
2014-07-20 12:26:15 +02:00
'menu' => 'projects',
2014-10-22 19:59:09 +02:00
'title' => t('Edit project access list')
2014-07-20 12:26:15 +02:00
)));
}
/**
2014-10-22 19:59:09 +02:00
* Allow a specific user for the selected project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function allow()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$values = $this->request->getValues();
list($valid,) = $this->project->validateUserAccess($values);
2014-07-20 12:26:15 +02:00
if ($valid) {
2014-10-22 19:59:09 +02:00
if ($this->project->allowUser($values['project_id'], $values['user_id'])) {
2014-07-20 12:26:15 +02:00
$this->session->flash(t('Project updated successfully.'));
}
else {
$this->session->flashError(t('Unable to update this project.'));
}
}
2014-10-22 19:59:09 +02:00
$this->response->redirect('?controller=project&action=users&project_id='.$values['project_id']);
2014-07-20 12:26:15 +02:00
}
/**
2014-10-22 19:59:09 +02:00
* Revoke user access
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function revoke()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$this->checkCSRFParam();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$values = array(
'project_id' => $this->request->getIntegerParam('project_id'),
'user_id' => $this->request->getIntegerParam('user_id'),
);
list($valid,) = $this->project->validateUserAccess($values);
if ($valid) {
if ($this->project->revokeUser($values['project_id'], $values['user_id'])) {
$this->session->flash(t('Project updated successfully.'));
}
else {
$this->session->flashError(t('Unable to update this project.'));
}
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
$this->response->redirect('?controller=project&action=users&project_id='.$values['project_id']);
}
/**
* Confirmation dialog before to remove a project
*
* @access public
*/
public function confirmRemove()
{
$project = $this->getProject();
$this->response->html($this->projectLayout('project_remove', array(
2014-07-20 12:26:15 +02:00
'project' => $project,
'menu' => 'projects',
'title' => t('Remove project')
)));
}
/**
* Remove a project
*
* @access public
*/
public function remove()
{
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
if ($project_id && $this->project->remove($project_id)) {
$this->session->flash(t('Project removed successfully.'));
} else {
$this->session->flashError(t('Unable to remove this project.'));
}
$this->response->redirect('?controller=project');
}
/**
2014-10-22 19:59:09 +02:00
* Confirmation dialog before to clone a project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function confirmDuplicate()
{
$project = $this->getProject();
$this->response->html($this->projectLayout('project_duplicate', array(
'project' => $project,
'menu' => 'projects',
'title' => t('Clone this project')
)));
}
/**
* Duplicate a project
*
* @author Antonio Rabelo
* @access public
*/
public function duplicate()
2014-07-20 12:26:15 +02:00
{
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
2014-10-22 19:59:09 +02:00
if ($project_id && $this->project->duplicate($project_id)) {
$this->session->flash(t('Project cloned successfully.'));
2014-07-20 12:26:15 +02:00
} else {
2014-10-22 19:59:09 +02:00
$this->session->flashError(t('Unable to clone this project.'));
2014-07-20 12:26:15 +02:00
}
$this->response->redirect('?controller=project');
}
2014-10-22 19:59:09 +02:00
/**
* Confirmation dialog before to disable a project
*
* @access public
*/
public function confirmDisable()
{
$project = $this->getProject();
$this->response->html($this->projectLayout('project_disable', array(
'project' => $project,
'menu' => 'projects',
'title' => t('Project activation')
)));
}
2014-07-20 12:26:15 +02:00
/**
* Disable a project
*
* @access public
*/
public function disable()
{
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
if ($project_id && $this->project->disable($project_id)) {
$this->session->flash(t('Project disabled successfully.'));
} else {
$this->session->flashError(t('Unable to disable this project.'));
}
2014-10-22 19:59:09 +02:00
$this->response->redirect('?controller=project&action=show&project_id='.$project_id);
2014-07-20 12:26:15 +02:00
}
/**
2014-10-22 19:59:09 +02:00
* Confirmation dialog before to enable a project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function confirmEnable()
{
$project = $this->getProject();
$this->response->html($this->projectLayout('project_enable', array(
'project' => $project,
'menu' => 'projects',
'title' => t('Project activation')
)));
}
/**
* Enable a project
*
* @access public
*/
public function enable()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$this->checkCSRFParam();
$project_id = $this->request->getIntegerParam('project_id');
if ($project_id && $this->project->enable($project_id)) {
$this->session->flash(t('Project activated successfully.'));
} else {
$this->session->flashError(t('Unable to activate this project.'));
}
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$this->response->redirect('?controller=project&action=show&project_id='.$project_id);
}
/**
* RSS feed for a project
*
* @access public
*/
public function feed()
{
$token = $this->request->getStringParam('token');
$project = $this->project->getByToken($token);
// Token verification
2014-07-20 12:26:15 +02:00
if (! $project) {
2014-10-22 19:59:09 +02:00
$this->forbidden(true);
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
$this->response->xml($this->template->load('project_feed', array(
'events' => $this->project->getActivity($project['id']),
2014-07-20 12:26:15 +02:00
'project' => $project,
2014-10-22 19:59:09 +02:00
)));
}
/**
* Activity page for a project
*
* @access public
*/
public function activity()
{
$project = $this->getProject();
$this->response->html($this->template->layout('project_activity', array(
'events' => $this->project->getActivity($project['id']),
2014-07-20 12:26:15 +02:00
'menu' => 'projects',
2014-10-22 19:59:09 +02:00
'project' => $project,
'title' => t('%s\'s activity', $project['name'])
2014-07-20 12:26:15 +02:00
)));
}
/**
2014-10-22 19:59:09 +02:00
* Task search for a given project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function search()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
$search = $this->request->getStringParam('search');
$tasks = array();
$nb_tasks = 0;
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
if ($search !== '') {
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$filters = array(
array('column' => 'project_id', 'operator' => 'eq', 'value' => $project['id']),
'or' => array(
array('column' => 'title', 'operator' => 'like', 'value' => '%'.$search.'%'),
//array('column' => 'description', 'operator' => 'like', 'value' => '%'.$search.'%'),
)
);
$tasks = $this->task->find($filters);
$nb_tasks = count($tasks);
2014-07-20 12:26:15 +02:00
}
2014-10-22 19:59:09 +02:00
$this->response->html($this->template->layout('project_search', array(
'tasks' => $tasks,
'nb_tasks' => $nb_tasks,
'values' => array(
'search' => $search,
'controller' => 'project',
'action' => 'search',
'project_id' => $project['id'],
),
'menu' => 'projects',
'project' => $project,
'columns' => $this->board->getColumnsList($project['id']),
'categories' => $this->category->getList($project['id'], false),
'title' => $project['name'].($nb_tasks > 0 ? ' ('.$nb_tasks.')' : '')
)));
2014-07-20 12:26:15 +02:00
}
/**
2014-10-22 19:59:09 +02:00
* List of completed tasks for a given project
2014-07-20 12:26:15 +02:00
*
* @access public
*/
2014-10-22 19:59:09 +02:00
public function tasks()
2014-07-20 12:26:15 +02:00
{
2014-10-22 19:59:09 +02:00
$project = $this->getProject();
2014-07-20 12:26:15 +02:00
2014-10-22 19:59:09 +02:00
$filters = array(
array('column' => 'project_id', 'operator' => 'eq', 'value' => $project['id']),
array('column' => 'is_active', 'operator' => 'eq', 'value' => TaskModel::STATUS_CLOSED),
2014-07-20 12:26:15 +02:00
);
2014-10-22 19:59:09 +02:00
$tasks = $this->task->find($filters);
$nb_tasks = count($tasks);
$this->response->html($this->template->layout('project_tasks', array(
'menu' => 'projects',
'project' => $project,
'columns' => $this->board->getColumnsList($project['id']),
'categories' => $this->category->getList($project['id'], false),
'tasks' => $tasks,
'nb_tasks' => $nb_tasks,
'title' => $project['name'].' ('.$nb_tasks.')'
)));
}
/**
* Display a form to create a new project
*
* @access public
*/
public function create()
{
$this->response->html($this->template->layout('project_new', array(
'errors' => array(),
'values' => array(),
'menu' => 'projects',
'title' => t('New project')
)));
}
/**
* Validate and save a new project
*
* @access public
*/
public function save()
{
$values = $this->request->getValues();
list($valid, $errors) = $this->project->validateCreation($values);
2014-07-20 12:26:15 +02:00
if ($valid) {
2014-10-22 19:59:09 +02:00
if ($this->project->create($values)) {
$this->session->flash(t('Your project have been created successfully.'));
$this->response->redirect('?controller=project');
2014-07-20 12:26:15 +02:00
}
else {
2014-10-22 19:59:09 +02:00
$this->session->flashError(t('Unable to create your project.'));
2014-07-20 12:26:15 +02:00
}
}
2014-10-22 19:59:09 +02:00
$this->response->html($this->template->layout('project_new', array(
'errors' => $errors,
'values' => $values,
'menu' => 'projects',
'title' => t('New Project')
)));
2014-07-20 12:26:15 +02:00
}
}