1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
/**
* @file group_info.c
*
* purple
*
* Purple is the legal property of its developers, whose names are too numerous
* to list here. Please refer to the COPYRIGHT file distributed with this
* source distribution.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include "internal.h"
#include "conversation.h"
#include "debug.h"
#include "char_conv.h"
#include "group_im.h"
#include "group_internal.h"
#include "group_info.h"
#include "buddy_list.h"
#include "qq_define.h"
#include "packet_parse.h"
#include "qq_network.h"
#include "utils.h"
/* we check who needs to update member info every minutes
* this interval determines if their member info is outdated */
#define QQ_GROUP_CHAT_REFRESH_NICKNAME_INTERNAL 180
static gboolean check_update_interval(qq_buddy_data *member)
{
g_return_val_if_fail(member != NULL, FALSE);
return (member->nickname == NULL) ||
(time(NULL) - member->last_update) > QQ_GROUP_CHAT_REFRESH_NICKNAME_INTERNAL;
}
/* this is done when we receive the reply to get_online_members sub_cmd
* all member are set offline, and then only those in reply packets are online */
static void set_all_offline(qq_room_data *rmd)
{
GList *list;
qq_buddy_data *bd;
g_return_if_fail(rmd != NULL);
list = rmd->members;
while (list != NULL) {
bd = (qq_buddy_data *) list->data;
bd->status = QQ_BUDDY_CHANGE_TO_OFFLINE;
list = list->next;
}
}
/* send packet to get info for each group member */
gint qq_request_room_get_buddies(PurpleConnection *gc, guint32 room_id, guint32 update_class)
{
guint8 *raw_data;
gint bytes, num;
GList *list;
qq_room_data *rmd;
qq_buddy_data *bd;
g_return_val_if_fail(room_id > 0, 0);
rmd = qq_room_data_find(gc, room_id);
g_return_val_if_fail(rmd != NULL, 0);
for (num = 0, list = rmd->members; list != NULL; list = list->next) {
bd = (qq_buddy_data *) list->data;
if (check_update_interval(bd))
num++;
}
if (num <= 0) {
purple_debug_info("QQ", "No group member info needs to be updated now.\n");
return 0;
}
raw_data = g_newa(guint8, 4 * num);
bytes = 0;
list = rmd->members;
while (list != NULL) {
bd = (qq_buddy_data *) list->data;
if (check_update_interval(bd))
bytes += qq_put32(raw_data + bytes, bd->uid);
list = list->next;
}
qq_send_room_cmd_mess(gc, QQ_ROOM_CMD_GET_BUDDIES, rmd->id, raw_data, bytes,
update_class, 0);
return num;
}
static gchar *get_role_desc(qq_room_role role)
{
const char *role_desc;
switch (role) {
case QQ_ROOM_ROLE_NO:
role_desc = _("Not member");
break;
case QQ_ROOM_ROLE_YES:
role_desc = _("Member");
break;
case QQ_ROOM_ROLE_REQUESTING:
role_desc = _("Requesting");
break;
case QQ_ROOM_ROLE_ADMIN:
role_desc = _("Admin");
break;
default:
role_desc = _("Unknown");
}
return g_strdup(role_desc);
}
static void room_info_display(PurpleConnection *gc, qq_room_data *rmd)
{
PurpleNotifyUserInfo *room_info;
gchar *utf8_value;
g_return_if_fail(rmd != NULL && rmd->id > 0);
room_info = purple_notify_user_info_new();
/* XXX: Should this be "Topic"? */
purple_notify_user_info_add_pair(room_info, _("Room Title"), rmd->title_utf8);
purple_notify_user_info_add_pair(room_info, _("Notice"), rmd->notice_utf8);
purple_notify_user_info_add_pair(room_info, _("Detail"), rmd->desc_utf8);
purple_notify_user_info_add_section_break(room_info);
utf8_value = g_strdup_printf(("%u"), rmd->creator_uid);
purple_notify_user_info_add_pair(room_info, _("Creator"), utf8_value);
g_free(utf8_value);
utf8_value = get_role_desc(rmd->my_role);
purple_notify_user_info_add_pair(room_info, _("About me"), utf8_value);
g_free(utf8_value);
utf8_value = g_strdup_printf(("%d"), rmd->category);
purple_notify_user_info_add_pair(room_info, _("Category"), utf8_value);
g_free(utf8_value);
utf8_value = g_strdup_printf(("%d"), rmd->auth_type);
purple_notify_user_info_add_pair(room_info, _("Authorize"), utf8_value);
g_free(utf8_value);
utf8_value = g_strdup_printf(("%u"), rmd->ext_id);
purple_notify_userinfo(gc, utf8_value, room_info, NULL, NULL);
g_free(utf8_value);
purple_notify_user_info_destroy(room_info);
}
void qq_process_room_cmd_get_info(guint8 *data, gint data_len, guint32 action, PurpleConnection *gc)
{
qq_data *qd;
qq_room_data *rmd;
qq_buddy_data *bd;
PurpleChat *chat;
PurpleConversation *conv;
guint8 organization, role;
guint16 unknown, max_members;
guint32 member_uid, id, ext_id;
guint32 unknown4;
guint8 unknown1;
gint bytes, num;
gchar *notice;
gchar *topic_utf8;
g_return_if_fail(data != NULL && data_len > 0);
qd = (qq_data *) gc->proto_data;
/* qq_show_packet("Room Info", data, data_len); */
bytes = 0;
bytes += qq_get32(&id, data + bytes);
g_return_if_fail(id > 0);
bytes += qq_get32(&ext_id, data + bytes);
g_return_if_fail(ext_id > 0);
chat = qq_room_find_or_new(gc, id, ext_id);
g_return_if_fail(chat != NULL);
rmd = qq_room_data_find(gc, id);
g_return_if_fail(rmd != NULL);
bytes += qq_get8(&(rmd->type8), data + bytes);
bytes += qq_get32(&unknown4, data + bytes); /* unknown 4 bytes */
bytes += qq_get32(&(rmd->creator_uid), data + bytes);
bytes += qq_get8(&(rmd->auth_type), data + bytes);
bytes += qq_get32(&unknown4, data + bytes); /* oldCategory */
bytes += qq_get16(&unknown, data + bytes);
bytes += qq_get32(&(rmd->category), data + bytes);
bytes += qq_get16(&max_members, data + bytes);
bytes += qq_get8(&unknown1, data + bytes);
/* the following, while Eva:
* 4(unk), 4(verID), 1(nameLen), nameLen(qunNameContent), 1(0x00),
* 2(qunNoticeLen), qunNoticeLen(qunNoticeContent, 1(qunDescLen),
* qunDestLen(qunDestcontent)) */
bytes += qq_get8(&unknown1, data + bytes);
purple_debug_info("QQ", "type: %u creator: %u category: %u maxmembers: %u\n",
rmd->type8, rmd->creator_uid, rmd->category, max_members);
if (qd->client_version >= 2007) {
/* skip 7 bytes unknow in qq2007 0x(00 00 01 00 00 00 fc)*/
bytes += 7;
}
/* qq_show_packet("Room Info", data + bytes, data_len - bytes); */
/* strlen + <str content> */
bytes += qq_get_vstr(&(rmd->title_utf8), QQ_CHARSET_DEFAULT, data + bytes);
bytes += qq_get16(&unknown, data + bytes); /* 0x0000 */
bytes += qq_get_vstr(¬ice, QQ_CHARSET_DEFAULT, data + bytes);
bytes += qq_get_vstr(&(rmd->desc_utf8), QQ_CHARSET_DEFAULT, data + bytes);
purple_debug_info("QQ", "room [%s] notice [%s] desc [%s] unknow 0x%04X\n",
rmd->title_utf8, notice, rmd->desc_utf8, unknown);
num = 0;
/* now comes the member list separated by 0x00 */
while (bytes < data_len) {
bytes += qq_get32(&member_uid, data + bytes);
num++;
bytes += qq_get8(&organization, data + bytes);
bytes += qq_get8(&role, data + bytes);
#if 0
if(organization != 0 || role != 0) {
purple_debug_info("QQ", "%u, organization=%d, role=%d\n", member_uid, organization, role);
}
#endif
bd = qq_room_buddy_find_or_new(gc, rmd, member_uid);
if (bd != NULL)
bd->role = role;
}
if(bytes > data_len) {
purple_debug_error("QQ",
"group_cmd_get_group_info: Dangerous error! maybe protocol changed, notify me!");
}
purple_debug_info("QQ", "group \"%s\" has %d members\n", rmd->title_utf8, num);
if (rmd->creator_uid == qd->uid)
rmd->my_role = QQ_ROOM_ROLE_ADMIN;
/* filter \r\n in notice */
qq_filter_str(notice);
rmd->notice_utf8 = strdup(notice);
g_free(notice);
qq_room_update_chat_info(chat, rmd);
if (action == QQ_ROOM_INFO_DISPLAY) {
room_info_display(gc, rmd);
}
conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_CHAT,
rmd->title_utf8, purple_connection_get_account(gc));
if(NULL == conv) {
purple_debug_warning("QQ", "Conversation \"%s\" is not opened\n", rmd->title_utf8);
return;
}
topic_utf8 = g_strdup_printf("%u %s", rmd->ext_id, rmd->notice_utf8);
purple_debug_info("QQ", "Set chat topic to %s\n", topic_utf8);
purple_conv_chat_set_topic(PURPLE_CONV_CHAT(conv), NULL, topic_utf8);
g_free(topic_utf8);
}
void qq_process_room_cmd_get_onlines(guint8 *data, gint len, PurpleConnection *gc)
{
guint32 room_id, member_uid;
guint8 unknown;
gint bytes, num;
qq_room_data *rmd;
qq_buddy_data *bd;
g_return_if_fail(data != NULL && len > 0);
if (len <= 3) {
purple_debug_error("QQ", "Invalid group online member reply, discard it!\n");
return;
}
bytes = 0;
bytes += qq_get32(&room_id, data + bytes);
bytes += qq_get8(&unknown, data + bytes); /* 0x3c ?? */
g_return_if_fail(room_id > 0);
rmd = qq_room_data_find(gc, room_id);
if (rmd == NULL) {
purple_debug_error("QQ", "Can not info of room id [%u]\n", room_id);
return;
}
/* set all offline first, then update those online */
set_all_offline(rmd);
num = 0;
while (bytes < len) {
bytes += qq_get32(&member_uid, data + bytes);
num++;
bd = qq_room_buddy_find_or_new(gc, rmd, member_uid);
if (bd != NULL)
bd->status = QQ_BUDDY_ONLINE_NORMAL;
}
if(bytes > len) {
purple_debug_error("QQ",
"group_cmd_get_online_members: Dangerous error! maybe protocol changed, notify developers!");
}
purple_debug_info("QQ", "Group \"%s\" has %d online members\n", rmd->title_utf8, num);
qq_room_conv_set_onlines(gc, rmd);
}
/* process the reply to get_members_info packet */
void qq_process_room_cmd_get_buddies(guint8 *data, gint len, PurpleConnection *gc)
{
gint bytes;
gint num;
guint32 id, member_uid;
guint16 unknown;
qq_room_data *rmd;
qq_buddy_data *bd;
gchar *nick;
g_return_if_fail(data != NULL && len > 0);
/* qq_show_packet("qq_process_room_cmd_get_buddies", data, len); */
bytes = 0;
bytes += qq_get32(&id, data + bytes);
g_return_if_fail(id > 0);
rmd = qq_room_data_find(gc, id);
g_return_if_fail(rmd != NULL);
num = 0;
/* now starts the member info, as get buddy list reply */
while (bytes < len) {
bytes += qq_get32(&member_uid, data + bytes);
g_return_if_fail(member_uid > 0);
bd = qq_room_buddy_find_or_new(gc, rmd, member_uid);
g_return_if_fail(bd != NULL);
num++;
bytes += qq_get16(&(bd->face), data + bytes);
bytes += qq_get8(&(bd->age), data + bytes);
bytes += qq_get8(&(bd->gender), data + bytes);
bytes += qq_get_vstr(&nick, QQ_CHARSET_DEFAULT, data + bytes);
bytes += qq_get16(&unknown, data + bytes);
bytes += qq_get8(&(bd->ext_flag), data + bytes);
bytes += qq_get8(&(bd->comm_flag), data + bytes);
/* filter \r\n in nick */
qq_filter_str(nick);
bd->nickname = g_strdup(nick);
g_free(nick);
#if 0
purple_debug_info("QQ",
"member [%09d]: ext_flag=0x%02x, comm_flag=0x%02x, nick=%s\n",
member_uid, bd->ext_flag, bd->comm_flag, bd->nickname);
#endif
bd->last_update = time(NULL);
}
if (bytes > len) {
purple_debug_error("QQ",
"group_cmd_get_members_info: Dangerous error! maybe protocol changed, notify developers!");
}
purple_debug_info("QQ", "Group \"%s\" got %d member info\n", rmd->title_utf8, num);
rmd->is_got_buddies = TRUE;
qq_room_conv_set_onlines(gc, rmd);
}
|