icingaweb2-module-director/application/controllers/JobController.php

92 lines
2.6 KiB
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Web\Controller\ActionController;
use Icinga\Module\Director\Objects\DirectorJob;
use Icinga\Data\Filter\Filter;
use Icinga\Web\Notification;
use Icinga\Web\Url;
class JobController extends ActionController
{
public function addAction()
{
$this->indexAction();
}
public function indexAction()
{
if (! ($id = $this->params->get('id'))) {
return $this->editAction();
}
$this->prepareTabs($id)->activate('show');
$this->view->job = DirectorJob::load($id, $this->db());
$this->view->title = sprintf(
$this->translate('Job: %s'),
$this->view->job->job_name
);
}
public function runAction()
{
// TODO: Form, POST
$id = $this->params->get('id');
$job = DirectorJob::load($id, $this->db());
if ($job->run()) {
Notification::success('Job has successfully been completed');
$this->redirectNow(
Url::fromPath(
'director/job',
array('id' => $id)
)
);
} else {
Notification::success('Job run failed');
}
}
public function editAction()
{
$form = $this->view->form = $this->loadForm('directorJob')
->setSuccessUrl('director/job')
->setDb($this->db());
if ($id = $this->params->get('id')) {
$this->prepareTabs($id)->activate('edit');
$form->loadObject($id);
$this->view->title = sprintf(
$this->translate('Job %s'),
$form->getObject()->job_name
);
} else {
$this->view->title = $this->translate('Add job');
$this->prepareTabs()->activate('add');
}
$form->handleRequest();
$this->setViewScript('object/form');
}
protected function prepareTabs($id = null)
{
if ($id) {
return $this->getTabs()->add('show', array(
'url' => 'director/job',
'urlParams' => array('id' => $id),
'label' => $this->translate('Job'),
))->add('edit', array(
'url' => 'director/job/edit',
'urlParams' => array('id' => $id),
'label' => $this->translate('Config'),
));
} else {
return $this->getTabs()->add('add', array(
'url' => 'director/job/add',
'label' => $this->translate('Add a job'),
));
}
}
}