vendor\klio\klio-bundle\src\Form\Form.php line 43
<?php
namespace Klio\KlioBundle\Form;
use Klio\KlioBundle\Database\DB;
use Klio\KlioBundle\Security\Hash;
use Klio\KlioBundle\Security\Crypt;
use Klio\KlioBundle\Form\Types\Text;
class Form
{
private $form;
private $dom;
private array $fields;
private string $csrf;
private string $method = "";
private array $dbTables = [];
private string $dbTable = "";
private string $dbId = "";
private string $id = "";
public DB $db;
private string $dbMode;
public function __construct($form, $dom)
{
$this->form = $form;
$this->dom = $dom;
$this->fields = array();
$this->csrf = "";
$this->dbTables = array();
$this->db = new DB();
$this->setMethod();
$this->setId();
$this->setDbTable();
$this->setDbId();
//$this->form->novalidate = true;
$this->parseFields($this->dbTable, $this->dbId);
$this->setCsrf();
//if (__DEV__) dump($this);
}
private function setMethod()
{
$this->method = "ajax";
if ($this->form->getAttribute('method') == "post") {
$this->method = 'post';
$this->form->setAttribute('enctype', 'multipart/form-data');
}
}
private function setId()
{
// estc-e qu'on pêrmet de forcer l'iD ? : non
//if (!$this->form->getAttribute('id')) $this->form->setAttribute('id', Hash::sha1("", 62));
//$this->id = $this->form->getAttribute('id');
$this->id = Hash::sha1("", 62);
$this->form->setAttribute('id', $this->id); // id unique
}
/**
* dbTable setter
*
* @return void
*/
private function setDbTable()
{
if ($this->form->getAttribute('table')) {
$this->dbTable = $this->form->getAttribute('table');
$this->form->setAttribute('table', false);
}
if ($this->dbTable != "") $this->db->getTableDesc($this->dbTable);
}
/**
* form->dbTable getter
*
* @return string
*/
public function getDbTable(): string
{
return $this->dbTable;
}
private function setDbId()
{
$this->dbId = "";
$this->dbMode = "";
if ($this->form->getAttribute('dbid')) {
$this->dbId = $this->form->getAttribute('dbid');
$this->form->setAttribute('dbid', false);
}
if (@$_GET['id']) {
$this->dbId = $_GET['id'];
$this->dbMode = "read";
}
global $POST;
if ($POST and $POST->getDbId()) {
$this->dbId = $POST->getDbId();
$this->dbMode = "update";
}
if (!$this->dbId) {
$this->dbId = Hash::uuid62();
$this->dbMode = "create";
}
if ($this->dbTable and $this->dbId) $this->getRow($this->dbTable, $this->dbId);
}
/**
* form->dbId getter
*
* @return string
*/
public function getDbId(): string
{
return $this->dbId;
}
// charge le row dans la table, false si vide
public function getRow(string $table, string $id)
{
return $this->db->getRow($table, $id);
}
// charge la valeur d'un champ
public function getValue(string $table, string $id, string $field)
{
return $this->db->getValue($table, $id, $field);
}
private function parseFields()
{
// inputs
foreach ($this->form->find('input[type=text],input[type=email],input[type=number],input[type=date] ,input[type=time]') as $textInput) {
$this->fields[] = new Text($this, $textInput);
}
foreach ($this->form->find('input[type=checkbox]') as $checkbox) {
//$updatedField = new Checkbox($this, $checkbox);
//if (@$updatedField->name) $this->fields[$updatedField->name] = 1;
}
// inputs
foreach ($this->form->find('textarea') as $textArea) {
//if (@$updatedField->name) $this->fields[$updatedField->name] = 1;
}
unset($updatedField);
}
private function setCsrf()
{
if (!__CRYPTOKEY__) dd("Key undefined");
$csrf = array();
$csrf['formId'] = $this->id;
$csrf['fields'] = $this->setFieldsCsrf();
$csrf['token'] = __TOKEN__;
$this->csrf = Crypt::Encrypt(json_encode($csrf), __CRYPTOKEY__);
$csrfHidden = $this->dom->createElement('input');
$csrfHidden->setAttribute("type", "hidden");
$csrfHidden->setAttribute("name", "csrf[]");
$csrfHidden->setAttribute("value", $this->csrf);
$this->form->appendChild($csrfHidden);
// if (__DEV__) dump($csrf);
}
private function setFieldsCsrf()
{
$fieldsCsrf = array();
foreach ($this->fields as $field) {
$table = $field->getDbTable();
$id = $field->getDbId();
$name = $field->getName();
$initialName = $field->getInitialName();
$fieldsCsrf[$table][$id][$name] = $initialName;
}
return $fieldsCsrf;
}
}