vendor\klio\klio-bundle\src\Form\Types\Field.php line 31

  1. <?php
  2. namespace Klio\KlioBundle\Form\Types;
  3. use Exception;
  4. use Klio\KlioBundle\Form\Form;
  5. use Klio\KlioBundle\Security\Hash;
  6. use Klio\KlioBundle\Form\Types\DbType;
  7. class Field
  8. {
  9.     protected string $dbTable "";
  10.     protected string $dbId "";
  11.     protected string $dbField "";
  12.     public $input;
  13.     public $label;
  14.     protected Form $form;
  15.     protected string $initialName ""// le nom du champ à l'origine tel que saisi dans le code HTML dans la balise "name"
  16.     protected string $name ""// le nom du champ final avec le prefixe de la table si il n'était pas présent à l'origine (voir method setName)
  17.     protected  $parent;
  18.     /**
  19.      * 1 - on regarde si c champ est rattaché à une table
  20.      *
  21.      * @return void
  22.      */
  23.     public function fieldConstruct(Form $form$input)
  24.     {
  25.         $this->input $input;
  26.         $this->form $form;
  27.         $this->setInitialName();
  28.         $this->setDbTable();
  29.         $this->setDbId();
  30.         $this->setDbField();
  31.         $this->setDataType();
  32.         $this->setName();
  33.         $this->setId();
  34.         $this->setParent();
  35.         $this->setLabel();
  36.     }
  37.     public function setInitialName()
  38.     {
  39.         $this->initialName $this->input->getAttribute('name');
  40.     }
  41.     public function getInitialName()
  42.     {
  43.         return $this->initialName;
  44.     }
  45.     protected function setDbTable()
  46.     {
  47.         // mode habituel klio, le champ = nom_de_table_table__nom_du_champ
  48.         if (strpos($this->initialName'__') !== false$this->dbTable substr($this->initialName0strpos($this->initialName'__'));
  49.         // si on travaille sur une table avec des noms de champ sans prefixe, on met nom_de_table.nom_de_champ
  50.         else if (strpos($this->initialName'.') !== false$this->dbTable substr($this->initialName0strpos($this->initialName'.'));
  51.         // est-ce que le form a une table rattachée ? via sonparamètre table
  52.         else $this->dbTable $this->form->getDbTable();
  53.         // si le champ a un attribut dbtable, c'est prioritaire sur tous les autres cas et on efface l'attribut
  54.         if ($this->input->getAttribute('dbtable')) {
  55.             $this->dbTable $this->input->getAttribute('dbtable');
  56.             $this->input->setAttribute('dbtable'false);
  57.         }
  58.         // si il y a une table, on charge ses spécificatins de cette table dans le form (via les fichiers YAML)
  59.         if ($this->dbTable$this->form->db->getTableDesc($this->dbTable);
  60.     }
  61.     /**
  62.      * Retourne la db table du champ ou '___' pour indiquer que pas de table
  63.      *
  64.      * @return string
  65.      */
  66.     public function getDbTable(): string
  67.     {
  68.         return $this->dbTable ?? '___';
  69.     }
  70.     protected function setDbId()
  71.     {
  72.         // par défaut le dbid du form (qui peut être vide)
  73.         $this->dbId $this->form->getDbId();
  74.         // si le champ a un attribut dbid, c'est prioritaire sur tous les autres cas et on efface l'attribut
  75.         if ($this->input->getAttribute('dbid')) {
  76.             $this->dbId $this->input->getAttribute('dbid');
  77.             $this->input->setAttribute('dbid'false);
  78.         }
  79.         // si il y a un id, on fait un query et on charge le row dans le form
  80.         if ($this->dbTable and $this->dbId$this->form->getRow($this->dbTable$this->dbId);
  81.     }
  82.     /**
  83.      * Retourne le db id du champ ou '___' pour indiquer que pas de db id
  84.      *
  85.      * @return string
  86.      */
  87.     public function getDbID(): string
  88.     {
  89.         return $this->dbId ?? '___';
  90.     }
  91.     /**
  92.      * calcule le nom du champ dans la base de données si c'est le cas
  93.      *
  94.      * @return void
  95.      */
  96.     protected function setDbField()
  97.     {
  98.         $this->dbField "";
  99.         if ($this->dbTable) {
  100.             $this->dbField =  $this->input->getAttribute('name');
  101.             $tableFields $this->form->db->getTableDesc($this->dbTable);
  102.             if (!in_array($this->dbField$tableFields) and array_key_exists($this->dbTable '__' $this->dbField$tableFields)) $this->dbField $this->dbTable '__' $this->dbField;
  103.             // si le champ n'existe pas dans la table, on annule la table et le id, c'est un champ connexe qui ne doit pas être enregistré
  104.             else {
  105.                 $this->dbTable "";
  106.                 $this->dbId "";
  107.                 $this->dbField "";
  108.             }
  109.         }
  110.         if ($this->dbField$this->dbAttributes $this->form->db->getFormField($this);
  111.     }
  112.     public function getDbField()
  113.     {
  114.         return $this->dbField;
  115.     }
  116.     protected function setDataType()
  117.     {
  118.         $this->dataType $this->input->getAttribute('type');
  119.         if ($this->dataType == "email"$this->input->setAttribute('type''text');
  120.         // si on a une table et un champ ok, on ajopute les parametres de contrôle en fonction de la base
  121.         if ($this->dbField) new DbType($this);
  122.     }
  123.     protected function setName()
  124.     {
  125.         /*
  126.         if ($this->input->getAttribute('name')) {
  127.             if (strpos($this->initialName, '__') !== false) $this->finalName = $this->initialName;
  128.             // else if ($this->dbTable) $this->initialName = $this->dbTable . "__" . $this->initialName;
  129.         }
  130.         if ($this->input->getAttribute('name')) {
  131.             if (strpos($this->initialName, '__') !== false) $this->initialName = $this->initialName;
  132.             // else if ($this->dbTable) $this->initialName = $this->dbTable . "__" . $this->initialName;
  133.         }
  134.         */
  135.         if ($this->input->getAttribute('rename') != 'false') {
  136.             $this->name Hash::sha1(""62);
  137.             $this->input->setAttribute('name'$this->name);
  138.         }
  139.         // on renomme le champ sauf si on a demandé pour tout le form 
  140.     }
  141.     protected function setId()
  142.     {
  143.         // on force un id unique. si on a besin d'un identifiant immuable, on set un data-id
  144.         $this->id Hash::sha1(""62);
  145.         $this->input->setAttribute('id'$this->id);
  146.     }
  147.     protected function setParent()
  148.     {
  149.         $this->parent $this->input->parent();
  150.         if (
  151.             !$this->hasClass($this->parent"form-field")
  152.         ) throw new Exception($this->input->name " : format de champ input incorrect. \n Le DIV parent n'est pas valide");
  153.     }
  154.     protected function hasClass($node$className)
  155.     {
  156.         if (!$class $node->getAttribute('class')) return false;
  157.         else {
  158.             $classes explode(' '$class);
  159.             if (in_array($className$classes)) return true;
  160.         }
  161.         return false;
  162.     }
  163.     protected function addClass($node$className)
  164.     {
  165.         if (!$class $node->getAttribute('class')) {
  166.             $node->setAttribute('class'$className);
  167.         } else {
  168.             $classes explode(' '$class);
  169.             if (in_array($className$classes)) return true;
  170.             else {
  171.                 $classes[] = $className;
  172.                 $class implode(' '$classes);
  173.                 $node->setAttribute('class'$className);
  174.             }
  175.         }
  176.     }
  177.     protected function setLabel()
  178.     {
  179.         $this->label $this->parent->find('label'0);
  180.         if ($this->label$this->label->setAttribute("for"$this->id);
  181.     }
  182.     public function getName()
  183.     {
  184.         return $this->name;
  185.     }
  186.     protected function setRequired(array $attributes)
  187.     {
  188.         $this->required false;
  189.         if (in_array("require"$attributes)) $this->required true;
  190.         // TOOD : db check
  191.     }
  192.     protected function setReadonly(array $attributes)
  193.     {
  194.         $this->readonly false;
  195.         if (in_array("readonly"$attributes)) {
  196.             //$this->readonly = true;
  197.             // TODO : check form rights
  198.             // TODO : check user rights
  199.             if (isset($attributes['readonly']) and $attributes['readonly'] == "false"$this->readonly false;
  200.         }
  201.         // TOOD : db check
  202.     }
  203.     protected function save(): String
  204.     {
  205.         if ($this->readonly) return '<div id="' $this->id '" class="input-container">' $this->value '</div>';
  206.     }
  207. }