mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
setup: Remove MakeDirStep
Not in use.
This commit is contained in:
parent
fd2901c4cc
commit
594eb366f2
@ -1,70 +0,0 @@
|
||||
<?php
|
||||
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||
|
||||
namespace Icinga\Module\Setup\Utils;
|
||||
|
||||
use Icinga\Module\Setup\Step;
|
||||
|
||||
class MakeDirStep extends Step
|
||||
{
|
||||
protected $paths;
|
||||
|
||||
protected $dirmode;
|
||||
|
||||
protected $errors;
|
||||
|
||||
/**
|
||||
* @param array $paths
|
||||
* @param int $dirmode
|
||||
*/
|
||||
public function __construct($paths, $dirmode)
|
||||
{
|
||||
$this->paths = $paths;
|
||||
$this->dirmode = $dirmode;
|
||||
$this->errors = array();
|
||||
}
|
||||
|
||||
public function apply()
|
||||
{
|
||||
$success = true;
|
||||
foreach ($this->paths as $path) {
|
||||
if (false === file_exists($path)) {
|
||||
if (false === @mkdir($path, 0777, true)) {
|
||||
$this->errors[$path] = error_get_last();
|
||||
$success = false;
|
||||
} else {
|
||||
$this->errors[$path] = null;
|
||||
chmod($path, $this->dirmode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $success;
|
||||
}
|
||||
|
||||
public function getSummary()
|
||||
{
|
||||
// This step is usually being used for directories which are required for the configuration but
|
||||
// are not defined in any way by the user. So there is no need to show a summary for this step.
|
||||
}
|
||||
|
||||
public function getReport()
|
||||
{
|
||||
$okMessage = mt('setup', 'Directory "%s" in "%s" has been successfully created.');
|
||||
$failMessage = mt('setup', 'Unable to create directory "%s" in "%s". An error occured:');
|
||||
|
||||
$report = array();
|
||||
foreach ($this->paths as $path) {
|
||||
if (array_key_exists($path, $this->errors)) {
|
||||
if (is_array($this->errors[$path])) {
|
||||
$report[] = sprintf($failMessage, basename($path), dirname($path));
|
||||
$report[] = sprintf(mt('setup', 'ERROR: %s'), $this->errors[$path]['message']);
|
||||
} else {
|
||||
$report[] = sprintf($okMessage, basename($path), dirname($path));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $report;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user