annotate libpurple/protocols/jabber/useravatar.c @ 26789:8953034dae88

Use jabber_calculate_data_sha1sum in one more place.
author Paul Aurich <paul@darkrain42.org>
date Sun, 26 Apr 2009 23:57:55 +0000
parents fbb2b8e2d91e
children ca421152b5d4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
1 /*
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
2 * purple - Jabber Protocol Plugin
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
3 *
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
4 * Purple is the legal property of its developers, whose names are too numerous
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
5 * to list here. Please refer to the COPYRIGHT file distributed with this
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
6 * source distribution.
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
7 *
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
8 * This program is free software; you can redistribute it and/or modify
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
11 * (at your option) any later version.
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
12 *
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
13 * This program is distributed in the hope that it will be useful,
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
16 * GNU General Public License for more details.
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
17 *
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
19 * along with this program; if not, write to the Free Software
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
21 *
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
22 */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
23
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
24 #include "internal.h"
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
25
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
26 #include "useravatar.h"
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
27 #include "pep.h"
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
28 #include "debug.h"
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
29
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
30 #define MAX_HTTP_BUDDYICON_BYTES (200 * 1024)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
31
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
32 static void update_buddy_metadata(JabberStream *js, const char *from, xmlnode *items);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
33
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
34 void jabber_avatar_init(void)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
35 {
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
36 jabber_add_feature("avatarmeta", NS_AVATAR_0_12_METADATA,
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
37 jabber_pep_namespace_only_when_pep_enabled_cb);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
38 jabber_add_feature("avatardata", NS_AVATAR_0_12_DATA,
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
39 jabber_pep_namespace_only_when_pep_enabled_cb);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
40 jabber_pep_register_handler("avatar", NS_AVATAR_0_12_METADATA,
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
41 update_buddy_metadata);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
42
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
43 jabber_add_feature("urn_avatarmeta", NS_AVATAR_1_1_METADATA,
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
44 jabber_pep_namespace_only_when_pep_enabled_cb);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
45 jabber_add_feature("urn_avatardata", NS_AVATAR_1_1_DATA,
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
46 jabber_pep_namespace_only_when_pep_enabled_cb);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
47
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
48 jabber_pep_register_handler("urn_avatar", NS_AVATAR_1_1_METADATA,
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
49 update_buddy_metadata);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
50 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
51
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
52 void jabber_avatar_set(JabberStream *js, PurpleStoredImage *img, const char *ns)
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
53 {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
54 xmlnode *publish, *metadata, *item;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
55
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
56 if (!js->pep)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
57 return;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
58
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
59 if (!img) {
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
60 if (ns == NULL || g_str_equal(ns, NS_AVATAR_0_12_METADATA)) {
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
61 /* remove the metadata */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
62 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
63 xmlnode_set_attrib(publish, "node", NS_AVATAR_0_12_METADATA);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
64
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
65 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
66 metadata = xmlnode_new_child(item, "metadata");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
67 xmlnode_set_namespace(metadata, NS_AVATAR_0_12_METADATA);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
68
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
69 xmlnode_new_child(metadata, "stop");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
70 /* publish */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
71 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
72 }
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
73
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
74 if (ns == NULL || g_str_equal(ns, NS_AVATAR_1_1_METADATA)) {
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
75 /* Now for the XEP-0084 v1.1 namespace, where we publish an empty
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
76 * metadata node instead of a <stop/> element */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
77 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
78 xmlnode_set_attrib(publish, "node", NS_AVATAR_1_1_METADATA);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
79
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
80 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
81 metadata = xmlnode_new_child(item, "metadata");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
82 xmlnode_set_namespace(metadata, NS_AVATAR_1_1_METADATA);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
83
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
84 /* publish */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
85 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
86 }
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
87 } else {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
88 /*
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
89 * TODO: This is pretty gross. The Jabber PRPL really shouldn't
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
90 * do voodoo to try to determine the image type, height
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
91 * and width.
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
92 */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
93 /* A PNG header, including the IHDR, but nothing else */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
94 const struct {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
95 guchar signature[8]; /* must be hex 89 50 4E 47 0D 0A 1A 0A */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
96 struct {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
97 guint32 length; /* must be 0x0d */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
98 guchar type[4]; /* must be 'I' 'H' 'D' 'R' */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
99 guint32 width;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
100 guint32 height;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
101 guchar bitdepth;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
102 guchar colortype;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
103 guchar compression;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
104 guchar filter;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
105 guchar interlace;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
106 } ihdr;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
107 } *png = purple_imgstore_get_data(img); /* ATTN: this is in network byte order! */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
108
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
109 /* check if the data is a valid png file (well, at least to some extent) */
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
110 if(png->signature[0] == 0x89 &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
111 png->signature[1] == 0x50 &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
112 png->signature[2] == 0x4e &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
113 png->signature[3] == 0x47 &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
114 png->signature[4] == 0x0d &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
115 png->signature[5] == 0x0a &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
116 png->signature[6] == 0x1a &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
117 png->signature[7] == 0x0a &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
118 ntohl(png->ihdr.length) == 0x0d &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
119 png->ihdr.type[0] == 'I' &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
120 png->ihdr.type[1] == 'H' &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
121 png->ihdr.type[2] == 'D' &&
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
122 png->ihdr.type[3] == 'R') {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
123 /* parse PNG header to get the size of the image (yes, this is required) */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
124 guint32 width = ntohl(png->ihdr.width);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
125 guint32 height = ntohl(png->ihdr.height);
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
126 xmlnode *data, *info;
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
127 char *lengthstring, *widthstring, *heightstring;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
128
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
129 /* compute the sha1 hash */
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
130 char *hash = jabber_calculate_data_sha1sum(purple_imgstore_get_data(img),
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
131 purple_imgstore_get_size(img));
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
132 char *base64avatar = purple_base64_encode(purple_imgstore_get_data(img),
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
133 purple_imgstore_get_size(img));
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
134
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
135 if (ns == NULL || g_str_equal(ns, NS_AVATAR_0_12_METADATA)) {
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
136 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
137 xmlnode_set_attrib(publish, "node", NS_AVATAR_0_12_DATA);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
138
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
139 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
140 xmlnode_set_attrib(item, "id", hash);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
141
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
142 data = xmlnode_new_child(item, "data");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
143 xmlnode_set_namespace(data, NS_AVATAR_0_12_DATA);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
144
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
145 xmlnode_insert_data(data, base64avatar, -1);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
146 /* publish the avatar itself */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
147 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
148 }
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
149
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
150 if (ns == NULL || g_str_equal(ns, NS_AVATAR_1_1_METADATA)) {
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
151 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
152 xmlnode_set_attrib(publish, "node", NS_AVATAR_1_1_DATA);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
153
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
154 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
155 xmlnode_set_attrib(item, "id", "hash");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
156
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
157 data = xmlnode_new_child(item, "data");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
158 xmlnode_set_namespace(data, NS_AVATAR_1_1_DATA);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
159
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
160 xmlnode_insert_data(data, base64avatar, -1);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
161 /* publish the avatar itself */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
162 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
163 }
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
164
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
165 g_free(base64avatar);
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
166
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
167 lengthstring = g_strdup_printf("%" G_GSIZE_FORMAT,
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
168 purple_imgstore_get_size(img));
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
169 widthstring = g_strdup_printf("%u", width);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
170 heightstring = g_strdup_printf("%u", height);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
171
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
172 if (ns == NULL || g_str_equal(ns, NS_AVATAR_0_12_METADATA)) {
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
173 /* next step: publish the metadata to the old namespace */
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
174 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
175 xmlnode_set_attrib(publish, "node", NS_AVATAR_0_12_METADATA);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
176
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
177 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
178 xmlnode_set_attrib(item, "id", hash);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
179
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
180 metadata = xmlnode_new_child(item, "metadata");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
181 xmlnode_set_namespace(metadata, NS_AVATAR_0_12_METADATA);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
182
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
183 info = xmlnode_new_child(metadata, "info");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
184 xmlnode_set_attrib(info, "id", hash);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
185 xmlnode_set_attrib(info, "type", "image/png");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
186 xmlnode_set_attrib(info, "bytes", lengthstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
187 xmlnode_set_attrib(info, "width", widthstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
188 xmlnode_set_attrib(info, "height", heightstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
189 /* publish the metadata */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
190 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
191 }
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
192
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
193 if (ns == NULL || g_str_equal(ns, NS_AVATAR_1_1_METADATA)) {
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
194 /* publish the metadata to the new namespace */
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
195 publish = xmlnode_new("publish");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
196 xmlnode_set_attrib(publish, "node", NS_AVATAR_1_1_METADATA);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
197
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
198 item = xmlnode_new_child(publish, "item");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
199 xmlnode_set_attrib(item, "id", hash);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
200
25823
591846d6a16c My lousy typo just consumed 20 minutes of my life. 'metadata', not 'metdata'.
Paul Aurich <paul@darkrain42.org>
parents: 25821
diff changeset
201 metadata = xmlnode_new_child(item, "metadata");
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
202 xmlnode_set_namespace(metadata, NS_AVATAR_1_1_METADATA);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
203
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
204 info = xmlnode_new_child(metadata, "info");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
205 xmlnode_set_attrib(info, "id", hash);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
206 xmlnode_set_attrib(info, "type", "image/png");
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
207 xmlnode_set_attrib(info, "bytes", lengthstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
208 xmlnode_set_attrib(info, "width", widthstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
209 xmlnode_set_attrib(info, "height", heightstring);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
210
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
211 jabber_pep_publish(js, publish);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
212 }
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
213
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
214 g_free(lengthstring);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
215 g_free(widthstring);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
216 g_free(heightstring);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
217 g_free(hash);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
218 } else {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
219 purple_debug_error("jabber", "Cannot set PEP avatar to non-PNG data\n");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
220 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
221 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
222 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
223
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
224 static void
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
225 do_got_own_avatar_cb(JabberStream *js, const char *from, xmlnode *items)
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
226 {
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
227 xmlnode *item = NULL, *metadata = NULL, *info = NULL;
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
228 PurpleAccount *account = purple_connection_get_account(js->gc);
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
229 const char *server_hash = NULL;
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
230 const char *ns;
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
231
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
232 if ((item = xmlnode_get_child(items, "item")) &&
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
233 (metadata = xmlnode_get_child(item, "metadata")) &&
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
234 (info = xmlnode_get_child(metadata, "info"))) {
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
235 server_hash = xmlnode_get_attrib(info, "id");
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
236 }
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
237
25830
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
238 if (!metadata)
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
239 return;
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
240
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
241 ns = xmlnode_get_namespace(metadata);
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
242 if (!ns)
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
243 return;
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
244
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
245 /* Publish ours if it's different than the server's */
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
246 if (!purple_strequal(server_hash, js->initial_avatar_hash)) {
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
247 PurpleStoredImage *img = purple_buddy_icons_find_account_icon(account);
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
248 jabber_avatar_set(js, img, ns);
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
249 purple_imgstore_unref(img);
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
250 }
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
251 }
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
252
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
253 void jabber_avatar_fetch_mine(JabberStream *js)
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
254 {
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
255 char *jid = g_strdup_printf("%s@%s", js->user->node, js->user->domain);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
256 jabber_pep_request_item(js, jid, NS_AVATAR_0_12_METADATA, NULL,
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
257 do_got_own_avatar_cb);
25820
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
258 jabber_pep_request_item(js, jid, NS_AVATAR_1_1_METADATA, NULL,
c0a27a44ebd6 Support both XEP-0084 namespaces for fetching our own avatars at login
Paul Aurich <paul@darkrain42.org>
parents: 25819
diff changeset
259 do_got_own_avatar_cb);
25817
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
260 g_free(jid);
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
261 }
9195955395b6 Only (re)publish XMPP avatars at login if the server's avatar differs
Paul Aurich <paul@darkrain42.org>
parents: 25816
diff changeset
262
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
263 typedef struct _JabberBuddyAvatarUpdateURLInfo {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
264 JabberStream *js;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
265 char *from;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
266 char *id;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
267 } JabberBuddyAvatarUpdateURLInfo;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
268
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
269 static void
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
270 do_buddy_avatar_update_fromurl(PurpleUtilFetchUrlData *url_data,
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
271 gpointer user_data, const gchar *url_text,
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
272 gsize len, const gchar *error_message)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
273 {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
274 JabberBuddyAvatarUpdateURLInfo *info = user_data;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
275 if(!url_text) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
276 purple_debug(PURPLE_DEBUG_ERROR, "jabber",
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
277 "do_buddy_avatar_update_fromurl got error \"%s\"",
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
278 error_message);
25816
b68ac693ae2d Don't leak a JabberBuddyAvatarUpdateURLInfo struct in the error case
Paul Aurich <paul@darkrain42.org>
parents: 25815
diff changeset
279 goto out;
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
280 }
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
281
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
282 purple_buddy_icons_set_for_user(purple_connection_get_account(info->js->gc), info->from, (void*)url_text, len, info->id);
25816
b68ac693ae2d Don't leak a JabberBuddyAvatarUpdateURLInfo struct in the error case
Paul Aurich <paul@darkrain42.org>
parents: 25815
diff changeset
283
b68ac693ae2d Don't leak a JabberBuddyAvatarUpdateURLInfo struct in the error case
Paul Aurich <paul@darkrain42.org>
parents: 25815
diff changeset
284 out:
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
285 g_free(info->from);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
286 g_free(info->id);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
287 g_free(info);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
288 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
289
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
290 static void
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
291 do_buddy_avatar_update_data(JabberStream *js, const char *from, xmlnode *items)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
292 {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
293 xmlnode *item, *data;
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
294 const char *checksum, *ns;
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
295 char *b64data;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
296 void *img;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
297 size_t size;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
298 if(!items)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
299 return;
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
300
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
301 item = xmlnode_get_child(items, "item");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
302 if(!item)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
303 return;
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
304
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
305 data = xmlnode_get_child(item, "data");
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
306 if(!data)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
307 return;
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
308
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
309 ns = xmlnode_get_namespace(data);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
310 /* Make sure the namespace is one of the two valid possibilities */
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
311 if (!ns || (!g_str_equal(ns, NS_AVATAR_0_12_DATA) &&
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
312 !g_str_equal(ns, NS_AVATAR_1_1_DATA)))
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
313 return;
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
314
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
315 checksum = xmlnode_get_attrib(item,"id");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
316 if(!checksum)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
317 return;
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
318
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
319 b64data = xmlnode_get_data(data);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
320 if(!b64data)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
321 return;
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
322
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
323 img = purple_base64_decode(b64data, &size);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
324 if(!img) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
325 g_free(b64data);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
326 return;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
327 }
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
328
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
329 purple_buddy_icons_set_for_user(purple_connection_get_account(js->gc), from, img, size, checksum);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
330 g_free(b64data);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
331 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
332
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
333 static void
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
334 update_buddy_metadata(JabberStream *js, const char *from, xmlnode *items)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
335 {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
336 PurpleBuddy *buddy = purple_find_buddy(purple_connection_get_account(js->gc), from);
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
337 const char *checksum, *ns;
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
338 xmlnode *item, *metadata;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
339 if(!buddy)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
340 return;
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
341
25830
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
342 if (!items)
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
343 return;
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
344
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
345 item = xmlnode_get_child(items,"item");
25830
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
346 if (!item)
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
347 return;
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
348
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
349 metadata = xmlnode_get_child(item, "metadata");
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
350 if(!metadata)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
351 return;
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
352
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
353 ns = xmlnode_get_namespace(metadata);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
354 /* Make sure the namespace is one of the two valid possibilities */
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
355 if (!ns || (!g_str_equal(ns, NS_AVATAR_0_12_METADATA) &&
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
356 !g_str_equal(ns, NS_AVATAR_1_1_METADATA)))
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
357 return;
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
358
25830
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
359 checksum = purple_buddy_icons_get_checksum_for_user(buddy);
b3dbc9e8b6ef I had the distinct pleasure of throwing invalid garbage at this code; it
Paul Aurich <paul@darkrain42.org>
parents: 25823
diff changeset
360
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
361 /* check if we have received a stop */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
362 if(xmlnode_get_child(metadata, "stop")) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
363 purple_buddy_icons_set_for_user(purple_connection_get_account(js->gc), from, NULL, 0, NULL);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
364 } else {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
365 xmlnode *info, *goodinfo = NULL;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
366 gboolean has_children = FALSE;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
367
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
368 /* iterate over all info nodes to get one we can use */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
369 for(info = metadata->child; info; info = info->next) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
370 if(info->type == XMLNODE_TYPE_TAG)
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
371 has_children = TRUE;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
372 if(info->type == XMLNODE_TYPE_TAG && !strcmp(info->name,"info")) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
373 const char *type = xmlnode_get_attrib(info,"type");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
374 const char *id = xmlnode_get_attrib(info,"id");
25821
5313cf16e1e2 Whitespace changes
Paul Aurich <paul@darkrain42.org>
parents: 25820
diff changeset
375
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
376 if(checksum && id && !strcmp(id, checksum)) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
377 /* we already have that avatar, so we don't have to do anything */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
378 goodinfo = NULL;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
379 break;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
380 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
381 /* We'll only pick the png one for now. It's a very nice image format anyways. */
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
382 if(type && id && !goodinfo && !strcmp(type, "image/png"))
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
383 goodinfo = info;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
384 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
385 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
386 if(has_children == FALSE) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
387 purple_buddy_icons_set_for_user(purple_connection_get_account(js->gc), from, NULL, 0, NULL);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
388 } else if(goodinfo) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
389 const char *url = xmlnode_get_attrib(goodinfo, "url");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
390 const char *id = xmlnode_get_attrib(goodinfo,"id");
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
391
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
392 /* the avatar might either be stored in a pep node, or on a HTTP(S) URL */
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
393 if(!url) {
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
394 const char *data_ns;
26788
fbb2b8e2d91e Use purple_strequal and g_str_equal
Paul Aurich <paul@darkrain42.org>
parents: 25832
diff changeset
395 data_ns = (g_str_equal(ns, NS_AVATAR_0_12_METADATA) ?
25819
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
396 NS_AVATAR_0_12_DATA : NS_AVATAR_1_1_DATA);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
397 jabber_pep_request_item(js, from, data_ns, id,
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
398 do_buddy_avatar_update_data);
ba8f51cb3691 Support XEP-0084 (User Avatar) v1.1 alongside v0.12
Paul Aurich <paul@darkrain42.org>
parents: 25817
diff changeset
399 } else {
25815
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
400 PurpleUtilFetchUrlData *url_data;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
401 JabberBuddyAvatarUpdateURLInfo *info = g_new0(JabberBuddyAvatarUpdateURLInfo, 1);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
402 info->js = js;
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
403
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
404 url_data = purple_util_fetch_url_len(url, TRUE, NULL, TRUE,
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
405 MAX_HTTP_BUDDYICON_BYTES,
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
406 do_buddy_avatar_update_fromurl, info);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
407 if (url_data) {
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
408 info->from = g_strdup(from);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
409 info->id = g_strdup(id);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
410 js->url_datas = g_slist_prepend(js->url_datas, url_data);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
411 } else
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
412 g_free(info);
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
413
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
414 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
415 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
416 }
5dd25c58b65e Migrate the XMPP User Avatar (XEP-0084) code to its own file
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
417 }