diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-06-25 14:34:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-06-25 14:34:46 -0400 |
commit | 922e0fb6de06a98774418612e0b0f75af72b6dbb (patch) | |
tree | dff0b7c2c8cd0515b22c8f320cdcf58c47515a98 /app/Api/TaskFileApi.php | |
parent | fc93203e4db044d37c1686fef0efb1ac1d6ac4b8 (diff) |
Rewrite integration tests to run with Docker containers
Diffstat (limited to 'app/Api/TaskFileApi.php')
-rw-r--r-- | app/Api/TaskFileApi.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/app/Api/TaskFileApi.php b/app/Api/TaskFileApi.php new file mode 100644 index 00000000..7b27477c --- /dev/null +++ b/app/Api/TaskFileApi.php @@ -0,0 +1,59 @@ +<?php + +namespace Kanboard\Api; + +use Kanboard\Core\ObjectStorage\ObjectStorageException; + +/** + * Task File API controller + * + * @package Kanboard\Api + * @author Frederic Guillot + */ +class TaskFileApi extends BaseApi +{ + public function getTaskFile($file_id) + { + return $this->taskFileModel->getById($file_id); + } + + public function getAllTaskFiles($task_id) + { + return $this->taskFileModel->getAll($task_id); + } + + public function downloadTaskFile($file_id) + { + try { + $file = $this->taskFileModel->getById($file_id); + + if (! empty($file)) { + return base64_encode($this->objectStorage->get($file['path'])); + } + } catch (ObjectStorageException $e) { + $this->logger->error($e->getMessage()); + } + + return ''; + } + + public function createTaskFile($project_id, $task_id, $filename, $blob) + { + try { + return $this->taskFileModel->uploadContent($task_id, $filename, $blob); + } catch (ObjectStorageException $e) { + $this->logger->error($e->getMessage()); + return false; + } + } + + public function removeTaskFile($file_id) + { + return $this->taskFileModel->remove($file_id); + } + + public function removeAllTaskFiles($task_id) + { + return $this->taskFileModel->removeAll($task_id); + } +} |