diff src/protocols/qq/group_search.c @ 13870:983fd420e86b

[gaim-migrate @ 16340] Performed minor cleanup of the OpenQ codebase and patched it into the Gaim trunk as a prpl, providing basic QQ functionality. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Mon, 26 Jun 2006 02:58:54 +0000
parents
children ef8490f9e823
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/protocols/qq/group_search.c	Mon Jun 26 02:58:54 2006 +0000
@@ -0,0 +1,125 @@
+/**
+ * The QQ2003C protocol plugin
+ *
+ * for gaim
+ *
+ * Copyright (C) 2004 Puzzlebird
+ *
+ * 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
+ */
+
+// START OF FILE
+/*****************************************************************************/
+#include "debug.h"		// gaim_debug
+
+#include "char_conv.h"		// convert_as_pascal_string
+#include "group_free.h"		// qq_group_free_not_subscribed
+#include "group_network.h"	// qq_send_group_cmd
+#include "group_search.h"
+#include "utils.h"
+
+enum {
+	QQ_GROUP_SEARCH_TYPE_BY_ID = 0x01,
+	QQ_GROUP_SEARCH_TYPE_DEMO = 0x02,
+};
+
+/*****************************************************************************/
+// send packet to search for qq_group
+void qq_send_cmd_group_search_group(GaimConnection * gc, guint32 external_group_id) {
+	guint8 *raw_data, *cursor, type;
+	gint bytes, data_len;
+
+	g_return_if_fail(gc != NULL);
+
+	data_len = 6;
+	raw_data = g_newa(guint8, data_len);
+	cursor = raw_data;
+	type = (external_group_id == 0x00000000) ? QQ_GROUP_SEARCH_TYPE_DEMO : QQ_GROUP_SEARCH_TYPE_BY_ID;
+
+	bytes = 0;
+	bytes += create_packet_b(raw_data, &cursor, QQ_GROUP_CMD_SEARCH_GROUP);
+	bytes += create_packet_b(raw_data, &cursor, type);
+	bytes += create_packet_dw(raw_data, &cursor, external_group_id);
+
+	if (bytes != data_len)
+		gaim_debug(GAIM_DEBUG_ERROR, "QQ",
+			   "Fail create packet for %s\n", qq_group_cmd_get_desc(QQ_GROUP_CMD_SEARCH_GROUP));
+	else
+		qq_send_group_cmd(gc, NULL, raw_data, data_len);
+}				// qq_send_cmd_group_search_group
+
+/*****************************************************************************/
+// process group cmd reply "search group"
+void qq_process_group_cmd_search_group(guint8 * data, guint8 ** cursor, gint len, GaimConnection * gc) {
+	guint8 search_type;
+	guint16 unknown;
+	gint bytes, pascal_len, i;
+	qq_data *qd;
+	GaimRoomlistRoom *room;
+	qq_group *group;
+
+	g_return_if_fail(gc != NULL && gc->proto_data != NULL);
+	g_return_if_fail(data != NULL && len > 0);
+	qd = (qq_data *) gc->proto_data;
+
+	i = 0;
+	bytes += read_packet_b(data, cursor, len, &search_type);
+	group = g_newa(qq_group, 1);
+
+	// now it starts with group_info_entry
+	while (*cursor < (data + len)) {	// still have data to read
+		// begin of one qq_group
+		bytes = 0;
+		i++;
+		bytes += read_packet_dw(data, cursor, len, &(group->internal_group_id));
+		bytes += read_packet_dw(data, cursor, len, &(group->external_group_id));
+		bytes += read_packet_b(data, cursor, len, &(group->group_type));
+		bytes += read_packet_w(data, cursor, len, &(unknown)); // protocal changed, gfhuang
+		bytes += read_packet_w(data, cursor, len, &(unknown)); // protocal changed, gfhuang
+		bytes += read_packet_dw(data, cursor, len, &(group->creator_uid));
+		bytes += read_packet_w(data, cursor, len, &(unknown)); // protocal changed, gfhuang
+		bytes += read_packet_w(data, cursor, len, &(unknown)); // protocal changed, gfhuang
+		bytes += read_packet_w(data, cursor, len, &(unknown)); // protocal changed, gfhuang
+		bytes += read_packet_dw(data, cursor, len, &(group->group_category));
+		pascal_len = convert_as_pascal_string(*cursor, &(group->group_name_utf8), QQ_CHARSET_DEFAULT);
+		bytes += pascal_len;
+		*cursor += pascal_len;
+		bytes += read_packet_w(data, cursor, len, &(unknown));
+		bytes += read_packet_b(data, cursor, len, &(group->auth_type));
+		pascal_len = convert_as_pascal_string(*cursor, &(group->group_desc_utf8), QQ_CHARSET_DEFAULT);
+		bytes += pascal_len;
+		*cursor += pascal_len;
+		// end of one qq_group
+		room = gaim_roomlist_room_new(GAIM_ROOMLIST_ROOMTYPE_ROOM, group->group_name_utf8, NULL);
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->external_group_id));
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->creator_uid));
+		gaim_roomlist_room_add_field(qd->roomlist, room, group->group_desc_utf8);
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->internal_group_id));
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->group_type));
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->auth_type));
+		gaim_roomlist_room_add_field(qd->roomlist, room, g_strdup_printf("%d", group->group_category));
+		gaim_roomlist_room_add_field(qd->roomlist, room, group->group_name_utf8);
+		gaim_roomlist_room_add(qd->roomlist, room);
+	}			// while
+        if(*cursor > (data + len)) {
+                         gaim_debug(GAIM_DEBUG_ERROR, "QQ", "group_cmd_search_group: Dangerous error! maybe protocal changed, notify me!");
+        }
+	gaim_roomlist_set_in_progress(qd->roomlist, FALSE);
+	gaim_debug(GAIM_DEBUG_INFO, "QQ", "Search group reply: %d groups\n", i);
+
+}				// qq_process_group_cmd_search_group
+
+/*****************************************************************************/
+// END OF FILE