Blame SOURCES/0080-ureport-aggressive-refactorization-of-uReport-source.patch

28bab8
From 85b9ada575f47a5f25f1ffeaccf9c4e1142fd689 Mon Sep 17 00:00:00 2001
28bab8
From: Jakub Filak <jfilak@redhat.com>
28bab8
Date: Sat, 13 Sep 2014 22:26:53 +0200
28bab8
Subject: [LIBREPORT PATCH 80/93] ureport: aggressive refactorization of
28bab8
 uReport source
28bab8
28bab8
Simplify/unify the uReport API and provide a development documentation
28bab8
in form of Doxygen comments.
28bab8
28bab8
Related to rhbz1139987
28bab8
28bab8
Signed-off-by: Jakub Filak <jfilak@redhat.com>
28bab8
---
28bab8
 po/POTFILES.in                 |   4 +-
28bab8
 src/include/ureport.h          | 185 +++++++++++-
28bab8
 src/lib/ureport.c              | 633 ++++++++++++++++++++++++++++++++++++++---
28bab8
 src/plugins/reporter-ureport.c | 581 ++-----------------------------------
28bab8
 4 files changed, 793 insertions(+), 610 deletions(-)
28bab8
28bab8
diff --git a/po/POTFILES.in b/po/POTFILES.in
28bab8
index 7ba080c..00046e2 100644
28bab8
--- a/po/POTFILES.in
28bab8
+++ b/po/POTFILES.in
28bab8
@@ -19,7 +19,7 @@ src/lib/client.c
28bab8
 src/lib/create_dump_dir.c
28bab8
 src/lib/curl.c
28bab8
 src/lib/event_config.c
28bab8
-src/lib/json.c
28bab8
+src/lib/ureport.c
28bab8
 src/lib/make_descr.c
28bab8
 src/lib/parse_options.c
28bab8
 src/lib/problem_data.c
28bab8
@@ -42,7 +42,7 @@ src/plugins/report_Uploader.xml.in
28bab8
 src/plugins/report_uReport.xml.in
28bab8
 src/plugins/report_EmergencyAnalysis.xml.in
28bab8
 src/plugins/rhbz.c
28bab8
-src/plugins/ureport.c
28bab8
+src/plugins/reporter-ureport.c
28bab8
 src/report-newt/report-newt.c
28bab8
 src/workflows/workflow_AnacondaFedora.xml.in
28bab8
 src/workflows/workflow_AnacondaRHEL.xml.in
28bab8
diff --git a/src/include/ureport.h b/src/include/ureport.h
28bab8
index d341f6e..3fffed7 100644
28bab8
--- a/src/include/ureport.h
28bab8
+++ b/src/include/ureport.h
28bab8
@@ -19,12 +19,19 @@
28bab8
 #ifndef UREPORT_H_
28bab8
 #define UREPORT_H_
28bab8
 
28bab8
-#include "problem_data.h"
28bab8
-
28bab8
 #ifdef __cplusplus
28bab8
 extern "C" {
28bab8
 #endif
28bab8
 
28bab8
+#define UREPORT_CONF_FILE_PATH PLUGINS_CONF_DIR"/ureport.conf"
28bab8
+
28bab8
+#define UREPORT_OPTION_VALUE_FROM_CONF(settings, opt, var, tr) do { const char *value = getenv("uReport_"opt); \
28bab8
+        if (!value) { value = get_map_string_item_or_NULL(settings, opt); } if (value) { var = tr(value); } \
28bab8
+    } while(0)
28bab8
+
28bab8
+#define UREPORT_SUBMIT_ACTION "reports/new/"
28bab8
+#define UREPORT_ATTACH_ACTION "reports/attach/"
28bab8
+
28bab8
 /*
28bab8
  * uReport generation configuration
28bab8
  */
28bab8
@@ -48,22 +55,176 @@ struct ureport_server_config
28bab8
     struct ureport_preferences ur_prefs; ///< configuration for uReport generation
28bab8
 };
28bab8
 
28bab8
-struct abrt_post_state;
28bab8
+/*
28bab8
+ * Initialize structure members
28bab8
+ *
28bab8
+ * @param config Initialized structure
28bab8
+ */
28bab8
+#define ureport_server_config_init libreport_ureport_server_config_init
28bab8
+void
28bab8
+ureport_server_config_init(struct ureport_server_config *config);
28bab8
+
28bab8
+/*
28bab8
+ * Release all allocated resources
28bab8
+ *
28bab8
+ * @param config Released structure
28bab8
+ */
28bab8
+#define ureport_server_config_destroy libreport_ureport_server_config_destroy
28bab8
+void
28bab8
+ureport_server_config_destroy(struct ureport_server_config *config);
28bab8
 
28bab8
-#define ureport_post libreport_ureport_post
28bab8
-struct post_state *ureport_post(const char *json_ureport,
28bab8
-                                struct ureport_server_config *config);
28bab8
+/*
28bab8
+ * Loads uReport configuration from various sources.
28bab8
+ *
28bab8
+ * Replaces a value of an already configured option only if the
28bab8
+ * option was found in a configuration source.
28bab8
+ *
28bab8
+ * @param config a server configuration to be populated
28bab8
+ */
28bab8
+#define ureport_server_config_load libreport_ureport_server_config_load
28bab8
+void
28bab8
+ureport_server_config_load(struct ureport_server_config *config,
28bab8
+                           map_string_t *settings);
28bab8
 
28bab8
-#define ureport_attach_rhbz libreport_ureport_attach_rhbz
28bab8
-struct post_state *ureport_attach_rhbz(const char *bthash, int rhbz_bug_id,
28bab8
+/*
28bab8
+ * Configure client certificate paths
28bab8
+ *
28bab8
+ * @param config Where the paths are stored
28bab8
+ * @param client_path Path in form of cert_full_path:key_full_path or one of
28bab8
+ *        the following string: 'rhsm', 'puppet'.
28bab8
+ */
28bab8
+#define ureport_server_config_set_client_auth libreport_ureport_server_config_set_client_auth
28bab8
+void
28bab8
+ureport_server_config_set_client_auth(struct ureport_server_config *config,
28bab8
+                                      const char *client_auth);
28bab8
+
28bab8
+/*
28bab8
+ * uReport server response
28bab8
+ */
28bab8
+struct ureport_server_response
28bab8
+{
28bab8
+    bool urr_is_error;  ///< True if server replied with error response
28bab8
+    char *urr_value;    ///< Value of the response
28bab8
+    char *urr_message;  ///< Additional message
28bab8
+    char *urr_bthash;   ///< uReport's server side identifier
28bab8
+    GList *urr_reported_to_list; ///< Known external reports for uReport
28bab8
+                                 ///< in *reported_to* format
28bab8
+    char *urr_solution; ///< URL pointing to solution for uReport
28bab8
+};
28bab8
+
28bab8
+/* Can't include "abrt_curl.h", it's not a public API.
28bab8
+ * Resorting to just forward-declaring the struct we need.
28bab8
+ */
28bab8
+struct post_state;
28bab8
+
28bab8
+/*
28bab8
+ * Parse server reply
28bab8
+ *
28bab8
+ * @param post_state Server reply
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return Pointer to malloced memory or NULL in case of error in communication
28bab8
+ */
28bab8
+#define ureport_server_response_from_reply libreport_ureport_server_response_from_reply
28bab8
+struct ureport_server_response *
28bab8
+ureport_server_response_from_reply(struct post_state *post_state,
28bab8
+                                   struct ureport_server_config *config);
28bab8
+
28bab8
+/*
28bab8
+ * Save response in dump dir files
28bab8
+ *
28bab8
+ * @param resp Parsed server response
28bab8
+ * @param dump_dir_pat Path to dump directory
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return False in case of any error; otherwise True.
28bab8
+ */
28bab8
+#define ureport_server_response_save_in_dump_dir libreport_ureport_server_response_save_in_dump_dir
28bab8
+bool
28bab8
+ureport_server_response_save_in_dump_dir(struct ureport_server_response *resp,
28bab8
+                                         const char *dump_dir_path,
28bab8
+                                         struct ureport_server_config *config);
28bab8
+
28bab8
+/*
28bab8
+ * Build URL to submitted uReport
28bab8
+ *
28bab8
+ * @param resp Parsed server response
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return Malloced zero-terminated string
28bab8
+ */
28bab8
+#define ureport_server_response_get_report_url libreport_ureport_server_response_get_report_url
28bab8
+char *
28bab8
+ureport_server_response_get_report_url(struct ureport_server_response *resp,
28bab8
                                        struct ureport_server_config *config);
28bab8
 
28bab8
-#define ureport_attach_email libreport_ureport_attach_email
28bab8
-struct post_state *ureport_attach_email(const char *bthash, const char *email,
28bab8
-                                        struct ureport_server_config *config);
28bab8
+/*
28bab8
+ * Release allocated resources
28bab8
+ *
28bab8
+ * @param resp Released structured
28bab8
+ */
28bab8
+#define ureport_server_response_free libreport_ureport_server_response_free
28bab8
+void
28bab8
+ureport_server_response_free(struct ureport_server_response *resp);
28bab8
+
28bab8
+/*
28bab8
+ * Send JSON to server and obtain reply
28bab8
+ *
28bab8
+ * @param json Sent data
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @param url_sfx Local part of the upload URL
28bab8
+ * @return Malloced server reply or NULL in case of communication errors
28bab8
+ */
28bab8
+#define ureport_do_post libreport_ureport_do_post
28bab8
+struct post_state *
28bab8
+ureport_do_post(const char *json, struct ureport_server_config *config,
28bab8
+                const char *url_sfx);
28bab8
+
28bab8
+/*
28bab8
+ * Submit uReport on server
28bab8
+ *
28bab8
+ * @param json Sent data
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return Malloced, parsed server response
28bab8
+ */
28bab8
+#define ureport_submit libreport_ureport_submit
28bab8
+struct ureport_server_response *
28bab8
+ureport_submit(const char *json_ureport, struct ureport_server_config *config);
28bab8
+
28bab8
+/*
28bab8
+ * Attach given string to uReport
28bab8
+ *
28bab8
+ * @param bthash uReport identifier
28bab8
+ * @param type Type of attachment
28bab8
+ * @param data Attached data
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return False in case of any error; otherwise True
28bab8
+ */
28bab8
+#define ureport_attach_string libreport_ureport_attach_string
28bab8
+bool
28bab8
+ureport_attach_string(const char *bthash, const char *type, const char *data,
28bab8
+               struct ureport_server_config *config);
28bab8
 
28bab8
+/*
28bab8
+ * Attach given integer to uReport
28bab8
+ *
28bab8
+ * @param bthash uReport identifier
28bab8
+ * @param type Type of attachment
28bab8
+ * @param data Attached data
28bab8
+ * @param config Configuration used in communication
28bab8
+ * @return False in case of any error; otherwise True
28bab8
+ */
28bab8
+#define ureport_attach_int libreport_ureport_attach_int
28bab8
+bool
28bab8
+ureport_attach_int(const char *bthash, const char *type, int data,
28bab8
+                   struct ureport_server_config *config);
28bab8
+
28bab8
+/*
28bab8
+ * Build uReport from dump dir
28bab8
+ *
28bab8
+ * @param dump_dir_path FS path to dump dir
28bab8
+ * @return Malloced JSON string
28bab8
+ */
28bab8
 #define ureport_from_dump_dir libreport_ureport_from_dump_dir
28bab8
-char *ureport_from_dump_dir(const char *dump_dir_path);
28bab8
+char *
28bab8
+ureport_from_dump_dir(const char *dump_dir_path);
28bab8
 
28bab8
 #define ureport_from_dump_dir_ext libreport_ureport_from_dump_dir_ext
28bab8
 char *ureport_from_dump_dir_ext(const char *dump_dir_path,
28bab8
diff --git a/src/lib/ureport.c b/src/lib/ureport.c
28bab8
index 761fe62..e1816ef 100644
28bab8
--- a/src/lib/ureport.c
28bab8
+++ b/src/lib/ureport.c
28bab8
@@ -26,9 +26,528 @@
28bab8
 #include "ureport.h"
28bab8
 #include "libreport_curl.h"
28bab8
 
28bab8
+#define DESTROYED_POINTER (void *)0xdeadbeef
28bab8
 
28bab8
-static void ureport_add_str(struct json_object *ur, const char *key,
28bab8
-                            const char *s)
28bab8
+#define BTHASH_URL_SFX "reports/bthash/"
28bab8
+
28bab8
+#define RHSM_CERT_PATH "/etc/pki/consumer/cert.pem"
28bab8
+#define RHSM_KEY_PATH "/etc/pki/consumer/key.pem"
28bab8
+
28bab8
+#define RHSMENT_PEM_DIR_PATH "/etc/pki/entitlement"
28bab8
+#define RHSMENT_ENT_DATA_BEGIN_TAG "-----BEGIN ENTITLEMENT DATA-----"
28bab8
+#define RHSMENT_ENT_DATA_END_TAG "-----END ENTITLEMENT DATA-----"
28bab8
+#define RHSMENT_SIG_DATA_BEGIN_TAG "-----BEGIN RSA SIGNATURE-----"
28bab8
+#define RHSMENT_SIG_DATA_END_TAG "-----END RSA SIGNATURE-----"
28bab8
+
28bab8
+static char *
28bab8
+puppet_config_print(const char *key)
28bab8
+{
28bab8
+    char *command = xasprintf("puppet config print %s", key);
28bab8
+    char *result = run_in_shell_and_save_output(0, command, NULL, NULL);
28bab8
+    free(command);
28bab8
+
28bab8
+    /* run_in_shell_and_save_output always returns non-NULL */
28bab8
+    if (result[0] != '/')
28bab8
+        goto error;
28bab8
+
28bab8
+    char *newline = strchrnul(result, '\n');
28bab8
+    if (!newline)
28bab8
+        goto error;
28bab8
+
28bab8
+    *newline = '\0';
28bab8
+    return result;
28bab8
+error:
28bab8
+    free(result);
28bab8
+    error_msg_and_die("Unable to determine puppet %s path (puppet not installed?)", key);
28bab8
+}
28bab8
+
28bab8
+void
28bab8
+ureport_server_config_set_client_auth(struct ureport_server_config *config,
28bab8
+                                      const char *client_auth)
28bab8
+{
28bab8
+    if (client_auth == NULL)
28bab8
+        return;
28bab8
+
28bab8
+    if (strcmp(client_auth, "") == 0)
28bab8
+    {
28bab8
+        config->ur_client_cert = NULL;
28bab8
+        config->ur_client_key = NULL;
28bab8
+        log_notice("Not using client authentication");
28bab8
+    }
28bab8
+    else if (strcmp(client_auth, "rhsm") == 0)
28bab8
+    {
28bab8
+        config->ur_client_cert = xstrdup(RHSM_CERT_PATH);
28bab8
+        config->ur_client_key = xstrdup(RHSM_KEY_PATH);
28bab8
+    }
28bab8
+    else if (strcmp(client_auth, "rhsm-entitlement") == 0)
28bab8
+    {
28bab8
+        GList *certs = get_file_list(RHSMENT_PEM_DIR_PATH, "pem");
28bab8
+        if (g_list_length(certs) != 2)
28bab8
+        {
28bab8
+            log_notice(RHSMENT_PEM_DIR_PATH" does not contain unique cert-key files pair");
28bab8
+            log_notice("Not using client authentication");
28bab8
+            return;
28bab8
+        }
28bab8
+
28bab8
+        const char *cert = NULL;
28bab8
+        const char *key = NULL;
28bab8
+
28bab8
+        file_obj_t *fst = (file_obj_t *)certs->data;
28bab8
+        file_obj_t *scn = (file_obj_t *)certs->next->data;
28bab8
+
28bab8
+        if (strlen(fo_get_filename(fst)) < strlen(fo_get_filename(scn)))
28bab8
+        {
28bab8
+            cert = fo_get_filename(fst);
28bab8
+            key = fo_get_filename(scn);
28bab8
+
28bab8
+            config->ur_client_cert = xstrdup(fo_get_fullpath(fst));
28bab8
+            config->ur_client_key = xstrdup(fo_get_fullpath(scn));
28bab8
+        }
28bab8
+        else
28bab8
+        {
28bab8
+            cert = fo_get_filename(scn);
28bab8
+            key = fo_get_filename(fst);
28bab8
+
28bab8
+            config->ur_client_cert = xstrdup(fo_get_fullpath(scn));
28bab8
+            config->ur_client_key = xstrdup(fo_get_fullpath(fst));
28bab8
+        }
28bab8
+
28bab8
+        const bool iscomplement = prefixcmp(key, cert) != 0 || strcmp("-key", key + strlen(cert)) != 0;
28bab8
+        g_list_free_full(certs, (GDestroyNotify)free_file_obj);
28bab8
+
28bab8
+        if (iscomplement)
28bab8
+        {
28bab8
+            log_notice("Key file '%s' isn't complement to cert file '%s'",
28bab8
+                    config->ur_client_key, config->ur_client_cert);
28bab8
+            log_notice("Not using client authentication");
28bab8
+
28bab8
+            free(config->ur_client_cert);
28bab8
+            free(config->ur_client_key);
28bab8
+            config->ur_client_cert = NULL;
28bab8
+            config->ur_client_key = NULL;
28bab8
+
28bab8
+            return;
28bab8
+        }
28bab8
+
28bab8
+        char *certdata = xmalloc_open_read_close(config->ur_client_cert, /*no size limit*/NULL);
28bab8
+        if (certdata != NULL)
28bab8
+        {
28bab8
+            char *ent_data = xstrdup_between(certdata,
28bab8
+                    RHSMENT_ENT_DATA_BEGIN_TAG, RHSMENT_ENT_DATA_END_TAG);
28bab8
+
28bab8
+            char *sig_data = xstrdup_between(certdata,
28bab8
+                    RHSMENT_SIG_DATA_BEGIN_TAG, RHSMENT_SIG_DATA_END_TAG);
28bab8
+
28bab8
+            if (ent_data != NULL && sig_data != NULL)
28bab8
+            {
28bab8
+                ent_data = strremovech(ent_data, '\n');
28bab8
+                insert_map_string(config->ur_http_headers,
28bab8
+                        xstrdup("X-RH-Entitlement-Data"),
28bab8
+                        xasprintf(RHSMENT_ENT_DATA_BEGIN_TAG"%s"RHSMENT_ENT_DATA_END_TAG, ent_data));
28bab8
+
28bab8
+                sig_data = strremovech(sig_data, '\n');
28bab8
+                insert_map_string(config->ur_http_headers,
28bab8
+                        xstrdup("X-RH-Entitlement-Sig"),
28bab8
+                        xasprintf(RHSMENT_SIG_DATA_BEGIN_TAG"%s"RHSMENT_SIG_DATA_END_TAG, sig_data));
28bab8
+            }
28bab8
+            else
28bab8
+            {
28bab8
+                log_notice("Cert file '%s' doesn't contain Entitlement and RSA Signature sections", config->ur_client_cert);
28bab8
+                log_notice("Not using HTTP authentication headers");
28bab8
+            }
28bab8
+
28bab8
+            free(sig_data);
28bab8
+            free(ent_data);
28bab8
+            free(certdata);
28bab8
+        }
28bab8
+    }
28bab8
+    else if (strcmp(client_auth, "puppet") == 0)
28bab8
+    {
28bab8
+        config->ur_client_cert = puppet_config_print("hostcert");
28bab8
+        config->ur_client_key = puppet_config_print("hostprivkey");
28bab8
+    }
28bab8
+    else
28bab8
+    {
28bab8
+        char *scratch = xstrdup(client_auth);
28bab8
+        config->ur_client_cert = xstrdup(strtok(scratch, ":"));
28bab8
+        config->ur_client_key = xstrdup(strtok(NULL, ":"));
28bab8
+        free(scratch);
28bab8
+
28bab8
+        if (config->ur_client_cert == NULL || config->ur_client_key == NULL)
28bab8
+            error_msg_and_die("Invalid client authentication specification");
28bab8
+    }
28bab8
+
28bab8
+    if (config->ur_client_cert && config->ur_client_key)
28bab8
+    {
28bab8
+        log_notice("Using client certificate: %s", config->ur_client_cert);
28bab8
+        log_notice("Using client private key: %s", config->ur_client_key);
28bab8
+    }
28bab8
+}
28bab8
+
28bab8
+void
28bab8
+ureport_server_config_load(struct ureport_server_config *config,
28bab8
+                           map_string_t *settings)
28bab8
+{
28bab8
+    UREPORT_OPTION_VALUE_FROM_CONF(settings, "URL", config->ur_url, (const char *));
28bab8
+    UREPORT_OPTION_VALUE_FROM_CONF(settings, "SSLVerify", config->ur_ssl_verify, string_to_bool);
28bab8
+
28bab8
+    bool include_auth = false;
28bab8
+    UREPORT_OPTION_VALUE_FROM_CONF(settings, "IncludeAuthData", include_auth, string_to_bool);
28bab8
+
28bab8
+    if (include_auth)
28bab8
+    {
28bab8
+        const char *auth_items = NULL;
28bab8
+        UREPORT_OPTION_VALUE_FROM_CONF(settings, "AuthDataItems", auth_items, (const char *));
28bab8
+        config->ur_prefs.urp_auth_items = parse_list(auth_items);
28bab8
+
28bab8
+        if (config->ur_prefs.urp_auth_items == NULL)
28bab8
+            log_warning("IncludeAuthData set to 'yes' but AuthDataItems is empty.");
28bab8
+    }
28bab8
+
28bab8
+    const char *client_auth = NULL;
28bab8
+    UREPORT_OPTION_VALUE_FROM_CONF(settings, "SSLClientAuth", client_auth, (const char *));
28bab8
+    ureport_server_config_set_client_auth(config, client_auth);
28bab8
+}
28bab8
+
28bab8
+void
28bab8
+ureport_server_config_init(struct ureport_server_config *config)
28bab8
+{
28bab8
+    config->ur_url = NULL;
28bab8
+    config->ur_ssl_verify = true;
28bab8
+    config->ur_client_cert = NULL;
28bab8
+    config->ur_client_key = NULL;
28bab8
+    config->ur_http_headers = new_map_string();
28bab8
+    config->ur_prefs.urp_auth_items = NULL;
28bab8
+}
28bab8
+
28bab8
+void
28bab8
+ureport_server_config_destroy(struct ureport_server_config *config)
28bab8
+{
28bab8
+    free(config->ur_client_cert);
28bab8
+    config->ur_client_cert = DESTROYED_POINTER;
28bab8
+
28bab8
+    free(config->ur_client_key);
28bab8
+    config->ur_client_key = DESTROYED_POINTER;
28bab8
+
28bab8
+    g_list_free_full(config->ur_prefs.urp_auth_items, free);
28bab8
+    config->ur_prefs.urp_auth_items = DESTROYED_POINTER;
28bab8
+
28bab8
+    free_map_string(config->ur_http_headers);
28bab8
+    config->ur_http_headers = DESTROYED_POINTER;
28bab8
+}
28bab8
+
28bab8
+void
28bab8
+ureport_server_response_free(struct ureport_server_response *resp)
28bab8
+{
28bab8
+    if (!resp)
28bab8
+        return;
28bab8
+
28bab8
+    free(resp->urr_solution);
28bab8
+    resp->urr_solution = DESTROYED_POINTER;
28bab8
+
28bab8
+    g_list_free_full(resp->urr_reported_to_list, g_free);
28bab8
+    resp->urr_reported_to_list = DESTROYED_POINTER;
28bab8
+
28bab8
+    free(resp->urr_bthash);
28bab8
+    resp->urr_bthash = DESTROYED_POINTER;
28bab8
+
28bab8
+    free(resp->urr_message);
28bab8
+    resp->urr_message = DESTROYED_POINTER;
28bab8
+
28bab8
+    free(resp->urr_value);
28bab8
+    resp->urr_value = DESTROYED_POINTER;
28bab8
+
28bab8
+    free(resp);
28bab8
+}
28bab8
+
28bab8
+static char *
28bab8
+parse_solution_from_json_list(struct json_object *list,
28bab8
+                              GList **reported_to)
28bab8
+{
28bab8
+    json_object *list_elem, *struct_elem;
28bab8
+    const char *cause, *note, *url;
28bab8
+    struct strbuf *solution_buf = strbuf_new();
28bab8
+
28bab8
+    const unsigned length = json_object_array_length(list);
28bab8
+
28bab8
+    const char *one_format = _("Your problem seems to be caused by %s\n\n%s\n");
28bab8
+    if (length > 1)
28bab8
+    {
28bab8
+        strbuf_append_str(solution_buf, _("Your problem seems to be caused by one of the following:\n"));
28bab8
+        one_format = "\n* %s\n\n%s\n";
28bab8
+    }
28bab8
+
28bab8
+    bool empty = true;
28bab8
+    for (unsigned i = 0; i < length; ++i)
28bab8
+    {
28bab8
+        list_elem = json_object_array_get_idx(list, i);
28bab8
+        if (!list_elem)
28bab8
+            continue;
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "cause", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        cause = json_object_get_string(struct_elem);
28bab8
+            continue;
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "note", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        note = json_object_get_string(struct_elem);
28bab8
+        if (!note)
28bab8
+            continue;
28bab8
+
28bab8
+        empty = false;
28bab8
+        strbuf_append_strf(solution_buf, one_format, cause, note);
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "url", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        url = json_object_get_string(struct_elem);
28bab8
+        if (url)
28bab8
+        {
28bab8
+            char *reported_to_line = xasprintf("%s: URL=%s", cause, url);
28bab8
+            *reported_to = g_list_append(*reported_to, reported_to_line);
28bab8
+        }
28bab8
+    }
28bab8
+
28bab8
+    if (empty)
28bab8
+    {
28bab8
+        strbuf_free(solution_buf);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    return strbuf_free_nobuf(solution_buf);
28bab8
+}
28bab8
+
28bab8
+/* reported_to json element should be a list of structures
28bab8
+   {
28bab8
+     "reporter": "Bugzilla",
28bab8
+     "type": "url",
28bab8
+     "value": "https://bugzilla.redhat.com/show_bug.cgi?id=XYZ"
28bab8
+   }
28bab8
+ */
28bab8
+static GList *
28bab8
+parse_reported_to_from_json_list(struct json_object *list)
28bab8
+{
28bab8
+    int i;
28bab8
+    json_object *list_elem, *struct_elem;
28bab8
+    const char *reporter, *value, *type;
28bab8
+    char *reported_to_line, *prefix;
28bab8
+    GList *result = NULL;
28bab8
+
28bab8
+    for (i = 0; i < json_object_array_length(list); ++i)
28bab8
+    {
28bab8
+        prefix = NULL;
28bab8
+        list_elem = json_object_array_get_idx(list, i);
28bab8
+        if (!list_elem)
28bab8
+            continue;
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "reporter", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        reporter = json_object_get_string(struct_elem);
28bab8
+        if (!reporter)
28bab8
+            continue;
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "value", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        value = json_object_get_string(struct_elem);
28bab8
+        if (!value)
28bab8
+            continue;
28bab8
+
28bab8
+        if (!json_object_object_get_ex(list_elem, "type", &struct_elem))
28bab8
+            continue;
28bab8
+
28bab8
+        type = json_object_get_string(struct_elem);
28bab8
+        if (type)
28bab8
+        {
28bab8
+            if (strcasecmp("url", type) == 0)
28bab8
+                prefix = xstrdup("URL=");
28bab8
+            else if (strcasecmp("bthash", type) == 0)
28bab8
+                prefix = xstrdup("BTHASH=");
28bab8
+        }
28bab8
+
28bab8
+        if (!prefix)
28bab8
+            prefix = xstrdup("");
28bab8
+
28bab8
+        reported_to_line = xasprintf("%s: %s%s", reporter, prefix, value);
28bab8
+        free(prefix);
28bab8
+
28bab8
+        result = g_list_append(result, reported_to_line);
28bab8
+    }
28bab8
+
28bab8
+    return result;
28bab8
+}
28bab8
+
28bab8
+/*
28bab8
+ * Reponse samples:
28bab8
+ * {"error":"field 'foo' is required"}
28bab8
+ * {"response":"true"}
28bab8
+ * {"response":"false"}
28bab8
+ */
28bab8
+static struct ureport_server_response *
28bab8
+ureport_server_parse_json(json_object *json)
28bab8
+{
28bab8
+    json_object *obj = NULL;
28bab8
+    if (json_object_object_get_ex(json, "error", &obj))
28bab8
+    {
28bab8
+        struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
28bab8
+        out_response->urr_is_error = true;
28bab8
+        /*
28bab8
+         * Used to use json_object_to_json_string(obj), but it returns
28bab8
+         * the string in quote marks (") - IOW, json-formatted string.
28bab8
+         */
28bab8
+        out_response->urr_value = xstrdup(json_object_get_string(obj));
28bab8
+        return out_response;
28bab8
+    }
28bab8
+
28bab8
+    if (json_object_object_get_ex(json, "result", &obj))
28bab8
+    {
28bab8
+        struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
28bab8
+        out_response->urr_value = xstrdup(json_object_get_string(obj));
28bab8
+
28bab8
+        json_object *message = NULL;
28bab8
+        if (json_object_object_get_ex(json, "message", &message))
28bab8
+            out_response->urr_message = xstrdup(json_object_get_string(message));
28bab8
+
28bab8
+        json_object *bthash = NULL;
28bab8
+        if (json_object_object_get_ex(json, "bthash", &bthash))
28bab8
+            out_response->urr_bthash = xstrdup(json_object_get_string(bthash));
28bab8
+
28bab8
+        json_object *reported_to_list = NULL;
28bab8
+        if (json_object_object_get_ex(json, "reported_to", &reported_to_list))
28bab8
+            out_response->urr_reported_to_list =
28bab8
+                parse_reported_to_from_json_list(reported_to_list);
28bab8
+
28bab8
+        json_object *solutions = NULL;
28bab8
+        if (json_object_object_get_ex(json, "solutions", &solutions))
28bab8
+            out_response->urr_solution =
28bab8
+                parse_solution_from_json_list(solutions, &(out_response->urr_reported_to_list));
28bab8
+
28bab8
+        return out_response;
28bab8
+    }
28bab8
+
28bab8
+    return NULL;
28bab8
+}
28bab8
+
28bab8
+struct ureport_server_response *
28bab8
+ureport_server_response_from_reply(post_state_t *post_state,
28bab8
+                                   struct ureport_server_config *config)
28bab8
+{
28bab8
+    /* Previously, the condition here was (post_state->errmsg[0] != '\0')
28bab8
+     * however when the server asks for optional client authentication and we do not have the certificates,
28bab8
+     * then post_state->errmsg contains "NSS: client certificate not found (nickname not specified)" even though
28bab8
+     * the request succeeded.
28bab8
+     */
28bab8
+    if (post_state->curl_result != CURLE_OK)
28bab8
+    {
28bab8
+        error_msg(_("Failed to upload uReport to the server '%s' with curl: %s"), config->ur_url, post_state->errmsg);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    if (post_state->http_resp_code == 404)
28bab8
+    {
28bab8
+        error_msg(_("The URL '%s' does not exist (got error 404 from server)"), config->ur_url);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    if (post_state->http_resp_code == 500)
28bab8
+    {
28bab8
+        error_msg(_("The server at '%s' encountered an internal error (got error 500)"), config->ur_url);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    if (post_state->http_resp_code == 503)
28bab8
+    {
28bab8
+        error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    if (post_state->http_resp_code != 202
28bab8
+            && post_state->http_resp_code != 400
28bab8
+            && post_state->http_resp_code != 413)
28bab8
+    {
28bab8
+        /* can't print better error message */
28bab8
+        error_msg(_("Unexpected HTTP response from '%s': %d"), config->ur_url, post_state->http_resp_code);
28bab8
+        log_notice("%s", post_state->body);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    json_object *const json = json_tokener_parse(post_state->body);
28bab8
+
28bab8
+    if (is_error(json))
28bab8
+    {
28bab8
+        error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url);
28bab8
+        log_notice("%s", post_state->body);
28bab8
+        json_object_put(json);
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    struct ureport_server_response *response = ureport_server_parse_json(json);
28bab8
+    json_object_put(json);
28bab8
+
28bab8
+    if (!response)
28bab8
+        error_msg(_("The response from '%s' has invalid format"), config->ur_url);
28bab8
+    else if ((post_state->http_resp_code == 202 && response->urr_is_error)
28bab8
+                || (post_state->http_resp_code != 202 && !response->urr_is_error))
28bab8
+    {
28bab8
+        /* HTTP CODE 202 means that call was successful but the response */
28bab8
+        /* has an error message */
28bab8
+        error_msg(_("Type mismatch has been detected in the response from '%s'"), config->ur_url);
28bab8
+    }
28bab8
+
28bab8
+    return response;
28bab8
+}
28bab8
+
28bab8
+bool
28bab8
+ureport_server_response_save_in_dump_dir(struct ureport_server_response *resp,
28bab8
+                                         const char *dump_dir_path,
28bab8
+                                         struct ureport_server_config *config)
28bab8
+{
28bab8
+    struct dump_dir *dd = dd_opendir(dump_dir_path, /* flags */ 0);
28bab8
+    if (!dd)
28bab8
+        return false;
28bab8
+
28bab8
+    if (resp->urr_bthash)
28bab8
+    {
28bab8
+        char *msg = xasprintf("uReport: BTHASH=%s", resp->urr_bthash);
28bab8
+        add_reported_to(dd, msg);
28bab8
+        free(msg);
28bab8
+
28bab8
+        char *report_url = ureport_server_response_get_report_url(resp, config);
28bab8
+        msg = xasprintf("ABRT Server: URL=%s", report_url);
28bab8
+        add_reported_to(dd, msg);
28bab8
+        free(msg);
28bab8
+        free(report_url);
28bab8
+    }
28bab8
+
28bab8
+    if (resp->urr_reported_to_list)
28bab8
+    {
28bab8
+        for (GList *e = resp->urr_reported_to_list; e; e = g_list_next(e))
28bab8
+            add_reported_to(dd, e->data);
28bab8
+    }
28bab8
+
28bab8
+    if (resp->urr_solution)
28bab8
+        dd_save_text(dd, FILENAME_NOT_REPORTABLE, resp->urr_solution);
28bab8
+
28bab8
+    dd_close(dd);
28bab8
+    return true;
28bab8
+}
28bab8
+
28bab8
+char *
28bab8
+ureport_server_response_get_report_url(struct ureport_server_response *resp,
28bab8
+                                       struct ureport_server_config *config)
28bab8
+{
28bab8
+    char *bthash_url = concat_path_file(config->ur_url, BTHASH_URL_SFX);
28bab8
+    char *report_url = concat_path_file(bthash_url, resp->urr_bthash);
28bab8
+    free(bthash_url);
28bab8
+    return report_url;
28bab8
+}
28bab8
+
28bab8
+static void
28bab8
+ureport_add_str(struct json_object *ur, const char *key, const char *s)
28bab8
 {
28bab8
     struct json_object *jstring = json_object_new_string(s);
28bab8
     if (!jstring)
28bab8
@@ -37,7 +556,8 @@ static void ureport_add_str(struct json_object *ur, const char *key,
28bab8
     json_object_object_add(ur, key, jstring);
28bab8
 }
28bab8
 
28bab8
-char *ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_preferences *preferences)
28bab8
+char *
28bab8
+ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_preferences *preferences)
28bab8
 {
28bab8
     char *error_message;
28bab8
     struct sr_report *report = sr_abrt_report_from_dir(dump_dir_path,
28bab8
@@ -77,28 +597,15 @@ char *ureport_from_dump_dir_ext(const char *dump_dir_path, const struct ureport_
28bab8
     return json_ureport;
28bab8
 }
28bab8
 
28bab8
-char *ureport_from_dump_dir(const char *dump_dir_path)
28bab8
+char *
28bab8
+ureport_from_dump_dir(const char *dump_dir_path)
28bab8
 {
28bab8
     return ureport_from_dump_dir_ext(dump_dir_path, /*no preferences*/NULL);
28bab8
 }
28bab8
 
28bab8
-static char *new_json_attachment(const char *bthash, const char *type, const char *data)
28bab8
-{
28bab8
-    struct json_object *attachment = json_object_new_object();
28bab8
-    if (!attachment)
28bab8
-        die_out_of_memory();
28bab8
-
28bab8
-    ureport_add_str(attachment, "bthash", bthash);
28bab8
-    ureport_add_str(attachment, "type", type);
28bab8
-    ureport_add_str(attachment, "data", data);
28bab8
-
28bab8
-    char *result = xstrdup(json_object_to_json_string(attachment));
28bab8
-    json_object_put(attachment);
28bab8
-
28bab8
-    return result;
28bab8
-}
28bab8
-
28bab8
-struct post_state *ureport_post(const char *json, struct ureport_server_config *config)
28bab8
+struct post_state *
28bab8
+ureport_do_post(const char *json, struct ureport_server_config *config,
28bab8
+                const char *url_sfx)
28bab8
 {
28bab8
     int flags = POST_WANT_BODY | POST_WANT_ERROR_MSG;
28bab8
 
28bab8
@@ -130,8 +637,10 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
28bab8
         headers[i] = NULL;
28bab8
     }
28bab8
 
28bab8
-    post_string_as_form_data(post_state, config->ur_url, "application/json",
28bab8
-                    (const char **)headers, json);
28bab8
+    char *dest_url = concat_path_file(config->ur_url, url_sfx);
28bab8
+
28bab8
+    post_string_as_form_data(post_state, dest_url, "application/json",
28bab8
+                     (const char **)headers, json);
28bab8
 
28bab8
     /* Client authentication failed. Try again without client auth.
28bab8
      * CURLE_SSL_CONNECT_ERROR - cert not found/server doesnt trust the CA
28bab8
@@ -145,11 +654,13 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
28bab8
         free_post_state(post_state);
28bab8
         post_state = new_post_state(flags);
28bab8
 
28bab8
-        post_string_as_form_data(post_state, config->ur_url, "application/json",
28bab8
+        post_string_as_form_data(post_state, dest_url, "application/json",
28bab8
                          (const char **)headers, json);
28bab8
 
28bab8
     }
28bab8
 
28bab8
+    free(dest_url);
28bab8
+
28bab8
     for (unsigned i = size_map_string(config->ur_http_headers); i != 0; --i)
28bab8
         free(headers[i + 1]);
28bab8
     free(headers);
28bab8
@@ -157,24 +668,70 @@ struct post_state *ureport_post(const char *json, struct ureport_server_config *
28bab8
     return post_state;
28bab8
 }
28bab8
 
28bab8
-struct post_state *ureport_attach_rhbz(const char *bthash, int rhbz_bug_id,
28bab8
-                                       struct ureport_server_config *config)
28bab8
+struct ureport_server_response *
28bab8
+ureport_submit(const char *json, struct ureport_server_config *config)
28bab8
 {
28bab8
-    char *str_bug_id = xasprintf("%d", rhbz_bug_id);
28bab8
-    char *json_attachment = new_json_attachment(bthash, "RHBZ", str_bug_id);
28bab8
-    struct post_state *post_state = ureport_post(json_attachment, config);
28bab8
-    free(str_bug_id);
28bab8
-    free(json_attachment);
28bab8
+    struct post_state *post_state = ureport_do_post(json, config, UREPORT_SUBMIT_ACTION);
28bab8
 
28bab8
-    return post_state;
28bab8
+    if (post_state == NULL)
28bab8
+    {
28bab8
+        error_msg(_("Failed on submitting the problem"));
28bab8
+        return NULL;
28bab8
+    }
28bab8
+
28bab8
+    struct ureport_server_response *resp = ureport_server_response_from_reply(post_state, config);
28bab8
+    free(post_state);
28bab8
+
28bab8
+    return resp;
28bab8
 }
28bab8
 
28bab8
-struct post_state *ureport_attach_email(const char *bthash, const char *email,
28bab8
-                                       struct ureport_server_config *config)
28bab8
+static char *
28bab8
+ureport_json_attachment_new(const char *bthash, const char *type, const char *data)
28bab8
 {
28bab8
-    char *json_attachment = new_json_attachment(bthash, "email", email);
28bab8
-    struct post_state *post_state = ureport_post(json_attachment, config);
28bab8
-    free(json_attachment);
28bab8
+    struct json_object *attachment = json_object_new_object();
28bab8
+    if (!attachment)
28bab8
+        die_out_of_memory();
28bab8
 
28bab8
-    return post_state;
28bab8
+    ureport_add_str(attachment, "bthash", bthash);
28bab8
+    ureport_add_str(attachment, "type", type);
28bab8
+    ureport_add_str(attachment, "data", data);
28bab8
+
28bab8
+    char *result = xstrdup(json_object_to_json_string(attachment));
28bab8
+    json_object_put(attachment);
28bab8
+
28bab8
+    return result;
28bab8
+}
28bab8
+
28bab8
+bool
28bab8
+ureport_attach_string(const char *bthash, const char *type, const char *data,
28bab8
+               struct ureport_server_config *config)
28bab8
+{
28bab8
+    char *json = ureport_json_attachment_new(bthash, type, data);
28bab8
+    post_state_t *post_state = ureport_do_post(json, config, UREPORT_ATTACH_ACTION);
28bab8
+    free(json);
28bab8
+
28bab8
+    struct ureport_server_response *resp =
28bab8
+        ureport_server_response_from_reply(post_state, config);
28bab8
+    free_post_state(post_state);
28bab8
+    /* don't use str_bo_bool() because we require "true" string */
28bab8
+    const int result = !resp || resp->urr_is_error || strcmp(resp->urr_value, "true") != 0;
28bab8
+
28bab8
+    if (resp && resp->urr_is_error)
28bab8
+        error_msg(_("The server at '%s' responded with an error: '%s'"),
28bab8
+                config->ur_url, resp->urr_value);
28bab8
+
28bab8
+    ureport_server_response_free(resp);
28bab8
+
28bab8
+    return result;
28bab8
+}
28bab8
+
28bab8
+bool
28bab8
+ureport_attach_int(const char *bthash, const char *type, int data,
28bab8
+                    struct ureport_server_config *config)
28bab8
+{
28bab8
+    char *data_str = xasprintf("%d", data);
28bab8
+    const bool result = ureport_attach_string(bthash, type, data_str, config);
28bab8
+    free(data_str);
28bab8
+
28bab8
+    return result;
28bab8
 }
28bab8
diff --git a/src/plugins/reporter-ureport.c b/src/plugins/reporter-ureport.c
28bab8
index d827c7d..7bd3fb3 100644
28bab8
--- a/src/plugins/reporter-ureport.c
28bab8
+++ b/src/plugins/reporter-ureport.c
28bab8
@@ -22,482 +22,6 @@
28bab8
 #include "ureport.h"
28bab8
 #include "libreport_curl.h"
28bab8
 
28bab8
-#define CONF_FILE_PATH PLUGINS_CONF_DIR"/ureport.conf"
28bab8
-
28bab8
-#define REPORT_URL_SFX "reports/new/"
28bab8
-#define ATTACH_URL_SFX "reports/attach/"
28bab8
-#define BTHASH_URL_SFX "reports/bthash/"
28bab8
-
28bab8
-#define RHSM_CERT_PATH "/etc/pki/consumer/cert.pem"
28bab8
-#define RHSM_KEY_PATH "/etc/pki/consumer/key.pem"
28bab8
-
28bab8
-#define RHAP_PEM_DIR_PATH "/etc/pki/entitlement"
28bab8
-#define RHAP_ENT_DATA_BEGIN_TAG "-----BEGIN ENTITLEMENT DATA-----"
28bab8
-#define RHAP_ENT_DATA_END_TAG "-----END ENTITLEMENT DATA-----"
28bab8
-#define RHAP_SIG_DATA_BEGIN_TAG "-----BEGIN RSA SIGNATURE-----"
28bab8
-#define RHAP_SIG_DATA_END_TAG "-----END RSA SIGNATURE-----"
28bab8
-
28bab8
-#define VALUE_FROM_CONF(opt, var, tr) do { const char *value = getenv("uReport_"opt); \
28bab8
-        if (!value) { value = get_map_string_item_or_NULL(settings, opt); } if (value) { var = tr(value); } \
28bab8
-    } while(0)
28bab8
-
28bab8
-static char *puppet_config_print(const char *key)
28bab8
-{
28bab8
-    char *command = xasprintf("puppet config print %s", key);
28bab8
-    char *result = run_in_shell_and_save_output(0, command, NULL, NULL);
28bab8
-    free(command);
28bab8
-
28bab8
-    /* run_in_shell_and_save_output always returns non-NULL */
28bab8
-    if (result[0] != '/')
28bab8
-        goto error;
28bab8
-
28bab8
-    char *newline = strchrnul(result, '\n');
28bab8
-    if (!newline)
28bab8
-        goto error;
28bab8
-
28bab8
-    *newline = '\0';
28bab8
-    return result;
28bab8
-error:
28bab8
-    free(result);
28bab8
-    error_msg_and_die("Unable to determine puppet %s path (puppet not installed?)", key);
28bab8
-}
28bab8
-
28bab8
-static void parse_client_auth_paths(struct ureport_server_config *config, const char *client_auth)
28bab8
-{
28bab8
-    if (client_auth == NULL)
28bab8
-        return;
28bab8
-
28bab8
-    if (strcmp(client_auth, "") == 0)
28bab8
-    {
28bab8
-        config->ur_client_cert = NULL;
28bab8
-        config->ur_client_key = NULL;
28bab8
-        log_notice("Not using client authentication");
28bab8
-    }
28bab8
-    else if (strcmp(client_auth, "rhsm") == 0)
28bab8
-    {
28bab8
-        config->ur_client_cert = xstrdup(RHSM_CERT_PATH);
28bab8
-        config->ur_client_key = xstrdup(RHSM_KEY_PATH);
28bab8
-    }
28bab8
-    else if (strcmp(client_auth, "rhsm-entitlement") == 0)
28bab8
-    {
28bab8
-        GList *certs = get_file_list(RHAP_PEM_DIR_PATH, "pem");
28bab8
-        if (g_list_length(certs) != 2)
28bab8
-        {
28bab8
-            log_notice(RHAP_PEM_DIR_PATH" does not contain unique cert-key files pair");
28bab8
-            log_notice("Not using client authentication");
28bab8
-            return;
28bab8
-        }
28bab8
-
28bab8
-        const char *cert = NULL;
28bab8
-        const char *key = NULL;
28bab8
-
28bab8
-        file_obj_t *fst = (file_obj_t *)certs->data;
28bab8
-        file_obj_t *scn = (file_obj_t *)certs->next->data;
28bab8
-
28bab8
-        if (strlen(fo_get_filename(fst)) < strlen(fo_get_filename(scn)))
28bab8
-        {
28bab8
-            cert = fo_get_filename(fst);
28bab8
-            key = fo_get_filename(scn);
28bab8
-
28bab8
-            config->ur_client_cert = xstrdup(fo_get_fullpath(fst));
28bab8
-            config->ur_client_key = xstrdup(fo_get_fullpath(scn));
28bab8
-        }
28bab8
-        else
28bab8
-        {
28bab8
-            cert = fo_get_filename(scn);
28bab8
-            key = fo_get_filename(fst);
28bab8
-
28bab8
-            config->ur_client_cert = xstrdup(fo_get_fullpath(scn));
28bab8
-            config->ur_client_key = xstrdup(fo_get_fullpath(fst));
28bab8
-        }
28bab8
-
28bab8
-        const bool iscomplement = prefixcmp(key, cert) != 0 || strcmp("-key", key + strlen(cert)) != 0;
28bab8
-        g_list_free_full(certs, (GDestroyNotify)free_file_obj);
28bab8
-
28bab8
-        if (iscomplement)
28bab8
-        {
28bab8
-            log_notice("Key file '%s' isn't complement to cert file '%s'",
28bab8
-                    config->ur_client_key, config->ur_client_cert);
28bab8
-            log_notice("Not using client authentication");
28bab8
-
28bab8
-            free(config->ur_client_cert);
28bab8
-            free(config->ur_client_key);
28bab8
-            config->ur_client_cert = NULL;
28bab8
-            config->ur_client_key = NULL;
28bab8
-
28bab8
-            return;
28bab8
-        }
28bab8
-
28bab8
-        char *certdata = xmalloc_open_read_close(config->ur_client_cert, /*no size limit*/NULL);
28bab8
-        if (certdata != NULL)
28bab8
-        {
28bab8
-            char *ent_data = xstrdup_between(certdata,
28bab8
-                    RHAP_ENT_DATA_BEGIN_TAG, RHAP_ENT_DATA_END_TAG);
28bab8
-
28bab8
-            char *sig_data = xstrdup_between(certdata,
28bab8
-                    RHAP_SIG_DATA_BEGIN_TAG, RHAP_SIG_DATA_END_TAG);
28bab8
-
28bab8
-            if (ent_data != NULL && sig_data != NULL)
28bab8
-            {
28bab8
-                ent_data = strremovech(ent_data, '\n');
28bab8
-                insert_map_string(config->ur_http_headers,
28bab8
-                        xstrdup("X-RH-Entitlement-Data"),
28bab8
-                        xasprintf(RHAP_ENT_DATA_BEGIN_TAG"%s"RHAP_ENT_DATA_END_TAG, ent_data));
28bab8
-
28bab8
-                sig_data = strremovech(sig_data, '\n');
28bab8
-                insert_map_string(config->ur_http_headers,
28bab8
-                        xstrdup("X-RH-Entitlement-Sig"),
28bab8
-                        xasprintf(RHAP_SIG_DATA_BEGIN_TAG"%s"RHAP_SIG_DATA_END_TAG, sig_data));
28bab8
-            }
28bab8
-            else
28bab8
-            {
28bab8
-                log_notice("Cert file '%s' doesn't contain Entitlement and RSA Signature sections", config->ur_client_cert);
28bab8
-                log_notice("Not using HTTP authentication headers");
28bab8
-            }
28bab8
-
28bab8
-            free(sig_data);
28bab8
-            free(ent_data);
28bab8
-            free(certdata);
28bab8
-        }
28bab8
-    }
28bab8
-    else if (strcmp(client_auth, "puppet") == 0)
28bab8
-    {
28bab8
-        config->ur_client_cert = puppet_config_print("hostcert");
28bab8
-        config->ur_client_key = puppet_config_print("hostprivkey");
28bab8
-    }
28bab8
-    else
28bab8
-    {
28bab8
-        char *scratch = xstrdup(client_auth);
28bab8
-        config->ur_client_cert = xstrdup(strtok(scratch, ":"));
28bab8
-        config->ur_client_key = xstrdup(strtok(NULL, ":"));
28bab8
-        free(scratch);
28bab8
-        if (config->ur_client_cert == NULL || config->ur_client_key == NULL)
28bab8
-            error_msg_and_die("Invalid client authentication specification");
28bab8
-    }
28bab8
-
28bab8
-    if (config->ur_client_cert && config->ur_client_key)
28bab8
-    {
28bab8
-        log_notice("Using client certificate: %s", config->ur_client_cert);
28bab8
-        log_notice("Using client private key: %s", config->ur_client_key);
28bab8
-    }
28bab8
-}
28bab8
-
28bab8
-/*
28bab8
- * Loads uReport configuration from various sources.
28bab8
- *
28bab8
- * Replaces a value of an already configured option only if the
28bab8
- * option was found in a configuration source.
28bab8
- *
28bab8
- * @param config a server configuration to be populated
28bab8
- */
28bab8
-static void load_ureport_server_config(struct ureport_server_config *config, map_string_t *settings)
28bab8
-{
28bab8
-    VALUE_FROM_CONF("URL", config->ur_url, (const char *));
28bab8
-    VALUE_FROM_CONF("SSLVerify", config->ur_ssl_verify, string_to_bool);
28bab8
-
28bab8
-    bool include_auth = false;
28bab8
-    VALUE_FROM_CONF("IncludeAuthData", include_auth, string_to_bool);
28bab8
-
28bab8
-    if (include_auth)
28bab8
-    {
28bab8
-        const char *auth_items = NULL;
28bab8
-        VALUE_FROM_CONF("AuthDataItems", auth_items, (const char *));
28bab8
-        config->ur_prefs.urp_auth_items = parse_list(auth_items);
28bab8
-
28bab8
-        if (config->ur_prefs.urp_auth_items == NULL)
28bab8
-            log_warning("IncludeAuthData set to 'yes' but AuthDataItems is empty.");
28bab8
-    }
28bab8
-
28bab8
-    const char *client_auth = NULL;
28bab8
-    VALUE_FROM_CONF("SSLClientAuth", client_auth, (const char *));
28bab8
-    parse_client_auth_paths(config, client_auth);
28bab8
-}
28bab8
-
28bab8
-struct ureport_server_response {
28bab8
-    bool is_error;
28bab8
-    char *value;
28bab8
-    char *message;
28bab8
-    char *bthash;
28bab8
-    GList *reported_to_list;
28bab8
-    char *solution;
28bab8
-};
28bab8
-
28bab8
-void free_ureport_server_response(struct ureport_server_response *resp)
28bab8
-{
28bab8
-    if (!resp)
28bab8
-        return;
28bab8
-
28bab8
-    free(resp->solution);
28bab8
-    g_list_free_full(resp->reported_to_list, g_free);
28bab8
-    free(resp->bthash);
28bab8
-    free(resp->message);
28bab8
-    free(resp->value);
28bab8
-    free(resp);
28bab8
-}
28bab8
-
28bab8
-static char *parse_solution_from_json_list(struct json_object *list, GList **reported_to)
28bab8
-{
28bab8
-    json_object *list_elem, *struct_elem;
28bab8
-    const char *cause, *note, *url;
28bab8
-    struct strbuf *solution_buf = strbuf_new();
28bab8
-
28bab8
-    const unsigned length = json_object_array_length(list);
28bab8
-
28bab8
-    const char *one_format = _("Your problem seems to be caused by %s\n\n%s\n");
28bab8
-    if (length > 1)
28bab8
-    {
28bab8
-        strbuf_append_str(solution_buf, _("Your problem seems to be caused by one of the following:\n"));
28bab8
-        one_format = "\n* %s\n\n%s\n";
28bab8
-    }
28bab8
-
28bab8
-    bool empty = true;
28bab8
-    for (unsigned i = 0; i < length; ++i)
28bab8
-    {
28bab8
-        list_elem = json_object_array_get_idx(list, i);
28bab8
-        if (!list_elem)
28bab8
-            continue;
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "cause", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        cause = json_object_get_string(struct_elem);
28bab8
-            continue;
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "note", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        note = json_object_get_string(struct_elem);
28bab8
-        if (!note)
28bab8
-            continue;
28bab8
-
28bab8
-        empty = false;
28bab8
-        strbuf_append_strf(solution_buf, one_format, cause, note);
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "url", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        url = json_object_get_string(struct_elem);
28bab8
-        if (url)
28bab8
-        {
28bab8
-            char *reported_to_line = xasprintf("%s: URL=%s", cause, url);
28bab8
-            *reported_to = g_list_append(*reported_to, reported_to_line);
28bab8
-        }
28bab8
-    }
28bab8
-
28bab8
-    if (empty)
28bab8
-    {
28bab8
-        strbuf_free(solution_buf);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    return strbuf_free_nobuf(solution_buf);
28bab8
-}
28bab8
-
28bab8
-/* reported_to json element should be a list of structures
28bab8
-{ "reporter": "Bugzilla",
28bab8
-  "type": "url",
28bab8
-  "value": "https://bugzilla.redhat.com/show_bug.cgi?id=XYZ" } */
28bab8
-static GList *parse_reported_to_from_json_list(struct json_object *list)
28bab8
-{
28bab8
-    int i;
28bab8
-    json_object *list_elem, *struct_elem;
28bab8
-    const char *reporter, *value, *type;
28bab8
-    char *reported_to_line, *prefix;
28bab8
-    GList *result = NULL;
28bab8
-
28bab8
-    for (i = 0; i < json_object_array_length(list); ++i)
28bab8
-    {
28bab8
-        prefix = NULL;
28bab8
-        list_elem = json_object_array_get_idx(list, i);
28bab8
-        if (!list_elem)
28bab8
-            continue;
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "reporter", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        reporter = json_object_get_string(struct_elem);
28bab8
-        if (!reporter)
28bab8
-            continue;
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "value", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        value = json_object_get_string(struct_elem);
28bab8
-        if (!value)
28bab8
-            continue;
28bab8
-
28bab8
-        if (!json_object_object_get_ex(list_elem, "type", &struct_elem))
28bab8
-            continue;
28bab8
-
28bab8
-        type = json_object_get_string(struct_elem);
28bab8
-        if (type)
28bab8
-        {
28bab8
-            if (strcasecmp("url", type) == 0)
28bab8
-                prefix = xstrdup("URL=");
28bab8
-            else if (strcasecmp("bthash", type) == 0)
28bab8
-                prefix = xstrdup("BTHASH=");
28bab8
-        }
28bab8
-
28bab8
-        if (!prefix)
28bab8
-            prefix = xstrdup("");
28bab8
-
28bab8
-        reported_to_line = xasprintf("%s: %s%s", reporter, prefix, value);
28bab8
-        free(prefix);
28bab8
-
28bab8
-        result = g_list_append(result, reported_to_line);
28bab8
-    }
28bab8
-
28bab8
-    return result;
28bab8
-}
28bab8
-
28bab8
-/*
28bab8
- * Reponse samples:
28bab8
- * {"error":"field 'foo' is required"}
28bab8
- * {"response":"true"}
28bab8
- * {"response":"false"}
28bab8
- */
28bab8
-static struct ureport_server_response *ureport_server_parse_json(json_object *json)
28bab8
-{
28bab8
-    json_object *obj = NULL;
28bab8
-    if (json_object_object_get_ex(json, "error", &obj))
28bab8
-    {
28bab8
-        struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
28bab8
-        out_response->is_error = true;
28bab8
-        /*
28bab8
-         * Used to use json_object_to_json_string(obj), but it returns
28bab8
-         * the string in quote marks (") - IOW, json-formatted string.
28bab8
-         */
28bab8
-        out_response->value = xstrdup(json_object_get_string(obj));
28bab8
-        return out_response;
28bab8
-    }
28bab8
-
28bab8
-    if (json_object_object_get_ex(json, "result", &obj))
28bab8
-    {
28bab8
-        struct ureport_server_response *out_response = xzalloc(sizeof(*out_response));
28bab8
-        out_response->value = xstrdup(json_object_get_string(obj));
28bab8
-
28bab8
-        json_object *message = NULL;
28bab8
-        if (json_object_object_get_ex(json, "message", &message))
28bab8
-            out_response->message = xstrdup(json_object_get_string(message));
28bab8
-
28bab8
-        json_object *bthash = NULL;
28bab8
-        if (json_object_object_get_ex(json, "bthash", &bthash))
28bab8
-            out_response->bthash = xstrdup(json_object_get_string(bthash));
28bab8
-
28bab8
-        json_object *reported_to_list = NULL;
28bab8
-        if (json_object_object_get_ex(json, "reported_to", &reported_to_list))
28bab8
-            out_response->reported_to_list = parse_reported_to_from_json_list(reported_to_list);
28bab8
-
28bab8
-        json_object *solutions = NULL;
28bab8
-        if (json_object_object_get_ex(json, "solutions", &solutions))
28bab8
-            out_response->solution = parse_solution_from_json_list(solutions, &(out_response->reported_to_list));
28bab8
-
28bab8
-        return out_response;
28bab8
-    }
28bab8
-
28bab8
-    return NULL;
28bab8
-}
28bab8
-
28bab8
-static struct ureport_server_response *get_server_response(post_state_t *post_state, struct ureport_server_config *config)
28bab8
-{
28bab8
-    /* Previously, the condition here was (post_state->errmsg[0] != '\0')
28bab8
-     * however when the server asks for optional client authentication and we do not have the certificates,
28bab8
-     * then post_state->errmsg contains "NSS: client certificate not found (nickname not specified)" even though
28bab8
-     * the request succeeded.
28bab8
-     */
28bab8
-    if (post_state->curl_result != CURLE_OK)
28bab8
-    {
28bab8
-        error_msg(_("Failed to upload uReport to the server '%s' with curl: %s"), config->ur_url, post_state->errmsg);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    if (post_state->http_resp_code == 404)
28bab8
-    {
28bab8
-        error_msg(_("The URL '%s' does not exist (got error 404 from server)"), config->ur_url);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    if (post_state->http_resp_code == 500)
28bab8
-    {
28bab8
-        error_msg(_("The server at '%s' encountered an internal error (got error 500)"), config->ur_url);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    if (post_state->http_resp_code == 503)
28bab8
-    {
28bab8
-        error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    if (post_state->http_resp_code != 202
28bab8
-            && post_state->http_resp_code != 400
28bab8
-            && post_state->http_resp_code != 413)
28bab8
-    {
28bab8
-        /* can't print better error message */
28bab8
-        error_msg(_("Unexpected HTTP response from '%s': %d"), config->ur_url, post_state->http_resp_code);
28bab8
-        log_notice("%s", post_state->body);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    json_object *const json = json_tokener_parse(post_state->body);
28bab8
-
28bab8
-    if (is_error(json))
28bab8
-    {
28bab8
-        error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url);
28bab8
-        log_notice("%s", post_state->body);
28bab8
-        json_object_put(json);
28bab8
-        return NULL;
28bab8
-    }
28bab8
-
28bab8
-    struct ureport_server_response *response = ureport_server_parse_json(json);
28bab8
-    json_object_put(json);
28bab8
-
28bab8
-    if (!response)
28bab8
-        error_msg(_("The response from '%s' has invalid format"), config->ur_url);
28bab8
-    else if ((post_state->http_resp_code == 202 && response->is_error)
28bab8
-                || (post_state->http_resp_code != 202 && !response->is_error))
28bab8
-    {
28bab8
-        /* HTTP CODE 202 means that call was successful but the response */
28bab8
-        /* has an error message */
28bab8
-        error_msg(_("Type mismatch has been detected in the response from '%s'"), config->ur_url);
28bab8
-    }
28bab8
-
28bab8
-    return response;
28bab8
-}
28bab8
-
28bab8
-typedef post_state_t *(*attach_handler)(const char *, void *, struct ureport_server_config *);
28bab8
-
28bab8
-static post_state_t *wrp_ureport_attach_rhbz(const char *ureport_hash, int *rhbz_bug,
28bab8
-        struct ureport_server_config *config)
28bab8
-{
28bab8
-    return ureport_attach_rhbz(ureport_hash, *rhbz_bug, config);
28bab8
-}
28bab8
-
28bab8
-static bool perform_attach(struct ureport_server_config *config, const char *ureport_hash,
28bab8
-        attach_handler handler, void *args)
28bab8
-{
28bab8
-    char *dest_url = concat_path_file(config->ur_url, ATTACH_URL_SFX);
28bab8
-    const char *old_url = config->ur_url;
28bab8
-    config->ur_url = dest_url;
28bab8
-    post_state_t *post_state = handler(ureport_hash, args, config);
28bab8
-    config->ur_url = old_url;
28bab8
-    free(dest_url);
28bab8
-
28bab8
-    struct ureport_server_response *resp = get_server_response(post_state, config);
28bab8
-    free_post_state(post_state);
28bab8
-    /* don't use str_bo_bool() because we require "true" string */
28bab8
-    const int result = !resp || resp->is_error || strcmp(resp->value,"true") != 0;
28bab8
-
28bab8
-    if (resp && resp->is_error)
28bab8
-    {
28bab8
-        error_msg(_("The server at '%s' responded with an error: '%s'"), config->ur_url, resp->value);
28bab8
-    }
28bab8
-
28bab8
-    free_ureport_server_response(resp);
28bab8
-
28bab8
-    return result;
28bab8
-}
28bab8
-
28bab8
 int main(int argc, char **argv)
28bab8
 {
28bab8
     setlocale(LC_ALL, "");
28bab8
@@ -508,18 +32,8 @@ int main(int argc, char **argv)
28bab8
 
28bab8
     abrt_init(argv);
28bab8
 
28bab8
-    struct ureport_server_config config = {
28bab8
-        .ur_url = NULL,
28bab8
-        .ur_ssl_verify = true,
28bab8
-        .ur_client_cert = NULL,
28bab8
-        .ur_client_key = NULL,
28bab8
-        .ur_http_headers = NULL,
28bab8
-        {
28bab8
-            .urp_auth_items = NULL,
28bab8
-        },
28bab8
-    };
28bab8
-
28bab8
-    config.ur_http_headers = new_map_string();
28bab8
+    struct ureport_server_config config;
28bab8
+    ureport_server_config_init(&config);
28bab8
 
28bab8
     enum {
28bab8
         OPT_v = 1 << 0,
28bab8
@@ -532,7 +46,7 @@ int main(int argc, char **argv)
28bab8
 
28bab8
     int ret = 1; /* "failure" (for now) */
28bab8
     bool insecure = !config.ur_ssl_verify;
28bab8
-    const char *conf_file = CONF_FILE_PATH;
28bab8
+    const char *conf_file = UREPORT_CONF_FILE_PATH;
28bab8
     const char *arg_server_url = NULL;
28bab8
     const char *client_auth = NULL;
28bab8
     GList *auth_items = NULL;
28bab8
@@ -575,7 +89,7 @@ int main(int argc, char **argv)
28bab8
         "\n"
28bab8
         "Upload micro report or add an attachment to a micro report\n"
28bab8
         "\n"
28bab8
-        "Reads the default configuration from "CONF_FILE_PATH
28bab8
+        "Reads the default configuration from "UREPORT_CONF_FILE_PATH
28bab8
     );
28bab8
 
28bab8
     unsigned opts = parse_opts(argc, argv, program_options, program_usage_string);
28bab8
@@ -583,14 +97,14 @@ int main(int argc, char **argv)
28bab8
     map_string_t *settings = new_map_string();
28bab8
     load_conf_file(conf_file, settings, /*skip key w/o values:*/ false);
28bab8
 
28bab8
-    load_ureport_server_config(&config, settings);
28bab8
+    ureport_server_config_load(&config, settings);
28bab8
 
28bab8
     if (opts & OPT_u)
28bab8
         config.ur_url = arg_server_url;
28bab8
     if (opts & OPT_k)
28bab8
         config.ur_ssl_verify = !insecure;
28bab8
     if (opts & OPT_t)
28bab8
-        parse_client_auth_paths(&config, client_auth);
28bab8
+        ureport_server_config_set_client_auth(&config, client_auth);
28bab8
     if (opts & OPT_i)
28bab8
     {
28bab8
         g_list_free_full(config.ur_prefs.urp_auth_items, free);
28bab8
@@ -600,8 +114,6 @@ int main(int argc, char **argv)
28bab8
     if (!config.ur_url)
28bab8
         error_msg_and_die("You need to specify server URL");
28bab8
 
28bab8
-    post_state_t *post_state = NULL;
28bab8
-
28bab8
     if (ureport_hash && ureport_hash_from_rt)
28bab8
         error_msg_and_die("You need to pass either -a bthash or -A");
28bab8
 
28bab8
@@ -654,7 +166,7 @@ int main(int argc, char **argv)
28bab8
 
28bab8
     if (email_address_from_env)
28bab8
     {
28bab8
-        VALUE_FROM_CONF("ContactEmail", email_address, (const char *));
28bab8
+        UREPORT_OPTION_VALUE_FROM_CONF(settings, "ContactEmail", email_address, (const char *));
28bab8
 
28bab8
         if (!email_address)
28bab8
             error_msg_and_die(_("Neither environment variable 'uReport_ContactEmail' nor configuration option 'ContactEmail' is set"));
28bab8
@@ -667,13 +179,13 @@ int main(int argc, char **argv)
28bab8
 
28bab8
         if (rhbz_bug >= 0)
28bab8
         {
28bab8
-            if (perform_attach(&config, ureport_hash, (attach_handler)wrp_ureport_attach_rhbz, (void *)&rhbz_bug))
28bab8
+            if (ureport_attach_int(ureport_hash, "RHBZ", rhbz_bug, &config))
28bab8
                 goto finalize;
28bab8
         }
28bab8
 
28bab8
         if (email_address)
28bab8
         {
28bab8
-            if (perform_attach(&config, ureport_hash, (attach_handler)ureport_attach_email, (void *)email_address))
28bab8
+            if (ureport_attach_string(ureport_hash, "email", email_address, &config))
28bab8
                 goto finalize;
28bab8
         }
28bab8
 
28bab8
@@ -683,95 +195,48 @@ int main(int argc, char **argv)
28bab8
     if (!ureport_hash && (rhbz_bug >= 0 || email_address))
28bab8
         error_msg_and_die(_("You need to specify bthash of the uReport to attach."));
28bab8
 
28bab8
-    /* -b, -a nor -r were specified - upload uReport from dump_dir */
28bab8
-    const char *server_url = config.ur_url;
28bab8
-    char *dest_url = concat_path_file(config.ur_url, REPORT_URL_SFX);
28bab8
-    config.ur_url = dest_url;
28bab8
-
28bab8
     char *json_ureport = ureport_from_dump_dir_ext(dump_dir_path, &(config.ur_prefs));
28bab8
     if (!json_ureport)
28bab8
     {
28bab8
         error_msg(_("Not uploading an empty uReport"));
28bab8
-        goto format_err;
28bab8
+        goto finalize;
28bab8
     }
28bab8
 
28bab8
-    post_state = ureport_post(json_ureport, &config);
28bab8
+    struct ureport_server_response *response = ureport_submit(json_ureport, &config);
28bab8
     free(json_ureport);
28bab8
 
28bab8
-    if (!post_state)
28bab8
-    {
28bab8
-        error_msg(_("Failed on submitting the problem"));
28bab8
-        goto format_err;
28bab8
-    }
28bab8
-
28bab8
-    struct ureport_server_response *response = get_server_response(post_state, &config);
28bab8
-
28bab8
     if (!response)
28bab8
-        goto format_err;
28bab8
+        goto finalize;
28bab8
 
28bab8
-    if (!response->is_error)
28bab8
+    if (!response->urr_is_error)
28bab8
     {
28bab8
-        log_notice("is known: %s", response->value);
28bab8
+        log_notice("is known: %s", response->urr_value);
28bab8
         ret = 0; /* "success" */
28bab8
 
28bab8
-        dd = dd_opendir(dump_dir_path, /* flags */ 0);
28bab8
-        if (!dd)
28bab8
+        if (!ureport_server_response_save_in_dump_dir(response, dump_dir_path, &config))
28bab8
             xfunc_die();
28bab8
 
28bab8
-        if (response->bthash)
28bab8
-        {
28bab8
-            char *msg = xasprintf("uReport: BTHASH=%s", response->bthash);
28bab8
-            add_reported_to(dd, msg);
28bab8
-            free(msg);
28bab8
-
28bab8
-            char *bthash_url = concat_path_file(server_url, BTHASH_URL_SFX);
28bab8
-            msg = xasprintf("ABRT Server: URL=%s%s", bthash_url, response->bthash);
28bab8
-            add_reported_to(dd, msg);
28bab8
-            free(msg);
28bab8
-            free(bthash_url);
28bab8
-        }
28bab8
-
28bab8
-        if (response->reported_to_list)
28bab8
-        {
28bab8
-            for (GList *e = response->reported_to_list; e; e = g_list_next(e))
28bab8
-                add_reported_to(dd, e->data);
28bab8
-        }
28bab8
-
28bab8
-        if (response->solution)
28bab8
-            dd_save_text(dd, FILENAME_NOT_REPORTABLE, response->solution);
28bab8
-
28bab8
-        dd_close(dd);
28bab8
-
28bab8
         /* If a reported problem is not known then emit NEEDMORE */
28bab8
-        if (strcmp("true", response->value) == 0)
28bab8
+        if (strcmp("true", response->urr_value) == 0)
28bab8
         {
28bab8
             log(_("This problem has already been reported."));
28bab8
-            if (response->message)
28bab8
-                log(response->message);
28bab8
+            if (response->urr_message)
28bab8
+                log(response->urr_message);
28bab8
 
28bab8
             ret = EXIT_STOP_EVENT_RUN;
28bab8
         }
28bab8
     }
28bab8
     else
28bab8
-    {
28bab8
-        error_msg(_("Server responded with an error: '%s'"), response->value);
28bab8
-    }
28bab8
-
28bab8
-    free_ureport_server_response(response);
28bab8
+        error_msg(_("Server responded with an error: '%s'"), response->urr_value);
28bab8
 
28bab8
-format_err:
28bab8
-    free_post_state(post_state);
28bab8
-    free(dest_url);
28bab8
+    ureport_server_response_free(response);
28bab8
 
28bab8
 finalize:
28bab8
-    if (config.ur_prefs.urp_auth_items != auth_items)
28bab8
-        g_list_free_full(config.ur_prefs.urp_auth_items, free);
28bab8
-
28bab8
-    free_map_string(config.ur_http_headers);
28bab8
+    if (config.ur_prefs.urp_auth_items == auth_items)
28bab8
+        config.ur_prefs.urp_auth_items = NULL;
28bab8
 
28bab8
     free_map_string(settings);
28bab8
-    free(config.ur_client_cert);
28bab8
-    free(config.ur_client_key);
28bab8
+    ureport_server_config_destroy(&config);
28bab8
 
28bab8
     return ret;
28bab8
 }
28bab8
-- 
28bab8
1.8.3.1
28bab8