summaryrefslogtreecommitdiff
path: root/libpurple/protocols/gg/libgadu-events.c
blob: f697f90c058729398d6b3139f07440e71c08a667 (plain)
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
/* 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.
 *
 * Rewritten from scratch during Google Summer of Code 2012
 * by Tomek Wasilczyk (http://www.wasilczyk.pl).
 *
 * Previously implemented by:
 *  - Arkadiusz Miskiewicz <misiek@pld.org.pl> - first implementation (2001);
 *  - Bartosz Oler <bartosz@bzimage.us> - reimplemented during GSoC 2005;
 *  - Krzysztof Klinikowski <grommasher@gmail.com> - some parts (2009-2011).
 *
 * 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 "libgadu-events.h"

#include <debug.h>

#include "avatar.h"

void ggp_events_user_data(PurpleConnection *gc, struct gg_event_user_data *data)
{
	int user_idx;
	gboolean is_update;
	
	purple_debug_info("gg", "GG_EVENT_USER_DATA [type=%d, user_count=%"
		G_GSIZE_FORMAT "]\n", data->type, data->user_count);
	
	/*
	type = 
		1, 3:	user information sent after connecting (divided by
			20 contacts; 3 - last one; 1 - rest of them)
		0: data update
	*/
	is_update = (data->type == 0);
	
	for (user_idx = 0; user_idx < data->user_count; user_idx++)
	{
		struct gg_event_user_data_user *data_user =
			&data->users[user_idx];
		uin_t uin = data_user->uin;
		int attr_idx;
		gboolean got_avatar = FALSE;
		for (attr_idx = 0; attr_idx < data_user->attr_count; attr_idx++)
		{
			struct gg_event_user_data_attr *data_attr =
				&data_user->attrs[attr_idx];
			if (strcmp(data_attr->key, "avatar") == 0)
			{
				time_t timestamp;
				if (data_attr->type == 0)
				{
					ggp_avatar_buddy_remove(gc, uin);
					continue;
				}
				
				timestamp = atoi(data_attr->value);
				if (timestamp <= 0)
					continue;
				got_avatar = TRUE;
				ggp_avatar_buddy_update(gc, uin, timestamp);
			}
		}
		
		if (!is_update && !got_avatar)
			ggp_avatar_buddy_remove(gc, uin);
	}
}