mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 15:44:07 +01:00
Controllers are being splited into commands to better dependency management. Signed-off-by: Rubén D <nuxsmin@syspass.org>
194 lines
6.1 KiB
PHP
194 lines
6.1 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2022, 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\Domain\Plugin\Services;
|
|
|
|
use Defuse\Crypto\Exception\CryptoException;
|
|
use SP\Core\Application;
|
|
use SP\Core\Exceptions\ConstraintException;
|
|
use SP\Core\Exceptions\NoSuchPropertyException;
|
|
use SP\Core\Exceptions\QueryException;
|
|
use SP\Core\Exceptions\SPException;
|
|
use SP\Domain\Common\Services\Service;
|
|
use SP\Domain\Plugin\In\PluginDataRepositoryInterface;
|
|
use SP\Domain\Plugin\PluginDataServiceInterface;
|
|
use SP\Infrastructure\Common\Repositories\NoSuchItemException;
|
|
use SP\Infrastructure\Database\QueryResult;
|
|
use SP\Infrastructure\Plugin\Repositories\PluginDataModel;
|
|
use SP\Infrastructure\Plugin\Repositories\PluginDataRepository;
|
|
|
|
/**
|
|
* Class PluginDataService
|
|
*
|
|
* @package SP\Domain\Plugin\Services
|
|
*/
|
|
final class PluginDataService extends Service implements PluginDataServiceInterface
|
|
{
|
|
private PluginDataRepository $pluginDataRepository;
|
|
|
|
public function __construct(Application $application, PluginDataRepositoryInterface $pluginDataRepository)
|
|
{
|
|
parent::__construct($application);
|
|
|
|
$this->pluginDataRepository = $pluginDataRepository;
|
|
}
|
|
|
|
|
|
/**
|
|
* Creates an item
|
|
*
|
|
* @throws CryptoException
|
|
* @throws ConstraintException
|
|
* @throws NoSuchPropertyException
|
|
* @throws QueryException
|
|
* @throws \SP\Domain\Common\Services\ServiceException
|
|
*/
|
|
public function create(PluginDataModel $itemData): QueryResult
|
|
{
|
|
return $this->pluginDataRepository->create($itemData->encrypt($this->getMasterKeyFromContext()));
|
|
}
|
|
|
|
/**
|
|
* Updates an item
|
|
*
|
|
* @throws CryptoException
|
|
* @throws ConstraintException
|
|
* @throws NoSuchPropertyException
|
|
* @throws QueryException
|
|
* @throws \SP\Domain\Common\Services\ServiceException
|
|
*/
|
|
public function update(PluginDataModel $itemData): int
|
|
{
|
|
return $this->pluginDataRepository->update($itemData->encrypt($this->getMasterKeyFromContext()));
|
|
}
|
|
|
|
/**
|
|
* Returns the item for given plugin and id
|
|
*
|
|
* @throws NoSuchItemException
|
|
* @throws CryptoException
|
|
* @throws ConstraintException
|
|
* @throws NoSuchPropertyException
|
|
* @throws QueryException
|
|
* @throws \SP\Domain\Common\Services\ServiceException
|
|
*/
|
|
public function getByItemId(string $name, int $id): PluginDataModel
|
|
{
|
|
$result = $this->pluginDataRepository->getByItemId($name, $id);
|
|
|
|
if ($result->getNumRows() === 0) {
|
|
throw new NoSuchItemException(__u('Plugin\'s data not found'), SPException::INFO);
|
|
}
|
|
|
|
/** @var PluginDataModel $itemData */
|
|
$itemData = $result->getData();
|
|
|
|
return $itemData->decrypt($this->getMasterKeyFromContext());
|
|
}
|
|
|
|
/**
|
|
* Returns the item for given id
|
|
*
|
|
* @return \SP\Infrastructure\Plugin\Repositories\PluginDataModel[]
|
|
* @throws \Defuse\Crypto\Exception\CryptoException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\NoSuchPropertyException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Infrastructure\Common\Repositories\NoSuchItemException
|
|
* @throws \SP\Domain\Common\Services\ServiceException
|
|
*/
|
|
public function getById(string $id): array
|
|
{
|
|
$result = $this->pluginDataRepository->getById($id);
|
|
|
|
if ($result->getNumRows() === 0) {
|
|
throw new NoSuchItemException(__u('Plugin\'s data not found'), SPException::INFO);
|
|
}
|
|
|
|
$data = $result->getDataAsArray();
|
|
|
|
array_walk(
|
|
$data,
|
|
function ($itemData) {
|
|
/** @var PluginDataModel $itemData */
|
|
$itemData->decrypt($this->getMasterKeyFromContext());
|
|
}
|
|
);
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Returns all the items
|
|
*
|
|
* @return \SP\Infrastructure\Plugin\Repositories\PluginDataModel[]
|
|
* @throws \Defuse\Crypto\Exception\CryptoException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\NoSuchPropertyException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Domain\Common\Services\ServiceException
|
|
*/
|
|
public function getAll(): array
|
|
{
|
|
$data = $this->pluginDataRepository->getAll()->getDataAsArray();
|
|
|
|
array_walk(
|
|
$data,
|
|
function ($itemData) {
|
|
/** @var \SP\Infrastructure\Plugin\Repositories\PluginDataModel $itemData */
|
|
$itemData->decrypt($this->getMasterKeyFromContext());
|
|
}
|
|
);
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Deletes an item
|
|
*
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Infrastructure\Common\Repositories\NoSuchItemException
|
|
*/
|
|
public function delete(string $id): void
|
|
{
|
|
if ($this->pluginDataRepository->delete($id) === 0) {
|
|
throw new NoSuchItemException(__u('Plugin\'s data not found'), SPException::INFO);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Deletes an item
|
|
*
|
|
* @throws NoSuchItemException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function deleteByItemId(string $name, int $itemId): void
|
|
{
|
|
if ($this->pluginDataRepository->deleteByItemId($name, $itemId) === 0) {
|
|
throw new NoSuchItemException(__u('Plugin\'s data not found'), SPException::INFO);
|
|
}
|
|
}
|
|
} |