176 lines
4.6 KiB
PHP
176 lines
4.6 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Controller;
|
|
|
|
use Kanboard\Core\Controller\AccessForbiddenException;
|
|
use Kanboard\Core\Controller\PageNotFoundException;
|
|
|
|
/**
|
|
* Comment Controller
|
|
*
|
|
* @package Kanboard\Controller
|
|
* @author Frederic Guillot
|
|
*/
|
|
class CommentController extends BaseController
|
|
{
|
|
/**
|
|
* Add comment form
|
|
*
|
|
* @access public
|
|
* @param array $values
|
|
* @param array $errors
|
|
* @throws AccessForbiddenException
|
|
* @throws PageNotFoundException
|
|
*/
|
|
public function create(array $values = array(), array $errors = array())
|
|
{
|
|
$task = $this->getTask();
|
|
|
|
$this->response->html($this->helper->layout->task('comment/create', array(
|
|
'values' => $values,
|
|
'errors' => $errors,
|
|
'task' => $task
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Add a comment
|
|
*
|
|
* @access public
|
|
*/
|
|
public function save()
|
|
{
|
|
$task = $this->getTask();
|
|
$values = $this->request->getValues();
|
|
$values['task_id'] = $task['id'];
|
|
$values['user_id'] = $this->userSession->getId();
|
|
|
|
list($valid, $errors) = $this->commentValidator->validateCreation($values);
|
|
|
|
if ($valid) {
|
|
if ($this->commentModel->create($values) !== false) {
|
|
$this->flash->success(t('Comment added successfully.'));
|
|
} else {
|
|
$this->flash->failure(t('Unable to create your comment.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id']), 'comments'), true);
|
|
} else {
|
|
$this->create($values, $errors);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Edit a comment
|
|
*
|
|
* @access public
|
|
* @param array $values
|
|
* @param array $errors
|
|
* @throws AccessForbiddenException
|
|
* @throws PageNotFoundException
|
|
*/
|
|
public function edit(array $values = array(), array $errors = array())
|
|
{
|
|
$task = $this->getTask();
|
|
$comment = $this->getComment($task);
|
|
|
|
if (empty($values)) {
|
|
$values = $comment;
|
|
}
|
|
|
|
$this->response->html($this->template->render('comment/edit', array(
|
|
'values' => $values,
|
|
'errors' => $errors,
|
|
'comment' => $comment,
|
|
'task' => $task,
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Update and validate a comment
|
|
*
|
|
* @access public
|
|
*/
|
|
public function update()
|
|
{
|
|
$task = $this->getTask();
|
|
$comment = $this->getComment($task);
|
|
|
|
$values = $this->request->getValues();
|
|
$values['id'] = $comment['id'];
|
|
$values['task_id'] = $task['id'];
|
|
$values['user_id'] = $comment['user_id'];
|
|
|
|
list($valid, $errors) = $this->commentValidator->validateModification($values);
|
|
|
|
if ($valid) {
|
|
if ($this->commentModel->update($values)) {
|
|
$this->flash->success(t('Comment updated successfully.'));
|
|
} else {
|
|
$this->flash->failure(t('Unable to update your comment.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'])), true);
|
|
return;
|
|
}
|
|
|
|
$this->edit($values, $errors);
|
|
}
|
|
|
|
/**
|
|
* Confirmation dialog before removing a comment
|
|
*
|
|
* @access public
|
|
*/
|
|
public function confirm()
|
|
{
|
|
$task = $this->getTask();
|
|
$comment = $this->getComment($task);
|
|
|
|
$this->response->html($this->template->render('comment/remove', array(
|
|
'comment' => $comment,
|
|
'task' => $task,
|
|
'title' => t('Remove a comment')
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* Remove a comment
|
|
*
|
|
* @access public
|
|
*/
|
|
public function remove()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$task = $this->getTask();
|
|
$comment = $this->getComment($task);
|
|
|
|
if ($this->commentModel->remove($comment['id'])) {
|
|
$this->flash->success(t('Comment removed successfully.'));
|
|
} else {
|
|
$this->flash->failure(t('Unable to remove this comment.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id']), 'comments'), true);
|
|
}
|
|
|
|
/**
|
|
* Toggle comment sorting
|
|
*
|
|
* @access public
|
|
*/
|
|
public function toggleSorting()
|
|
{
|
|
$this->checkReusableGETCSRFParam();
|
|
$task = $this->getTask();
|
|
$this->helper->comment->toggleSorting();
|
|
|
|
$this->response->redirect($this->helper->url->to(
|
|
'TaskViewController',
|
|
'show',
|
|
array('task_id' => $task['id']),
|
|
'comments'
|
|
));
|
|
}
|
|
}
|