Added function ZakCgiMain::redirect.
authorAndrea Zagli <azagli@libero.it>
Sat, 27 Jun 2015 07:36:35 +0000 (09:36 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 27 Jun 2015 07:36:35 +0000 (09:36 +0200)
.gitignore
src/main.c
src/main.h
tests/Makefile.am
tests/redirect.c [new file with mode: 0644]

index 0eae689810312dc7436ec217404dd74442d04c69..4696acc2fd5887bd8ed2f5e3a9c4faa2135f7b42 100644 (file)
@@ -52,3 +52,4 @@ Rules-quot
 *.csv
 tests/env
 tests/querystring
+tests/redirect
index 1816586a7bacec6a1a20b99b7294601f5daa9c7b..c860ced85c9bf1c5242809249861f999140beaee 100644 (file)
@@ -471,6 +471,15 @@ GHashTable
        return ht;
 }
 
+void
+zak_cgi_main_redirect (const gchar *url)
+{
+       g_printf ("%s%s%c%c\n",
+                 "Location: ",
+                 url,
+                 13, 10);
+}
+
 /* PRIVATE */
 static void
 zak_cgi_main_set_property (GObject *object,
index 63e4c88945decd8a0b4d4358687a26297b0d09db..2e42f39ab03bc73ee7768f8b1d5c548bbce44289 100644 (file)
@@ -64,6 +64,8 @@ GHashTable *zak_cgi_main_parse_stdin (const gchar *buf, const gchar *boundary);
 
 GHashTable *zak_cgi_main_parse_stdin_bin (const gchar *buf, const gchar *boundary);
 
+void zak_cgi_main_redirect (const gchar *url);
+
 
 G_END_DECLS
 
index dbdd3e98d206be0266339d65456d05c93421618e..704f382152346eb76a3b9717b5a90adb30da1ebb 100644 (file)
@@ -10,4 +10,5 @@ LDADD = $(top_builddir)/src/libzakcgi.la
 
 noinst_PROGRAMS = \
                     env \
-                    querystring
+                    querystring \
+                    redirect
diff --git a/tests/redirect.c b/tests/redirect.c
new file mode 100644 (file)
index 0000000..ca02c77
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * 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;
+
+       ht_env = zak_cgi_main_get_parameters ();
+
+       zak_cgi_main_redirect ((const gchar *)g_hash_table_lookup (ht_env, "redirectto"));
+
+       g_hash_table_destroy (ht_env);
+
+       return 0;
+}
+