Mercurial > pidgin.yaz
view src/protocols/yahoo/buddy.c @ 2568:c2abbf94b93d
[gaim-migrate @ 2581]
I forgot to commit this file. This removes the warning when exiting.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Sun, 21 Oct 2001 19:49:20 +0000 |
parents | 1779daad8cc3 |
children |
line wrap: on
line source
/* * libyay * * Copyright (C) 2001 Eric Warmenhoven <warmenhoven@yahoo.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include "internal.h" #include <string.h> int yahoo_add_buddy(struct yahoo_session *session, const char *active_id, const char *group, const char *buddy, const char *message) { struct yahoo_conn *conn; char *send; char *grp, *bdy, *id, *msg = "", *usr; if (!session || !active_id || !group || !buddy) return 0; if (!(grp = yahoo_urlencode(group))) return 0; if (!(bdy = yahoo_urlencode(buddy))) { g_free(grp); return 0; } if (!(id = yahoo_urlencode(active_id))) { g_free(grp); g_free(bdy); return 0; } if (!(usr = yahoo_urlencode(session->name))) { g_free(grp); g_free(bdy); g_free(id); return 0; } if (message && strlen(message) && !(msg = yahoo_urlencode(message))) { g_free(grp); g_free(bdy); g_free(id); g_free(usr); return 0; } send = g_strconcat("GET ", session->proxy_type ? "http://" : "", session->proxy_type ? session->auth_host : "", "/config/set_buddygrp?.bg=", grp, "&.src=bl&.cmd=a&.bdl=", bdy, "&.id=", id, "&.l=", usr, "&.amsg=", msg, " HTTP/1.0\r\n", "User-Agent: " YAHOO_USER_AGENT "\r\n" "Host: ", session->auth_host, "\r\n" "Cookie: ", session->cookie, "\r\n\r\n", NULL); g_free(grp); g_free(bdy); g_free(id); g_free(usr); if (message && strlen(message)) g_free(msg); if (!send) return 0; if (!(conn = yahoo_new_conn(session, YAHOO_CONN_TYPE_DUMB, session->auth_host, session->auth_port))) return 0; conn->txqueue = send; return 1; } int yahoo_remove_buddy(struct yahoo_session *session, const char *active_id, const char *group, const char *buddy, const char *message) { struct yahoo_conn *conn; char *send; char *grp, *bdy, *id, *msg = "", *usr; if (!session || !active_id || !group || !buddy) return 0; if (!(grp = yahoo_urlencode(group))) return 0; if (!(bdy = yahoo_urlencode(buddy))) { g_free(grp); return 0; } if (!(id = yahoo_urlencode(active_id))) { g_free(grp); g_free(bdy); return 0; } if (!(usr = yahoo_urlencode(session->name))) { g_free(grp); g_free(bdy); g_free(id); return 0; } if (message && strlen(message) && !(msg = yahoo_urlencode(message))) { g_free(grp); g_free(bdy); g_free(id); g_free(usr); return 0; } send = g_strconcat("GET ", session->proxy_type ? "http://" : "", session->proxy_type ? session->auth_host : "", "/config/set_buddygrp?.bg=", grp, "&.src=bl&.cmd=d&.bdl=", bdy, "&.id=", id, "&.l=", usr, "&.amsg=", msg, " HTTP/1.0\r\n", "User-Agent: " YAHOO_USER_AGENT "\r\n" "Host: ", session->auth_host, "\r\n" "Cookie: ", session->cookie, "\r\n\r\n", NULL); g_free(grp); g_free(bdy); g_free(id); g_free(usr); if (message && strlen(message)) g_free(msg); if (!send) return 0; if (!(conn = yahoo_new_conn(session, YAHOO_CONN_TYPE_DUMB, session->auth_host, session->auth_port))) return 0; conn->txqueue = send; return 1; }