mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	This reverts commit 6df031dc786256e0bd42f8047d6c308e90abedf6. I revert this commit for the following reasons: - MissingParameterException must not be thrown manually because we have UrlParams::getRequired() which was UrlParams::req() before. - The commit introduces the untranslated string 'host or service'. - 4xx are client, not server errors. - Copy and paste code for the stack trace handling in the ErrorController. refs #6281
		
			
				
	
	
		
			140 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | 
						|
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\AcknowledgeProblemCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\AddCommentCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\ProcessCheckResultCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\ScheduleHostCheckCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\ScheduleHostDowntimeCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Forms\Command\Object\SendCustomNotificationCommandForm;
 | 
						|
use Icinga\Module\Monitoring\Object\Host;
 | 
						|
use Icinga\Module\Monitoring\Web\Controller\MonitoredObjectController;
 | 
						|
use Icinga\Web\Hook;
 | 
						|
 | 
						|
class Monitoring_HostController extends MonitoredObjectController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * (non-PHPDoc)
 | 
						|
     * @see MonitoredObjectController::$commandRedirectUrl For the property documentation.
 | 
						|
     */
 | 
						|
    protected $commandRedirectUrl = 'monitoring/host/show';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Fetch the requested host from the monitoring backend
 | 
						|
     *
 | 
						|
     * @throws Zend_Controller_Action_Exception If the host was not found
 | 
						|
     */
 | 
						|
    public function init()
 | 
						|
    {
 | 
						|
        $host = new Host($this->backend, $this->params->get('host'));
 | 
						|
 | 
						|
        $this->applyRestriction('monitoring/hosts/filter', $host);
 | 
						|
 | 
						|
        if ($host->fetch() === false) {
 | 
						|
            throw new Zend_Controller_Action_Exception($this->translate('Host not found'));
 | 
						|
        }
 | 
						|
        $this->object = $host;
 | 
						|
        $this->createTabs();
 | 
						|
        $this->getTabs()->activate('host');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get host actions from hook
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    protected function getHostActions()
 | 
						|
    {
 | 
						|
        $urls = array();
 | 
						|
 | 
						|
        foreach (Hook::all('Monitoring\\HostActions') as $hook) {
 | 
						|
            foreach ($hook->getActionsForHost($this->object) as $id => $url) {
 | 
						|
                $urls[$id] = $url;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        return $urls;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Show a host
 | 
						|
     */
 | 
						|
    public function showAction()
 | 
						|
    {
 | 
						|
        $this->view->actions = $this->getHostActions();
 | 
						|
        parent::showAction();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Acknowledge a host problem
 | 
						|
     */
 | 
						|
    public function acknowledgeProblemAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/acknowledge-problem');
 | 
						|
 | 
						|
        $form = new AcknowledgeProblemCommandForm();
 | 
						|
        $form->setTitle($this->translate('Acknowledge Host Problem'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Add a host comment
 | 
						|
     */
 | 
						|
    public function addCommentAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/comment/add');
 | 
						|
 | 
						|
        $form = new AddCommentCommandForm();
 | 
						|
        $form->setTitle($this->translate('Add Host Comment'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reschedule a host check
 | 
						|
     */
 | 
						|
    public function rescheduleCheckAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/schedule-check');
 | 
						|
 | 
						|
        $form = new ScheduleHostCheckCommandForm();
 | 
						|
        $form->setTitle($this->translate('Reschedule Host Check'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Schedule a host downtime
 | 
						|
     */
 | 
						|
    public function scheduleDowntimeAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/downtime/schedule');
 | 
						|
 | 
						|
        $form = new ScheduleHostDowntimeCommandForm();
 | 
						|
        $form->setTitle($this->translate('Schedule Host Downtime'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Submit a passive host check result
 | 
						|
     */
 | 
						|
    public function processCheckResultAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/process-check-result');
 | 
						|
 | 
						|
        $form = new ProcessCheckResultCommandForm();
 | 
						|
        $form->setTitle($this->translate('Submit Passive Host Check Result'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Send a custom notification for host
 | 
						|
     */
 | 
						|
    public function sendCustomNotificationAction()
 | 
						|
    {
 | 
						|
        $this->assertPermission('monitoring/command/send-custom-notification');
 | 
						|
 | 
						|
        $form = new SendCustomNotificationCommandForm();
 | 
						|
        $form->setTitle($this->translate('Send Custom Host Notification'));
 | 
						|
        $this->handleCommandForm($form);
 | 
						|
    }
 | 
						|
}
 |