You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.3 KiB
61 lines
2.3 KiB
5 years ago
|
From ca72d27d29253d9f88e33ac72df4a3ad589bd725 Mon Sep 17 00:00:00 2001
|
||
|
From: Jakub Filak <jfilak@redhat.com>
|
||
|
Date: Wed, 8 Oct 2014 12:10:10 +0200
|
||
|
Subject: [LIBREPORT PATCH 97/97] rhtsupport: attach the contact email to
|
||
|
bthash
|
||
|
|
||
|
Resolves #1150388
|
||
|
|
||
|
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
||
|
---
|
||
|
src/plugins/reporter-rhtsupport.c | 26 +++++++++++++++++++++-----
|
||
|
1 file changed, 21 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/src/plugins/reporter-rhtsupport.c b/src/plugins/reporter-rhtsupport.c
|
||
|
index c063f3f..56daf78 100644
|
||
|
--- a/src/plugins/reporter-rhtsupport.c
|
||
|
+++ b/src/plugins/reporter-rhtsupport.c
|
||
|
@@ -263,6 +263,16 @@ char *submit_ureport(const char *dump_dir_name, struct ureport_server_config *co
|
||
|
}
|
||
|
|
||
|
static
|
||
|
+void attach_to_ureport(struct ureport_server_config *conf,
|
||
|
+ const char *bthash, const char *attach_id, const char *data)
|
||
|
+{
|
||
|
+ char *json = ureport_json_attachment_new(bthash, attach_id, data);
|
||
|
+ struct ureport_server_response *resp = ureport_do_post_credentials(json, conf, UREPORT_ATTACH_ACTION);
|
||
|
+ ureport_server_response_free(resp);
|
||
|
+ free(json);
|
||
|
+}
|
||
|
+
|
||
|
+static
|
||
|
bool check_for_hints(const char *url, char **login, char **password, bool ssl_verify, const char *tempfile)
|
||
|
{
|
||
|
rhts_result_t *result = NULL;
|
||
|
@@ -741,11 +751,17 @@ int main(int argc, char **argv)
|
||
|
/* Make sure we use the current credentials */
|
||
|
ureport_server_config_set_basic_auth(&urconf, login, password);
|
||
|
|
||
|
- /* Do attach */
|
||
|
- char *json = ureport_json_attachment_new(bthash, "RHCID", result->url);
|
||
|
- struct ureport_server_response *resp = ureport_do_post_credentials(json, &urconf, UREPORT_ATTACH_ACTION);
|
||
|
- ureport_server_response_free(resp);
|
||
|
- free(json);
|
||
|
+ /* Attach Customer Case ID*/
|
||
|
+ attach_to_ureport(&urconf, bthash, "RHCID", result->url);
|
||
|
+
|
||
|
+ /* Attach Contact e-mail if configured */
|
||
|
+ const char *email = NULL;
|
||
|
+ UREPORT_OPTION_VALUE_FROM_CONF(ursettings, "ContactEmail", email, (const char *));
|
||
|
+ if (email != NULL)
|
||
|
+ {
|
||
|
+ log(_("Linking ABRT crash statistics record with contact email: '%s'"), email);
|
||
|
+ attach_to_ureport(&urconf, bthash, "email", email);
|
||
|
+ }
|
||
|
|
||
|
/* Update the credentials */
|
||
|
STRCPY_IF_NOT_EQUAL(login, urconf.ur_username);
|
||
|
--
|
||
|
1.8.3.1
|
||
|
|