Files
quicknotes/lib/Service/FileService.php
2020-11-12 19:31:45 -03:00

141 lines
3.9 KiB
PHP

<?php declare(strict_types=1);
/**
* @copyright Copyright (c) 2020 Matias De lellis <mati86dl@gmail.com>
*
* @author Matias De lellis <mati86dl@gmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\QuickNotes\Service;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\IURLGenerator;
use OCP\Files\File;
use OCP\Files\Folder;
use OCP\Files\Node;
use OCP\Files\IRootFolder;
use OCP\Files\NotFoundException;
use OCA\QuickNotes\Service\SettingsService;
class FileService {
/** @var string|null */
private $userId;
/** @var IRootFolder */
private $rootFolder;
/** @var IURLGenerator */
private $urlGenerator;
/** @var ITimeFactory */
private $timeFactory;
/** @var SettingsService */
private SettingsService $settingsService;
public function __construct($userId,
IRootFolder $rootFolder,
IURLGenerator $urlGenerator,
ITimeFactory $timeFactory,
SettingsService $settingsService)
{
$this->userId = $userId;
$this->rootFolder = $rootFolder;
$this->urlGenerator = $urlGenerator;
$this->timeFactory = $timeFactory;
$this->settingsService = $settingsService;
}
/**
* Get thumbnail of the give file id
*
* @param int $fileId file id to show
* @param int $sideSize side lenght to show
*/
public function getPreviewUrl(int $fileId, int $sideSize): ?string {
$userFolder = $this->rootFolder->getUserFolder($this->userId);
$file = current($userFolder->getById($fileId));
if (!($file instanceof File)) {
return null;
}
return $this->urlGenerator->getAbsoluteURL('index.php/core/preview?fileId=' . $fileId .'&x=' . $sideSize . '&y=' . $sideSize . '&a=false&v=' . $file->getETag());
}
/**
* Redirects to the file list and highlight the given file id
*
* @param int $fileId file id to show
*/
public function getRedirectToFileUrl(int $fileId): ?string {
$userFolder = $this->rootFolder->getUserFolder($this->userId);
$file = current($userFolder->getById($fileId));
if (!($file instanceof File)) {
return null;
}
$params = [];
$params['dir'] = $userFolder->getRelativePath($file->getParent()->getPath());
$params['scrollto'] = $file->getName();
return $this->urlGenerator->linkToRoute('files.view.index', $params);
}
/**
* Upload attachment and return fileId
*/
public function upload($fileName, $fileContent): int {
$userFolder = $this->rootFolder->getUserFolder($this->userId);
$ts = $this->timeFactory->getTime();
$dt = new \DateTime();
$dt->setTimestamp($ts);
$secureFileName = $dt->format('YmdHis') . ' - ' . $fileName;
$attachmentsFolder = $this->getAttachmentsFolder();
$file = $attachmentsFolder->newFile($secureFileName);
$file->putContent($fileContent);
return $file->getId();
}
/**
* @return \OCP\Files\Folder
*/
private function getAttachmentsFolder() {
$userFolder = $this->rootFolder->getUserFolder($this->userId);
$attachmentsFolder = $this->settingsService->getAttachmentsFolder();
try {
$attachmentsFolderNode = $userFolder->get($attachmentsFolder);
} catch (NotFoundException $e) {
$attachmentsFolderNode = $userFolder->newFolder($attachmentsFolder);
}
return $attachmentsFolderNode;
}
}