#include <string.h>
#include <locale.h>
-#include <syslog.h>
-
#include <glib/gprintf.h>
#include <gio/gunixinputstream.h>
ht = _zak_cgi_main_get_cookies (zakcgimain);
- ret = g_hash_table_lookup (ht, cookie);
+ ret = (GValue *)g_hash_table_lookup (ht, cookie);
return ret;
}
&error);
if (l != bytesread)
{
- syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "error reading stdin: bytes read differ from content length");
+ g_warning ("Error reading stdin: bytes read differ from content length");
}
if (error != NULL)
{
- syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "error reading stdin: %s", error->message);
+ g_warning ("Error reading stdin: %s", error->message);
}
}
}
/*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2016 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
#include <config.h>
#endif
-#include <syslog.h>
-
#include <gio/gio.h>
#include <string.h>
const gchar *base_uri,
const gchar *path)
{
- GHashTable *ht_cookies;
-
GError *error;
+ gchar *val;
ZakCgiSession *zak_cgi_session;
ZakCgiSessionPrivate *priv;
- gchar *val;
+ g_return_val_if_fail (ZAK_CGI_IS_MAIN (zakcgimain), NULL);
zak_cgi_session = ZAK_CGI_SESSION (g_object_new (zak_cgi_session_get_type (), NULL));
priv->path = g_strdup (path);
}
- ht_cookies = zak_cgi_main_get_cookies (priv->zakcgimain);
- priv->sid = g_hash_table_lookup (ht_cookies, "ZAKCGISID");
+ priv->sid = g_strdup ((gchar *)g_value_get_string (zak_cgi_main_get_cookie (priv->zakcgimain, "ZAKCGISID")));
if (priv->sid != NULL)
{
guint32 i;
gchar *tmp;
- GHashTable *ht_env;
-
ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
if (priv->sid == NULL)
|| error != NULL)
{
/* TODO */
+ g_warning ("Unable to write new session file: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
}
else
{
|| error != NULL)
{
/* TODO */
+ g_warning ("Unable to read session file: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
}
else
{
}
}
- ht_env = zak_cgi_main_get_env (priv->zakcgimain);
-
ret = zak_cgi_main_set_cookie ("ZAKCGISID", priv->sid, NULL, NULL,
- priv->base_uri != NULL ? priv->base_uri : (gchar *)g_hash_table_lookup (ht_env, "CONTEXT_PREFIX"),
+ priv->base_uri != NULL ? priv->base_uri : (gchar *)g_value_get_string (zak_cgi_main_get_env_field (priv->zakcgimain, "CONTEXT_PREFIX")),
FALSE, FALSE);
}
else
{
ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
+ GError *error;
+
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);
+
+ error = NULL;
+ if (!g_key_file_save_to_file (priv->kfile, g_file_get_path (priv->gfile), &error)
+ || error != NULL)
+ {
+ g_warning ("Unable to write value tosession file: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ }
}
}
#include <main.h>
#include <session.h>
+void
+ht_foreach (gpointer key,
+ gpointer value,
+ gpointer user_data)
+{
+ GString *str = (GString *)user_data;
+
+ g_string_append_printf (str, "<tr><td>%s</td><td>%s</td></tr>\n",
+ (gchar *)key, g_value_get_string ((GValue *)value));
+}
+
int
main (int argc, char *argv[])
{
GString *header;
GHashTable *ht;
GHashTable *ht_stdin;
+ ZakCgiMain *zakcgimain;
ZakCgiSession *session;
gchar *method;
- session = zak_cgi_session_new (NULL, NULL, NULL);
+ zakcgimain = zak_cgi_main_new ();
+
+ session = zak_cgi_session_new (zakcgimain, NULL, NULL);
str = g_string_new ("<html>\n"
"<head><title>Session Cookie</title></head>\n"
"<body>\n");
- ht = zak_cgi_main_get_env (NULL);
+ g_string_append_printf (str, "<table>\n");
+ zak_cgi_main_cookies_foreach (zakcgimain, ht_foreach, str);
+ g_string_append_printf (str, "</table>\n");
+
+ ht = zak_cgi_main_get_env (zakcgimain);
if (ht != NULL)
{
- method = g_hash_table_lookup (ht, "REQUEST_METHOD");
+ method = g_value_get_string (g_hash_table_lookup (ht, "REQUEST_METHOD"));
if (g_strcmp0 (method, "POST") == 0)
{
const gchar *content_type = g_getenv ("CONTENT_TYPE");
{
gchar **boundary = g_strsplit (splitted[1], "=", 2);
- env = zak_cgi_main_get_stdin (NULL);
+ env = zak_cgi_main_get_stdin (zakcgimain);
ht_stdin = zak_cgi_main_parse_stdin (env, boundary[1]);