mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-28 09:41:29 +08:00
303 lines
6.4 KiB
PHP
303 lines
6.4 KiB
PHP
<?php
|
|
|
|
namespace RainLoop\Config;
|
|
|
|
abstract class AbstractConfig
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $sFile;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $sAdditionalFile;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $aData;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $bUseApcCache;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $sFileHeader;
|
|
|
|
public function __construct(string $sFileName, string $sFileHeader = '', string $sAdditionalFileName = '')
|
|
{
|
|
$this->sFile = \APP_PRIVATE_DATA.'configs/'.\trim($sFileName);
|
|
|
|
$sAdditionalFileName = \trim($sAdditionalFileName);
|
|
$this->sAdditionalFile = \APP_PRIVATE_DATA.'configs/'.$sAdditionalFileName;
|
|
$this->sAdditionalFile = 0 < \strlen($sAdditionalFileName) &&
|
|
\file_exists($this->sAdditionalFile) ? $this->sAdditionalFile : '';
|
|
|
|
$this->sFileHeader = $sFileHeader;
|
|
$this->aData = $this->defaultValues();
|
|
|
|
$this->bUseApcCache = APP_USE_APC_CACHE &&
|
|
\MailSo\Base\Utils::FunctionExistsAndEnabled(array('apc_fetch', 'apc_store'));
|
|
}
|
|
|
|
protected abstract function defaultValues() : array;
|
|
|
|
public function IsInited() : bool
|
|
{
|
|
return \is_array($this->aData) && 0 < \count($this->aData);
|
|
}
|
|
|
|
/**
|
|
* @param mixed $mDefault = null
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function Get(string $sSection, string $sName, $mDefault = null)
|
|
{
|
|
$mResult = $mDefault;
|
|
if (isset($this->aData[$sSection][$sName][0]))
|
|
{
|
|
$mResult = $this->aData[$sSection][$sName][0];
|
|
}
|
|
return $mResult;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $mParamValue
|
|
*/
|
|
public function Set(string $sSectionKey, string $sParamKey, $mParamValue) : void
|
|
{
|
|
if (isset($this->aData[$sSectionKey][$sParamKey][0]))
|
|
{
|
|
$sType = \gettype($this->aData[$sSectionKey][$sParamKey][0]);
|
|
switch ($sType)
|
|
{
|
|
default:
|
|
case 'float':
|
|
case 'string':
|
|
$this->aData[$sSectionKey][$sParamKey][0] = (string) $mParamValue;
|
|
break;
|
|
case 'int':
|
|
case 'integer':
|
|
$this->aData[$sSectionKey][$sParamKey][0] = (int) $mParamValue;
|
|
break;
|
|
case 'bool':
|
|
case 'boolean':
|
|
$this->aData[$sSectionKey][$sParamKey][0] = (bool) $mParamValue;
|
|
break;
|
|
}
|
|
}
|
|
else if ('custom' === $sSectionKey)
|
|
{
|
|
$this->aData[$sSectionKey][$sParamKey] = array((string) $mParamValue);
|
|
}
|
|
}
|
|
|
|
private function cacheKey() : string
|
|
{
|
|
return 'config:'.\sha1($this->sFile).':'.\sha1($this->sAdditionalFile).':';
|
|
}
|
|
|
|
private function loadDataFromCache() : bool
|
|
{
|
|
if ($this->bUseApcCache)
|
|
{
|
|
$iMTime = @\filemtime($this->sFile);
|
|
$iMTime = \is_int($iMTime) && 0 < $iMTime ? $iMTime : 0;
|
|
|
|
$iATime = $this->sAdditionalFile ? @\filemtime($this->sAdditionalFile) : 0;
|
|
$iATime = \is_int($iATime) && 0 < $iATime ? $iATime : 0;
|
|
|
|
if (0 < $iMTime)
|
|
{
|
|
$sKey = $this->cacheKey();
|
|
|
|
$sTimeHash = \apc_fetch($sKey.'time');
|
|
if ($sTimeHash && $sTimeHash === \md5($iMTime.'/'.$iATime))
|
|
{
|
|
$aFetchData = \apc_fetch($sKey.'data');
|
|
if (\is_array($aFetchData))
|
|
{
|
|
$this->aData = $aFetchData;
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private function storeDataToCache() : bool
|
|
{
|
|
if ($this->bUseApcCache)
|
|
{
|
|
$iMTime = @\filemtime($this->sFile);
|
|
$iMTime = \is_int($iMTime) && 0 < $iMTime ? $iMTime : 0;
|
|
|
|
$iATime = $this->sAdditionalFile ? @\filemtime($this->sAdditionalFile) : 0;
|
|
$iATime = \is_int($iATime) && 0 < $iATime ? $iATime : 0;
|
|
|
|
if (0 < $iMTime)
|
|
{
|
|
$sKey = $this->cacheKey();
|
|
|
|
\apc_store($sKey.'time', \md5($iMTime.'/'.$iATime));
|
|
\apc_store($sKey.'data', $this->aData);
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private function clearCache() : bool
|
|
{
|
|
if ($this->bUseApcCache)
|
|
{
|
|
$sKey = $this->cacheKey();
|
|
|
|
\apc_delete($sKey.'time');
|
|
\apc_delete($sKey.'data');
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function IsFileExists() : bool
|
|
{
|
|
return \file_exists($this->sFile);
|
|
}
|
|
|
|
public function Load() : bool
|
|
{
|
|
if (\file_exists($this->sFile) && \is_readable($this->sFile))
|
|
{
|
|
if ($this->loadDataFromCache())
|
|
{
|
|
return true;
|
|
}
|
|
|
|
$aData = \RainLoop\Utils::CustomParseIniFile($this->sFile, true);
|
|
if (\is_array($aData) && 0 < \count($aData))
|
|
{
|
|
foreach ($aData as $sSectionKey => $aSectionValue)
|
|
{
|
|
if (\is_array($aSectionValue))
|
|
{
|
|
foreach ($aSectionValue as $sParamKey => $mParamValue)
|
|
{
|
|
$this->Set($sSectionKey, $sParamKey, $mParamValue);
|
|
}
|
|
}
|
|
}
|
|
|
|
unset($aData);
|
|
|
|
if (\file_exists($this->sAdditionalFile) && \is_readable($this->sAdditionalFile))
|
|
{
|
|
$aSubData = \RainLoop\Utils::CustomParseIniFile($this->sAdditionalFile, true);
|
|
if (\is_array($aSubData) && 0 < \count($aSubData))
|
|
{
|
|
foreach ($aSubData as $sSectionKey => $aSectionValue)
|
|
{
|
|
if (\is_array($aSectionValue))
|
|
{
|
|
foreach ($aSectionValue as $sParamKey => $mParamValue)
|
|
{
|
|
$this->Set($sSectionKey, $sParamKey, $mParamValue);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
unset($aSubData);
|
|
}
|
|
|
|
$this->storeDataToCache();
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function Save() : bool
|
|
{
|
|
if (\file_exists($this->sFile) && !\is_writable($this->sFile))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
$sNewLine = "\n";
|
|
|
|
$aResultLines = array();
|
|
|
|
foreach ($this->aData as $sSectionKey => $aSectionValue)
|
|
{
|
|
if (\is_array($aSectionValue))
|
|
{
|
|
$aResultLines[] = '';
|
|
$aResultLines[] = '['.$sSectionKey.']';
|
|
$bFirst = true;
|
|
|
|
foreach ($aSectionValue as $sParamKey => $mParamValue)
|
|
{
|
|
if (\is_array($mParamValue))
|
|
{
|
|
if (!empty($mParamValue[1]))
|
|
{
|
|
$sDesk = \str_replace("\r", '', $mParamValue[1]);
|
|
$aDesk = \explode("\n", $sDesk);
|
|
$aDesk = \array_map(function (&$sLine) {
|
|
return '; '.$sLine;
|
|
}, $aDesk);
|
|
|
|
if (!$bFirst)
|
|
{
|
|
$aResultLines[] = '';
|
|
}
|
|
|
|
$aResultLines[] = \implode($sNewLine, $aDesk);
|
|
}
|
|
|
|
$bFirst = false;
|
|
|
|
$sValue = '""';
|
|
switch (\gettype($mParamValue[0]))
|
|
{
|
|
default:
|
|
case 'string':
|
|
$sValue = '"'.\str_replace('"', '\"', $mParamValue[0]).'"';
|
|
break;
|
|
case 'int':
|
|
case 'integer':
|
|
$sValue = $mParamValue[0];
|
|
break;
|
|
case 'bool':
|
|
case 'boolean':
|
|
$sValue = $mParamValue[0] ? 'On' : 'Off';
|
|
break;
|
|
}
|
|
|
|
$aResultLines[] = $sParamKey.' = '.$sValue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->clearCache();
|
|
return false !== \file_put_contents($this->sFile,
|
|
(0 < \strlen($this->sFileHeader) ? $this->sFileHeader : '').
|
|
$sNewLine.\implode($sNewLine, $aResultLines));
|
|
}
|
|
}
|