33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2025-01-12 01:45:39 +00:00

Added skips for index.html checks in system folders

This commit is contained in:
Peter van Westen 2012-06-27 17:08:33 +03:00
parent 3324bb12b0
commit a6b4287518

View File

@ -13,8 +13,9 @@ class jedcheckerRulesHtmlindexes {
public $folders = array(); public $folders = array();
public $indexes = array(); public $indexes = array();
public function check($startFolder){ public function check($startFolder)
$this->findHtml($startFolder); {
$this->findHtml($startFolder, 1);
/** /**
* let us "merge" the 2 arrays * let us "merge" the 2 arrays
@ -42,30 +43,58 @@ class jedcheckerRulesHtmlindexes {
* + it also saves all folders names in the folders array (folder_name => false) * + it also saves all folders names in the folders array (folder_name => false)
* @param $start * @param $start
*/ */
public function findHtml($start) { public function findHtml($start, $root = 0)
$iterator = new RecursiveDirectoryIterator($start); {
// there should be a better way to find out if the main directory has an index.html file... // array of system folders (regex)
if(file_exists($start.'/index.html')) { // will match paths ending with these folders
$this->folders[$start] = true; $system_folders = array(
} else { 'administrator',
$this->folders[$start] = false; 'components',
} 'language',
'language/.*',
'media',
'modules',
'plugins',
'plugins/content',
'plugins/editors',
'plugins/editors-xtd',
'plugins/finder',
'plugins/search',
'plugins/system',
'plugins/user'
);
foreach($iterator as $file){ $iterator = new DirectoryIterator($start);
if($file->isFile()) {
if($file->getFileName() == 'index.html') { foreach ($iterator as $file) {
// fill an array with the tables that contain an index.html file if ($file->isFile()) {
$this->indexes[$file->getPath()] = true; continue;
}
$path = $file->getPathname();
// set the path to the root start path only for first time
if ($root && $file->getFileName() == '.') {
$path = $start;
} else if ($file->isDot()) {
continue;
}
$this->folders[$path] = true;
// only check index.html in non-system folders
if (!preg_match('#/('.implode('|', $system_folders).')$#i', str_replace('\\', '/', $path))) {
if (!file_exists($path.'/index.html')) {
$this->folders[$path] = false;
} }
} else { } else {
//let us save all folders in an array // set parent to true too
$this->folders[$file->getPathname()] = false; $this->folders[dirname($path)] = true;
$this->findHtml($file->getPathname()); }
// search in subfolders if not same as start
if ($path != $start) {
$this->findHtml($path);
} }
} }
} }
} }