2016-04-22 09:53:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Job;
|
|
|
|
|
|
|
|
use Icinga\Module\Director\Hook\JobHook;
|
2016-11-01 18:28:36 +01:00
|
|
|
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
2016-04-22 09:53:59 +02:00
|
|
|
use Icinga\Module\Director\Web\Form\QuickForm;
|
2016-05-19 15:09:45 +02:00
|
|
|
use Icinga\Module\Director\Objects\SyncRule;
|
2016-04-22 09:53:59 +02:00
|
|
|
|
|
|
|
class SyncJob extends JobHook
|
|
|
|
{
|
2016-05-19 15:09:45 +02:00
|
|
|
protected $rule;
|
|
|
|
|
2016-04-22 09:53:59 +02:00
|
|
|
public function run()
|
|
|
|
{
|
2016-05-25 11:46:27 +02:00
|
|
|
$db = $this->db();
|
|
|
|
$id = $this->getSetting('rule_id');
|
|
|
|
if ($id === '__ALL__') {
|
|
|
|
foreach (SyncRule::loadAll($db) as $rule) {
|
|
|
|
$this->runForRule($rule);
|
|
|
|
}
|
2016-05-19 15:09:45 +02:00
|
|
|
} else {
|
2016-05-25 11:46:27 +02:00
|
|
|
$this->runForRule(SyncRule::load($id, $db));
|
2016-04-22 14:30:01 +02:00
|
|
|
}
|
2016-04-22 09:53:59 +02:00
|
|
|
}
|
|
|
|
|
2016-05-25 11:46:27 +02:00
|
|
|
protected function runForRule(SyncRule $rule)
|
2016-05-19 15:09:45 +02:00
|
|
|
{
|
2016-05-25 11:46:27 +02:00
|
|
|
if ($this->getSetting('apply_changes') === 'y') {
|
|
|
|
$rule->applyChanges();
|
|
|
|
} else {
|
|
|
|
$rule->checkForChanges();
|
2016-05-19 15:09:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-22 09:53:59 +02:00
|
|
|
public static function getDescription(QuickForm $form)
|
|
|
|
{
|
|
|
|
return $form->translate(
|
|
|
|
'The "Sync" job allows to run sync actions at regular intervals'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-04-22 14:30:01 +02:00
|
|
|
public static function addSettingsFormFields(QuickForm $form)
|
|
|
|
{
|
2016-11-01 18:28:36 +01:00
|
|
|
/** @var DirectorObjectForm $form */
|
2016-04-22 14:30:01 +02:00
|
|
|
$rules = self::enumSyncRules($form);
|
|
|
|
|
|
|
|
$form->addElement('select', 'rule_id', array(
|
|
|
|
'label' => $form->translate('Synchronization rule'),
|
|
|
|
'description' => $form->translate(
|
|
|
|
'Please choose your synchronization rule that should be executed.'
|
|
|
|
. ' You could create different schedules for different rules or also'
|
|
|
|
. ' opt for running all of them at once.'
|
|
|
|
),
|
|
|
|
'required' => true,
|
|
|
|
'class' => 'autosubmit',
|
|
|
|
'multiOptions' => $rules
|
|
|
|
));
|
|
|
|
|
|
|
|
$form->addElement('select', 'apply_changes', array(
|
|
|
|
'label' => $form->translate('Apply changes'),
|
|
|
|
'description' => $form->translate(
|
|
|
|
'You could immediately apply eventual changes or just learn about them.'
|
|
|
|
. ' In case you do not want them to be applied immediately, defining a'
|
|
|
|
. ' job still makes sense. You will be made aware of available changes'
|
|
|
|
. ' in your Director GUI.'
|
|
|
|
),
|
|
|
|
'value' => 'n',
|
|
|
|
'multiOptions' => array(
|
|
|
|
'y' => $form->translate('Yes'),
|
|
|
|
'n' => $form->translate('No'),
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
if (! strlen($form->getSentOrObjectValue('job_name'))) {
|
|
|
|
if (($ruleId = $form->getSentValue('rule_id')) && array_key_exists($ruleId, $rules)) {
|
|
|
|
$name = sprintf('Sync job: %s', $rules[$ruleId]);
|
|
|
|
$form->getElement('job_name')->setValue($name);
|
|
|
|
///$form->getObject()->set('job_name', $name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function enumSyncRules(QuickForm $form)
|
|
|
|
{
|
2016-11-01 18:28:36 +01:00
|
|
|
/** @var DirectorObjectForm $form */
|
2016-04-22 14:30:01 +02:00
|
|
|
$db = $form->getDb();
|
|
|
|
$query = $db->select()->from('sync_rule', array('id', 'rule_name'))->order('rule_name');
|
|
|
|
$res = $db->fetchPairs($query);
|
|
|
|
return array(
|
|
|
|
null => $form->translate('- please choose -'),
|
|
|
|
'__ALL__' => $form->translate('Run all rules at once')
|
|
|
|
) + $res;
|
|
|
|
}
|
2016-04-22 09:53:59 +02:00
|
|
|
}
|