+
+void
+index_audio (GMatchInfo *minfo, gpointer user_data)
+{
+ g_autofree gchar *file;
+ g_autofree gchar *pwd;
+ g_autofree gchar *filename;
+
+ g_autoptr (GError) error;
+ g_autoptr (GFile) gf;
+ g_autoptr (GFileInfo) gfi;
+
+ goffset filesize;
+
+ g_autofree gchar *buf;
+
+ Commons *commons = (Commons *)user_data;
+ g_warning ("AUDIO");
+ file = g_match_info_fetch_named (minfo, "file");
+ if (file == NULL)
+ {
+ return;
+ }
+
+ pwd = zak_cgi_session_get_value (commons->zcgi_session, "pwd");
+ if (pwd == NULL)
+ {
+ pwd = g_strdup ("");
+ }
+
+ filename = g_build_filename (commons->root, pwd, file, NULL);
+ gf = g_file_new_for_path (filename);
+
+ error = NULL;
+ gfi = g_file_query_info (gf,
+ G_FILE_ATTRIBUTE_STANDARD_NAME "," G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "," G_FILE_ATTRIBUTE_STANDARD_SIZE,
+ G_FILE_QUERY_INFO_NONE,
+ NULL,
+ &error);
+ if (gfi == NULL
+ || error != NULL)
+ {
+ return;
+ }
+
+ filesize = g_file_info_get_size (gfi);
+ g_string_printf (commons->header,
+ "Content-Description: File Transfer\n"
+ "Content-Type: %s\n"
+ "Content-Disposition: attachment; filename=\"%s\"\n"
+ "Content-Transfer-Encoding: binary\n"
+ "Content-Length: %d\n"
+ "Expires: 0\n"
+ "Cache-Control: must-revalidate, post-check=0, pre-check=0\n"
+ "Pragma: public",
+ g_file_info_get_content_type (gfi),
+ file,
+ filesize);
+
+ error = NULL;
+ buf = g_malloc0 (filesize);
+ if (!g_file_load_contents (gf,
+ NULL,
+ &buf,
+ NULL,
+ NULL,
+ &error)
+ || error != NULL)
+ {
+ return;
+ }
+
+ g_string_set_size (commons->out, filesize);
+ memcpy (commons->out->str, buf, filesize);
+}