mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
98 lines
2.8 KiB
PHP
98 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Controller;
|
|
|
|
/**
|
|
* Task File Controller
|
|
*
|
|
* @package Kanboard\Controller
|
|
* @author Frederic Guillot
|
|
*/
|
|
class TaskFileController extends BaseController
|
|
{
|
|
/**
|
|
* Screenshot
|
|
*
|
|
* @access public
|
|
*/
|
|
public function screenshot()
|
|
{
|
|
$task = $this->getTask();
|
|
|
|
if ($this->request->isPost() && $this->taskFileModel->uploadScreenshot($task['id'], $this->request->getValue('screenshot')) !== false) {
|
|
$this->flash->success(t('Screenshot uploaded successfully.'));
|
|
return $this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), true);
|
|
}
|
|
|
|
return $this->response->html($this->template->render('task_file/screenshot', array(
|
|
'task' => $task,
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* File upload form
|
|
*
|
|
* @access public
|
|
*/
|
|
public function create()
|
|
{
|
|
$task = $this->getTask();
|
|
|
|
$this->response->html($this->template->render('task_file/create', array(
|
|
'task' => $task,
|
|
'max_size' => $this->helper->text->phpToBytes(ini_get('upload_max_filesize')),
|
|
)));
|
|
}
|
|
|
|
/**
|
|
* File upload (save files)
|
|
*
|
|
* @access public
|
|
*/
|
|
public function save()
|
|
{
|
|
$task = $this->getTask();
|
|
|
|
if (! $this->taskFileModel->uploadFiles($task['id'], $this->request->getFileInfo('files'))) {
|
|
$this->flash->failure(t('Unable to upload the file.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), true);
|
|
}
|
|
|
|
/**
|
|
* Remove a file
|
|
*
|
|
* @access public
|
|
*/
|
|
public function remove()
|
|
{
|
|
$this->checkCSRFParam();
|
|
$task = $this->getTask();
|
|
$file = $this->taskFileModel->getById($this->request->getIntegerParam('file_id'));
|
|
|
|
if ($file['task_id'] == $task['id'] && $this->taskFileModel->remove($file['id'])) {
|
|
$this->flash->success(t('File removed successfully.'));
|
|
} else {
|
|
$this->flash->failure(t('Unable to remove this file.'));
|
|
}
|
|
|
|
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])));
|
|
}
|
|
|
|
/**
|
|
* Confirmation dialog before removing a file
|
|
*
|
|
* @access public
|
|
*/
|
|
public function confirm()
|
|
{
|
|
$task = $this->getTask();
|
|
$file = $this->taskFileModel->getById($this->request->getIntegerParam('file_id'));
|
|
|
|
$this->response->html($this->template->render('task_file/remove', array(
|
|
'task' => $task,
|
|
'file' => $file,
|
|
)));
|
|
}
|
|
}
|