Mercurial > pidgin
changeset 11109:b8f11f70cf97
[gaim-migrate @ 13161]
Prompt for authorization when a yahoo buddy adds you. This has been bothering me for a while. Ideally this functionality should be moved to the core, because MSN does something very similar.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Sun, 17 Jul 2005 21:13:51 +0000 |
parents | 641915a13cec |
children | f7ce10cad83d |
files | ChangeLog src/protocols/yahoo/yahoo.c |
diffstat | 2 files changed, 83 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Fri Jul 15 11:35:46 2005 +0000 +++ b/ChangeLog Sun Jul 17 21:13:51 2005 +0000 @@ -44,6 +44,8 @@ * The Evolution Integration plugin now supports Groupwise contacts * Use libao for playing sounds via NAS instead of accessing NAS directly + * Yahoo! buddy requests to add you to their buddy list now prompt for + authorization. Bug fixes: * People using input methods can now use Enter again.
--- a/src/protocols/yahoo/yahoo.c Fri Jul 15 11:35:46 2005 +0000 +++ b/src/protocols/yahoo/yahoo.c Sun Jul 17 21:13:51 2005 +0000 @@ -798,21 +798,71 @@ g_free(escmsg); } +struct yahoo_add_request { + GaimConnection *gc; + char *id; + char *who; + char *msg; +}; + +static void +yahoo_buddy_add_authorize_cb(struct yahoo_add_request *add_req, const char *msg) { + gaim_account_notify_added(add_req->gc->account, add_req->id, + add_req->who, NULL, add_req->msg); + + g_free(add_req->id); + g_free(add_req->who); + g_free(add_req->msg); + g_free(add_req); +} + +static void +yahoo_buddy_add_deny_cb(struct yahoo_add_request *add_req, const char *msg) { + struct yahoo_packet *pkt; + char *encoded_msg = NULL; + struct yahoo_data *yd = add_req->gc->proto_data; + + if (msg) + encoded_msg = yahoo_string_encode(add_req->gc, msg, NULL); + + pkt = yahoo_packet_new(YAHOO_SERVICE_REJECTCONTACT, + YAHOO_STATUS_AVAILABLE, 0); + + yahoo_packet_hash(pkt, "sss", + 1, gaim_normalize(add_req->gc->account, + gaim_account_get_username( + gaim_connection_get_account( + add_req->gc))), + 7, add_req->who, + 14, encoded_msg ? encoded_msg : ""); + + yahoo_packet_send_and_free(pkt, yd); + + g_free(encoded_msg); + + g_free(add_req->id); + g_free(add_req->who); + g_free(add_req->msg); + g_free(add_req); +} + static void yahoo_buddy_added_us(GaimConnection *gc, struct yahoo_packet *pkt) { - char *id = NULL; - char *who = NULL; - char *msg = NULL, *tmpmsg = NULL; + struct yahoo_add_request *add_req; + char *msg = NULL; GSList *l = pkt->hash; + add_req = g_new0(struct yahoo_add_request, 1); + add_req->gc = gc; + while (l) { struct yahoo_pair *pair = l->data; switch (pair->key) { case 1: - id = pair->value; + add_req->id = g_strdup(pair->value); break; case 3: - who = pair->value; + add_req->who = g_strdup(pair->value); break; case 15: /* time, for when they add us and we're offline */ break; @@ -823,12 +873,33 @@ l = l->next; } - if (id) { + if (add_req->id) { + char *prompt_msg; if (msg) - tmpmsg = yahoo_string_decode(gc, msg, FALSE); - gaim_account_notify_added(gc->account, id, who, NULL, tmpmsg); - if (tmpmsg) - g_free(tmpmsg); + add_req->msg = yahoo_string_decode(gc, msg, FALSE); + + /* TODO: this is almost exactly the same as what MSN does, + * this should probably be moved to the core. + * */ + prompt_msg = g_strdup_printf(_("The user %s wants to add %s to " + "his or her buddy list%s%s."), + add_req->who, add_req->id, + add_req->msg ? ": " : "", + add_req->msg ? add_req->msg : ""); + gaim_request_input(gc, NULL, prompt_msg, + _("Message (optional) :"), + NULL, TRUE, FALSE, NULL, + _("Authorize"), G_CALLBACK( + yahoo_buddy_add_authorize_cb), + _("Deny"), G_CALLBACK( + yahoo_buddy_add_deny_cb), + add_req); + g_free(prompt_msg); + } else { + g_free(add_req->id); + g_free(add_req->who); + /*g_free(add_req->msg);*/ + g_free(add_req); } }