Implemented session.
authorAndrea Zagli <azagli@libero.it>
Sat, 27 Jun 2015 13:05:26 +0000 (15:05 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 27 Jun 2015 13:05:26 +0000 (15:05 +0200)
configure.ac
src/libzakcgi.h
src/session.c
src/session.h
tests/cookies.c
tests/provapostcgi.html [new file with mode: 0644]
tests/session.c

index 18a42b69b2d19fe1566052e63ceee9b53ae98f68..e8bb6e55dda3c4baa4a7f8a8a8607a41b67beb52 100644 (file)
@@ -31,9 +31,9 @@ AC_PROG_RANLIB
 
 # Checks for libraries.
 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])
+                           gobject-2.0 >= 2.36
+                           gio-2.0 >= 2.36
+                           gio-unix-2.0 >= 2.36])
 
 AC_SUBST(ZAKCGI_CFLAGS)
 AC_SUBST(ZAKCGI_LIBS)
index c580f68338a5bbac6efaf0fc04fad4957f5eaa21..4f2523eaf72b0cc1108e1cb1f8f7f6b47ccb373f 100644 (file)
@@ -19,6 +19,7 @@
 #ifndef __LIBZAKCGI_H__
 #define __LIBZAKCGI_H__
 
-#include <libzakcgi/zakcgimain.h>
+#include <libzakcgi/main.h>
+#include <libzakcgi/session.h>
 
 #endif /* __LIBZAKCGI_H__ */
index de5fe4a498a31e425926566280cb4886ae0e0915..e0a617e3b981bbcfa8a224c740a92394f526b493 100644 (file)
        #include <config.h>
 #endif
 
+#include <gio/gio.h>
+
+#include <string.h>
+
+#include "main.h"
 #include "session.h"
 
 static void zak_cgi_session_class_init (ZakCgiSessionClass *class);
@@ -42,6 +47,9 @@ static void zak_cgi_session_finalize (GObject *gobject);
 typedef struct _ZakCgiSessionPrivate ZakCgiSessionPrivate;
 struct _ZakCgiSessionPrivate
        {
+               gchar *sid;
+               GFile *gfile;
+               GKeyFile *kfile;
        };
 
 G_DEFINE_TYPE (ZakCgiSession, zak_cgi_session, G_TYPE_OBJECT)
@@ -74,6 +82,10 @@ zak_cgi_session_init (ZakCgiSession *zak_cgi_session)
 ZakCgiSession
 *zak_cgi_session_new (void)
 {
+       GHashTable *ht_cookies;
+
+       GError *error;
+
        ZakCgiSession *zak_cgi_session;
        ZakCgiSessionPrivate *priv;
 
@@ -81,10 +93,133 @@ ZakCgiSession
 
        priv = ZAK_CGI_SESSION_GET_PRIVATE (zak_cgi_session);
 
+       ht_cookies = zak_cgi_main_get_cookies ();
+       priv->sid = g_hash_table_lookup (ht_cookies, "ZAKCGISID");
+
+       if (priv->sid != NULL)
+               {
+                       /* open the file */
+                       priv->gfile = g_file_new_for_path (g_build_filename (g_get_tmp_dir (), priv->sid, NULL));
+
+                       error = NULL;
+
+                       /* TODO */
+                       /* check the content */
+                       priv->kfile = g_key_file_new ();
+                       if (!g_key_file_load_from_file (priv->kfile,
+                                                       g_file_get_path (priv->gfile),
+                                                       G_KEY_FILE_NONE,
+                                                       &error)
+                           || error != NULL)
+                               {
+                                       /* TODO */
+                               }
+               }
 
        return zak_cgi_session;
 }
 
+/**
+ * zak_cgi_session_get_header:
+ * @session:
+ *
+ * Returns: the header that set the cookie session, if needed; else an empty string.
+ */
+gchar
+*zak_cgi_session_get_header (ZakCgiSession *session)
+{
+       gchar *ret;
+
+       GError *error;
+       GFileIOStream *iostream;
+
+       ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
+
+       if (priv->sid == NULL)
+               {
+                       /* create new random name */
+                       guint32 i;
+                       gchar *tmp;
+
+                       i = g_random_int ();
+
+                       tmp = g_strdup_printf ("%d", i);
+                       
+                       priv->sid = g_compute_checksum_for_string (G_CHECKSUM_MD5,
+                                                                  tmp,
+                                                                  strlen (tmp));
+
+                       g_free (tmp);
+
+                       /* see if file already exists */
+                       priv->gfile = g_file_new_for_path (g_build_filename (g_get_tmp_dir (), priv->sid, NULL));
+                       error = NULL;
+                       iostream = g_file_replace_readwrite (priv->gfile, NULL, FALSE, G_FILE_CREATE_PRIVATE, NULL, &error);
+                       if (iostream == NULL
+                           || error != NULL)
+                               {
+                                       /* TODO */
+                               }
+                       else
+                               {
+                                       /* TODO */
+                                       /* insert some data (ex IP) */
+                                       g_io_stream_close (G_IO_STREAM (iostream), NULL, NULL);
+                                       g_object_unref (iostream);
+                               }
+
+                       ret = zak_cgi_main_set_cookie ("ZAKCGISID", priv->sid, NULL, NULL, NULL, FALSE, FALSE);
+               }
+       else
+               {
+                       ret = g_strdup ("");
+               }
+
+       return ret;
+}
+
+/**
+ * zak_cgi_session_set_value:
+ * @session:
+ * @name:
+ * @value:
+ *
+ */
+void
+zak_cgi_session_set_value (ZakCgiSession *session, const gchar *name, const gchar *value)
+{
+       ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
+
+       if (priv->kfile != NULL)
+               {
+                       g_key_file_set_value (priv->kfile, "SESSION", name, value);
+                       g_key_file_save_to_file (priv->kfile, g_file_get_path (priv->gfile), NULL);
+               }
+}
+
+/**
+ * zak_cgi_session_get_value:
+ * @session:
+ * @name:
+ *
+ * Returns: a value from session.
+ */
+gchar
+*zak_cgi_session_get_value (ZakCgiSession *session, const gchar *name)
+{
+       gchar *ret;
+
+       ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
+
+       ret = NULL;
+       if (priv->kfile != NULL)
+               {
+                       ret = g_key_file_get_value (priv->kfile, "SESSION", name, NULL);
+               }
+
+       return ret;
+}
+
 /* PRIVATE */
 static void
 zak_cgi_session_set_property (GObject *object,
index 1beea2b4a293f8277e2a6c271a7612c14ff76e30..024fd55c10bc3ce50a736a14c73881d5a73466f0 100644 (file)
@@ -51,6 +51,11 @@ GType zak_cgi_session_get_type (void);
 
 ZakCgiSession *zak_cgi_session_new (void);
 
+gchar *zak_cgi_session_get_header (ZakCgiSession *session);
+
+void zak_cgi_session_set_value (ZakCgiSession *session, const gchar *name, const gchar *value);
+gchar *zak_cgi_session_get_value (ZakCgiSession *session, const gchar *name);
+
 
 G_END_DECLS
 
index 0cb356935bb5dad7a467b2e8d285b05157f20338..59c0cd9e76ee42234f79df2340a9059dbf15892c 100644 (file)
@@ -45,6 +45,9 @@ main (int argc, char *argv[])
                                "\n%s",
                                zak_cgi_main_set_cookie ("PRIMO", "ilvaloredelcookie1234 56 6 7 7 8",
                                                         g_date_time_add_months (g_date_time_new_now_utc (), 3), NULL, NULL, FALSE, FALSE));
+       g_string_append_printf (header,
+                               "\n%s",
+                               zak_cgi_main_set_cookie ("SECONDO", "il secondo cookie", NULL, NULL, NULL, FALSE, FALSE));
 
        zak_cgi_main_out (header->str, str->str);
        g_string_free (str, TRUE);
diff --git a/tests/provapostcgi.html b/tests/provapostcgi.html
new file mode 100644 (file)
index 0000000..230155d
--- /dev/null
@@ -0,0 +1,13 @@
+<html>
+<body>
+<form method="POST" action="/cgi-bin/env" enctype="multipart/form-data">
+<!--<form method="POST" action="/cgi-bin/env" enctype="application/x-www-form-urlencoded">-->
+       <input name="pippo" />
+       <input name="pluto" />
+       <input name="paperino" />
+       <input type="file" name="ilfile" />
+       <input name="topolino" />
+       <input type="submit" value="invia" />
+</form>
+</body>
+</html>
index 718a8ed5a5d5da84da8d4ac6d86c5d1a1f45b1c4..4a7ed813496ea60667e0b6294e7544fa7ab6a048 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include <syslog.h>
+
+#include <main.h>
 #include <session.h>
 
 int
 main (int argc, char *argv[])
 {
+       gchar *env;
+       gchar *username;
+       GString *str;
+       GString *header;
+       GHashTable *ht;
+       GHashTable *ht_stdin;
+       ZakCgiSession *session;
+
+       gchar *method;
+
+       session = zak_cgi_session_new ();
+
+       str = g_string_new ("<html>\n"
+                           "<head><title>Session Cookie</title></head>\n"
+                           "<body>\n");
+
+       ht = zak_cgi_main_get_env ();
+       if (ht != NULL)
+               {
+                       method = g_hash_table_lookup (ht, "REQUEST_METHOD");
+                       if (g_strcmp0 (method, "POST") == 0)
+                               {
+                                       const gchar *content_type = g_getenv ("CONTENT_TYPE");
+                                       gchar **splitted = g_strsplit (content_type, ";", -1);
+                                       if (g_strv_length (splitted) == 2)
+                                               {
+                                                       gchar **boundary = g_strsplit (splitted[1], "=", 2);
+
+                                                       env = zak_cgi_main_get_stdin ();
+
+                                                       ht_stdin = zak_cgi_main_parse_stdin (env, boundary[1]);
+
+                                                       zak_cgi_session_set_value (session, "user_name", (gchar *)g_value_get_string ((GValue *)g_hash_table_lookup (ht_stdin, "user")));
+
+                                                       g_free (env);
+                                                       g_strfreev (boundary);
+                                               }
+                                       g_strfreev (splitted);
+                               }
+               }
+
+       username = zak_cgi_session_get_value (session, "user_name");
+       if (username == NULL)
+               {
+                       g_string_append (str,
+                                        "<form action=\"/cgi-bin/session\" method=\"post\" enctype=\"multipart/form-data\">\n"
+                                        "User: <input name=\"user\" /></br>\n"
+                                        "Password: <input name=\"password\" type=\"password\" /></br>\n"
+                                        "<input type=\"submit\" value=\"Login\" />\n"
+                                        "</form>\n");
+               }
+       else
+               {
+                       g_string_append_printf (str,
+                                               "Welcome %s",
+                                               username);
+
+                       if (g_strcmp0 (method, "POST") == 0)
+                               {
+                                       g_string_append (str,
+                                                        "<form action=\"/cgi-bin/session\">\n"
+                                                        "<input type=\"submit\" value=\"Go forward\" />\n"
+                                                        "</form>\n");
+                               }
+                       else
+                               {
+                                       g_string_append (str, ", on the second page.");
+                               }
+                       g_free (method);
+               }
+
+       g_string_append (str, "\n</body>");
+
+       header = g_string_new (ZAK_CGI_STANDARD_HEADER_HTML);
+       g_string_append_printf (header, "\n%s", zak_cgi_session_get_header (session));
+
+       zak_cgi_main_out (header->str, str->str);
+       g_string_free (str, TRUE);
+
+       if (method != NULL)
+               {
+                       g_free (method);
+               }
 
        return 0;
 }