mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-02-27 21:24:06 +01:00
210 lines
5.2 KiB
PHP
210 lines
5.2 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2020, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Services\Account;
|
|
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
use SP\Core\Exceptions\CheckException;
|
|
use SP\Core\Exceptions\ConstraintException;
|
|
use SP\Core\Exceptions\InvalidImageException;
|
|
use SP\Core\Exceptions\QueryException;
|
|
use SP\DataModel\FileData;
|
|
use SP\DataModel\FileExtData;
|
|
use SP\DataModel\ItemSearchData;
|
|
use SP\Repositories\Account\AccountFileRepository;
|
|
use SP\Repositories\NoSuchItemException;
|
|
use SP\Services\Service;
|
|
use SP\Services\ServiceException;
|
|
use SP\Storage\Database\QueryResult;
|
|
use SP\Util\FileUtil;
|
|
use SP\Util\ImageUtil;
|
|
|
|
/**
|
|
* Class AccountFileService
|
|
*
|
|
* @package SP\Services\Account
|
|
*/
|
|
final class AccountFileService extends Service
|
|
{
|
|
/**
|
|
* @var AccountFileRepository
|
|
*/
|
|
protected $accountFileRepository;
|
|
|
|
/**
|
|
* Creates an item
|
|
*
|
|
* @param FileData $itemData
|
|
*
|
|
* @return int
|
|
* @throws InvalidImageException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function create($itemData)
|
|
{
|
|
if (FileUtil::isImage($itemData)) {
|
|
try {
|
|
$imageUtil = $this->dic->get(ImageUtil::class);
|
|
$itemData->setThumb($imageUtil->createThumbnail($itemData->getContent()));
|
|
} catch (CheckException $e) {
|
|
processException($e);
|
|
|
|
$itemData->setThumb('no_thumb');
|
|
}
|
|
} else {
|
|
$itemData->setThumb('no_thumb');
|
|
}
|
|
|
|
return $this->accountFileRepository->create($itemData);
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
*
|
|
* @return FileExtData
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getInfoById($id)
|
|
{
|
|
return $this->accountFileRepository->getInfoById($id)->getData();
|
|
}
|
|
|
|
/**
|
|
* Returns the item for given id
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return FileExtData
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
return $this->accountFileRepository->getById($id)->getData();
|
|
}
|
|
|
|
/**
|
|
* Returns all the items
|
|
*
|
|
* @return FileExtData[]
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getAll()
|
|
{
|
|
return $this->accountFileRepository->getAll()->getDataAsArray();
|
|
}
|
|
|
|
/**
|
|
* Returns all the items for given ids
|
|
*
|
|
* @param array $ids
|
|
*
|
|
* @return FileExtData[]
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getByIdBatch(array $ids)
|
|
{
|
|
return $this->accountFileRepository->getByIdBatch($ids)->getDataAsArray();
|
|
}
|
|
|
|
/**
|
|
* Deletes all the items for given ids
|
|
*
|
|
* @param array $ids
|
|
*
|
|
* @return int
|
|
* @throws ServiceException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function deleteByIdBatch(array $ids)
|
|
{
|
|
if (($count = $this->accountFileRepository->deleteByIdBatch($ids)) !== count($ids)) {
|
|
throw new ServiceException(__u('Error while deleting the files'), ServiceException::WARNING);
|
|
}
|
|
|
|
return $count;
|
|
}
|
|
|
|
/**
|
|
* Deletes an item
|
|
*
|
|
* @param $id
|
|
*
|
|
* @return AccountFileService
|
|
* @throws NoSuchItemException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
if ($this->accountFileRepository->delete($id) === 0) {
|
|
throw new NoSuchItemException(__u('File not found'));
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Searches for items by a given filter
|
|
*
|
|
* @param ItemSearchData $searchData
|
|
*
|
|
* @return QueryResult
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function search(ItemSearchData $searchData)
|
|
{
|
|
return $this->accountFileRepository->search($searchData);
|
|
}
|
|
|
|
/**
|
|
* Returns the item for given id
|
|
*
|
|
* @param int $id
|
|
*
|
|
* @return FileData[]
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getByAccountId($id)
|
|
{
|
|
return $this->accountFileRepository->getByAccountId($id)->getDataAsArray();
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerExceptionInterface
|
|
* @throws NotFoundExceptionInterface
|
|
*/
|
|
protected function initialize()
|
|
{
|
|
$this->accountFileRepository = $this->dic->get(AccountFileRepository::class);
|
|
}
|
|
} |