translator = $translator;
$this->tmpPath = $tmpPath;
}
public function execute()
{
$label = $this->translator->translate('Installation_SystemCheckWriteDirs');
$result = new DiagnosticResult($label);
$directories = Filechecks::checkDirectoriesWritable($this->getDirectories());
$error = false;
foreach ($directories as $directory => $isWritable) {
if ($isWritable) {
$status = DiagnosticResult::STATUS_OK;
} else {
$status = DiagnosticResult::STATUS_ERROR;
$error = true;
}
$result->addItem(new DiagnosticResultItem($status, $directory));
}
if ($error) {
$longErrorMessage = $this->translator->translate('Installation_SystemCheckWriteDirsHelp');
$longErrorMessage .= '
';
foreach ($directories as $directory => $isWritable) {
if (! $isWritable) {
$longErrorMessage .= sprintf('chmod a+w %s
', $directory);
}
}
$longErrorMessage .= '
';
$result->setLongErrorMessage($longErrorMessage);
}
return array($result);
}
/**
* @return string[]
*/
private function getDirectories()
{
$directoriesToCheck = array(
$this->tmpPath,
$this->tmpPath . '/assets/',
$this->tmpPath . '/cache/',
$this->tmpPath . '/climulti/',
$this->tmpPath . '/latest/',
$this->tmpPath . '/logs/',
$this->tmpPath . '/sessions/',
$this->tmpPath . '/tcpdf/',
$this->tmpPath . '/templates_c/',
);
if (! DbHelper::isInstalled()) {
// at install, need /config to be writable (so we can create config.ini.php)
$directoriesToCheck[] = '/config/';
}
return $directoriesToCheck;
}
}