1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
<?php
// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
namespace Icinga\Module\Reporting\Web\Forms;
use DateTime;
use Icinga\Application\Icinga;
use Icinga\Application\Web;
use Icinga\Authentication\Auth;
use Icinga\Module\Reporting\Database;
use Icinga\Module\Reporting\Hook\ActionHook;
use Icinga\Module\Reporting\ProvidedActions;
use Icinga\Module\Reporting\Report;
use Icinga\Util\Json;
use ipl\Html\Form;
use ipl\Html\HtmlDocument;
use ipl\Html\HtmlElement;
use ipl\Scheduler\Contract\Frequency;
use ipl\Web\Compat\CompatForm;
use ipl\Web\FormElement\ScheduleElement;
use function ipl\Stdlib\get_php_type;
class ScheduleForm extends CompatForm
{
use ProvidedActions;
/** @var Report */
protected $report;
/** @var ScheduleElement */
protected $scheduleElement;
public function __construct()
{
$this->scheduleElement = new ScheduleElement('schedule_element');
/** @var Web $app */
$app = Icinga::app();
$this->scheduleElement->setIdProtector([$app->getRequest(), 'protectId']);
}
public function getPartUpdates(): array
{
return $this->scheduleElement->prepareMultipartUpdate($this->getRequest());
}
/**
* Create a new form instance with the given report
*
* @param Report $report
*
* @return static
*/
public static function fromReport(Report $report): self
{
$form = new static();
$form->report = $report;
$schedule = $report->getSchedule();
if ($schedule !== null) {
$config = $schedule->getConfig();
$config['action'] = $schedule->getAction();
/** @var Frequency $type */
$type = $config['frequencyType'];
$config['schedule_element'] = $type::fromJson($config['frequency']);
unset($config['frequency']);
unset($config['frequencyType']);
$form->populate($config);
}
return $form;
}
public function hasBeenSubmitted(): bool
{
return $this->hasBeenSent() && (
$this->getPopulatedValue('submit')
|| $this->getPopulatedValue('remove')
|| $this->getPopulatedValue('send')
);
}
protected function assemble()
{
$this->addElement('select', 'action', [
'required' => true,
'class' => 'autosubmit',
'options' => array_merge([null => $this->translate('Please choose')], $this->listActions()),
'label' => $this->translate('Action'),
'description' => $this->translate('Specifies an action to be triggered by the scheduler')
]);
$values = $this->getValues();
if (isset($values['action'])) {
$config = new Form();
// $config->populate($this->getValues());
/** @var ActionHook $action */
$action = new $values['action']();
$action->initConfigForm($config, $this->report);
foreach ($config->getElements() as $element) {
$this->addElement($element);
}
}
$this->addHtml(HtmlElement::create('div', ['class' => 'schedule-element-separator']));
$this->addElement($this->scheduleElement);
$schedule = $this->report->getSchedule();
$this->addElement('submit', 'submit', [
'label' => $schedule === null ? $this->translate('Create Schedule') : $this->translate('Update Schedule')
]);
if ($schedule !== null) {
$sendButton = $this->createElement('submit', 'send', [
'label' => $this->translate('Send Report Now'),
'formnovalidate' => true
]);
$this->registerElement($sendButton);
/** @var HtmlDocument $wrapper */
$wrapper = $this->getElement('submit')->getWrapper();
$wrapper->prepend($sendButton);
$removeButton = $this->createElement('submit', 'remove', [
'label' => $this->translate('Remove Schedule'),
'class' => 'btn-remove',
'formnovalidate' => true
]);
$this->registerElement($removeButton);
$wrapper->prepend($removeButton);
}
}
public function onSuccess()
{
$db = Database::get();
$schedule = $this->report->getSchedule();
if ($this->getPopulatedValue('remove')) {
$db->delete('schedule', ['id = ?' => $schedule->getId()]);
return;
}
$values = $this->getValues();
if ($this->getPopulatedValue('send')) {
$action = new $values['action']();
$action->execute($this->report, $values);
return;
}
$action = $values['action'];
unset($values['action']);
unset($values['schedule_element']);
$frequency = $this->scheduleElement->getValue();
$values['frequency'] = Json::encode($frequency);
$values['frequencyType'] = get_php_type($frequency);
$config = Json::encode($values);
$db->beginTransaction();
if ($schedule === null) {
$now = (new DateTime())->getTimestamp() * 1000;
$db->insert('schedule', [
'author' => Auth::getInstance()->getUser()->getUsername(),
'report_id' => $this->report->getId(),
'ctime' => $now,
'mtime' => $now,
'action' => $action,
'config' => $config
]);
} else {
$db->update('schedule', [
'action' => $action,
'config' => $config
], ['id = ?' => $schedule->getId()]);
}
$db->commitTransaction();
}
}
|