mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 08:56:59 +01:00
* [MOD] CORS headers. * [MOD] Improve Forwarded header lookup. * [ADD] Create interface for configuration data. Signed-off-by: Rubén D <nuxsmin@syspass.org>
198 lines
5.1 KiB
PHP
198 lines
5.1 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2021, 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\Client;
|
|
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
use SP\Core\Exceptions\ConstraintException;
|
|
use SP\Core\Exceptions\QueryException;
|
|
use SP\Core\Exceptions\SPException;
|
|
use SP\DataModel\ClientData;
|
|
use SP\DataModel\ItemData;
|
|
use SP\DataModel\ItemSearchData;
|
|
use SP\Repositories\Client\ClientRepository;
|
|
use SP\Repositories\DuplicatedItemException;
|
|
use SP\Repositories\NoSuchItemException;
|
|
use SP\Services\Account\AccountFilterUser;
|
|
use SP\Services\Service;
|
|
use SP\Services\ServiceException;
|
|
use SP\Services\ServiceItemTrait;
|
|
use SP\Storage\Database\QueryResult;
|
|
|
|
/**
|
|
* Class ClientService
|
|
*
|
|
* @package SP\Services\Client
|
|
*/
|
|
final class ClientService extends Service
|
|
{
|
|
use ServiceItemTrait;
|
|
|
|
protected ?ClientRepository $clientRepository = null;
|
|
|
|
/**
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function search(ItemSearchData $itemSearchData): QueryResult
|
|
{
|
|
return $this->clientRepository->search($itemSearchData);
|
|
}
|
|
|
|
/**
|
|
* @throws NoSuchItemException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getById(int $id): ClientData
|
|
{
|
|
$result = $this->clientRepository->getById($id);
|
|
|
|
if ($result->getNumRows() === 0) {
|
|
throw new NoSuchItemException
|
|
(__u('Client not found'),
|
|
SPException::INFO
|
|
);
|
|
}
|
|
|
|
return $result->getData();
|
|
}
|
|
|
|
/**
|
|
* Returns the item for given name
|
|
*
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
* @throws NoSuchItemException
|
|
*/
|
|
public function getByName(string $name): ClientData
|
|
{
|
|
if (($result = $this->clientRepository->getByName($name))->getNumRows() === 0) {
|
|
throw new NoSuchItemException(
|
|
__u('Client not found'),
|
|
SPException::INFO
|
|
);
|
|
}
|
|
|
|
return $result->getData();
|
|
}
|
|
|
|
/**
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Repositories\NoSuchItemException
|
|
*/
|
|
public function delete(int $id): ClientService
|
|
{
|
|
if ($this->clientRepository->delete($id) === 0) {
|
|
throw new NoSuchItemException(
|
|
__u('Client not found'),
|
|
SPException::INFO
|
|
);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param int[] $ids
|
|
*
|
|
* @throws ServiceException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function deleteByIdBatch(array $ids): int
|
|
{
|
|
$count = $this->clientRepository->deleteByIdBatch($ids);
|
|
|
|
if ($count !== count($ids)) {
|
|
throw new ServiceException(
|
|
__u('Error while deleting the clients'),
|
|
SPException::WARNING
|
|
);
|
|
}
|
|
|
|
return $count;
|
|
}
|
|
|
|
/**
|
|
* @throws SPException
|
|
* @throws DuplicatedItemException
|
|
*/
|
|
public function create($itemData): int
|
|
{
|
|
return $this->clientRepository->create($itemData);
|
|
}
|
|
|
|
/**
|
|
* @param ClientData $itemData
|
|
*
|
|
* @return int
|
|
* @throws SPException
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function update(ClientData $itemData): int
|
|
{
|
|
return $this->clientRepository->update($itemData);
|
|
}
|
|
|
|
/**
|
|
* Get all items from the service's repository
|
|
*
|
|
* @return ClientData[]
|
|
* @throws ConstraintException
|
|
* @throws QueryException
|
|
*/
|
|
public function getAllBasic(): array
|
|
{
|
|
return $this->clientRepository->getAll()->getDataAsArray();
|
|
}
|
|
|
|
/**
|
|
* Returns all clients visible for a given user
|
|
*
|
|
* @return ItemData[]
|
|
* @throws QueryException
|
|
* @throws ConstraintException
|
|
*/
|
|
public function getAllForUser(): array
|
|
{
|
|
return $this->clientRepository
|
|
->getAllForFilter(
|
|
$this->dic->get(AccountFilterUser::class)->getFilter()
|
|
)
|
|
->getDataAsArray();
|
|
}
|
|
|
|
/**
|
|
* @throws ContainerExceptionInterface
|
|
* @throws NotFoundExceptionInterface
|
|
*/
|
|
protected function initialize(): void
|
|
{
|
|
$this->clientRepository = $this->dic->get(ClientRepository::class);
|
|
}
|
|
} |