#include <config.h>
#endif
-#include <unistd.h>
-
#include "main.h"
-extern char **environ;
-
static void zak_cgi_main_class_init (ZakCgiMainClass *class);
static void zak_cgi_main_init (ZakCgiMain *zak_cgi_main);
{
GHashTable *ht;
+ gchar **environ;
guint l;
guint i;
gchar **envs;
ht = g_hash_table_new (g_str_hash, g_str_equal);
+ environ = g_get_environ ();
l = g_strv_length (environ);
for (i = 0; i < l; i++)
{
return ret;
}
+/**
+ * zak_cgi_main_get_parameters:
+ *
+ * Returns:
+ */
+GHashTable
+*zak_cgi_main_get_parameters (void)
+{
+ GHashTable *ht;
+
+ const gchar *qstring;
+
+ gchar **params;
+ gchar **parts;
+ guint i;
+ guint l;
+
+ ht = g_hash_table_new (g_str_hash, g_str_equal);
+
+ qstring = g_getenv ("QUERY_STRING");
+ params = g_strsplit (qstring, "&", -1);
+ l = g_strv_length (params);
+ for (i = 0; i < l; i++)
+ {
+ parts = g_strsplit (params[i], "=", 2);
+ g_hash_table_replace (ht, g_strdup (parts[0]), g_strdup (parts[1]));
+ g_strfreev (parts);
+ }
+
+ return ht;
+}
+
/* PRIVATE */
static void
zak_cgi_main_set_property (GObject *object,
--- /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 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 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 <main.h>
+
+int
+main (int argc, char *argv[])
+{
+ GHashTable *ht_env;
+ GString *str;
+
+ GHashTableIter iter;
+ gpointer key;
+ gpointer value;
+
+ ht_env = zak_cgi_main_get_parameters ();
+
+ str = g_string_new ("<html>\n"
+ "<head><title>Query string</title></head>\n"
+ "<body>\n");
+
+ if (g_hash_table_size (ht_env) > 0)
+ {
+ g_string_append_printf (str, "<table>\n");
+
+ g_hash_table_iter_init (&iter, ht_env);
+ while (g_hash_table_iter_next (&iter, &key, &value))
+ {
+ g_string_append_printf (str, "<tr><td>%s</td><td>%s</td></tr>\n",
+ (gchar *)key, (gchar *)value);
+ }
+
+ g_string_append_printf (str, "</table>\n");
+ }
+
+ g_string_append_printf (str, "</body>\n");
+
+ zak_cgi_main_out (str->str);
+ g_string_free (str, TRUE);
+
+ return 0;
+}
+