mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
53 lines
1 KiB
PHP
53 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Api;
|
|
|
|
/**
|
|
* File API controller
|
|
*
|
|
* @package api
|
|
* @author Frederic Guillot
|
|
*/
|
|
class File extends \Core\Base
|
|
{
|
|
public function getFile($file_id)
|
|
{
|
|
return $this->file->getById($file_id);
|
|
}
|
|
|
|
public function getAllFiles($task_id)
|
|
{
|
|
return $this->file->getAll($task_id);
|
|
}
|
|
|
|
public function downloadFile($file_id)
|
|
{
|
|
$file = $this->file->getById($file_id);
|
|
|
|
if (! empty($file)) {
|
|
|
|
$filename = FILES_DIR.$file['path'];
|
|
|
|
if (file_exists($filename)) {
|
|
return base64_encode(file_get_contents($filename));
|
|
}
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
public function createFile($project_id, $task_id, $filename, $blob)
|
|
{
|
|
return $this->file->uploadContent($project_id, $task_id, $filename, $blob);
|
|
}
|
|
|
|
public function removeFile($file_id)
|
|
{
|
|
return $this->file->remove($file_id);
|
|
}
|
|
|
|
public function removeAllFiles($task_id)
|
|
{
|
|
return $this->file->removeAll($task_id);
|
|
}
|
|
}
|