]> saetta.ns0.it Git - zakform/libzakform/commitdiff
Added condition (only one) to ZakFormValidatorComposite. validator_composite
authorAndrea Zagli <azagli@libero.it>
Sat, 20 May 2017 08:51:28 +0000 (10:51 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 20 May 2017 08:51:28 +0000 (10:51 +0200)
src/formelementvalidatornotempty.c
src/formvalidatorcomposite.c

index 59d95eb000e85904d226181dfd887c6e10197cfe..ad40f649a66616ae3bf50cab56183bcf6e1df07b 100644 (file)
@@ -124,7 +124,14 @@ zak_form_element_validator_notempty_xml_parsing (ZakFormElementValidator *valida
                {
                        g_free (priv->as_empty_string);
                }
-       priv->as_empty_string = g_strdup ((gchar *)xmlNodeGetContent (xnode));
+       if (xmlGetProp (xnode, (xmlChar *)"empty_string") != NULL)
+               {
+                       priv->as_empty_string = g_strdup ((gchar *)xmlGetProp (xnode, (xmlChar *)"empty_string"));
+               }
+       else
+               {
+                       priv->as_empty_string = g_strdup ((gchar *)xmlNodeGetContent (xnode));
+               }
 
        return TRUE;
 }
index c652b0349a57c4d19b27b3dc8315ed7b16528915..e5bdbe4d4d3b28231e3cdb35d8d7bcbe0f9a6ea3 100644 (file)
@@ -68,14 +68,15 @@ G_DEFINE_TYPE (ZakFormValidatorComposite, zak_form_validator_composite, ZAK_FORM
 
 typedef enum
        {
-               LOGIC_TYPE_IF = 1,
-               LOGIC_TYPE_AND,
+               LOGIC_TYPE_AND = 1,
                LOGIC_TYPE_OR
        } LogicType;
 
 typedef struct
        {
-               LogicType type;
+               gboolean condition;
+               gboolean condition_type;
+               LogicType logic_type;
                ZakFormElementValidator *validator;
                ZakFormElement *element;
                gchar *message;
@@ -131,24 +132,72 @@ _zak_form_validator_composite_xml_parsing (ZakFormValidator *validator, xmlNode
        cur = xnode->children;
        while (cur)
                {
-                       if (xmlStrEqual (cur->name, (xmlChar *)"logic"))
+                       if (xmlStrEqual (cur->name, (xmlChar *)"condition"))
                                {
+                                       ZakFormElement *element;
+                                       ZakFormElementValidatorConstructorFunc validator_constructor;
                                        GNode *gnode;
                                        Node *n;
 
                                        n = (Node *)g_new0 (Node, 1);
 
-                                       if (xmlStrEqual (xmlGetProp (cur, (xmlChar *)"type"), (xmlChar *)"if"))
+                                       n->condition = TRUE;
+
+                                       n->condition_type= zak_utils_string_to_boolean ((gchar *)xmlGetProp (cur, (xmlChar *)"condition_type"));
+
+                                       element = zak_form_form_get_element_by_id (form, (gchar *)xmlGetProp (cur, (xmlChar *)"element"));
+                                       if (!ZAK_FORM_IS_ELEMENT (element))
                                                {
-                                                       n->type = LOGIC_TYPE_IF;
+                                                       g_warning ("Element «%s» not present in form.",
+                                                                  (gchar *)xmlGetProp (cur, (xmlChar *)"element"));
+                                                       cur = cur->next;
+                                                       continue;
                                                }
-                                       else if (xmlStrEqual (xmlGetProp (cur, (xmlChar *)"type"), (xmlChar *)"and"))
+
+                                       validator_constructor = zak_form_get_form_element_validator (form, (gchar *)xmlGetProp (cur, (xmlChar *)"validator"));
+                                       if (validator_constructor == NULL)
                                                {
-                                                       n->type = LOGIC_TYPE_AND;
+                                                       g_warning ("Validator «%s» not found.",
+                                                                  (gchar *)xmlGetProp (cur, (xmlChar *)"validator"));
+                                                       cur = cur->next;
+                                                       continue;
+                                               }
+
+                                       n->validator = validator_constructor ();
+                                       zak_form_element_validator_xml_parsing (n->validator, cur);
+
+                                       n->element = element;
+
+                                       n->message = NULL;
+
+                                       if (tree == NULL)
+                                               {
+                                                       gnode = g_node_new (n);
+                                                       priv->tree = gnode;
+                                               }
+                                       else
+                                               {
+                                                       n->logic_type = ((Node *)tree->data)->logic_type;
+
+                                                       gnode = g_node_append (tree, g_node_new (n));
+                                               }
+
+                                       _zak_form_validator_composite_xml_parsing (validator, cur, form, gnode);
+                               }
+                       else if (xmlStrEqual (cur->name, (xmlChar *)"logic"))
+                               {
+                                       GNode *gnode;
+                                       Node *n;
+
+                                       n = (Node *)g_new0 (Node, 1);
+
+                                       if (xmlStrEqual (xmlGetProp (cur, (xmlChar *)"type"), (xmlChar *)"and"))
+                                               {
+                                                       n->logic_type = LOGIC_TYPE_AND;
                                                }
                                        else if (xmlStrEqual (xmlGetProp (cur, (xmlChar *)"type"), (xmlChar *)"or"))
                                                {
-                                                       n->type = LOGIC_TYPE_OR;
+                                                       n->logic_type = LOGIC_TYPE_OR;
                                                }
                                        else
                                                {
@@ -192,7 +241,7 @@ _zak_form_validator_composite_xml_parsing (ZakFormValidator *validator, xmlNode
                                        validator_constructor = zak_form_get_form_element_validator (form, (gchar *)xmlGetProp (cur, (xmlChar *)"type"));
                                        if (validator_constructor == NULL)
                                                {
-                                                       g_warning ("Element «%s» not found.",
+                                                       g_warning ("Validator «%s» not found.",
                                                                   (gchar *)xmlGetProp (cur, (xmlChar *)"type"));
                                                        cur = cur->next;
                                                        continue;
@@ -308,11 +357,8 @@ _zak_form_validator_composite_validate (ZakFormValidator *validator, GNode *pare
 
        n = (Node *)parent->data;
 
-       switch (n->type)
+       switch (n->logic_type)
                {
-               case LOGIC_TYPE_IF:
-                       break;
-
                case LOGIC_TYPE_AND:
                        ret = TRUE;
                        break;
@@ -327,40 +373,70 @@ _zak_form_validator_composite_validate (ZakFormValidator *validator, GNode *pare
                {
                        child = g_node_nth_child (parent, i);
                        n_child = (Node *)child->data;
-                       switch (n->type)
-                               {
-                               case LOGIC_TYPE_IF:
-                                       break;
-
-                               case LOGIC_TYPE_AND:
-                                       if (n_child->type > 0)
-                                               {
-                                                       ret = (ret && _zak_form_validator_composite_validate (validator, child));
-                                               }
-                                       else
-                                               {
-                                                       ret = (ret && zak_form_element_validator_validate (n_child->validator,
-                                                                                                          zak_form_element_get_value (n_child->element)));
-                                               }
-                                       break;
 
-                               case LOGIC_TYPE_OR:
-                                       if (n_child->type > 0)
+                       if (n_child->condition)
+                               {
+                                       if (zak_form_element_validator_validate (n_child->validator,
+                                                                                zak_form_element_get_value (n_child->element)) == n_child->condition_type)
                                                {
-                                                       ret = (ret || _zak_form_validator_composite_validate (validator, child));
+                                                       switch (n->logic_type)
+                                                               {
+                                                               case LOGIC_TYPE_AND:
+                                                                       ret = (ret && _zak_form_validator_composite_validate (validator, child));
+                                                                       break;
+
+                                                               case LOGIC_TYPE_OR:
+                                                                       ret = (ret || _zak_form_validator_composite_validate (validator, child));
+                                                                       break;
+                                                               }
                                                }
-                                       else
+                               }
+                       else
+                               {
+                                       switch (n->logic_type)
                                                {
-                                                       ret = (ret || zak_form_element_validator_validate (n_child->validator,
-                                                                                                          zak_form_element_get_value (n_child->element)));
+                                               case LOGIC_TYPE_AND:
+                                                       if (n_child->logic_type > 0)
+                                                               {
+                                                                       ret = (ret && _zak_form_validator_composite_validate (validator, child));
+                                                               }
+                                                       else
+                                                               {
+                                                                       ret = (ret && zak_form_element_validator_validate (n_child->validator,
+                                                                                                                          zak_form_element_get_value (n_child->element)));
+                                                               }
+                                                       break;
+
+                                               case LOGIC_TYPE_OR:
+                                                       if (n_child->logic_type > 0)
+                                                               {
+                                                                       ret = (ret || _zak_form_validator_composite_validate (validator, child));
+                                                               }
+                                                       else
+                                                               {
+                                                                       ret = (ret || zak_form_element_validator_validate (n_child->validator,
+                                                                                                                          zak_form_element_get_value (n_child->element)));
+                                                               }
+                                                       break;
                                                }
-                                       break;
                                }
                }
 
-       if (!ret)
+       if (!ret && n->message != NULL)
                {
-                       zak_form_validator_set_message (ZAK_FORM_VALIDATOR (validator), n->message);
+                       gchar *msg;
+
+                       msg = zak_form_validator_get_message (ZAK_FORM_VALIDATOR (validator));
+                       if (msg != NULL && g_strcmp0 (msg, "") != 0 && g_strcmp0 (msg, _("Invalid value")) != 0)
+                               {
+                                       zak_form_validator_set_message (ZAK_FORM_VALIDATOR (validator), g_strdup_printf ("%s (%s)", n->message, msg));
+                               }
+                       else
+                               {
+                                       zak_form_validator_set_message (ZAK_FORM_VALIDATOR (validator), n->message);
+                               }
+
+                       g_free (msg);
                }
 
        return ret;