369 lines
12 KiB
PHP
369 lines
12 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This Software is the property of Data Development and is protected
|
|
* by copyright law - it is NOT Freeware.
|
|
*
|
|
* Any unauthorized use of this software without a valid license
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
* civil and criminal law.
|
|
*
|
|
* https://www.d3data.de
|
|
*
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
|
* @link https://www.oxidmodule.com
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace D3\Usermanager\Application\Controller\Admin;
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
|
use D3\Usermanager\Application\Model\Actions\d3usermanager_action_interface as ActionModelInterface;
|
|
use D3\Usermanager\Application\Model\Actions\d3usermanager_actiongrouplist as ActionGroupList;
|
|
use D3\Usermanager\Application\Model\Actions\d3usermanager_actionlist as ActionList;
|
|
use D3\Usermanager\Application\Model\d3usermanager as Manager;
|
|
use D3\Usermanager\Application\Model\d3usermanager_vars as VariablesTrait;
|
|
use D3\Usermanager\Application\Model\Exceptions\d3usermanager_actionException;
|
|
use Doctrine\DBAL\DBALException;
|
|
use OxidEsales\Eshop\Application\Model\ContentList;
|
|
use OxidEsales\Eshop\Application\Model\User as Item;
|
|
use OxidEsales\Eshop\Core\Config;
|
|
use OxidEsales\Eshop\Core\Database\Adapter\DatabaseInterface;
|
|
use OxidEsales\Eshop\Core\DatabaseProvider;
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
|
use OxidEsales\Eshop\Core\Language;
|
|
use OxidEsales\Eshop\Core\Model\ListModel;
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
use OxidEsales\Eshop\Core\Request;
|
|
use D3\Usermanager\Application\Controller\Admin\d3_cfg_usermanageritem_settings as ItemSettingsController;
|
|
use OxidEsales\Eshop\Core\UtilsView;
|
|
use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory;
|
|
use OxidEsales\EshopCommunity\Internal\Framework\Module\Configuration\Bridge\ShopConfigurationDaoBridgeInterface;
|
|
use OxidEsales\EshopCommunity\Internal\Framework\Module\Path\ModulePathResolverInterface;
|
|
|
|
class d3_cfg_usermanageritem_action extends ItemSettingsController
|
|
{
|
|
use VariablesTrait;
|
|
|
|
protected $_sThisTemplate = "d3_cfg_usermanageritem_action.tpl";
|
|
protected $_sMenuSubItemTitle = 'd3mxusermanager_items';
|
|
protected $_sSavedId;
|
|
protected $_sExportFieldDescMLIdent = 'D3_USERMANAGER_FIELDDESC';
|
|
protected $_sExportFieldTitleBaseMLIdent = 'D3_USERMANAGER_FIELDTITLE_';
|
|
protected $_sExportFieldLangMLIdent = 'D3_USERMANAGER_FIELDADD_LANG';
|
|
|
|
/**
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
*/
|
|
public function save()
|
|
{
|
|
// @codeCoverageIgnoreStart
|
|
if (!defined('OXID_PHP_UNIT')) {
|
|
parent::save();
|
|
}
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
$aMissingRequiredValues = array();
|
|
/** @var ActionModelInterface $oAction */
|
|
foreach ($this->getActionList() as $sId => $oAction) {
|
|
if ($this->getProfile()->getValue($oAction->getActiveSwitchParameter())) {
|
|
try {
|
|
$oAction->throwUnvalidConfigurationException();
|
|
} catch (d3usermanager_actionException $e) {
|
|
unset($e);
|
|
$aMissingRequiredValues[] = $sId;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (count($aMissingRequiredValues)) {
|
|
$this->addTplParam('missingRequValuesActions', $aMissingRequiredValues);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return ContentList|ListModel
|
|
*/
|
|
public function getContentList()
|
|
{
|
|
/** @var $oContentList ContentList */
|
|
$oContentList = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.ContentList::class);
|
|
return $this->_getObjectList($oContentList);
|
|
}
|
|
|
|
/**
|
|
* @return Config
|
|
*/
|
|
public function d3GetConfig(): Config
|
|
{
|
|
/** @var Config $config */
|
|
$config = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Config::class);
|
|
|
|
return $config;
|
|
}
|
|
|
|
/**
|
|
* @param $blAdmin
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getManagerTemplateDirs($blAdmin): string
|
|
{
|
|
return $this->d3GetConfig()->getTemplateDir($blAdmin);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getItemFieldNames(): array
|
|
{
|
|
/** @var Item $item */
|
|
$item = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Item::class);
|
|
return $item->getFieldNames();
|
|
}
|
|
|
|
/**
|
|
* @return Manager
|
|
*/
|
|
public function getProfile(): Manager
|
|
{
|
|
/** @var Manager $oProfile */
|
|
$oProfile = d3GetModCfgDIC()->get(Manager::class);
|
|
|
|
$soxId = $this->getEditObjectId();
|
|
|
|
if (isset($soxId) && $soxId && $soxId != "-1") {
|
|
// load object
|
|
$oProfile->loadInLang($this->_iEditLang, $soxId);
|
|
|
|
// load object in other languages
|
|
$oOtherLang = $oProfile->getAvailableInLangs();
|
|
if (false == isset($oOtherLang[$this->_iEditLang])) {
|
|
$oProfile->loadInLang(key($oOtherLang), $soxId);
|
|
}
|
|
}
|
|
|
|
return $oProfile;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getExportExamplePath(): string
|
|
{
|
|
$oProfile = $this->getProfile();
|
|
/** @var Request $request */
|
|
$request = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Request::class);
|
|
$soxId = $request->getRequestEscapedParameter("oxid");
|
|
|
|
if (isset( $soxId) && $soxId && $soxId != "-1") {
|
|
// load object
|
|
$oProfile->loadInLang($this->_iEditLang, $soxId);
|
|
$oProfile = $this->_d3LoadInOtherLang($oProfile, $soxId);
|
|
}
|
|
|
|
$aSearch = array(date('Y-m-d_H-i-s', $oProfile->getStartTime()));
|
|
/** @var Language $oLang */
|
|
$oLang = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Language::class);
|
|
$aReplace = array($oLang->translateString('D3_USERMANAGER_ACTION_DATEPLACEHOLDER'));
|
|
|
|
return str_replace($aSearch, $aReplace, $oProfile->getListExportFilePath());
|
|
}
|
|
|
|
/**
|
|
* @param $sFieldName
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFieldNameDescription($sFieldName): string
|
|
{
|
|
if (($sFieldNameTitle = $this->getFieldNameTitle($sFieldName))) {
|
|
return sprintf(
|
|
$this->getLang()->translateString($this->_sExportFieldDescMLIdent),
|
|
$sFieldNameTitle,
|
|
$sFieldName
|
|
);
|
|
} else {
|
|
return $sFieldName;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return Language
|
|
*/
|
|
public function getLang(): Language
|
|
{
|
|
/** @var Language $language */
|
|
$language = d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Language::class);
|
|
|
|
return $language;
|
|
}
|
|
|
|
/**
|
|
* @param $sFieldName
|
|
*
|
|
* @return null|string
|
|
*/
|
|
public function getFieldNameTitle($sFieldName): ?string
|
|
{
|
|
$sLangAdd = '';
|
|
$sPattern = "@(.*)([_]{1}([0-9]{1,3}))$@";
|
|
if (preg_match($sPattern, $sFieldName, $aMatches)) {
|
|
$sFieldMLIdent = $this->_sExportFieldTitleBaseMLIdent.strtoupper($aMatches[1]);
|
|
$aLangNames = $this->getLang()->getLanguageNames();
|
|
$sLangAdd = sprintf(
|
|
$this->getLang()->translateString($this->_sExportFieldLangMLIdent),
|
|
$aLangNames[$aMatches[3]]
|
|
);
|
|
} else {
|
|
$sFieldMLIdent = $this->_sExportFieldTitleBaseMLIdent.strtoupper($sFieldName);
|
|
}
|
|
|
|
$sFieldName = $this->getLang()->translateString($sFieldMLIdent);
|
|
|
|
if ($sFieldName != $sFieldMLIdent) {
|
|
return $sFieldName.$sLangAdd;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return ActionGroupList
|
|
*/
|
|
public function getActionGroupList(): ActionGroupList
|
|
{
|
|
d3GetModCfgDIC()->set(
|
|
ActionGroupList::class.'.args.usermanager',
|
|
$this->getProfile()
|
|
);
|
|
d3GetModCfgDIC()->set(
|
|
ActionGroupList::class.'.args.user',
|
|
d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Item::class)
|
|
);
|
|
|
|
/** @var ActionGroupList $actiongroup */
|
|
$actiongroup = d3GetModCfgDIC()->get(ActionGroupList::class);
|
|
|
|
return $actiongroup;
|
|
}
|
|
|
|
/**
|
|
* @return ActionList
|
|
*/
|
|
public function getActionListObject(): ActionList
|
|
{
|
|
d3GetModCfgDIC()->set(
|
|
ActionList::class.'.args.usermanager',
|
|
$this->getProfile()
|
|
);
|
|
d3GetModCfgDIC()->set(
|
|
ActionList::class.'.args.user',
|
|
d3GetModCfgDIC()->get($this->_DIC_OxInstance_Id.Item::class)
|
|
);
|
|
|
|
/** @var ActionList $actionlist */
|
|
$actionlist = d3GetModCfgDIC()->get(ActionList::class);
|
|
return $actionlist;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getGroupedActionList(): array
|
|
{
|
|
$oManager = $this->getProfile();
|
|
$oActionList = $this->getActionGroupList();
|
|
$oActionList->setGroups($oManager->getConfiguration()->getGroupedActionIdList());
|
|
|
|
return $oActionList->getGroupList();
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getActionList(): array
|
|
{
|
|
$oManager = $this->getProfile();
|
|
$oActionList = $this->getActionListObject();
|
|
$oActionList->setActions($oManager->getConfiguration()->getActionIdList());
|
|
|
|
return $oActionList->getActionList();
|
|
}
|
|
|
|
/**
|
|
* @param Manager $oProfile
|
|
* @param $soxId
|
|
*
|
|
* @return Manager
|
|
*/
|
|
protected function _d3LoadInOtherLang(Manager $oProfile, $soxId): Manager
|
|
{
|
|
// load object in other languages
|
|
$oOtherLang = $oProfile->getAvailableInLangs();
|
|
if (false == isset($oOtherLang[$this->_iEditLang])) {
|
|
$oProfile->loadInLang(key($oOtherLang), $soxId);
|
|
}
|
|
|
|
return $oProfile;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getModulePathList(): array
|
|
{
|
|
$aModulePathList = [];
|
|
|
|
$container = ContainerFactory::getInstance()->getContainer();
|
|
$shopConfiguration = $container->get(ShopConfigurationDaoBridgeInterface::class)->get();
|
|
|
|
foreach ($shopConfiguration->getModuleConfigurations() as $moduleConfiguration) {
|
|
$pathResolver = ContainerFactory::getInstance()->getContainer()->get(ModulePathResolverInterface::class);
|
|
$sModulePath = $pathResolver->getFullModulePathFromConfiguration(
|
|
$moduleConfiguration->getId(),
|
|
Registry::getConfig()->getShopId()
|
|
);
|
|
|
|
$aModulePathList[$moduleConfiguration->getId()] = $sModulePath;
|
|
}
|
|
|
|
return $aModulePathList;
|
|
}
|
|
|
|
/**
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
*/
|
|
public function markAsFinished()
|
|
{
|
|
$oProfile = $this->getProfile();
|
|
$iAllCount = d3GetModCfgDIC()->get('d3ox.usermanager.'.DatabaseInterface::class.'.assoc')
|
|
->getOne('SELECT COUNT(*) FROM '.d3GetModCfgDIC()->get('d3ox.usermanager.'.Item::class)->getViewName());
|
|
$iCount = $oProfile->markConcernedItemsAsFinished(true);
|
|
|
|
$oEx = oxNew(
|
|
StandardException::class,
|
|
sprintf(
|
|
Registry::getLang()->translateString('D3_USERMANAGER_ACTION_MARKASFINISHED_MESSAGE'),
|
|
$iCount,
|
|
$iAllCount
|
|
)
|
|
);
|
|
Registry::get(UtilsView::class)->addErrorToDisplay($oEx);
|
|
}
|
|
}
|