mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
176 lines
4.8 KiB
PHP
176 lines
4.8 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2018, 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\CustomField;
|
|
|
|
use SP\Core\Acl\ActionsInterface;
|
|
use SP\DataModel\CustomFieldDefinitionData;
|
|
use SP\DataModel\ItemSearchData;
|
|
use SP\Repositories\CustomField\CustomFieldDefRepository;
|
|
use SP\Services\Service;
|
|
use SP\Services\ServiceException;
|
|
use SP\Services\ServiceItemTrait;
|
|
|
|
/**
|
|
* Class CustomFieldDefService
|
|
*
|
|
* @package SP\Services\CustomField
|
|
*/
|
|
class CustomFieldDefService extends Service
|
|
{
|
|
use ServiceItemTrait;
|
|
|
|
/**
|
|
* @var CustomFieldDefRepository
|
|
*/
|
|
protected $customFieldDefRepository;
|
|
|
|
/**
|
|
* @param $id
|
|
* @return mixed
|
|
*/
|
|
public static function getFieldModuleById($id)
|
|
{
|
|
$modules = self::getFieldModules();
|
|
|
|
return isset($modules[$id]) ? $modules[$id] : $id;
|
|
}
|
|
|
|
/**
|
|
* Devuelve los módulos disponibles para los campos personalizados
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getFieldModules()
|
|
{
|
|
$modules = [
|
|
ActionsInterface::ACCOUNT => __('Cuentas'),
|
|
ActionsInterface::CATEGORY => __('Categorías'),
|
|
ActionsInterface::CLIENT => __('Clientes'),
|
|
ActionsInterface::USER => __('Usuarios'),
|
|
ActionsInterface::GROUP => __('Grupos')
|
|
];
|
|
|
|
return $modules;
|
|
}
|
|
|
|
/**
|
|
* @param ItemSearchData $itemSearchData
|
|
* @return \SP\DataModel\CustomFieldDefinitionData[]
|
|
*/
|
|
public function search(ItemSearchData $itemSearchData)
|
|
{
|
|
return $this->customFieldDefRepository->search($itemSearchData);
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return \SP\DataModel\CustomFieldDefinitionData
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
return $this->customFieldDefRepository->getById($id);
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return CustomFieldDefService
|
|
* @throws ServiceException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Core\Exceptions\SPException
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
if ($this->dic->get(CustomFieldService::class)->deleteCustomFieldDefinitionData($id) === 0
|
|
|| $this->customFieldDefRepository->delete($id) === 0) {
|
|
throw new ServiceException(__u('Campo no encontrado'), ServiceException::INFO);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Deletes all the items for given ids
|
|
*
|
|
* @param array $ids
|
|
* @return int
|
|
* @throws ServiceException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Core\Exceptions\SPException
|
|
*/
|
|
public function deleteByIdBatch(array $ids)
|
|
{
|
|
$numIds = count($ids);
|
|
|
|
if ($this->dic->get(CustomFieldService::class)->deleteCustomFieldDefinitionDataBatch($ids) !== $numIds
|
|
|| ($count = $this->customFieldDefRepository->deleteByIdBatch($ids)) !== $numIds) {
|
|
throw new ServiceException(__u('Error al eliminar los campos'), ServiceException::WARNING);
|
|
}
|
|
|
|
return $count;
|
|
}
|
|
|
|
/**
|
|
* @param $itemData
|
|
* @return mixed
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
*/
|
|
public function create($itemData)
|
|
{
|
|
return $this->customFieldDefRepository->create($itemData);
|
|
}
|
|
|
|
/**
|
|
* @param $itemData
|
|
* @return mixed
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
*/
|
|
public function update(CustomFieldDefinitionData $itemData)
|
|
{
|
|
return $this->customFieldDefRepository->update($itemData);
|
|
}
|
|
|
|
/**
|
|
* Get all items from the service's repository
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAllBasic()
|
|
{
|
|
return $this->customFieldDefRepository->getAll();
|
|
}
|
|
|
|
/**
|
|
* @throws \Psr\Container\ContainerExceptionInterface
|
|
* @throws \Psr\Container\NotFoundExceptionInterface
|
|
*/
|
|
protected function initialize()
|
|
{
|
|
$this->customFieldDefRepository = $this->dic->get(CustomFieldDefRepository::class);
|
|
}
|
|
} |