mark PurpleImageClass as private
[pidgin-git.git] / libpurple / protocols / oscar / family_userlookup.c
blob056e43d4e4fe2168dacc7e54bcdc293053982f73
1 /*
2 * Purple's oscar protocol plugin
3 * This file is the legal property of its developers.
4 * Please see the AUTHORS file distributed alongside this file.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 * Family 0x000a - User Search.
24 * TODO: Add aim_usersearch_name()
28 #include "oscar.h"
31 * Subtype 0x0001
33 * XXX can this be integrated with the rest of the error handling?
35 static int error(OscarData *od, FlapConnection *conn, aim_module_t *mod, FlapFrame *frame, aim_modsnac_t *snac, ByteStream *bs)
37 int ret = 0;
38 aim_rxcallback_t userfunc;
39 aim_snac_t *snac2;
41 /* XXX the modules interface should have already retrieved this for us */
42 if (!(snac2 = aim_remsnac(od, snac->id))) {
43 purple_debug_misc("oscar", "search error: couldn't get a snac for 0x%08x\n", snac->id);
44 return 0;
47 if ((userfunc = aim_callhandler(od, snac->family, snac->subtype)))
48 ret = userfunc(od, conn, frame, snac2->data /* address */);
50 /* XXX freesnac()? */
51 if (snac2)
52 g_free(snac2->data);
53 g_free(snac2);
55 return ret;
59 * Subtype 0x0002
62 int aim_search_address(OscarData *od, const char *address)
64 FlapConnection *conn;
65 ByteStream bs;
66 aim_snacid_t snacid;
68 conn = flap_connection_findbygroup(od, SNAC_FAMILY_USERLOOKUP);
70 if (!conn || !address)
71 return -EINVAL;
73 byte_stream_new(&bs, strlen(address));
75 byte_stream_putstr(&bs, address);
77 snacid = aim_cachesnac(od, SNAC_FAMILY_USERLOOKUP, 0x0002, 0x0000, address, strlen(address)+1);
78 flap_connection_send_snac(od, conn, SNAC_FAMILY_USERLOOKUP, 0x0002, snacid, &bs);
80 byte_stream_destroy(&bs);
82 return 0;
86 * Subtype 0x0003
89 static int reply(OscarData *od, FlapConnection *conn, aim_module_t *mod, FlapFrame *frame, aim_modsnac_t *snac, ByteStream *bs)
91 int j = 0, m, ret = 0;
92 GSList *tlvlist;
93 char *cur = NULL, *buf = NULL;
94 aim_rxcallback_t userfunc;
95 aim_snac_t *snac2;
96 const char *searchaddr = NULL;
98 if ((snac2 = aim_remsnac(od, snac->id)))
99 searchaddr = (const char *)snac2->data;
101 tlvlist = aim_tlvlist_read(bs);
102 m = aim_tlvlist_count(tlvlist);
104 /* XXX uhm.
105 * This is the only place that uses something other than 1 for the 3rd
106 * parameter to aim_tlv_gettlv_whatever().
108 while ((cur = aim_tlv_getstr(tlvlist, 0x0001, j+1)) && j < m)
110 buf = g_realloc(buf, (j+1) * (MAXSNLEN+1));
112 strncpy(&buf[j * (MAXSNLEN+1)], cur, MAXSNLEN);
113 g_free(cur);
115 j++;
117 g_free(cur);
119 aim_tlvlist_free(tlvlist);
121 if ((userfunc = aim_callhandler(od, snac->family, snac->subtype)))
122 ret = userfunc(od, conn, frame, searchaddr, j, buf);
124 /* XXX freesnac()? */
125 if (snac2)
126 g_free(snac2->data);
127 g_free(snac2);
129 g_free(buf);
131 return ret;
134 static int
135 snachandler(OscarData *od, FlapConnection *conn, aim_module_t *mod, FlapFrame *frame, aim_modsnac_t *snac, ByteStream *bs)
137 if (snac->subtype == 0x0001)
138 return error(od, conn, mod, frame, snac, bs);
139 else if (snac->subtype == 0x0003)
140 return reply(od, conn, mod, frame, snac, bs);
142 return 0;
146 search_modfirst(OscarData *od, aim_module_t *mod)
148 mod->family = SNAC_FAMILY_USERLOOKUP;
149 mod->version = 0x0001;
150 mod->toolid = 0x0110;
151 mod->toolversion = 0x0629;
152 mod->flags = 0;
153 strncpy(mod->name, "userlookup", sizeof(mod->name));
154 mod->snachandler = snachandler;
156 return 0;