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:
<?php
declare(strict_types=1);
namespace App\IqrfAppModule\Forms;
use App\Forms\FormFactory;
use App\IqrfAppModule\Model\IqrfAppManager;
use App\IqrfAppModule\Presenters\SendRawPresenter;
use Nette;
use Nette\Application\UI\Form;
class IqrfAppSendRawFormFactory {
use Nette\SmartObject;
private $manager;
private $factory;
public function __construct(FormFactory $factory, IqrfAppManager $manager) {
$this->factory = $factory;
$this->manager = $manager;
}
public function create(SendRawPresenter $presenter) {
$form = $this->factory->create();
$form->addText('packet', 'DPA packet')->setRequired();
$form->addCheckbox('timeoutEnabled', 'Set own DPA timeout')
->setDefaultValue(true);
$form->addText('timeout', 'DPA timeout (ms)')->setDefaultValue(1000)
->addConditionOn($form['timeoutEnabled'], Form::EQUAL, true)
->setRequired();
$form->addSubmit('send', 'Send');
$form->addProtection('Timeout expired, resubmit the form.');
$form->onSuccess[] = function (Form $form, $values) use ($presenter) {
$packet = $values['packet'];
$timeout = $values['timeoutEnabled'] ? $values['timeout'] : null;
if ($this->manager->validatePacket($packet)) {
$response = $this->manager->sendRaw($packet, $timeout);
$presenter->handleShowResponse($response);
}
};
return $form;
}
}