33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-11-01 19:22:31 +00:00
jedchecker/source/administrator/components/com_jedchecker/libraries/rules/htmlindexes.php
2012-06-03 00:38:07 +02:00

66 lines
2.0 KiB
PHP

<?php
/**
* @author Daniel Dimitrov - compojoom.com
* @date: 02.06.12
*
* @copyright Copyright (C) 2008 - 2012 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die('Restricted access');
class jedcheckerRulesHtmlindexes {
public $folders = array();
public $indexes = array();
public function check($startFolder){
$this->findHtml($startFolder);
/**
* let us "merge" the 2 arrays
* If a folder has an index.html file, then the value of the folders array will be true
*/
$indexes = array_replace($this->folders, $this->indexes);
echo 'those directories does not have an index file: <br />';
foreach($indexes as $key => $index) {
if(!$index) {
echo $key . '<br />';
}
}
}
/**
* Recursively checking if each folder in the package has index.html files
* if it has it saves the info the indexes array (folder_name => true)
* + it also saves all folders names in the folders array (folder_name => false)
* @param $start
*/
public function findHtml($start) {
$iterator = new RecursiveDirectoryIterator($start);
// 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;
}
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;
}
} else {
//let us save all folders in an array
$this->folders[$file->getPathname()] = false;
$this->findHtml($file->getPathname());
}
}
}
}