diff --git a/.gitignore b/.gitignore index 680260c7..84fae867 100644 --- a/.gitignore +++ b/.gitignore @@ -213,6 +213,7 @@ pip-log.txt # Unit test / coverage reports .coverage +.phpunit.result.cache .tox #Translations diff --git a/caches/FileCache.php b/caches/FileCache.php index 166ecdb5..1b8ae6cd 100644 --- a/caches/FileCache.php +++ b/caches/FileCache.php @@ -6,6 +6,15 @@ class FileCache implements CacheInterface { protected $path; protected $key; + public function __construct() { + if (!is_writable(PATH_CACHE)) { + returnServerError( + 'RSS-Bridge does not have write permissions for ' + . PATH_CACHE . '!' + ); + } + } + public function loadData(){ if(file_exists($this->getCacheFile())) { return unserialize(file_get_contents($this->getCacheFile())); diff --git a/caches/SQLiteCache.php b/caches/SQLiteCache.php index 394e25fa..5ec69417 100644 --- a/caches/SQLiteCache.php +++ b/caches/SQLiteCache.php @@ -13,6 +13,13 @@ class SQLiteCache implements CacheInterface { die('"sqlite3" extension not loaded. Please check "php.ini"'); } + if (!is_writable(PATH_CACHE)) { + returnServerError( + 'RSS-Bridge does not have write permissions for ' + . PATH_CACHE . '!' + ); + } + $file = Configuration::getConfig(get_called_class(), 'file'); if (empty($file)) { die('Configuration for ' . get_called_class() . ' missing. Please check your ' . FILE_CONFIG); diff --git a/lib/Configuration.php b/lib/Configuration.php index f0022810..b3592371 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -102,10 +102,6 @@ final class Configuration { if(!extension_loaded('json')) self::reportError('"json" extension not loaded. Please check "php.ini"'); - // Check cache folder permissions (write permissions required) - if(!is_writable(PATH_CACHE)) - self::reportError('RSS-Bridge does not have write permissions for ' . PATH_CACHE . '!'); - } /**