mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
* [MOD] Improved actions management. Actions Ids need to be updated * [MOD] Code refactoring and cleanup
180 lines
5.9 KiB
PHP
180 lines
5.9 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\Upgrade;
|
|
|
|
use SP\Core\Acl\ActionsInterface;
|
|
use SP\Core\Events\Event;
|
|
use SP\Core\Events\EventMessage;
|
|
use SP\DataModel\CustomFieldDefDataOld;
|
|
use SP\DataModel\CustomFieldDefinitionData;
|
|
use SP\Services\CustomField\CustomFieldDefService;
|
|
use SP\Services\Service;
|
|
use SP\Storage\Database\Database;
|
|
use SP\Storage\Database\QueryData;
|
|
use SP\Util\Util;
|
|
|
|
/**
|
|
* Class UpgradeCustomField
|
|
*
|
|
* @package SP\Services\Upgrade
|
|
*/
|
|
final class UpgradeCustomFieldDefinition extends Service
|
|
{
|
|
/**
|
|
* @var \SP\Storage\Database\Database
|
|
*/
|
|
private $db;
|
|
|
|
/**
|
|
* upgrade_300_18010101
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function upgrade_300_18010101()
|
|
{
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.start',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Actualización de campos personalizados'))
|
|
->addDescription(__FUNCTION__))
|
|
);
|
|
|
|
try {
|
|
$this->transactionAware(function () {
|
|
$customFieldDefService = $this->dic->get(CustomFieldDefService::class);
|
|
|
|
$queryData = new QueryData();
|
|
$queryData->setQuery('SELECT id, moduleId, field FROM CustomFieldDefinition WHERE field IS NOT NULL');
|
|
|
|
foreach ($this->db->doSelect($queryData)->getDataAsArray() as $item) {
|
|
/** @var CustomFieldDefDataOld $data */
|
|
$data = Util::unserialize(CustomFieldDefDataOld::class, $item->field, 'SP\DataModel\CustomFieldDefData');
|
|
|
|
$itemData = new CustomFieldDefinitionData();
|
|
$itemData->setId($item->id);
|
|
$itemData->setModuleId($this->moduleMapper((int)$item->moduleId));
|
|
$itemData->setName($data->getName());
|
|
$itemData->setHelp($data->getHelp());
|
|
$itemData->setRequired($data->isRequired());
|
|
$itemData->setShowInList($data->isShowInItemsList());
|
|
$itemData->setTypeId($data->getType());
|
|
|
|
$customFieldDefService->updateRaw($itemData);
|
|
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.process',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Campo actualizado'))
|
|
->addDetail(__u('Campo'), $data->getName()))
|
|
);
|
|
}
|
|
});
|
|
} catch (\Exception $e) {
|
|
processException($e);
|
|
|
|
$this->eventDispatcher->notifyEvent('exception', new Event($e));
|
|
|
|
throw $e;
|
|
}
|
|
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.end',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Actualización de campos personalizados'))
|
|
->addDescription(__FUNCTION__))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param int $moduleId
|
|
*
|
|
* @return int
|
|
*/
|
|
private function moduleMapper(int $moduleId)
|
|
{
|
|
switch ($moduleId) {
|
|
case 10:
|
|
return ActionsInterface::ACCOUNT;
|
|
case 61:
|
|
return ActionsInterface::CATEGORY;
|
|
case 62:
|
|
return ActionsInterface::CLIENT;
|
|
case 71:
|
|
return ActionsInterface::USER;
|
|
case 72:
|
|
return ActionsInterface::GROUP;
|
|
}
|
|
|
|
return $moduleId;
|
|
}
|
|
|
|
/**
|
|
* upgrade_300_18072901
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function upgrade_300_18072901()
|
|
{
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.start',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Actualización de campos personalizados'))
|
|
->addDescription(__FUNCTION__))
|
|
);
|
|
|
|
try {
|
|
$this->transactionAware(function () {
|
|
$customFieldDefService = $this->dic->get(CustomFieldDefService::class);
|
|
|
|
foreach ($customFieldDefService->getAllBasic() as $item) {
|
|
|
|
$itemData = clone $item;
|
|
$itemData->setModuleId($this->moduleMapper((int)$item->getModuleId()));
|
|
|
|
$customFieldDefService->updateRaw($itemData);
|
|
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.process',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Campo actualizado'))
|
|
->addDetail(__u('Campo'), $item->getName()))
|
|
);
|
|
}
|
|
});
|
|
} catch (\Exception $e) {
|
|
processException($e);
|
|
|
|
$this->eventDispatcher->notifyEvent('exception', new Event($e));
|
|
|
|
throw $e;
|
|
}
|
|
|
|
$this->eventDispatcher->notifyEvent('upgrade.customField.end',
|
|
new Event($this, EventMessage::factory()
|
|
->addDescription(__u('Actualización de campos personalizados'))
|
|
->addDescription(__FUNCTION__))
|
|
);
|
|
}
|
|
|
|
protected function initialize()
|
|
{
|
|
$this->db = $this->dic->get(Database::class);
|
|
}
|
|
} |