2014-11-06 10:50:54 +01:00

201 lines
6.6 KiB
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Clicommands;
use Icinga\Application\Logger;
use Icinga\Cli\Command;
use Icinga\Config\Webserver\Webserver;
use Icinga\Exception\ProgrammingError;
/**
* Setup Icinga Web 2
*
* The setup command allows you to install/configure Icinga Web 2
*
* Usage: icingacli setup <action> [<argument>]
*/
class SetupCommand extends Command
{
/**
* Display the current setup token
*
* Shows you the current setup token used to authenticate when installing Icinga Web 2 using the web-based wizard
*
* USAGE:
*
* icingacli setup showToken
*/
public function showTokenAction()
{
$token = file_get_contents($this->app->getConfigDir() . '/setup.token');
if (! $token) {
$this->fail(
$this->translate('Nothing to show. Please create a new setup token using the generateToken action.')
);
}
printf($this->translate("The current setup token is: %s\n"), $token);
}
/**
* Create a new setup token
*
* Re-generates the setup token used to authenticate when installing Icinga Web 2 using the web-based wizard.
*
* USAGE:
*
* icingacli setup generateToken
*/
public function generateTokenAction()
{
if (false === $this->isSuperUser()) {
$this->fail($this->translate('This action needs to be run as super user in order to work properly!'));
return false;
}
$token = bin2hex(openssl_random_pseudo_bytes(8));
$filepath = $this->app->getConfigDir() . '/setup.token';
if (false === file_put_contents($filepath, $token)) {
$this->fail(sprintf($this->translate('Cannot write setup token "%s" to disk.'), $filepath));
}
if (false === chmod($filepath, 0660)) {
$this->fail(sprintf($this->translate('Cannot change access mode of "%s" to %o.'), $filepath, 0660));
}
printf($this->translate("The newly generated setup token is: %s\n"), $token);
}
/**
* Create the configuration directory
*
* This command creates the configuration directory for Icinga Web 2. The `group' argument
* is mandatory and should be the groupname of the user your web server is running as.
*
* USAGE:
*
* icingacli setup createConfigDirectory <group> [options]
*
* OPTIONS:
*
* --mode The access mode to use. Default is: 2775
* --path The path to the configuration directory. If omitted the default is used.
*
* EXAMPLES:
*
* icingacli setup createConfigDirectory apache
* icingacli setup createConfigDirectory apache --mode 2770
* icingacli setup createConfigDirectory apache --path /some/path
*/
public function createConfigDirectoryAction()
{
if (false === $this->isSuperUser()) {
$this->fail($this->translate('This action needs to be run as super user in order to work properly!'));
return false;
}
$group = $this->params->getStandalone();
if ($group === null) {
$this->fail($this->translate('The `group\' argument is mandatory.'));
return false;
}
$path = $this->params->get('path', $this->app->getConfigDir());
if (file_exists($path)) {
printf($this->translate("Configuration directory already exists at: %s\n"), $path);
return true;
}
$mode = octdec($this->params->get('mode', '2775'));
if (false === mkdir($path)) {
$this->fail(sprintf($this->translate('Unable to create path: %s'), $path));
return false;
}
$old = umask(0); // Prevent $mode from being mangled by the system's umask ($old)
chmod($path, $mode);
umask($old);
chgrp($path, $group);
printf($this->translate("Successfully created configuration directory at: %s\n"), $path);
}
/**
* Create webserver configuration
*
* USAGE:
*
* icingacli setup webserver <apache2|apache24|nginx> [options]
*
* OPTIONS:
*
* --path=<webpath> Path for the web server, default /icingaweb
*
* --publicPath=<wwwroot> Path to htdocs system path
*
* --file=<filename> Write configuration to file
*
*
* EXAMPLES:
*
* icingacli setup webserver apache24
*
* icingacli setup webserver apache2 --path /icingaweb --publicPath /usr/share/icingaweb/public
*
* icingacli setup webserver apache2 --file /etc/apache2/conf.d/icingaweb.conf
*/
public function webserverAction()
{
if (($type = $this->params->getStandalone()) === null) {
$this->fail($this->translate('Argument type is mandatory.'));
}
try {
$webserver = Webserver::createInstance($type);
} catch (ProgrammingError $e) {
$this->fail($this->translate('Unknown type') . ': ' . $type);
}
$webserver->setApp($this->app);
if (($sapi = $this->params->get('sapi', 'server')) === null) {
$this->fail($this->translate('argument --sapi is mandatory.'));
}
if (($path = $this->params->get('path', '/icingaweb')) === null) {
$this->fail($this->translate('argument --path is mandatory.'));
}
if (($publicPath = $this->params->get('publicPath', $webserver->getPublicPath())) === null) {
$this->fail($this->translate('argument --publicPath is mandatory.'));
}
$webserver->setWebPath($path);
$webserver->setPublicPath($publicPath);
$webserver->setSapi($sapi);
$config = $webserver->generate() . "\n";
if (($file = $this->params->get('file')) !== null) {
if (file_exists($file) === true) {
$this->fail(sprintf($this->translate('File %s already exists. Please delete it first.'), $file));
}
Logger::info($this->translate('Write %s configuration to file: %s'), $type, $file);
$re = file_put_contents($file, $config);
if ($re === false) {
$this->fail($this->translate('Could not write to file') . ': ' . $file);
}
Logger::info($this->translate('Successfully written %d bytes to file'), $re);
return true;
}
printf("# Your %s configuration:\n", $type);
echo $config;
return true;
}
/**
* Return whether the current user is a super user
*
* @return bool
*/
protected function isSuperUser()
{
return intval(shell_exec('echo $EUID')) === 0;
}
}