vendor\klio\klio-bundle\src\Form\Types\Field.php line 138
<?php
namespace Klio\KlioBundle\Form\Types;
use Exception;
use Klio\KlioBundle\Form\Form;
use Klio\KlioBundle\Security\Hash;
use Klio\KlioBundle\Form\Types\DbType;
class Field
{
protected string $dbTable = "";
protected string $dbId = "";
protected string $dbField = "";
public $input;
public $label;
protected Form $form;
protected string $initialName = ""; // le nom du champ à l'origine tel que saisi dans le code HTML dans la balise "name"
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)
protected $parent;
/**
* 1 - on regarde si c champ est rattaché à une table
*
* @return void
*/
public function fieldConstruct(Form $form, $input)
{
$this->input = $input;
$this->form = $form;
$this->setInitialName();
$this->setDbTable();
$this->setDbId();
$this->setDbField();
$this->setDataType();
$this->setName();
$this->setId();
$this->setParent();
$this->setLabel();
}
public function setInitialName()
{
$this->initialName = $this->input->getAttribute('name');
}
public function getInitialName()
{
return $this->initialName;
}
protected function setDbTable()
{
// mode habituel klio, le champ = nom_de_table_table__nom_du_champ
if (strpos($this->initialName, '__') !== false) $this->dbTable = substr($this->initialName, 0, strpos($this->initialName, '__'));
// si on travaille sur une table avec des noms de champ sans prefixe, on met nom_de_table.nom_de_champ
else if (strpos($this->initialName, '.') !== false) $this->dbTable = substr($this->initialName, 0, strpos($this->initialName, '.'));
// est-ce que le form a une table rattachée ? via sonparamètre table
else $this->dbTable = $this->form->getDbTable();
// si le champ a un attribut dbtable, c'est prioritaire sur tous les autres cas et on efface l'attribut
if ($this->input->getAttribute('dbtable')) {
$this->dbTable = $this->input->getAttribute('dbtable');
$this->input->setAttribute('dbtable', false);
}
// si il y a une table, on charge ses spécificatins de cette table dans le form (via les fichiers YAML)
if ($this->dbTable) $this->form->db->getTableDesc($this->dbTable);
}
/**
* Retourne la db table du champ ou '___' pour indiquer que pas de table
*
* @return string
*/
public function getDbTable(): string
{
return $this->dbTable ?? '___';
}
protected function setDbId()
{
// par défaut le dbid du form (qui peut être vide)
$this->dbId = $this->form->getDbId();
// si le champ a un attribut dbid, c'est prioritaire sur tous les autres cas et on efface l'attribut
if ($this->input->getAttribute('dbid')) {
$this->dbId = $this->input->getAttribute('dbid');
$this->input->setAttribute('dbid', false);
}
// si il y a un id, on fait un query et on charge le row dans le form
if ($this->dbTable and $this->dbId) $this->form->getRow($this->dbTable, $this->dbId);
}
/**
* Retourne le db id du champ ou '___' pour indiquer que pas de db id
*
* @return string
*/
public function getDbID(): string
{
return $this->dbId ?? '___';
}
/**
* calcule le nom du champ dans la base de données si c'est le cas
*
* @return void
*/
protected function setDbField()
{
$this->dbField = "";
if ($this->dbTable) {
$this->dbField = $this->input->getAttribute('name');
$tableFields = $this->form->db->getTableDesc($this->dbTable);
if (!in_array($this->dbField, $tableFields) and array_key_exists($this->dbTable . '__' . $this->dbField, $tableFields)) $this->dbField = $this->dbTable . '__' . $this->dbField;
// 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é
else {
$this->dbTable = "";
$this->dbId = "";
$this->dbField = "";
}
}
if ($this->dbField) $this->dbAttributes = $this->form->db->getFormField($this);
}
public function getDbField()
{
return $this->dbField;
}
protected function setDataType()
{
$this->dataType = $this->input->getAttribute('type');
if ($this->dataType == "email") $this->input->setAttribute('type', 'text');
// si on a une table et un champ ok, on ajopute les parametres de contrôle en fonction de la base
if ($this->dbField) new DbType($this);
}
protected function setName()
{
/*
if ($this->input->getAttribute('name')) {
if (strpos($this->initialName, '__') !== false) $this->finalName = $this->initialName;
// else if ($this->dbTable) $this->initialName = $this->dbTable . "__" . $this->initialName;
}
if ($this->input->getAttribute('name')) {
if (strpos($this->initialName, '__') !== false) $this->initialName = $this->initialName;
// else if ($this->dbTable) $this->initialName = $this->dbTable . "__" . $this->initialName;
}
*/
if ($this->input->getAttribute('rename') != 'false') {
$this->name = Hash::sha1("", 62);
$this->input->setAttribute('name', $this->name);
}
// on renomme le champ sauf si on a demandé pour tout le form
}
protected function setId()
{
// on force un id unique. si on a besin d'un identifiant immuable, on set un data-id
$this->id = Hash::sha1("", 62);
$this->input->setAttribute('id', $this->id);
}
protected function setParent()
{
$this->parent = $this->input->parent();
if (
!$this->hasClass($this->parent, "form-field")
) throw new Exception($this->input->name . " : format de champ input incorrect. \n Le DIV parent n'est pas valide");
}
protected function hasClass($node, $className)
{
if (!$class = $node->getAttribute('class')) return false;
else {
$classes = explode(' ', $class);
if (in_array($className, $classes)) return true;
}
return false;
}
protected function addClass($node, $className)
{
if (!$class = $node->getAttribute('class')) {
$node->setAttribute('class', $className);
} else {
$classes = explode(' ', $class);
if (in_array($className, $classes)) return true;
else {
$classes[] = $className;
$class = implode(' ', $classes);
$node->setAttribute('class', $className);
}
}
}
protected function setLabel()
{
$this->label = $this->parent->find('label', 0);
if ($this->label) $this->label->setAttribute("for", $this->id);
}
public function getName()
{
return $this->name;
}
protected function setRequired(array $attributes)
{
$this->required = false;
if (in_array("require", $attributes)) $this->required = true;
// TOOD : db check
}
protected function setReadonly(array $attributes)
{
$this->readonly = false;
if (in_array("readonly", $attributes)) {
//$this->readonly = true;
// TODO : check form rights
// TODO : check user rights
if (isset($attributes['readonly']) and $attributes['readonly'] == "false") $this->readonly = false;
}
// TOOD : db check
}
protected function save(): String
{
if ($this->readonly) return '<div id="' . $this->id . '" class="input-container">' . $this->value . '</div>';
}
}