icingaweb2-module-director/library/Director/Objects/IcingaCommand.php

96 lines
2.5 KiB
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\IcingaConfig\IcingaConfigHelper as c;
class IcingaCommand extends IcingaObject
{
protected $table = 'icinga_command';
protected $type = 'CheckCommand';
protected $defaultProperties = array(
'id' => null,
'object_name' => null,
'object_type' => null,
'disabled' => 'n',
'methods_execute' => null,
'command' => null,
'timeout' => null,
'zone_id' => null,
);
protected $supportsCustomVars = true;
protected $supportsFields = true;
2015-06-29 10:39:37 +02:00
protected $supportsImports = true;
protected $supportsArguments = true;
protected static $pluginDir;
2016-02-26 11:58:37 +01:00
/**
* Render the 'medhods_execute' property as 'execute'
*
* Execute is a reserved word in SQL, column name was prefixed
*
* Avoid complaints for method names with underscore:
* @codingStandardsIgnoreStart
*
* @return string
*/
protected function renderMethods_execute()
{
2016-02-26 11:58:37 +01:00
// @codingStandardsIgnoreEnd
return c::renderKeyValue('execute', $this->methods_execute);
}
public function mungeCommand($value)
{
if (is_array($value)) {
$value = implode(' ', $value);
} elseif (is_object($value)) {
// { type => Function } -> really??
return null;
return $value;
}
if (self::$pluginDir !== null) {
if (($pos = strpos($value, self::$pluginDir)) === 0) {
$value = substr($value, strlen(self::$pluginDir) + 1);
}
}
return $value;
}
protected function renderCommand()
{
$command = $this->command;
$prefix = '';
if (preg_match('~^([A-Z][A-Za-z0-9]+\s\+\s)(.+?)$~', $command, $m)) {
$prefix = $m[1];
$command = $m[2];
} elseif ($command[0] !== '/') {
$prefix = 'PluginDir + ';
$command = '/' . $command;
}
$parts = preg_split('/\s+/', $command, -1, PREG_SPLIT_NO_EMPTY);
array_unshift($parts, c::alreadyRendered($prefix . c::renderString(array_shift($parts))));
return c::renderKeyValue('command', c::renderArray($parts));
}
protected function renderTimeout()
{
2015-12-03 18:02:57 +01:00
return $this->renderPropertyAsSeconds('timeout');
}
public static function setPluginDir($pluginDir)
{
self::$pluginDir = $pluginDir;
}
}