]> saetta.ns0.it Git - libzakcgi/commitdiff
Sesssion: added path where to save session files (closes #944).
authorAndrea Zagli <azagli@libero.it>
Tue, 28 Jul 2015 19:57:56 +0000 (21:57 +0200)
committerAndrea Zagli <azagli@libero.it>
Tue, 28 Jul 2015 19:58:35 +0000 (21:58 +0200)
src/session.c
src/session.h
tests/session.c

index 6390c0dd6d1d8d7bb0ca92d8cb88a15f54aef596..9f0ee38ff21efd5550a97a7ca5cd9b4d77f0dcc4 100644 (file)
@@ -48,6 +48,7 @@ struct _ZakCgiSessionPrivate
        {
                ZakCgiMain *zakcgimain;
                gchar *base_uri;
+               gchar *path;
                gchar *sid;
                GFile *gfile;
                GKeyFile *kfile;
@@ -75,18 +76,21 @@ zak_cgi_session_init (ZakCgiSession *zak_cgi_session)
 
        priv->zakcgimain = NULL;
        priv->base_uri = NULL;
+       priv->path = NULL;
 }
 
 /**
  * zak_cgi_session_new:
  * @zakcgimain:
  * @base_uri:
+ * @path:
  *
  * Returns: the newly created #ZakCgiSession object.
  */
 ZakCgiSession
 *zak_cgi_session_new (ZakCgiMain *zakcgimain,
-                                         const gchar *base_uri)
+                                         const gchar *base_uri,
+                                         const gchar *path)
 {
        GHashTable *ht_cookies;
 
@@ -103,6 +107,10 @@ ZakCgiSession
                {
                        priv->base_uri = g_strdup (base_uri);
                }
+       if (path != NULL)
+               {
+                       priv->path = g_strdup (path);
+               }
 
        ht_cookies = zak_cgi_main_get_cookies (priv->zakcgimain);
        priv->sid = g_hash_table_lookup (ht_cookies, "ZAKCGISID");
@@ -110,7 +118,7 @@ ZakCgiSession
        if (priv->sid != NULL)
                {
                        /* open the file */
-                       priv->gfile = g_file_new_for_path (g_build_filename (g_get_tmp_dir (), priv->sid, NULL));
+                       priv->gfile = g_file_new_for_path (g_build_filename (priv->path != NULL ? priv->path : g_get_tmp_dir (), priv->sid, NULL));
 
                        error = NULL;
 
@@ -166,7 +174,7 @@ gchar
                        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));
+                       priv->gfile = g_file_new_for_path (g_build_filename (priv->path != NULL ? priv->path : 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
index 3475ba2734140883e4fc5377e2d535e21d00c979..44a992c4de0377cb36d7bb53ba403f3a0baa15e5 100644 (file)
@@ -52,7 +52,8 @@ GType zak_cgi_session_get_type (void);
 
 
 ZakCgiSession *zak_cgi_session_new (ZakCgiMain *zakcgimain,
-                                                                       const gchar *base_uri);
+                                                                       const gchar *base_uri,
+                                                                       const gchar *path);
 
 gchar *zak_cgi_session_get_header (ZakCgiSession *session);
 
index 6644d21fca70a9a3b1a6d6c6f493d64d98082ffa..ef18155a346dbd916ca17a829b5cf30b908ab14c 100644 (file)
@@ -34,7 +34,7 @@ main (int argc, char *argv[])
 
        gchar *method;
 
-       session = zak_cgi_session_new (NULL, NULL);
+       session = zak_cgi_session_new (NULL, NULL, NULL);
 
        str = g_string_new ("<html>\n"
                            "<head><title>Session Cookie</title></head>\n"