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 $indexes = array();
public function check($startFolder){
$this->findHtml($startFolder);
public function check($startFolder)
{
$this->findHtml($startFolder, 1);
/**
* 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)
* @param $start
*/
public function findHtml($start) {
$iterator = new RecursiveDirectoryIterator($start);
public function findHtml($start, $root = 0)
{
// there should be a better way to find out if the main directory has an index.html file...
if(file_exists($start.'/index.html')) {
$this->folders[$start] = true;
} else {
$this->folders[$start] = false;
// array of system folders (regex)
// will match paths ending with these folders
$system_folders = array(
'administrator',
'components',
'language',
'language/.*',
'media',
'modules',
'plugins',
'plugins/content',
'plugins/editors',
'plugins/editors-xtd',
'plugins/finder',
'plugins/search',
'plugins/system',
'plugins/user'
);
$iterator = new DirectoryIterator($start);
foreach ($iterator as $file) {
if ($file->isFile()) {
continue;
}
foreach($iterator as $file){
if($file->isFile()) {
if($file->getFileName() == 'index.html') {
// fill an array with the tables that contain an index.html file
$this->indexes[$file->getPath()] = true;
$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 {
//let us save all folders in an array
$this->folders[$file->getPathname()] = false;
$this->findHtml($file->getPathname());
// set parent to true too
$this->folders[dirname($path)] = true;
}
// search in subfolders if not same as start
if ($path != $start) {
$this->findHtml($path);
}
}
}
}