PKG_CHECK_MODULES(ZAKCGI, [glib-2.0 >= 2.36
gobject-2.0 >= 2.36
gio-2.0 >= 2.36
- gio-unix-2.0 >= 2.36])
+ gio-unix-2.0 >= 2.36
+ libzakform >= 0.0.1])
AC_SUBST(ZAKCGI_CFLAGS)
AC_SUBST(ZAKCGI_LIBS)
formelementtext.c \
formelementtextarea.c \
formelementsubmit.c \
- formelementifilter.c \
- formelementfiltertrim.c \
- formelementivalidator.c \
- formelementvalidatornotempty.c \
- formelementvalidatorregex.c \
main.c \
session.c \
tag.c \
formelementtext.h \
formelementtextarea.h \
formelementsubmit.h \
- formelementifilter.h \
- formelementfiltertrim.h \
- formelementivalidator.h \
- formelementvalidatornotempty.h \
- formelementvalidatorregex.h \
main.h \
session.h \
tag.h \
GPtrArray *ar_elems;
};
-G_DEFINE_TYPE (ZakCgiForm, zak_cgi_form, G_TYPE_OBJECT)
+G_DEFINE_TYPE (ZakCgiForm, zak_cgi_form, ZAK_FORM_TYPE_FORM)
static void
zak_cgi_form_class_init (ZakCgiFormClass *class)
priv->zakcgimain = NULL;
priv->ht_attrs = NULL;
- priv->ar_elems = g_ptr_array_new ();
+ priv->ar_elems = ZAK_FORM_FORM_CLASS (zak_cgi_form_parent_class)->get_elements (ZAK_FORM_FORM (zak_cgi_form));
}
/**
return idx;
}
-/**
- * zak_cgi_form_add_element:
- * @zakcgiform:
- * @element:
- *
- * Returns: #TRUE if @element is added; FALSE otherwise.
- */
-gboolean
-zak_cgi_form_add_element (ZakCgiForm *zakcgiform, ZakCgiFormElement *element)
-{
- gboolean ret;
- gchar *id;
-
- ZakCgiFormPrivate *priv;
-
- priv = ZAK_CGI_FORM_GET_PRIVATE (zakcgiform);
-
- id = zak_cgi_form_element_get_id (element);
-
- if (get_idx (zakcgiform, id) > -1)
- {
- g_warning ("You cannot add an element with id already present in the form.");
- ret = FALSE;
- }
- else
- {
- g_ptr_array_add (priv->ar_elems, g_object_ref (element));
- ret = TRUE;
- }
-
- g_free (id);
-
- return ret;
-}
-
-/**
- * zak_cgi_form_add_str:
- * @zakcgiform:
- * @str:
- *
- * Returns: #TRUE if @str is added; FALSE otherwise.
- */
-gboolean
-zak_cgi_form_add_str (ZakCgiForm *zakcgiform, const gchar *str)
-{
- gboolean ret;
-
- ZakCgiFormElement *element;
-
- element = zak_cgi_form_element_string_new (str);
- ret = zak_cgi_form_add_element (zakcgiform, element);
-
- return ret;
-}
-
/**
* zak_cgi_form_bind:
* @zakcgiform:
gval = zak_cgi_main_get_stdin_field (priv->zakcgimain, zak_cgi_form_element_get_id (element));
if (gval != NULL)
{
- zak_cgi_form_element_set_value (element, gval);
+ zak_form_element_set_value (ZAK_FORM_ELEMENT (element), g_value_get_string (gval));
}
}
}
}
-/**
- * zak_cgi_form_is_valid:
- * @zakcgiform:
- *
- * Returns:
- */
-gboolean
-zak_cgi_form_is_valid (ZakCgiForm *zakcgiform)
-{
- guint i;
-
- gboolean ret;
-
- ZakCgiFormPrivate *priv;
-
- priv = ZAK_CGI_FORM_GET_PRIVATE (zakcgiform);
-
- ret = TRUE;
-
- for (i = 0; i < priv->ar_elems->len; i++)
- {
- ZakCgiFormElement *element = (ZakCgiFormElement *)g_ptr_array_index (priv->ar_elems, i);
- if (!ZAK_CGI_IS_FORM_ELEMENT_STRING (element))
- {
- if (!zak_cgi_form_element_is_valid (element))
- {
- ret = FALSE;
- }
- }
- }
-
- return ret;
-}
-
/**
* zak_cgi_form_render_start:
* @zakcgiform:
ZakCgiFormPrivate *priv;
- g_return_if_fail (ZAK_CGI_IS_FORM (zakcgiform));
+ g_return_val_if_fail (ZAK_CGI_IS_FORM (zakcgiform), g_strdup (""));
priv = ZAK_CGI_FORM_GET_PRIVATE (zakcgiform);
#include <glib-object.h>
+#include <libzakform/libzakform.h>
+
#include "main.h"
#include "formelement.h"
G_BEGIN_DECLS
-#define ZAK_CGI_TYPE_FORM (zak_cgi_form_get_type ())
-#define ZAK_CGI_FORM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ZAK_CGI_TYPE_FORM, ZakCgiForm))
-#define ZAK_CGI_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ZAK_CGI_TYPE_FORM, ZakCgiFormClass))
-#define ZAK_CGI_IS_FORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ZAK_CGI_TYPE_FORM))
-#define ZAK_CGI_IS_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ZAK_CGI_TYPE_FORM))
-#define ZAK_CGI_FORM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ZAK_CGI_TYPE_FORM, ZakCgiFormClass))
-
-typedef struct _ZakCgiForm ZakCgiForm;
-typedef struct _ZakCgiFormClass ZakCgiFormClass;
-
-struct _ZakCgiForm
- {
- GObject parent_instance;
- };
+#define ZAK_CGI_TYPE_FORM zak_cgi_form_get_type ()
+G_DECLARE_DERIVABLE_TYPE (ZakCgiForm, zak_cgi_form, ZAK_CGI, FORM, ZakFormForm)
struct _ZakCgiFormClass
- {
- GObjectClass parent_class;
- };
-
-GType zak_cgi_form_get_type (void);
+{
+ ZakFormFormClass parent_class;
+};
ZakCgiForm *zak_cgi_form_new (ZakCgiMain *zakcgimain, ...);
-gboolean zak_cgi_form_add_element (ZakCgiForm *zakcgiform, ZakCgiFormElement *element);
-gboolean zak_cgi_form_add_str (ZakCgiForm *zakcgiform, const gchar *str);
-
void zak_cgi_form_bind (ZakCgiForm *zakcgiform);
-gboolean zak_cgi_form_is_valid (ZakCgiForm *zakcgiform);
gchar *zak_cgi_form_render_start (ZakCgiForm *zakcgiform);
gchar *zak_cgi_form_render (ZakCgiForm *zakcgiform);
{
gchar *id;
GHashTable *ht_attrs;
- GPtrArray *pa_filters;
- GPtrArray *pa_validators;
- GValue *value;
GHashTable *ht_label_attrs;
};
-G_DEFINE_TYPE (ZakCgiFormElement, zak_cgi_form_element, G_TYPE_OBJECT)
+G_DEFINE_TYPE (ZakCgiFormElement, zak_cgi_form_element, ZAK_FORM_TYPE_ELEMENT)
static void
zak_cgi_form_element_class_init (ZakCgiFormElementClass *class)
ZakCgiFormElementPrivate *priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (zak_cgi_form_element);
priv->ht_attrs = NULL;
- priv->pa_filters = NULL;
- priv->pa_validators = NULL;
- priv->value = NULL;
priv->ht_label_attrs = NULL;
}
return g_strdup (priv->id);
}
-/**
- * zak_cgi_form_element_add_filter:
- * @element:
- * @filter:
- *
- */
-void
-zak_cgi_form_element_add_filter (ZakCgiFormElement *element, ZakCgiFormElementIFilter *filter)
-{
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- if (priv->pa_filters == NULL)
- {
- priv->pa_filters = g_ptr_array_new ();
- }
-
- g_ptr_array_add (priv->pa_filters, filter);
-}
-
-/**
- * zak_cgi_form_element_filter:
- * @element:
- *
- */
-void
-zak_cgi_form_element_filter (ZakCgiFormElement *element)
-{
- guint i;
-
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- if (priv->pa_filters == NULL)
- {
- return;
- }
-
- for (i = 0; i < priv->pa_filters->len; i++)
- {
- GValue *value;
- GValue *val;
-
- value = zak_cgi_form_element_get_value (element);
-
- val = zak_cgi_form_element_ifilter_filter ((ZakCgiFormElementIFilter *)g_ptr_array_index (priv->pa_filters, i),
- value);
- zak_cgi_form_element_set_value (element, val);
- }
-}
-
-/**
- * zak_cgi_form_element_set_value:
- * @element:
- * @value:
- *
- */
-void
-zak_cgi_form_element_set_value (ZakCgiFormElement *element, GValue *value)
-{
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- priv->value = value;
-}
-
-/**
- * zak_cgi_form_element_get_value:
- * @element:
- *
- */
-GValue
-*zak_cgi_form_element_get_value (ZakCgiFormElement *element)
-{
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- return priv->value;
-}
-
/**
* zak_cgi_form_element_set_label:
* @element:
return ret;
}
-/**
- * zak_cgi_form_element_add_validator:
- * @element:
- * @validator:
- *
- */
-void
-zak_cgi_form_element_add_validator (ZakCgiFormElement *element, ZakCgiFormElementIValidator *validator)
-{
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- if (priv->pa_validators == NULL)
- {
- priv->pa_validators = g_ptr_array_new ();
- }
-
- g_ptr_array_add (priv->pa_validators, validator);
-}
-
-/**
- * zak_cgi_form_element_is_valid:
- * @element:
- *
- */
-gboolean
-zak_cgi_form_element_is_valid (ZakCgiFormElement *element)
-{
- gboolean ret;
-
- GValue *value;
- guint i;
-
- ZakCgiFormElementPrivate *priv;
-
- priv = ZAK_CGI_FORM_ELEMENT_GET_PRIVATE (element);
-
- ret = TRUE;
-
- zak_cgi_form_element_filter (element);
-
- if (priv->pa_validators != NULL)
- {
- value = zak_cgi_form_element_get_value (element);
-
- for (i = 0; i < priv->pa_validators->len; i++)
- {
- if (!zak_cgi_form_element_ivalidator_validate ((ZakCgiFormElementIValidator *)g_ptr_array_index (priv->pa_validators, i),
- value))
- {
- ret = FALSE;
- }
- }
- }
-
- if (ZAK_CGI_IS_FORM_ELEMENT (element) && ZAK_CGI_FORM_ELEMENT_GET_CLASS (element)->is_valid != NULL)
- {
- if (!ZAK_CGI_FORM_ELEMENT_GET_CLASS (element)->is_valid (element))
- {
- ret = FALSE;
- }
- }
- return ret;
-}
-
/* PRIVATE */
static void
zak_cgi_form_element_construct (ZakCgiFormElement *element,
#include <glib-object.h>
+#include <libzakform/libzakform.h>
+
#include "main.h"
-#include "formelementifilter.h"
-#include "formelementivalidator.h"
G_BEGIN_DECLS
-#define ZAK_CGI_TYPE_FORM_ELEMENT (zak_cgi_form_element_get_type ())
-#define ZAK_CGI_FORM_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ZAK_CGI_TYPE_FORM_ELEMENT, ZakCgiFormElement))
-#define ZAK_CGI_FORM_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ZAK_CGI_TYPE_FORM_ELEMENT, ZakCgiFormElementClass))
-#define ZAK_CGI_IS_FORM_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ZAK_CGI_TYPE_FORM_ELEMENT))
-#define ZAK_CGI_IS_FORM_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ZAK_CGI_TYPE_FORM_ELEMENT))
-#define ZAK_CGI_FORM_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ZAK_CGI_TYPE_FORM_ELEMENT, ZakCgiFormElementClass))
-
-typedef struct _ZakCgiFormElement ZakCgiFormElement;
-typedef struct _ZakCgiFormElementClass ZakCgiFormElementClass;
-
-struct _ZakCgiFormElement
- {
- GObject parent_instance;
- };
+#define ZAK_CGI_TYPE_FORM_ELEMENT zak_cgi_form_element_get_type ()
+G_DECLARE_DERIVABLE_TYPE (ZakCgiFormElement, zak_cgi_form_element, ZAK_CGI, FORM_ELEMENT, ZakFormElement)
struct _ZakCgiFormElementClass
{
- GObjectClass parent_class;
+ ZakFormElementClass parent_class;
void (*construct) (ZakCgiFormElement *element, const gchar *id, GHashTable *ht_attrs);
GHashTable *(*get_ht_attrs) (ZakCgiFormElement *element);
gchar *(*render) (ZakCgiFormElement *element);
- gboolean (*is_valid) (ZakCgiFormElement *element);
};
-GType zak_cgi_form_element_get_type (void);
-
gchar *zak_cgi_form_element_get_id (ZakCgiFormElement *element);
-void zak_cgi_form_element_add_filter (ZakCgiFormElement *element, ZakCgiFormElementIFilter *filter);
-void zak_cgi_form_element_filter (ZakCgiFormElement *element);
-
-void zak_cgi_form_element_set_value (ZakCgiFormElement *element, GValue *value);
-GValue *zak_cgi_form_element_get_value (ZakCgiFormElement *element);
-
void zak_cgi_form_element_set_label (ZakCgiFormElement *element, const gchar *label, ...);
gchar *zak_cgi_form_element_render (ZakCgiFormElement *element);
-void zak_cgi_form_element_add_validator (ZakCgiFormElement *element, ZakCgiFormElementIValidator *validator);
-gboolean zak_cgi_form_element_is_valid (ZakCgiFormElement *element);
-
G_END_DECLS
GHashTable *ht_attrs;
- GValue *value;
+ gchar *value;
ZakCgiFormElementClass *klass;
ht_attrs = klass->get_ht_attrs (element);
- value = zak_cgi_form_element_get_value (element);
+ value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
if (value != NULL)
{
- g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_value_get_string (value));
+ g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_strdup (value));
}
ret = zak_cgi_tag_tag_ht ("input", zak_cgi_form_element_get_id (element), ht_attrs);
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
- #include <config.h>
-#endif
-
-#include "formelementifilter.h"
-#include "formelementfiltertrim.h"
-
-static void zak_cgi_form_element_filter_trim_class_init (ZakCgiFormElementFilterTrimClass *class);
-static void zak_cgi_form_element_filter_trim_interface_init (ZakCgiFormElementIFilterInterface *iface);
-static void zak_cgi_form_element_filter_trim_init (ZakCgiFormElementFilterTrim *zak_cgi_form_element);
-
-static void zak_cgi_form_element_filter_trim_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void zak_cgi_form_element_filter_trim_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
-
-static void zak_cgi_form_element_filter_trim_dispose (GObject *gobject);
-static void zak_cgi_form_element_filter_trim_finalize (GObject *gobject);
-
-static GValue *zak_cgi_form_element_filter_trim_filter (ZakCgiFormElementIFilter *filter_trim, GValue *value);
-
-struct _ZakCgiFormElementFilterTrim
-{
- GObject parent_instance;
-
- /* Other members, including private data. */
-};
-
-#define ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_CGI_TYPE_FORM_ELEMENT_FILTER_TRIM, ZakCgiFormElementFilterTrimPrivate))
-
-typedef struct _ZakCgiFormElementFilterTrimPrivate ZakCgiFormElementFilterTrimPrivate;
-struct _ZakCgiFormElementFilterTrimPrivate
- {
- gpointer nothing;
- };
-
-G_DEFINE_TYPE_WITH_CODE (ZakCgiFormElementFilterTrim, zak_cgi_form_element_filter_trim, G_TYPE_OBJECT,
- G_IMPLEMENT_INTERFACE (ZAK_CGI_TYPE_FORM_ELEMENT_IFILTER,
- zak_cgi_form_element_filter_trim_interface_init))
-
-static void
-zak_cgi_form_element_filter_trim_class_init (ZakCgiFormElementFilterTrimClass *class)
-{
- GObjectClass *object_class = G_OBJECT_CLASS (class);
-
- object_class->set_property = zak_cgi_form_element_filter_trim_set_property;
- object_class->get_property = zak_cgi_form_element_filter_trim_get_property;
- object_class->dispose = zak_cgi_form_element_filter_trim_dispose;
- object_class->finalize = zak_cgi_form_element_filter_trim_finalize;
-
- g_type_class_add_private (object_class, sizeof (ZakCgiFormElementFilterTrimPrivate));
-}
-
-static void
-zak_cgi_form_element_filter_trim_interface_init (ZakCgiFormElementIFilterInterface *iface)
-{
- iface->filter = zak_cgi_form_element_filter_trim_filter;
-}
-
-static void
-zak_cgi_form_element_filter_trim_init (ZakCgiFormElementFilterTrim *zak_cgi_form_element)
-{
- ZakCgiFormElementFilterTrimPrivate *priv = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE (zak_cgi_form_element);
-}
-
-/**
- * zak_cgi_form_element_filter_trim_new:
- *
- * Returns: the newly created #ZakCgiFormElementFilterTrim object.
- */
-ZakCgiFormElementFilterTrim
-*zak_cgi_form_element_filter_trim_new ()
-{
- ZakCgiFormElementFilterTrim *zak_cgi_form_element_filter_trim;
-
- zak_cgi_form_element_filter_trim = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM (g_object_new (zak_cgi_form_element_filter_trim_get_type (), NULL));
-
- return zak_cgi_form_element_filter_trim;
-}
-
-/* PRIVATE */
-static void
-zak_cgi_form_element_filter_trim_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementFilterTrim *zak_cgi_form_element = (ZakCgiFormElementFilterTrim *)object;
- ZakCgiFormElementFilterTrimPrivate *priv = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_filter_trim_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementFilterTrim *zak_cgi_form_element = (ZakCgiFormElementFilterTrim *)object;
- ZakCgiFormElementFilterTrimPrivate *priv = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_filter_trim_dispose (GObject *gobject)
-{
- ZakCgiFormElementFilterTrim *zak_cgi_form_element = (ZakCgiFormElementFilterTrim *)gobject;
- ZakCgiFormElementFilterTrimPrivate *priv = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->dispose (gobject);
-}
-
-static void
-zak_cgi_form_element_filter_trim_finalize (GObject *gobject)
-{
- ZakCgiFormElementFilterTrim *zak_cgi_form_element = (ZakCgiFormElementFilterTrim *)gobject;
- ZakCgiFormElementFilterTrimPrivate *priv = ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->finalize (gobject);
-}
-
-static GValue
-*zak_cgi_form_element_filter_trim_filter (ZakCgiFormElementIFilter *filter_trim,
- GValue *value)
-{
- GValue *ret;
- gchar *_value;
-
- g_return_val_if_fail (value != NULL, g_strdup (""));
-
- _value = g_strdup (g_value_get_string (value));
-
- ret = g_new0 (GValue, 1);
- g_value_init (ret, G_TYPE_STRING);
- g_value_set_string (ret, g_strdup (g_strstrip (_value)));
-
- return ret;
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_H__
-#define __ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_H__
-
-
-#include <glib-object.h>
-
-
-G_BEGIN_DECLS
-
-
-#define ZAK_CGI_TYPE_FORM_ELEMENT_FILTER_TRIM zak_cgi_form_element_filter_trim_get_type ()
-G_DECLARE_FINAL_TYPE (ZakCgiFormElementFilterTrim, zak_cgi_form_element_filter_trim, ZAK_CGI, FORM_ELEMENT_FILTER_TRIM, GObject)
-
-ZakCgiFormElementFilterTrim *zak_cgi_form_element_filter_trim_new (void);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAK_CGI_FORM_ELEMENT_FILTER_TRIM_H__ */
GHashTable *ht_attrs;
- GValue *value;
+ gchar *value;
ZakCgiFormElementClass *klass;
ht_attrs = klass->get_ht_attrs (element);
- value = zak_cgi_form_element_get_value (element);
+ value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
if (value != NULL)
{
- g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_value_get_string (value));
+ g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_strdup (value));
}
ret = zak_cgi_tag_tag_ht ("input", zak_cgi_form_element_get_id (element), ht_attrs);
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "formelementifilter.h"
-
-G_DEFINE_INTERFACE (ZakCgiFormElementIFilter, zak_cgi_form_element_ifilter, G_TYPE_OBJECT);
-
-static void
-zak_cgi_form_element_ifilter_default_init (ZakCgiFormElementIFilterInterface *iface)
-{
- /* add properties and signals to the interface here */
-}
-
-GValue
-*zak_cgi_form_element_ifilter_filter (ZakCgiFormElementIFilter *self, GValue *value)
-{
- g_return_if_fail (ZAK_CGI_IS_FORM_ELEMENT_IFILTER (self));
-
- return ZAK_CGI_FORM_ELEMENT_IFILTER_GET_IFACE (self)->filter (self, value);
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __ZAK_CGI_FORM_ELEMENT_IFILTER_H__
-#define __ZAK_CGI_FORM_ELEMENT_IFILTER_H__
-
-#include <glib-object.h>
-
-
-G_BEGIN_DECLS
-
-
-#define ZAK_CGI_TYPE_FORM_ELEMENT_IFILTER zak_cgi_form_element_ifilter_get_type ()
-G_DECLARE_INTERFACE (ZakCgiFormElementIFilter, zak_cgi_form_element_ifilter, ZAK_CGI, FORM_ELEMENT_IFILTER, GObject)
-
-struct _ZakCgiFormElementIFilterInterface
-{
- GTypeInterface parent_iface;
-
- GValue *(*filter) (ZakCgiFormElementIFilter *self, GValue *value);
-};
-
-GValue *zak_cgi_form_element_ifilter_filter (ZakCgiFormElementIFilter *self, GValue *value);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAK_CGI_FOR_ELEMENT_IFILTER_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "formelementivalidator.h"
-
-G_DEFINE_INTERFACE (ZakCgiFormElementIValidator, zak_cgi_form_element_ivalidator, G_TYPE_OBJECT);
-
-static void
-zak_cgi_form_element_ivalidator_default_init (ZakCgiFormElementIValidatorInterface *iface)
-{
- /* add properties and signals to the interface here */
-}
-
-gboolean
-zak_cgi_form_element_ivalidator_validate (ZakCgiFormElementIValidator *self, GValue *value)
-{
- g_return_if_fail (ZAK_CGI_IS_FORM_ELEMENT_IVALIDATOR (self));
-
- return ZAK_CGI_FORM_ELEMENT_IVALIDATOR_GET_IFACE (self)->validate (self, value);
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __ZAK_CGI_FORM_ELEMENT_IVALIDATOR_H__
-#define __ZAK_CGI_FORM_ELEMENT_IVALIDATOR_H__
-
-#include <glib-object.h>
-
-
-G_BEGIN_DECLS
-
-
-#define ZAK_CGI_TYPE_FORM_ELEMENT_IVALIDATOR zak_cgi_form_element_ivalidator_get_type ()
-G_DECLARE_INTERFACE (ZakCgiFormElementIValidator, zak_cgi_form_element_ivalidator, ZAK_CGI, FORM_ELEMENT_IVALIDATOR, GObject)
-
-struct _ZakCgiFormElementIValidatorInterface
-{
- GTypeInterface parent_iface;
-
- gboolean (*validate) (ZakCgiFormElementIValidator *self, GValue *value);
-};
-
-gboolean zak_cgi_form_element_ivalidator_validate (ZakCgiFormElementIValidator *self, GValue *value);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAK_CGI_FOR_ELEMENT_IVALIDATOR_H__ */
GHashTable *ht_attrs;
- GValue *value;
+ gchar *value;
ZakCgiFormElementClass *klass;
ht_attrs = klass->get_ht_attrs (element);
- value = zak_cgi_form_element_get_value (element);
+ value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
if (value != NULL)
{
- g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_value_get_string (value));
+ g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_strdup (value));
}
ret = zak_cgi_tag_tag_ht ("input", zak_cgi_form_element_get_id (element), ht_attrs);
GHashTable *ht_attrs;
- GValue *gval;
+ gchar *gval;
ZakCgiFormElementClass *klass;
klass = (ZakCgiFormElementClass *)g_type_class_peek_parent (ZAK_CGI_FORM_ELEMENT_SELECT_GET_CLASS (ZAK_CGI_FORM_ELEMENT_SELECT (element)));
- gval = zak_cgi_form_element_get_value (element);
+ gval = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
/* list options */
options = g_string_new ("\n");
if (gval != NULL)
{
- if (g_strcmp0 (g_value_get_string (gval), (gchar *)key) == 0)
+ if (g_strcmp0 (gval, (gchar *)key) == 0)
{
g_hash_table_replace (ht_options_attrs, "selected", g_strdup ("selected"));
}
object_class->finalize = zak_cgi_form_element_string_finalize;
elem_class->render = zak_cgi_form_element_string_render;
- elem_class->is_valid = zak_cgi_form_element_string_is_valid;
+ //elem_class->is_valid = zak_cgi_form_element_string_is_valid;
g_type_class_add_private (object_class, sizeof (ZakCgiFormElementStringPrivate));
}
GHashTable *ht_attrs;
- GValue *value;
+ gchar *value;
ZakCgiFormElementClass *klass;
ht_attrs = klass->get_ht_attrs (element);
- value = zak_cgi_form_element_get_value (element);
+ value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
if (value != NULL)
{
- g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_value_get_string (value));
+ g_hash_table_insert (ht_attrs, (gpointer)"value", (gpointer)g_strdup (value));
}
ret = zak_cgi_tag_text_ht (zak_cgi_form_element_get_id (element), ht_attrs);
GHashTable *ht_attrs;
- GValue *value;
+ gchar *value;
ZakCgiFormElementClass *klass;
ht_attrs = klass->get_ht_attrs (element);
- value = zak_cgi_form_element_get_value (element);
+ value = zak_form_element_get_value (ZAK_FORM_ELEMENT (element));
if (value != NULL)
{
- g_hash_table_insert (ht_attrs, (gpointer)"zak-cgi-content", (gpointer)g_value_get_string (value));
+ g_hash_table_insert (ht_attrs, (gpointer)"zak-cgi-content", (gpointer)g_strdup (value));
}
ret = zak_cgi_tag_tag_ht ("textarea", zak_cgi_form_element_get_id (element), ht_attrs);
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
- #include <config.h>
-#endif
-
-#include "formelementivalidator.h"
-#include "formelementvalidatornotempty.h"
-
-static void zak_cgi_form_element_validator_notempty_class_init (ZakCgiFormElementValidatorNotemptyClass *class);
-static void zak_cgi_form_element_validator_notempty_interface_init (ZakCgiFormElementIValidatorInterface *iface);
-static void zak_cgi_form_element_validator_notempty_init (ZakCgiFormElementValidatorNotempty *zak_cgi_form_element);
-
-static void zak_cgi_form_element_validator_notempty_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void zak_cgi_form_element_validator_notempty_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
-
-static void zak_cgi_form_element_validator_notempty_dispose (GObject *gobject);
-static void zak_cgi_form_element_validator_notempty_finalize (GObject *gobject);
-
-static gboolean zak_cgi_form_element_validator_notempty_validate (ZakCgiFormElementIValidator *validator_notempty, GValue *value);
-
-struct _ZakCgiFormElementValidatorNotempty
-{
- GObject parent_instance;
-
- /* Other members, including private data. */
-};
-
-#define ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_CGI_TYPE_FORM_ELEMENT_VALIDATOR_NOTEMPTY, ZakCgiFormElementValidatorNotemptyPrivate))
-
-typedef struct _ZakCgiFormElementValidatorNotemptyPrivate ZakCgiFormElementValidatorNotemptyPrivate;
-struct _ZakCgiFormElementValidatorNotemptyPrivate
- {
- gpointer nothing;
- };
-
-G_DEFINE_TYPE_WITH_CODE (ZakCgiFormElementValidatorNotempty, zak_cgi_form_element_validator_notempty, G_TYPE_OBJECT,
- G_IMPLEMENT_INTERFACE (ZAK_CGI_TYPE_FORM_ELEMENT_IVALIDATOR,
- zak_cgi_form_element_validator_notempty_interface_init))
-
-static void
-zak_cgi_form_element_validator_notempty_class_init (ZakCgiFormElementValidatorNotemptyClass *class)
-{
- GObjectClass *object_class = G_OBJECT_CLASS (class);
-
- object_class->set_property = zak_cgi_form_element_validator_notempty_set_property;
- object_class->get_property = zak_cgi_form_element_validator_notempty_get_property;
- object_class->dispose = zak_cgi_form_element_validator_notempty_dispose;
- object_class->finalize = zak_cgi_form_element_validator_notempty_finalize;
-
- g_type_class_add_private (object_class, sizeof (ZakCgiFormElementValidatorNotemptyPrivate));
-}
-
-static void
-zak_cgi_form_element_validator_notempty_interface_init (ZakCgiFormElementIValidatorInterface *iface)
-{
- iface->validate = zak_cgi_form_element_validator_notempty_validate;
-}
-
-static void
-zak_cgi_form_element_validator_notempty_init (ZakCgiFormElementValidatorNotempty *zak_cgi_form_element)
-{
- ZakCgiFormElementValidatorNotemptyPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (zak_cgi_form_element);
-}
-
-/**
- * zak_cgi_form_element_validator_notempty_new:
- *
- * Returns: the newly created #ZakCgiFormElementValidatorNotempty object.
- */
-ZakCgiFormElementValidatorNotempty
-*zak_cgi_form_element_validator_notempty_new ()
-{
- ZakCgiFormElementValidatorNotempty *zak_cgi_form_element_validator_notempty;
-
- zak_cgi_form_element_validator_notempty = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY (g_object_new (zak_cgi_form_element_validator_notempty_get_type (), NULL));
-
- return zak_cgi_form_element_validator_notempty;
-}
-
-/* PRIVATE */
-static void
-zak_cgi_form_element_validator_notempty_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementValidatorNotempty *zak_cgi_form_element = (ZakCgiFormElementValidatorNotempty *)object;
- ZakCgiFormElementValidatorNotemptyPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_validator_notempty_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementValidatorNotempty *zak_cgi_form_element = (ZakCgiFormElementValidatorNotempty *)object;
- ZakCgiFormElementValidatorNotemptyPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_validator_notempty_dispose (GObject *gobject)
-{
- ZakCgiFormElementValidatorNotempty *zak_cgi_form_element = (ZakCgiFormElementValidatorNotempty *)gobject;
- ZakCgiFormElementValidatorNotemptyPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->dispose (gobject);
-}
-
-static void
-zak_cgi_form_element_validator_notempty_finalize (GObject *gobject)
-{
- ZakCgiFormElementValidatorNotempty *zak_cgi_form_element = (ZakCgiFormElementValidatorNotempty *)gobject;
- ZakCgiFormElementValidatorNotemptyPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->finalize (gobject);
-}
-
-static gboolean
-zak_cgi_form_element_validator_notempty_validate (ZakCgiFormElementIValidator *validator_notempty,
- GValue *value)
-{
- gboolean ret;
-
- g_return_val_if_fail (value != NULL, FALSE);
-
- ret = (g_strcmp0 (g_value_get_string (value), "") != 0);
-
- return ret;
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_H__
-#define __ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_H__
-
-
-#include <glib-object.h>
-
-
-G_BEGIN_DECLS
-
-
-#define ZAK_CGI_TYPE_FORM_ELEMENT_VALIDATOR_NOTEMPTY zak_cgi_form_element_validator_notempty_get_type ()
-G_DECLARE_FINAL_TYPE (ZakCgiFormElementValidatorNotempty, zak_cgi_form_element_validator_notempty, ZAK_CGI, FORM_ELEMENT_VALIDATOR_NOTEMPTY, GObject)
-
-ZakCgiFormElementValidatorNotempty *zak_cgi_form_element_validator_notempty_new (void);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAK_CGI_FORM_ELEMENT_VALIDATOR_NOTEMPTY_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifdef HAVE_CONFIG_H
- #include <config.h>
-#endif
-
-#include <syslog.h>
-
-#include "formelementivalidator.h"
-#include "formelementvalidatorregex.h"
-
-static void zak_cgi_form_element_validator_regex_class_init (ZakCgiFormElementValidatorRegexClass *class);
-static void zak_cgi_form_element_validator_regex_interface_init (ZakCgiFormElementIValidatorInterface *iface);
-static void zak_cgi_form_element_validator_regex_init (ZakCgiFormElementValidatorRegex *zak_cgi_form_element);
-
-static void zak_cgi_form_element_validator_regex_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void zak_cgi_form_element_validator_regex_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
-
-static void zak_cgi_form_element_validator_regex_dispose (GObject *gobject);
-static void zak_cgi_form_element_validator_regex_finalize (GObject *gobject);
-
-static gboolean zak_cgi_form_element_validator_regex_validate (ZakCgiFormElementIValidator *validator_regex, GValue *value);
-
-struct _ZakCgiFormElementValidatorRegex
-{
- GObject parent_instance;
-
- /* Other members, including private data. */
-};
-
-#define ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_CGI_TYPE_FORM_ELEMENT_VALIDATOR_REGEX, ZakCgiFormElementValidatorRegexPrivate))
-
-typedef struct _ZakCgiFormElementValidatorRegexPrivate ZakCgiFormElementValidatorRegexPrivate;
-struct _ZakCgiFormElementValidatorRegexPrivate
- {
- gchar *regex;
- };
-
-G_DEFINE_TYPE_WITH_CODE (ZakCgiFormElementValidatorRegex, zak_cgi_form_element_validator_regex, G_TYPE_OBJECT,
- G_IMPLEMENT_INTERFACE (ZAK_CGI_TYPE_FORM_ELEMENT_IVALIDATOR,
- zak_cgi_form_element_validator_regex_interface_init))
-
-static void
-zak_cgi_form_element_validator_regex_class_init (ZakCgiFormElementValidatorRegexClass *class)
-{
- GObjectClass *object_class = G_OBJECT_CLASS (class);
-
- object_class->set_property = zak_cgi_form_element_validator_regex_set_property;
- object_class->get_property = zak_cgi_form_element_validator_regex_get_property;
- object_class->dispose = zak_cgi_form_element_validator_regex_dispose;
- object_class->finalize = zak_cgi_form_element_validator_regex_finalize;
-
- g_type_class_add_private (object_class, sizeof (ZakCgiFormElementValidatorRegexPrivate));
-}
-
-static void
-zak_cgi_form_element_validator_regex_interface_init (ZakCgiFormElementIValidatorInterface *iface)
-{
- iface->validate = zak_cgi_form_element_validator_regex_validate;
-}
-
-static void
-zak_cgi_form_element_validator_regex_init (ZakCgiFormElementValidatorRegex *zak_cgi_form_element)
-{
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element);
-
- priv->regex = NULL;
-}
-
-/**
- * zak_cgi_form_element_validator_regex_new:
- * @regex:
- *
- * Returns: the newly created #ZakCgiFormElementValidatorRegex object.
- */
-ZakCgiFormElementValidatorRegex
-*zak_cgi_form_element_validator_regex_new (const gchar *regex)
-{
- ZakCgiFormElementValidatorRegex *zak_cgi_form_element_validator_regex;
-
- zak_cgi_form_element_validator_regex = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX (g_object_new (zak_cgi_form_element_validator_regex_get_type (), NULL));
-
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element_validator_regex);
-
- if (regex != NULL)
- {
- priv->regex = g_strdup (regex);
- }
-
- return zak_cgi_form_element_validator_regex;
-}
-
-/* PRIVATE */
-static void
-zak_cgi_form_element_validator_regex_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementValidatorRegex *zak_cgi_form_element = (ZakCgiFormElementValidatorRegex *)object;
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_validator_regex_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- ZakCgiFormElementValidatorRegex *zak_cgi_form_element = (ZakCgiFormElementValidatorRegex *)object;
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element);
-
- switch (property_id)
- {
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-zak_cgi_form_element_validator_regex_dispose (GObject *gobject)
-{
- ZakCgiFormElementValidatorRegex *zak_cgi_form_element = (ZakCgiFormElementValidatorRegex *)gobject;
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->dispose (gobject);
-}
-
-static void
-zak_cgi_form_element_validator_regex_finalize (GObject *gobject)
-{
- ZakCgiFormElementValidatorRegex *zak_cgi_form_element = (ZakCgiFormElementValidatorRegex *)gobject;
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (zak_cgi_form_element);
-
-
-
- GObjectClass *parent_class = g_type_class_peek_parent (G_OBJECT_GET_CLASS (gobject));
- parent_class->finalize (gobject);
-}
-
-static gboolean
-zak_cgi_form_element_validator_regex_validate (ZakCgiFormElementIValidator *validator_regex,
- GValue *value)
-{
- gboolean ret;
-
- GRegex *regex;
- GError *error;
-
- ZakCgiFormElementValidatorRegexPrivate *priv = ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_GET_PRIVATE (validator_regex);
-
- if (G_VALUE_HOLDS (value, G_TYPE_STRING))
- {
- error = NULL;
- regex = g_regex_new (priv->regex, 0, 0, &error);
- if (regex == NULL
- || error != NULL)
- {
- syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "Error on creating regex: %s.",
- error->message != NULL ? error->message : "no details");
- return FALSE;
- }
-
- ret = g_regex_match ((const GRegex *)regex, g_value_get_string (value), 0, NULL);
- }
- else
- {
- ret = FALSE;
- }
-
- return ret;
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_H__
-#define __ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_H__
-
-
-#include <glib-object.h>
-
-
-G_BEGIN_DECLS
-
-
-#define ZAK_CGI_TYPE_FORM_ELEMENT_VALIDATOR_REGEX zak_cgi_form_element_validator_regex_get_type ()
-G_DECLARE_FINAL_TYPE (ZakCgiFormElementValidatorRegex, zak_cgi_form_element_validator_regex, ZAK_CGI, FORM_ELEMENT_VALIDATOR_REGEX, GObject)
-
-ZakCgiFormElementValidatorRegex *zak_cgi_form_element_validator_regex_new (const gchar *regex);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAK_CGI_FORM_ELEMENT_VALIDATOR_REGEX_H__ */
#include <unistd.h>
+#include <libzakform/libzakform.h>
+
#include <form.h>
#include <formelement.h>
#include <formelementcheck.h>
#include <formelementhidden.h>
#include <formelementpassword.h>
#include <formelementselect.h>
+#include <formelementstring.h>
#include <formelementtext.h>
#include <formelementtextarea.h>
#include <formelementsubmit.h>
-#include <formelementifilter.h>
-#include <formelementfiltertrim.h>
-#include <formelementivalidator.h>
-#include <formelementvalidatornotempty.h>
-#include <formelementvalidatorregex.h>
int
main (int argc, char *argv[])
element = zak_cgi_form_element_text_new ("first", NULL);
zak_cgi_form_element_set_label (element, "The Label for first", NULL);
- zak_cgi_form_element_add_filter (element,
- ZAK_CGI_FORM_ELEMENT_IFILTER (zak_cgi_form_element_filter_trim_new ()));
- zak_cgi_form_element_add_validator (element,
- ZAK_CGI_FORM_ELEMENT_IVALIDATOR (zak_cgi_form_element_validator_regex_new ("aaa")));
- zak_cgi_form_add_element (form, element);
+ zak_form_element_add_filter (ZAK_FORM_ELEMENT (element),
+ ZAK_FORM_ELEMENT_IFILTER (zak_form_element_filter_trim_new ()));
+ zak_form_element_add_validator (ZAK_FORM_ELEMENT (element),
+ ZAK_FORM_ELEMENT_IVALIDATOR (zak_form_element_validator_regex_new ("^aaa$")));
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_check_new ("chk", NULL);
zak_cgi_form_element_set_label (element, "The checkbox", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
- zak_cgi_form_add_str (form, "<h1>big big big</h1>");
+ element = zak_cgi_form_element_string_new ("<h1>big big big</h1>");
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_password_new ("pws", NULL);
zak_cgi_form_element_set_label (element, "The password", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_text_area_new ("txtarea", NULL);
zak_cgi_form_element_set_label (element, "The text area", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_select_new ("slc", NULL);
zak_cgi_form_element_select_add_option (ZAK_CGI_FORM_ELEMENT_SELECT (element), "1", "first", NULL);
zak_cgi_form_element_select_add_option (ZAK_CGI_FORM_ELEMENT_SELECT (element), "2", "second", NULL);
zak_cgi_form_element_select_add_option (ZAK_CGI_FORM_ELEMENT_SELECT (element), "3", "third", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_hidden_new ("hdn", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
element = zak_cgi_form_element_submit_new ("submit", "zak-cgi-content", "Submit", NULL);
- zak_cgi_form_add_element (form, element);
+ zak_form_form_add_element (ZAK_FORM_FORM (form), ZAK_FORM_ELEMENT (element));
if (zak_cgi_main_is_post (zakcgimain))
{
/* validating the form */
zak_cgi_form_bind (form);
- if (zak_cgi_form_is_valid (form))
+ if (zak_form_form_is_valid (ZAK_FORM_FORM (form)))
{
g_string_append (str, "Form is valid!!!");
}