ModCfg/src/Application/Model/Installcheck/d3InstallCheckTemplateItems...

172 lines
4.8 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, Thomas Dartsch
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
namespace D3\ModCfg\Application\Model\Installcheck;
use D3\ModCfg\Application\Model\Configuration\d3_cfg_mod;
use OxidEsales\Eshop\Core\Module\Module;
use OxidEsales\Eshop\Core\Module\ModuleList;
class d3InstallCheckTemplateItemsAreAvailable implements d3InstallCheckInterface
{
protected $_blResult;
protected $_sPassedCheckML = 'D3_CFG_MOD_INSTALLCHECKTEMPLATEITEMSOK';
protected $_sNotPassedCheckML = 'D3_CFG_MOD_INSTALLCHECKTEMPLATEITEMSNOK';
protected $_sCheckDescML = 'D3_CFG_MOD_INSTALLCHECKTEMPLATEITEMS_DESC';
protected $_oSet;
protected $_blPassed;
protected $_aDetails;
protected $_blForceError = false;
/**
* @param d3_cfg_mod $oSet
*/
public function __construct(d3_cfg_mod $oSet)
{
$this->_oSet = $oSet;
}
/**
* @return bool
*/
public function hasCheckPassed()
{
if ($this->_blPassed === null) {
$this->_blPassed = true;
if ($this->_oSet->getMetaModuleId()) {
/** @var Module $oModule */
$oModule = oxNew(Module::class);
$oModule->load($this->_oSet->getMetaModuleId());
/** @var ModuleList $oModuleList */
$oModuleList = oxNew(ModuleList::class);
$aAllModuleTemplates = $oModuleList->getModuleConfigParametersByKey(ModuleList::MODULE_KEY_TEMPLATES);
if (is_array($oModule->getInfo('templates'))) {
$this->_blPassed = $this->_checkAllModuleTemplatesExist(
$oModule->getInfo('templates'),
$aAllModuleTemplates[$this->_oSet->getMetaModuleId()]
);
}
}
}
return $this->_blPassed;
}
/**
* @return string
*/
public function getCheckMessageMultilangItem()
{
if ($this->hasCheckPassed()) {
return $this->_sPassedCheckML;
}
return $this->_sNotPassedCheckML;
}
/**
* @param $aMetaTemplates
* @param $aRegisteredTemplates
*
* @return bool
*/
protected function _checkAllModuleTemplatesExist($aMetaTemplates, $aRegisteredTemplates)
{
$aMetaTemplates = $this->_setErrorCase($aMetaTemplates);
if (count($aMetaTemplates) != count($aRegisteredTemplates)) {
return false;
}
return true;
}
/**
* @return string
*/
public function getCheckDescMultiLangItem()
{
return $this->_sCheckDescML;
}
/**
* @return array|null|false
*/
public function getDetails()
{
if (false == $this->hasCheckPassed()) {
if ($this->_aDetails == null) {
$aMissingTemplates = array();
$sMetaModuleId = $this->_oSet->getMetaModuleId();
if ($sMetaModuleId) {
/** @var Module $oModule */
$oModule = oxNew(Module::class);
$oModule->load($sMetaModuleId);
$aMetaTemplates = $oModule->getInfo('templates');
$aMissingTemplates = $this->_getNonAvailableMetaTemplates($sMetaModuleId, $aMetaTemplates);
}
$this->_aDetails = $aMissingTemplates;
}
}
return $this->_aDetails;
}
/**
* @param $sMetaModuleId
* @param $aMetaFiles
*
* @return mixed
*/
protected function _getNonAvailableMetaTemplates($sMetaModuleId, $aMetaFiles)
{
/** @var ModuleList $oModuleList */
$oModuleList = oxNew(ModuleList::class);
$aAllModuleFiles = $oModuleList->getModuleConfigParametersByKey(ModuleList::MODULE_KEY_TEMPLATES);
$aMetaFiles = $this->_setErrorCase($aMetaFiles);
foreach ($aAllModuleFiles[$sMetaModuleId] as $aModuleFile) {
foreach ($aMetaFiles as $sKey => $sMetaFile) {
if ($sMetaFile == $aModuleFile) {
unset($aMetaFiles[$sKey]);
}
}
}
return $aMetaFiles;
}
/**
* @param $aMetaData
*
* @return array
*/
protected function _setErrorCase($aMetaData)
{
if ($this->_blForceError) {
$aMetaData['myTpl.tpl'] = 'myfolder/template.tpl';
}
return $aMetaData;
}
}