passman/lib/Service/FileService.php

48 lines
1 KiB
PHP
Raw Normal View History

2016-09-15 00:57:38 +08:00
<?php
/**
* Nextcloud - passman
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Sander Brand <brantje@gmail.com>
* @copyright Sander Brand 2016
*/
namespace OCA\Passman\Service;
use OCP\IConfig;
use OCP\AppFramework\Db\DoesNotExistException;
use OCA\Passman\Db\FileMapper;
class FileService {
private $fileMapper;
public function __construct(FileMapper $fileMapper) {
$this->fileMapper = $fileMapper;
}
2016-10-05 20:09:15 +08:00
public function getFile($fileId, $userId = null) {
return $this->fileMapper->getFile($fileId, $userId);
2016-09-15 00:57:38 +08:00
}
2016-10-05 22:58:19 +08:00
public function getFileByGuid($file_guid, $userId = null) {
return $this->fileMapper->getFileByGuid($file_guid, $userId);
}
2016-09-15 00:57:38 +08:00
public function createFile($file, $userId) {
return $this->fileMapper->create($file, $userId);
}
public function deleteFile($file_id, $userId) {
return $this->fileMapper->deleteFile($file_id, $userId);
}
2016-10-05 20:09:15 +08:00
public function updateFile($file_id) {
return $this->fileMapper->updateFile($file_id);
}
2016-09-15 00:57:38 +08:00
}