1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
<?php
class CleanupTask extends BeditaBaseShell {
function startup() {
}
public function execute() {
$this->hr();
$this->out('BEdita core cleanup: ' . TMP);
$this->hr();
$this->cleanUpTmpDir(TMP);
if (isset($this->params['frontend'])) {
$this->out("BEdita frontends cleanup: " . $this->params['frontend']);
$this->cleanUpTmpDir($this->params['frontend'].DS."tmp".DS);
} else {
$this->out("BEdita frontends cleanup: " . BEDITA_FRONTENDS_PATH);
$folder= new Folder(BEDITA_FRONTENDS_PATH);
$dirs = $folder->read();
foreach ($dirs[0] as $d) {
if($d[0] !== ".") {
$this->cleanUpTmpDir(BEDITA_FRONTENDS_PATH . DS . $d . DS . "tmp" . DS);
}
}
}
$this->hr();
$this->out("Done");
}
private function cleanUpTmpDir($basePath) {
$Utility = ClassRegistry::init('Utility');
if ($basePath !== TMP) {
if( !file_exists($basePath)) {
$this->out("Directory $basePath not found");
return;
}
}
$this->out('Cleaning dir: '.$basePath);
$cleanAll = isset($this->params['all']);
if ($cleanAll) {
$this->out('Cleaning all folders in '. $basePath . 'cache !!');
}
$options = array('basePath' => $basePath, 'frontendsToo' => false,
'cleanAll' => $cleanAll);
$res = $Utility->call('cleanupCache', $options);
if (!$this->outputCleaningErrors($res)) {
$this->out('Cache cleaned.');
$this->out('Smarty compiled/cache cleaned.');
}
if (isset($this->params['logs'])) {
$res = $Utility->call('emptyLogs', array('basePath' => $basePath . 'logs'));
if (!$this->outputCleaningErrors($res)) {
$this->out('Logs cleaned.');
}
}
}
private function outputCleaningErrors($data) {
if (empty($data['failed'])) {
return false;
}
$this->hr();
$this->out('Some errors occured');
$this->hr();
foreach ($data['failed'] as $f) {
$this->out($f['error']);
}
return true;
}
public function cleanPHPFiles($item, $recursive = true) {
clearstatcache();
if (file_exists($item) && is_file($item)) {
$ext = pathinfo($item, PATHINFO_EXTENSION);
if ($ext == "php") {
$this->removeSpaces($item);
} else {
$this->out($item . " is not a php file.");
}
} elseif (is_dir($item)) {
$folder = new Folder($item);
$phpfiles = $folder->findRecursive(".*\.php");
if (!empty($phpfiles)) {
foreach ($phpfiles as $f) {
$this->removeSpaces($f);
}
}
} else {
$this->out("Error: " . $item . " is not a valid directory or php file.");
}
}
private function removeSpaces($file) {
$filename = basename($file);
if (!is_readable($file)) {
$this->out($filename . " is not readable.");
return;
}
$regExpPre = "/^[\n\r|\n\r|\n|\r|\s]+<\?php/";
$regExpPost = "/\?>[\n\r|\n\r|\n|\r|\s]+$/";
$regExpIn = "/^\?>.*<\?php/s";
$data = $originalData = file_get_contents($file);
$data = preg_replace($regExpPre, "<?php", $data);
$data = preg_replace($regExpPost, "?>", $data);
$data = preg_replace($regExpIn, "", $data);
if ($data !== $originalData) {
if (!is_writable($file)) {
$this->out($filename . "has leading or trailing spaces but it is not writable.");
return;
}
$this->out("Found trailing/leading spaces in " . $filename);
if (file_put_contents($file, $data)) {
$this->out($filename . " cleaned");
} else {
$this->out("ERROR: error writing " . $filename);
}
}
}
}
?>