# 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)
#ifndef __LIBZAKCGI_H__
#define __LIBZAKCGI_H__
-#include <libzakcgi/zakcgimain.h>
+#include <libzakcgi/main.h>
+#include <libzakcgi/session.h>
#endif /* __LIBZAKCGI_H__ */
#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);
typedef struct _ZakCgiSessionPrivate ZakCgiSessionPrivate;
struct _ZakCgiSessionPrivate
{
+ gchar *sid;
+ GFile *gfile;
+ GKeyFile *kfile;
};
G_DEFINE_TYPE (ZakCgiSession, zak_cgi_session, G_TYPE_OBJECT)
ZakCgiSession
*zak_cgi_session_new (void)
{
+ GHashTable *ht_cookies;
+
+ GError *error;
+
ZakCgiSession *zak_cgi_session;
ZakCgiSessionPrivate *priv;
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,
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
"\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);
--- /dev/null
+<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>
* 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;
}