vendor\klio\klio-bundle\src\Form\Form.php line 27

  1. <?php
  2. namespace Klio\KlioBundle\Form;
  3. use Klio\KlioBundle\Database\DB;
  4. use Klio\KlioBundle\Security\Hash;
  5. use Klio\KlioBundle\Security\Crypt;
  6. use Klio\KlioBundle\Form\Types\Text;
  7. class Form
  8. {
  9.     private  $form;
  10.     private  $dom;
  11.     private array $fields;
  12.     private string $csrf;
  13.     private string $method "";
  14.     private array $dbTables = [];
  15.     private string $dbTable "";
  16.     private string $dbId "";
  17.     private string $id "";
  18.     public DB $db;
  19.     private string $dbMode;
  20.     public function __construct($form$dom)
  21.     {
  22.         $this->form $form;
  23.         $this->dom $dom;
  24.         $this->fields = array();
  25.         $this->csrf "";
  26.         $this->dbTables = array();
  27.         $this->db = new DB();
  28.         $this->setMethod();
  29.         $this->setId();
  30.         $this->setDbTable();
  31.         $this->setDbId();
  32.         //$this->form->novalidate = true;
  33.         $this->parseFields($this->dbTable$this->dbId);
  34.         $this->setCsrf();
  35.         //if (__DEV__) dump($this);
  36.     }
  37.     private function setMethod()
  38.     {
  39.         $this->method "ajax";
  40.         if ($this->form->getAttribute('method') == "post") {
  41.             $this->method 'post';
  42.             $this->form->setAttribute('enctype''multipart/form-data');
  43.         }
  44.     }
  45.     private function setId()
  46.     {
  47.         // estc-e qu'on pêrmet de forcer l'iD ? : non
  48.         //if (!$this->form->getAttribute('id')) $this->form->setAttribute('id', Hash::sha1("", 62));
  49.         //$this->id = $this->form->getAttribute('id');
  50.         $this->id Hash::sha1(""62);
  51.         $this->form->setAttribute('id'$this->id); // id unique
  52.     }
  53.     /**
  54.      * dbTable setter
  55.      *
  56.      * @return void
  57.      */
  58.     private function setDbTable()
  59.     {
  60.         if ($this->form->getAttribute('table')) {
  61.             $this->dbTable $this->form->getAttribute('table');
  62.             $this->form->setAttribute('table'false);
  63.         }
  64.         if ($this->dbTable != ""$this->db->getTableDesc($this->dbTable);
  65.     }
  66.     /**
  67.      * form->dbTable getter 
  68.      *
  69.      * @return string
  70.      */
  71.     public function getDbTable(): string
  72.     {
  73.         return $this->dbTable;
  74.     }
  75.     private function setDbId()
  76.     {
  77.         $this->dbId "";
  78.         $this->dbMode "";
  79.         if ($this->form->getAttribute('dbid')) {
  80.             $this->dbId $this->form->getAttribute('dbid');
  81.             $this->form->setAttribute('dbid'false);
  82.         }
  83.         if (@$_GET['id']) {
  84.             $this->dbId $_GET['id'];
  85.             $this->dbMode "read";
  86.         }
  87.         global $POST;
  88.         if ($POST and $POST->getDbId()) {
  89.             $this->dbId $POST->getDbId();
  90.             $this->dbMode "update";
  91.         }
  92.         if (!$this->dbId) {
  93.             $this->dbId Hash::uuid62();
  94.             $this->dbMode "create";
  95.         }
  96.         if ($this->dbTable and $this->dbId$this->getRow($this->dbTable$this->dbId);
  97.     }
  98.     /**
  99.      * form->dbId getter
  100.      *
  101.      * @return string
  102.      */
  103.     public function getDbId(): string
  104.     {
  105.         return $this->dbId;
  106.     }
  107.     // charge le row dans la table, false si vide
  108.     public function getRow(string $tablestring $id)
  109.     {
  110.         return $this->db->getRow($table$id);
  111.     }
  112.     // charge la valeur d'un champ
  113.     public function getValue(string $tablestring $idstring $field)
  114.     {
  115.         return $this->db->getValue($table$id$field);
  116.     }
  117.     private function parseFields()
  118.     {
  119.         // inputs
  120.         foreach ($this->form->find('input[type=text],input[type=email],input[type=number],input[type=date] ,input[type=time]') as $textInput) {
  121.             $this->fields[] = new Text($this$textInput);
  122.         }
  123.         foreach ($this->form->find('input[type=checkbox]') as $checkbox) {
  124.             //$updatedField = new Checkbox($this, $checkbox);
  125.             //if (@$updatedField->name) $this->fields[$updatedField->name] = 1;
  126.         }
  127.         // inputs
  128.         foreach ($this->form->find('textarea') as $textArea) {
  129.             //if (@$updatedField->name) $this->fields[$updatedField->name] = 1;
  130.         }
  131.         unset($updatedField);
  132.     }
  133.     private function setCsrf()
  134.     {
  135.         if (!__CRYPTOKEY__dd("Key undefined");
  136.         $csrf = array();
  137.         $csrf['formId'] = $this->id;
  138.         $csrf['fields'] = $this->setFieldsCsrf();
  139.         $csrf['token'] = __TOKEN__;
  140.         $this->csrf =  Crypt::Encrypt(json_encode($csrf), __CRYPTOKEY__);
  141.         $csrfHidden $this->dom->createElement('input');
  142.         $csrfHidden->setAttribute("type""hidden");
  143.         $csrfHidden->setAttribute("name""csrf[]");
  144.         $csrfHidden->setAttribute("value"$this->csrf);
  145.         $this->form->appendChild($csrfHidden);
  146.         // if (__DEV__) dump($csrf);
  147.     }
  148.     private function setFieldsCsrf()
  149.     {
  150.         $fieldsCsrf = array();
  151.         foreach ($this->fields as $field) {
  152.             $table $field->getDbTable();
  153.             $id $field->getDbId();
  154.             $name $field->getName();
  155.             $initialName $field->getInitialName();
  156.             $fieldsCsrf[$table][$id][$name] = $initialName;
  157.         }
  158.         return $fieldsCsrf;
  159.     }
  160. }