* (c) Francis Besset * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace BeSimple\SoapCommon; use InvalidArgumentException; /** * @author Francis Besset */ class Cache { const DISABLED = 0; const ENABLED = 1; const TYPE_NONE = WSDL_CACHE_NONE; const TYPE_DISK = WSDL_CACHE_DISK; const TYPE_MEMORY = WSDL_CACHE_MEMORY; const TYPE_DISK_MEMORY = WSDL_CACHE_BOTH; static protected $types = [ self::TYPE_NONE, self::TYPE_DISK, self::TYPE_MEMORY, self::TYPE_DISK_MEMORY, ]; public static function getTypes() { return self::$types; } public static function hasType($cacheType) { return in_array($cacheType, self::$types); } public static function isEnabled() { return self::iniGet('soap.wsdl_cache_enabled') === '1'; } public static function setEnabled($enabled) { if (!in_array($enabled, array(self::ENABLED, self::DISABLED), true)) { throw new \InvalidArgumentException(); } self::iniSet('soap.wsdl_cache_enabled', $enabled); } public static function getType() { return self::iniGet('soap.wsdl_cache'); } public static function setType($type) { if (!in_array($type, self::getTypes(), true)) { throw new InvalidArgumentException( 'The cache type has to be either Cache::TYPE_NONE, Cache::TYPE_DISK, Cache::TYPE_MEMORY or Cache::TYPE_DISK_MEMORY' ); } self::iniSet('soap.wsdl_cache', $type); } public static function getDirectory() { return self::iniGet('soap.wsdl_cache_dir'); } public static function setDirectory($directory) { self::iniSet('soap.wsdl_cache_dir', $directory); } public static function getLifetime() { return self::iniGet('soap.wsdl_cache_ttl'); } public static function setLifetime($lifetime) { self::iniSet('soap.wsdl_cache_ttl', $lifetime); } public static function getLimit() { return self::iniGet('soap.wsdl_cache_limit'); } public static function setLimit($limit) { self::iniSet('soap.wsdl_cache_limit', $limit); } protected static function iniGet($key) { return ini_get($key); } protected static function iniSet($key, $value) { ini_set($key, $value); } }