]> saetta.ns0.it Git - libzakcgi/commitdiff
Added content_type to ZakCgiFile.
authorAndrea Zagli <azagli@libero.it>
Sat, 13 May 2017 14:18:12 +0000 (16:18 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 18 May 2017 09:44:40 +0000 (11:44 +0200)
src/main.c
src/main.h

index 54fa0f123bcd46a829d6b6e5a70e611555f6315b..1b1ff6f7360bb7be4765649f1d108b6758a2838c 100644 (file)
@@ -875,6 +875,7 @@ ZakCgiFile
        b->name = g_strdup (file->name);
        b->content = g_memdup (file->content, file->size);
        b->size = file->size;
+       b->content_type = g_strdup (file->content_type);
 
        return b;
 }
@@ -884,6 +885,7 @@ zak_cgi_file_free (ZakCgiFile *file)
 {
        g_free (file->name);
        g_free (file->content);
+       g_free (file->content_type);
        g_slice_free (ZakCgiFile, file);
 }
 
@@ -898,16 +900,36 @@ static GHashTable
        const gchar *env;
 
        guint l;
-       guint i;
-       guint bytesread;
 
        gchar *_boundary;
 
-       gchar *line;
        gchar *content_disposition;
        gchar *content_type;
        gchar *tmp;
 
+       gchar **splitted;
+
+       GPtrArray *content_splitted;
+       guint j;
+
+       gchar **boundary_splitted;
+
+       gchar **v_content;
+       gchar **parts;
+       guint l_v_content;
+
+       gchar *param_name;
+       gchar *param_name_file;
+       gchar *param_value;
+       guint file_l;
+
+       GValue *gval;
+       GValue *gval_tmp;
+
+       ZakCgiFile *zgfile;
+
+       GPtrArray *ar;
+
        ht = NULL;
 
        env = g_getenv ("CONTENT_LENGTH");
@@ -924,13 +946,13 @@ static GHashTable
                        return ht;
                }
 
-       content_type = (gchar *)g_getenv ("CONTENT_TYPE");
+       content_type = g_strdup (g_getenv ("CONTENT_TYPE"));
        if (content_type == NULL)
                {
                        return ht;
                }
 
-       gchar **splitted = g_strsplit (content_type, ";", -1);
+       splitted = g_strsplit (content_type, ";", -1);
        if (g_strcmp0 (content_type, "") == 0
                || g_strcmp0 (splitted[0], "application/x-www-form-urlencoded") == 0)
                {
@@ -938,14 +960,10 @@ static GHashTable
                }
        else if (g_strcmp0 (splitted[0], "multipart/form-data") == 0)
                {
-                       GPtrArray *content_splitted;
-                       guint j;
-                       guint l_boundary;
-
                        if (g_strv_length (splitted) > 1
                                && boundary == NULL)
                                {
-                                       gchar **boundary_splitted = g_strsplit (splitted[1], "=", 2);
+                                       boundary_splitted = g_strsplit (splitted[1], "=", 2);
                                        _boundary = g_strdup_printf ("--%s", boundary_splitted[1]);
                                        g_strfreev (boundary_splitted);
                                }
@@ -958,8 +976,6 @@ static GHashTable
                                }
                        g_strfreev (splitted);
 
-                       l_boundary = strlen (_boundary);
-
                        ht = g_hash_table_new (g_str_hash, g_str_equal);
 
                        content_splitted = zak_cgi_main_split_content (buf, l, _boundary);
@@ -986,22 +1002,6 @@ static GHashTable
                                        dataistream = g_data_input_stream_new (G_INPUT_STREAM (mstream));
 
                                        /* content-disposition */
-                                       gchar **v_content;
-                                       gchar **parts;
-                                       guint l_v_content;
-
-                                       gchar *param_name;
-                                       gchar *param_name_file;
-                                       gchar *param_value;
-                                       guint file_l;
-
-                                       GValue *gval;
-                                       GValue *gval_tmp;
-
-                                       ZakCgiFile *zgfile;
-
-                                       GPtrArray *ar;
-
                                        error = NULL;
                                        content_disposition = g_data_input_stream_read_line (dataistream, NULL, NULL, &error);
                                        if (content_disposition == NULL)
@@ -1030,12 +1030,29 @@ static GHashTable
                                                        g_strfreev (parts);
 
                                                        /* content-type */
-                                                       content_type = g_data_input_stream_read_line (dataistream, &length, NULL, NULL);
-                                                       g_free (content_type);
+                                                       /* if (content_type != NULL) */
+                                                       /*      { */
+                                                       /*              g_free (content_type); */
+                                                       /*              content_type = NULL; */
+                                                       /*      } */
+                                                       tmp = g_data_input_stream_read_line (dataistream, &length, NULL, NULL);
+                                                       tmp[length - 1] = '\0';
+                                                       parts = g_strsplit (tmp, ": ", -1);
+                                                       content_type = g_strdup (parts[1]);
+                                                       g_strfreev (parts);
+                                                       g_free (tmp);
+                                               }
+                                       else
+                                               {
+                                                       /* if (content_type != NULL) */
+                                                       /*      { */
+                                                       /*              g_free (content_type); */
+                                                                       content_type = NULL;
+                                                       /*      } */
                                                }
 
-                                       g_strfreev (v_content);
                                        g_free (content_disposition);
+                                       g_strfreev (v_content);
 
                                        /* empty */
                                        g_data_input_stream_read_line (dataistream, NULL, NULL, NULL);
@@ -1074,6 +1091,8 @@ static GHashTable
                                                        zgfile->name = g_strdup (param_name_file);
                                                        zgfile->content = g_memdup (param_value, file_l - 2);
                                                        zgfile->size = file_l - 2;
+                                                       zgfile->content_type = g_strdup (content_type);
+                                                       g_free (content_type);
 
                                                        g_value_init (gval_tmp, ZAK_CGI_TYPE_FILE);
                                                        g_value_take_boxed (gval_tmp, zgfile);
index 5a4eb79d7476874afb82e884940ab6c2fd7ddcb3..d3d340d40f8ef1e6a2674d0107574a3b056582eb 100644 (file)
@@ -92,6 +92,7 @@ struct _ZakCgiFile
        gchar *name;
        gchar *content;
        guint size;
+       gchar *content_type;
 };
 
 #define ZAK_CGI_TYPE_FILE (zak_cgi_file_get_type ())