annotate libpurple/protocols/myspace/myspace.c @ 18909:c32fcdef2809

Only say we are connected after the MsimSession structure is fully setup. (Also change a few debugging statements to help find this bug.) Previously, purple_connection_set_state(..., PURPLE_CONNECTED) was called too early, so that if a client called any msimprpl functions that operated on MsimSession (pretty much all of them) within the signed-on signal handler, the userid etc., would not yet be correct and the call would fail. Now, the call is called at the right time so it works as expected. Closes #2520.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Sun, 12 Aug 2007 18:48:03 +0000
parents 6541b0edee26
children 2115910c5746
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1 /* MySpaceIM Protocol Plugin
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3 * \author Jeff Connelly
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
4 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
5 * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
6 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
7 * Based on Purple's "C Plugin HOWTO" hello world example.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
8 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
9 * Code also drawn from mockprpl:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
10 * http://snarfed.org/space/purple+mock+protocol+plugin
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
11 * Copyright (C) 2004-2007, Ryan Barrett <mockprpl@ryanb.org>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
12 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
13 * and some constructs also based on existing Purple plugins, which are:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
14 * Copyright (C) 2003, Robbert Haarman <purple@inglorion.net>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
15 * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
16 * Copyright (C) 2000-2003, Rob Flynn <rob@tgflinux.com>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
17 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net>
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
18 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
19 * This program is free software; you can redistribute it and/or modify
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
20 * it under the terms of the GNU General Public License as published by
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
21 * the Free Software Foundation; either version 2 of the License, or
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
22 * (at your option) any later version.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
23 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
24 * This program is distributed in the hope that it will be useful,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
27 * GNU General Public License for more details.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
28 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
29 * You should have received a copy of the GNU General Public License
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
30 * along with this program; if not, write to the Free Software
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
32 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
33
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
34 #define PURPLE_PLUGIN
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
35
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
36 #include "message.h"
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
37 #include "persist.h"
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
38 #include "myspace.h"
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
39
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
40
17960
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
41 /* Loosely based on Miranda plugin by Scott Ellis, formatting.cpp,
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
42 * https://server.scottellis.com.au/websvn/filedetails.php?repname=Miranda+Plugins&path=%2FMySpace%2Fformatting.cpp&rev=0&sc=0 */
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
43
17960
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
44 /* The names in in emoticon_names (for <i n=whatever>) map to corresponding
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
45 * entries in emoticon_symbols (for the ASCII representation of the emoticon).
18893
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
46 *
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
47 * Multiple emoticon symbols in Pidgin can map to one name. List the
17960
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
48 * canonical form, as inserted by the "Smile!" dialog, first. For example,
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
49 * :) comes before :-), because although both are recognized as 'happy',
18894
daedc9647341 Convert password to lowercase using g_utf8_strdown(), better because
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18893
diff changeset
50 * the first is inserted by the smiley button.
17960
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
51 *
f61047bae7c0 Recognize non-canonical emoticon forms from Pidgin, and turn them into
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17959
diff changeset
52 * Note that symbols are case-sensitive in Pidgin -- :-X is not :-x. */
18893
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
53 static struct MSIM_EMOTICON
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
54 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
55 gchar *name;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
56 gchar *symbol;
18893
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
57 } msim_emoticons[] = {
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
58 /* Unfortunately, this list duplicates much of the file
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
59 * pidgin/pidgin/pixmaps/emotes/default/22/default.theme.in, because
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
60 * that file is part of Pidgin, but we're part of libpurple.
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
61 */
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
62 { "bigsmile", ":D" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
63 { "bigsmile", ":-D" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
64 { "devil", "}:)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
65 { "frazzled", ":Z" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
66 { "geek", "B)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
67 { "googles", "%)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
68 { "growl", ":E" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
69 { "laugh", ":))" }, /* Must be before ':)' */
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
70 { "happy", ":)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
71 { "happy", ":-)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
72 { "happi", ":)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
73 { "heart", ":X" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
74 { "mohawk", "-:" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
75 { "mad", "X(" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
76 { "messed", "X)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
77 { "nerd", "Q)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
78 { "oops", ":G" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
79 { "pirate", "P)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
80 { "scared", ":O" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
81 { "sidefrown", ":{" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
82 { "sinister", ":B" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
83 { "smirk", ":," },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
84 { "straight", ":|" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
85 { "tongue", ":P" },
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
86 { "tongue", ":p" },
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
87 { "tongy", ":P" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
88 { "upset", "B|" },
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
89 { "wink", ";-)" },
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
90 { "wink", ";)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
91 { "winc", ";)" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
92 { "worried", ":[" },
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
93 { "kiss", ":x" },
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
94 { NULL, NULL }
18893
cd90423c0a88 Use an array of structs instead of parallel arrays for the emoticon
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18892
diff changeset
95 };
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
96
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
97 /* Internal functions */
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
98 static void msim_send_zap(PurpleBlistNode *node, gpointer zap_num_ptr);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
99
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
100 #ifdef MSIM_DEBUG_MSG
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
101 static void print_hash_item(gpointer key, gpointer value, gpointer user_data);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
102 #endif
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
103
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
104 static int msim_send_really_raw(PurpleConnection *gc, const char *buf,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
105 int total_bytes);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
106 static gboolean msim_login_challenge(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
107 static const gchar *msim_compute_login_response(
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
108 const gchar nonce[2 * NONCE_SIZE], const gchar *email,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
109 const gchar *password, guint *response_len);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
110 static gboolean msim_send_bm(MsimSession *session, const gchar *who,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
111 const gchar *text, int type);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
112
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
113 static guint msim_point_to_purple_size(MsimSession *session, guint point);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
114 static guint msim_purple_size_to_point(MsimSession *session, guint size);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
115 static guint msim_height_to_point(MsimSession *session, guint height);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
116 static guint msim_point_to_height(MsimSession *session, guint point);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
117
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
118 static void msim_unrecognized(MsimSession *session, MsimMessage *msg, gchar *note);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
119
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
120 static void msim_markup_tag_to_html(MsimSession *, xmlnode *root,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
121 gchar **begin, gchar **end);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
122 static void html_tag_to_msim_markup(MsimSession *, xmlnode *root,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
123 gchar **begin, gchar **end);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
124 static gchar *msim_convert_xml(MsimSession *, const gchar *raw,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
125 MSIM_XMLNODE_CONVERT f);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
126 static gchar *msim_convert_smileys_to_markup(gchar *before);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
127
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
128 /* High-level msim markup <=> html conversion functions. */
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
129 static gchar *msim_markup_to_html(MsimSession *, const gchar *raw);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
130 static gchar *html_to_msim_markup(MsimSession *, const gchar *raw);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
131
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
132 static gboolean msim_incoming_bm_record_cv(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
133 MsimMessage *msg);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
134 static gboolean msim_incoming_bm(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
135 static gboolean msim_incoming_status(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
136 static gboolean msim_incoming_im(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
137 static gboolean msim_incoming_zap(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
138 static gboolean msim_incoming_action(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
139 static gboolean msim_incoming_media(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
140 static gboolean msim_incoming_unofficial_client(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
141 MsimMessage *msg);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
142
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
143 #ifdef MSIM_SEND_CLIENT_VERSION
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
144 static gboolean msim_send_unofficial_client(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
145 gchar *username);
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
146 #endif
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
147
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
148 static void msim_get_info_cb(MsimSession *session, MsimMessage *userinfo, gpointer data);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
149
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
150 static void msim_set_status_code(MsimSession *session, guint code,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
151 gchar *statstring);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
152
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
153 static void msim_store_buddy_info_each(gpointer key, gpointer value,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
154 gpointer user_data);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
155 static gboolean msim_store_buddy_info(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
156 static gboolean msim_process_server_info(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
157 MsimMessage *msg);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
158 static gboolean msim_web_challenge(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
159 static gboolean msim_process_reply(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
160
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
161 static gboolean msim_preprocess_incoming(MsimSession *session,MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
162
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
163 #ifdef MSIM_USE_KEEPALIVE
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
164 static gboolean msim_check_alive(gpointer data);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
165 #endif
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
166
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
167 static gboolean msim_we_are_logged_on(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
168
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
169 static gboolean msim_process(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
170
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
171 static MsimMessage *msim_do_postprocessing(MsimMessage *msg,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
172 const gchar *uid_field_name, const gchar *uid_before, guint uid);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
173 static void msim_postprocess_outgoing_cb(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
174 MsimMessage *userinfo, gpointer data);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
175 static gboolean msim_postprocess_outgoing(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
176 MsimMessage *msg, const gchar *username, const gchar *uid_field_name,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
177 const gchar *uid_before);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
178
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
179 static gboolean msim_error(MsimSession *session, MsimMessage *msg);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
180
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
181 static void msim_check_inbox_cb(MsimSession *session, MsimMessage *userinfo,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
182 gpointer data);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
183 static gboolean msim_check_inbox(gpointer data);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
184
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
185 static void msim_input_cb(gpointer gc_uncasted, gint source,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
186 PurpleInputCondition cond);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
187
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
188 static guint msim_new_reply_callback(MsimSession *session,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
189 MSIM_USER_LOOKUP_CB cb, gpointer data);
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
190
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
191 static void msim_connect_cb(gpointer data, gint source,
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
192 const gchar *error_message);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
193
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
194 static gboolean msim_is_userid(const gchar *user);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
195 static gboolean msim_is_email(const gchar *user);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
196
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
197 static void msim_lookup_user(MsimSession *session, const gchar *user,
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
198 MSIM_USER_LOOKUP_CB cb, gpointer data);
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
199
18892
138e9be2f917 Always use our own msim_round() instead of checking for C99's round and using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18890
diff changeset
200 double msim_round(double round);
17971
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
201
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
202 /* round is part of C99, but sometimes is unavailable before then.
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
203 * Based on http://forums.belution.com/en/cpp/000/050/13.shtml
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
204 */
18892
138e9be2f917 Always use our own msim_round() instead of checking for C99's round and using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18890
diff changeset
205 double msim_round(double value)
17971
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
206 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
207 if (value < 0) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
208 return -(floor(-value + 0.5));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
209 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
210 return floor( value + 0.5);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
211 }
17971
13a4f57f53a9 Implement round() if it is not available, using floor().
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17969
diff changeset
212 }
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
213
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
214 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
215 * Load the plugin.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
216 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
217 gboolean
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
218 msim_load(PurplePlugin *plugin)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
219 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
220 /* If compiled to use RC4 from libpurple, check if it is really there. */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
221 if (!purple_ciphers_find_cipher("rc4")) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
222 purple_debug_error("msim", "rc4 not in libpurple, but it is required - not loading MySpaceIM plugin!\n");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
223 purple_notify_error(plugin, _("Missing Cipher"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
224 _("The RC4 cipher could not be found"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
225 _("Upgrade "
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
226 "to a libpurple with RC4 support (>= 2.0.1). MySpaceIM "
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
227 "plugin will not be loaded."));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
228 return FALSE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
229 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
230 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
231 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
232
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
233 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
234 * Get possible user status types. Based on mockprpl.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
235 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
236 * @return GList of status types.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
237 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
238 GList *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
239 msim_status_types(PurpleAccount *acct)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
240 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
241 GList *types;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
242 PurpleStatusType *status;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
243
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
244 purple_debug_info("myspace", "returning status types\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
245
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
246 types = NULL;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
247
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
248 /* Statuses are almost all the same. Define a macro to reduce code repetition. */
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
249 #define _MSIM_ADD_NEW_STATUS(prim) status = \
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
250 purple_status_type_new_with_attrs( \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
251 prim, /* PurpleStatusPrimitive */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
252 NULL, /* id - use default */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
253 NULL, /* name - use default */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
254 TRUE, /* savable */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
255 TRUE, /* user_settable */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
256 FALSE, /* not independent */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
257 \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
258 /* Attributes - each status can have a message. */ \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
259 "message", \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
260 _("Message"), \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
261 purple_value_new(PURPLE_TYPE_STRING), \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
262 NULL); \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
263 \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
264 \
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
265 types = g_list_append(types, status)
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
266
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
267
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
268 _MSIM_ADD_NEW_STATUS(PURPLE_STATUS_AVAILABLE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
269 _MSIM_ADD_NEW_STATUS(PURPLE_STATUS_AWAY);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
270 _MSIM_ADD_NEW_STATUS(PURPLE_STATUS_OFFLINE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
271 _MSIM_ADD_NEW_STATUS(PURPLE_STATUS_INVISIBLE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
272
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
273
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
274 return types;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
275 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
276
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
277 /** Zap someone. Callback from msim_blist_node_menu zap menu. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
278 static void
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
279 msim_send_zap(PurpleBlistNode *node, gpointer zap_num_ptr)
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
280 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
281 PurpleBuddy *buddy;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
282 PurpleConnection *gc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
283 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
284 gchar *username, *zap_string, *zap_text;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
285 guint zap;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
286 const gchar *zap_gerund[10];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
287
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
288 if (!PURPLE_BLIST_NODE_IS_BUDDY(node)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
289 /* Only know about buddies for now. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
290 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
291 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
292
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
293 zap_gerund[0] = _("Zapping");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
294 zap_gerund[1] = _("Whacking");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
295 zap_gerund[2] = _("Torching");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
296 zap_gerund[3] = _("Smooching");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
297 zap_gerund[4] = _("Hugging");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
298 zap_gerund[5] = _("Bslapping");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
299 zap_gerund[6] = _("Goosing");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
300 zap_gerund[7] = _("Hi-fiving");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
301 zap_gerund[8] = _("Punking");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
302 zap_gerund[9] = _("Raspberry'ing");
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
303
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
304 g_return_if_fail(PURPLE_BLIST_NODE_IS_BUDDY(node));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
305
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
306 buddy = (PurpleBuddy *)node;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
307 gc = purple_account_get_connection(buddy->account);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
308 g_return_if_fail(gc != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
309
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
310 session = (MsimSession *)(gc->proto_data);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
311 g_return_if_fail(session != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
312
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
313 username = buddy->name;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
314 g_return_if_fail(username != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
315
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
316 zap = GPOINTER_TO_INT(zap_num_ptr);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
317 zap_string = g_strdup_printf("!!!ZAP_SEND!!!=RTE_BTN_ZAPS_%d", zap);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
318 zap_text = g_strdup_printf("*** %s! ***", zap_gerund[zap]);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
319
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
320 serv_got_im(session->gc, username, zap_text,
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
321 PURPLE_MESSAGE_SEND | PURPLE_MESSAGE_SYSTEM, time(NULL));
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
322
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
323 if (!msim_send_bm(session, username, zap_string, MSIM_BM_ACTION)) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
324 purple_debug_info("msim_send_zap", "msim_send_bm failed: zapping %s with %s",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
325 username, zap_string);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
326 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
327
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
328 g_free(zap_string);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
329 g_free(zap_text);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
330 return;
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
331 }
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
332
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
333
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
334 /** Return menu, if any, for a buddy list node. */
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
335 GList *
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
336 msim_blist_node_menu(PurpleBlistNode *node)
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
337 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
338 GList *menu, *zap_menu;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
339 PurpleMenuAction *act;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
340 const gchar *zap_names[10];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
341 guint i;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
342
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
343 if (!PURPLE_BLIST_NODE_IS_BUDDY(node)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
344 /* Only know about buddies for now. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
345 return NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
346 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
347
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
348 /* Names from official client. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
349 zap_names[0] = _("zap");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
350 zap_names[1] = _("whack");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
351 zap_names[2] = _("torch");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
352 zap_names[3] = _("smooch");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
353 zap_names[4] = _("hug");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
354 zap_names[5] = _("bslap");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
355 zap_names[6] = _("goose");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
356 zap_names[7] = _("hi-five");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
357 zap_names[8] = _("punk'd");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
358 zap_names[9] = _("raspberry");
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
359
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
360 menu = zap_menu = NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
361
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
362 /* TODO: move to / command, or better yet new API */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
363 for (i = 0; i < sizeof(zap_names) / sizeof(zap_names[0]); ++i) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
364 act = purple_menu_action_new(zap_names[i], PURPLE_CALLBACK(msim_send_zap),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
365 GUINT_TO_POINTER(i), NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
366 zap_menu = g_list_append(zap_menu, act);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
367 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
368
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
369 act = purple_menu_action_new(_("Zap"), NULL, NULL, zap_menu);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
370 menu = g_list_append(menu, act);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
371
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
372 return menu;
17963
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
373 }
8305709dd0b9 Allow sending zaps through buddy list menu.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17962
diff changeset
374
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
375 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
376 * Return the icon name for a buddy and account.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
377 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
378 * @param acct The account to find the icon for, or NULL for protocol icon.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
379 * @param buddy The buddy to find the icon for, or NULL for the account icon.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
380 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
381 * @return The base icon name string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
382 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
383 const gchar *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
384 msim_list_icon(PurpleAccount *acct, PurpleBuddy *buddy)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
385 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
386 /* Use a MySpace icon submitted by hbons at
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
387 * http://developer.pidgin.im/wiki/MySpaceIM. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
388 return "myspace";
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
389 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
390
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
391 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
392 * Replace 'old' with 'new' in 'str'.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
393 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
394 * @param str The original string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
395 * @param old The substring of 'str' to replace.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
396 * @param new The replacement for 'old' within 'str'.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
397 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
398 * @return A _new_ string, based on 'str', with 'old' replaced
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
399 * by 'new'. Must be g_free()'d by caller.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
400 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
401 * This string replace method is based on
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
402 * http://mail.gnome.org/archives/gtk-app-devel-list/2000-July/msg00201.html
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
403 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
404 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
405 gchar *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
406 str_replace(const gchar *str, const gchar *old, const gchar *new)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
407 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
408 gchar **items;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
409 gchar *ret;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
410
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
411 items = g_strsplit(str, old, -1);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
412 ret = g_strjoinv(new, items);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
413 g_free(items);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
414 return ret;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
415 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
416
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
417 #ifdef MSIM_DEBUG_MSG
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
418 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
419 print_hash_item(gpointer key, gpointer value, gpointer user_data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
420 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
421 purple_debug_info("msim", "%s=%s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
422 key ? (gchar *)key : "(NULL)",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
423 value ? (gchar *)value : "(NULL)");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
424 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
425 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
426
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
427 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
428 * Send raw data (given as a NUL-terminated string) to the server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
429 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
430 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
431 * @param msg The raw data to send, in a NUL-terminated string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
432 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
433 * @return TRUE if succeeded, FALSE if not.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
434 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
435 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
436 gboolean
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
437 msim_send_raw(MsimSession *session, const gchar *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
438 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
439 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
440 g_return_val_if_fail(msg != NULL, FALSE);
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
441
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
442 purple_debug_info("msim", "msim_send_raw: writing <%s>\n", msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
443
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
444 return msim_send_really_raw(session->gc, msg, strlen(msg)) ==
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
445 strlen(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
446 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
447
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
448 /** Send raw data to the server, possibly with embedded NULs.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
449 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
450 * Used in prpl_info struct, so that plugins can have the most possible
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
451 * control of what is sent over the connection. Inside this prpl,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
452 * msim_send_raw() is used, since it sends NUL-terminated strings (easier).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
453 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
454 * @param gc PurpleConnection
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
455 * @param buf Buffer to send
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
456 * @param total_bytes Size of buffer to send
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
457 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
458 * @return Bytes successfully sent, or -1 on error.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
459 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
460 static int
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
461 msim_send_really_raw(PurpleConnection *gc, const char *buf, int total_bytes)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
462 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
463 int total_bytes_sent;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
464 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
465
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
466 g_return_val_if_fail(gc != NULL, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
467 g_return_val_if_fail(buf != NULL, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
468 g_return_val_if_fail(total_bytes >= 0, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
469
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
470 session = (MsimSession *)(gc->proto_data);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
471
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
472 g_return_val_if_fail(MSIM_SESSION_VALID(session), -1);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
473
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
474 /* Loop until all data is sent, or a failure occurs. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
475 total_bytes_sent = 0;
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
476 do {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
477 int bytes_sent;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
478
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
479 bytes_sent = send(session->fd, buf + total_bytes_sent,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
480 total_bytes - total_bytes_sent, 0);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
481
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
482 if (bytes_sent < 0) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
483 purple_debug_info("msim", "msim_send_raw(%s): send() failed: %s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
484 buf, g_strerror(errno));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
485 return total_bytes_sent;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
486 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
487 total_bytes_sent += bytes_sent;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
488
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
489 } while(total_bytes_sent < total_bytes);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
490
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
491 return total_bytes_sent;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
492 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
493
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
494
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
495 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
496 * Start logging in to the MSIM servers.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
497 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
498 * @param acct Account information to use to login.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
499 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
500 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
501 msim_login(PurpleAccount *acct)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
502 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
503 PurpleConnection *gc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
504 const gchar *host;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
505 int port;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
506
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
507 g_return_if_fail(acct != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
508 g_return_if_fail(acct->username != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
509
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
510 purple_debug_info("msim", "logging in %s\n", acct->username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
511
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
512 gc = purple_account_get_connection(acct);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
513 gc->proto_data = msim_session_new(acct);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
514 gc->flags |= PURPLE_CONNECTION_HTML | PURPLE_CONNECTION_NO_URLDESC;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
515
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
516 /* Passwords are limited in length. */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
517 if (strlen(acct->password) > MSIM_MAX_PASSWORD_LENGTH) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
518 gchar *str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
519
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
520 str = g_strdup_printf(
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
521 _("Sorry, passwords over %d characters in length (yours is "
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
522 "%d) are not supported by MySpace."),
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
523 MSIM_MAX_PASSWORD_LENGTH,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
524 (int)strlen(acct->password));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
525
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
526 /* Notify an error message also, because this is important! */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
527 purple_notify_error(acct, g_strdup(_("MySpaceIM Error")), str, NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
528
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
529 purple_connection_error(gc, str);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
530
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
531 g_free(str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
532 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
533
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
534 /* 1. connect to server */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
535 purple_connection_update_progress(gc, _("Connecting"),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
536 0, /* which connection step this is */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
537 4); /* total number of steps */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
538
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
539 host = purple_account_get_string(acct, "server", MSIM_SERVER);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
540 port = purple_account_get_int(acct, "port", MSIM_PORT);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
541
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
542 /* From purple.sf.net/api:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
543 * """Note that this function name can be misleading--although it is called
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
544 * "proxy connect," it is used for establishing any outgoing TCP connection,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
545 * whether through a proxy or not.""" */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
546
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
547 /* Calls msim_connect_cb when connected. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
548 if (!purple_proxy_connect(gc, acct, host, port, msim_connect_cb, gc)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
549 /* TODO: try other ports if in auto mode, then save
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
550 * working port and try that first next time. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
551 purple_connection_error(gc, _("Couldn't create socket"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
552 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
553 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
554 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
555
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
556 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
557 * Process a login challenge, sending a response.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
558 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
559 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
560 * @param msg Login challenge message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
561 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
562 * @return TRUE if successful, FALSE if not
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
563 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
564 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
565 msim_login_challenge(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
566 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
567 PurpleAccount *account;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
568 const gchar *response;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
569 guint response_len;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
570 gchar *nc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
571 gsize nc_len;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
572
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
573 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
574 g_return_val_if_fail(msg != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
575
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
576 g_return_val_if_fail(msim_msg_get_binary(msg, "nc", &nc, &nc_len), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
577
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
578 account = session->account;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
579
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
580 g_return_val_if_fail(account != NULL, FALSE);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
581
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
582 purple_connection_update_progress(session->gc, _("Reading challenge"), 1, 4);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
583
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
584 purple_debug_info("msim", "nc is %d bytes, decoded\n", nc_len);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
585
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
586 if (nc_len != MSIM_AUTH_CHALLENGE_LENGTH) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
587 purple_debug_info("msim", "bad nc length: %x != 0x%x\n", nc_len, MSIM_AUTH_CHALLENGE_LENGTH);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
588 purple_connection_error(session->gc, _("Unexpected challenge length from server"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
589 return FALSE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
590 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
591
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
592 purple_connection_update_progress(session->gc, _("Logging in"), 2, 4);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
593
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
594 response_len = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
595 response = msim_compute_login_response(nc, account->username, account->password, &response_len);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
596
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
597 g_free(nc);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
598
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
599 return msim_send(session,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
600 "login2", MSIM_TYPE_INTEGER, MSIM_AUTH_ALGORITHM,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
601 /* This is actually user's email address. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
602 "username", MSIM_TYPE_STRING, g_strdup(account->username),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
603 /* GString and gchar * response will be freed in msim_msg_free() in msim_send(). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
604 "response", MSIM_TYPE_BINARY, g_string_new_len(response, response_len),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
605 "clientver", MSIM_TYPE_INTEGER, MSIM_CLIENT_VERSION,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
606 "langid", MSIM_TYPE_INTEGER, MSIM_LANGUAGE_ID_ENGLISH,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
607 "imlang", MSIM_TYPE_STRING, g_strdup(MSIM_LANGUAGE_NAME_ENGLISH),
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
608 "reconn", MSIM_TYPE_INTEGER, 0,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
609 "status", MSIM_TYPE_INTEGER, 100,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
610 "id", MSIM_TYPE_INTEGER, 1,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
611 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
612 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
613
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
614 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
615 * Compute the base64'd login challenge response based on username, password, nonce, and IPs.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
616 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
617 * @param nonce The base64 encoded nonce ('nc') field from the server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
618 * @param email User's email address (used as login name).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
619 * @param password User's cleartext password.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
620 * @param response_len Will be written with response length.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
621 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
622 * @return Binary login challenge response, ready to send to the server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
623 * Must be g_free()'d when finished. NULL if error.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
624 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
625 static const gchar *
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
626 msim_compute_login_response(const gchar nonce[2 * NONCE_SIZE],
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
627 const gchar *email, const gchar *password, guint *response_len)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
628 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
629 PurpleCipherContext *key_context;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
630 PurpleCipher *sha1;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
631 PurpleCipherContext *rc4;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
632
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
633 guchar hash_pw[HASH_SIZE];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
634 guchar key[HASH_SIZE];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
635 gchar *password_utf16le, *password_utf8_lc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
636 guchar *data;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
637 guchar *data_out;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
638 size_t data_len, data_out_len;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
639 gsize conv_bytes_read, conv_bytes_written;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
640 GError *conv_error;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
641 #ifdef MSIM_DEBUG_LOGIN_CHALLENGE
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
642 int i;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
643 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
644
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
645 g_return_val_if_fail(nonce != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
646 g_return_val_if_fail(email != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
647 g_return_val_if_fail(password != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
648 g_return_val_if_fail(response_len != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
649
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
650 /* Convert password to lowercase (required for passwords containing
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
651 * uppercase characters). MySpace passwords are lowercase,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
652 * see ticket #2066. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
653 password_utf8_lc = g_utf8_strdown(password, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
654
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
655 /* Convert ASCII password to UTF16 little endian */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
656 purple_debug_info("msim", "converting password to UTF-16LE\n");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
657 conv_error = NULL;
18894
daedc9647341 Convert password to lowercase using g_utf8_strdown(), better because
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18893
diff changeset
658 password_utf16le = g_convert(password_utf8_lc, -1, "UTF-16LE", "UTF-8",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
659 &conv_bytes_read, &conv_bytes_written, &conv_error);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
660 g_free(password_utf8_lc);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
661
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
662 g_return_val_if_fail(conv_bytes_read == strlen(password), NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
663
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
664 if (conv_error != NULL) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
665 purple_debug_error("msim",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
666 "g_convert password UTF8->UTF16LE failed: %s",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
667 conv_error->message);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
668 g_error_free(conv_error);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
669 return NULL;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
670 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
671
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
672 /* Compute password hash */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
673 purple_cipher_digest_region("sha1", (guchar *)password_utf16le,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
674 conv_bytes_written, sizeof(hash_pw), hash_pw, NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
675 g_free(password_utf16le);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
676
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
677 #ifdef MSIM_DEBUG_LOGIN_CHALLENGE
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
678 purple_debug_info("msim", "pwhash = ");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
679 for (i = 0; i < sizeof(hash_pw); i++)
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
680 purple_debug_info("msim", "%.2x ", hash_pw[i]);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
681 purple_debug_info("msim", "\n");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
682 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
683
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
684 /* key = sha1(sha1(pw) + nonce2) */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
685 sha1 = purple_ciphers_find_cipher("sha1");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
686 key_context = purple_cipher_context_new(sha1, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
687 purple_cipher_context_append(key_context, hash_pw, HASH_SIZE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
688 purple_cipher_context_append(key_context, (guchar *)(nonce + NONCE_SIZE), NONCE_SIZE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
689 purple_cipher_context_digest(key_context, sizeof(key), key, NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
690
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
691 #ifdef MSIM_DEBUG_LOGIN_CHALLENGE
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
692 purple_debug_info("msim", "key = ");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
693 for (i = 0; i < sizeof(key); i++) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
694 purple_debug_info("msim", "%.2x ", key[i]);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
695 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
696 purple_debug_info("msim", "\n");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
697 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
698
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
699 rc4 = purple_cipher_context_new_by_name("rc4", NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
700
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
701 /* Note: 'key' variable is 0x14 bytes (from SHA-1 hash),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
702 * but only first 0x10 used for the RC4 key. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
703 purple_cipher_context_set_option(rc4, "key_len", (gpointer)0x10);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
704 purple_cipher_context_set_key(rc4, key);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
705
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
706 /* TODO: obtain IPs of network interfaces */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
707
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
708 /* rc4 encrypt:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
709 * nonce1+email+IP list */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
710
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
711 data_len = NONCE_SIZE + strlen(email) + MSIM_LOGIN_IP_LIST_LEN;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
712 data = g_new0(guchar, data_len);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
713 memcpy(data, nonce, NONCE_SIZE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
714 memcpy(data + NONCE_SIZE, email, strlen(email));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
715 memcpy(data + NONCE_SIZE + strlen(email), MSIM_LOGIN_IP_LIST, MSIM_LOGIN_IP_LIST_LEN);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
716
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
717 data_out = g_new0(guchar, data_len);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
718
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
719 purple_cipher_context_encrypt(rc4, (const guchar *)data,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
720 data_len, data_out, &data_out_len);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
721 purple_cipher_context_destroy(rc4);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
722
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
723 g_assert(data_out_len == data_len);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
724
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
725 #ifdef MSIM_DEBUG_LOGIN_CHALLENGE
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
726 purple_debug_info("msim", "response=<%s>\n", data_out);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
727 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
728
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
729 *response_len = data_out_len;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
730
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
731 return (const gchar *)data_out;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
732 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
733
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
734 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
735 * Schedule an IM to be sent once the user ID is looked up.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
736 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
737 * @param gc Connection.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
738 * @param who A user id, email, or username to send the message to.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
739 * @param message Instant message text to send.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
740 * @param flags Flags.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
741 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
742 * @return 1 if successful or postponed, -1 if failed
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
743 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
744 * Allows sending to a user by username, email address, or userid. If
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
745 * a username or email address is given, the userid must be looked up.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
746 * This function does that by calling msim_postprocess_outgoing().
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
747 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
748 int
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
749 msim_send_im(PurpleConnection *gc, const gchar *who, const gchar *message,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
750 PurpleMessageFlags flags)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
751 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
752 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
753 gchar *message_msim;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
754 int rc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
755
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
756 g_return_val_if_fail(gc != NULL, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
757 g_return_val_if_fail(who != NULL, -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
758 g_return_val_if_fail(message != NULL, -1);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
759
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
760 /* 'flags' has many options, not used here. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
761
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
762 session = (MsimSession *)gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
763
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
764 g_return_val_if_fail(MSIM_SESSION_VALID(session), -1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
765
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
766 message_msim = html_to_msim_markup(session, message);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
767
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
768 if (msim_send_bm(session, who, message_msim, MSIM_BM_INSTANT)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
769 /* Return 1 to have Purple show this IM as being sent, 0 to not. I always
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
770 * return 1 even if the message could not be sent, since I don't know if
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
771 * it has failed yet--because the IM is only sent after the userid is
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
772 * retrieved from the server (which happens after this function returns).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
773 */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
774 /* TODO: maybe if message is delayed, don't echo to conv window,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
775 * but do echo it to conv window manually once it is actually
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
776 * sent? Would be complicated. */
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
777 rc = 1;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
778 } else {
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
779 rc = -1;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
780 }
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
781
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
782 g_free(message_msim);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
783
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
784 /*
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
785 * In MySpace, you login with your email address, but don't talk to other
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
786 * users using their email address. So there is currently an asymmetry in the
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
787 * IM windows when using this plugin:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
788 *
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
789 * you@example.com: hello
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
790 * some_other_user: what's going on?
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
791 * you@example.com: just coding a prpl
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
792 *
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
793 * TODO: Make the sent IM's appear as from the user's username, instead of
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
794 * their email address. Purple uses the login (in MSIM, the email)--change this.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
795 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
796
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
797 return rc;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
798 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
799
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
800 /** Send a buddy message of a given type.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
801 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
802 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
803 * @param who Username to send message to.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
804 * @param text Message text to send. Not freed; will be copied.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
805 * @param type A MSIM_BM_* constant.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
806 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
807 * @return TRUE if success, FALSE if fail.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
808 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
809 * Buddy messages ('bm') include instant messages, action messages, status messages, etc.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
810 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
811 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
812 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
813 msim_send_bm(MsimSession *session, const gchar *who, const gchar *text,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
814 int type)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
815 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
816 gboolean rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
817 MsimMessage *msg;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
818 const gchar *from_username;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
819
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
820 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
821 g_return_val_if_fail(who != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
822 g_return_val_if_fail(text != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
823
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
824 from_username = session->account->username;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
825
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
826 g_return_val_if_fail(from_username != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
827
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
828 purple_debug_info("msim", "sending %d message from %s to %s: %s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
829 type, from_username, who, text);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
830
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
831 msg = msim_msg_new(
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
832 "bm", MSIM_TYPE_INTEGER, GUINT_TO_POINTER(type),
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
833 "sesskey", MSIM_TYPE_INTEGER, GUINT_TO_POINTER(session->sesskey),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
834 /* 't' will be inserted here */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
835 "cv", MSIM_TYPE_INTEGER, GUINT_TO_POINTER(MSIM_CLIENT_VERSION),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
836 "msg", MSIM_TYPE_STRING, g_strdup(text),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
837 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
838
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
839 rc = msim_postprocess_outgoing(session, msg, who, "t", "cv");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
840
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
841 msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
842
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
843 return rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
844 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
845
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
846 /* Indexes of this array + 1 map HTML font size to scale of normal font size. *
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
847 * Based on _point_sizes from libpurple/gtkimhtml.c
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
848 * 1 2 3 4 5 6 7 */
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
849 static gdouble _font_scale[] = { .85, .95, 1, 1.2, 1.44, 1.728, 2.0736 };
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
850
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
851 #define MAX_FONT_SIZE 7 /* Purple maximum font size */
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
852 #define POINTS_PER_INCH 72 /* How many pt's in an inch */
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
853
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
854 /** Convert typographical font point size to HTML font size.
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
855 * Based on libpurple/gtkimhtml.c */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
856 static guint
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
857 msim_point_to_purple_size(MsimSession *session, guint point)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
858 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
859 guint size, this_point, base;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
860 gdouble scale;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
861
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
862 base = purple_account_get_int(session->account, "base_font_size", MSIM_BASE_FONT_POINT_SIZE);
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
863
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
864 for (size = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
865 size < sizeof(_font_scale) / sizeof(_font_scale[0]);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
866 ++size) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
867 scale = _font_scale[CLAMP(size, 1, MAX_FONT_SIZE) - 1];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
868 this_point = (guint)msim_round(scale * base);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
869
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
870 if (this_point >= point) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
871 purple_debug_info("msim", "msim_point_to_purple_size: %d pt -> size=%d\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
872 point, size);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
873 return size;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
874 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
875 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
876
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
877 /* No HTML font size was this big; return largest possible. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
878 return this_point;
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
879 }
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
880
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
881 /** Convert HTML font size to point size. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
882 static guint
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
883 msim_purple_size_to_point(MsimSession *session, guint size)
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
884 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
885 gdouble scale;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
886 guint point;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
887 guint base;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
888
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
889 scale = _font_scale[CLAMP(size, 1, MAX_FONT_SIZE) - 1];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
890
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
891 base = purple_account_get_int(session->account, "base_font_size", MSIM_BASE_FONT_POINT_SIZE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
892
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
893 point = (guint)msim_round(scale * base);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
894
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
895 purple_debug_info("msim", "msim_purple_size_to_point: size=%d -> %d pt\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
896 size, point);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
897
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
898 return point;
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
899 }
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
900
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
901 /** Convert a msim markup font pixel height to the more usual point size, for incoming messages. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
902 static guint
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
903 msim_height_to_point(MsimSession *session, guint height)
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
904 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
905 guint dpi;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
906
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
907 dpi = purple_account_get_int(session->account, "port", MSIM_DEFAULT_DPI);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
908
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
909 return (guint)msim_round((POINTS_PER_INCH * 1. / dpi) * height);
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
910
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
911 /* See also: libpurple/protocols/bonjour/jabber.c
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
912 * _font_size_ichat_to_purple */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
913 }
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
914
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
915 /** Convert point size to msim pixel height font size specification, for outgoing messages. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
916 static guint
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
917 msim_point_to_height(MsimSession *session, guint point)
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
918 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
919 guint dpi;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
920
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
921 dpi = purple_account_get_int(session->account, "port", MSIM_DEFAULT_DPI);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
922
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
923 return (guint)msim_round((dpi * 1. / POINTS_PER_INCH) * point);
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
924 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
925
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
926 /** Convert the msim markup <f> (font) tag into HTML. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
927 static void
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
928 msim_markup_f_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
929 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
930 const gchar *face, *height_str, *decor_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
931 GString *gs_end, *gs_begin;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
932 guint decor, height;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
933
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
934 face = xmlnode_get_attrib(root, "f");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
935 height_str = xmlnode_get_attrib(root, "h");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
936 decor_str = xmlnode_get_attrib(root, "s");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
937
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
938 if (height_str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
939 height = atol(height_str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
940 } else {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
941 height = 12;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
942 }
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
943
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
944 if (decor_str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
945 decor = atol(decor_str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
946 } else {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
947 decor = 0;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
948 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
949
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
950 gs_begin = g_string_new("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
951 /* TODO: get font size working */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
952 if (height && !face) {
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
953 g_string_printf(gs_begin, "<font size='%d'>",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
954 msim_point_to_purple_size(session, msim_height_to_point(session, height)));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
955 } else if (height && face) {
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
956 g_string_printf(gs_begin, "<font face='%s' size='%d'>", face,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
957 msim_point_to_purple_size(session, msim_height_to_point(session, height)));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
958 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
959 g_string_printf(gs_begin, "<font>");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
960 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
961
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
962 /* No support for font-size CSS? */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
963 /* g_string_printf(gs_begin, "<span style='font-family: %s; font-size: %dpt'>", face,
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
964 msim_height_to_point(height)); */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
965
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
966 gs_end = g_string_new("</font>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
967
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
968 if (decor & MSIM_TEXT_BOLD) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
969 g_string_append(gs_begin, "<b>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
970 g_string_prepend(gs_end, "</b>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
971 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
972
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
973 if (decor & MSIM_TEXT_ITALIC) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
974 g_string_append(gs_begin, "<i>");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
975 g_string_append(gs_end, "</i>");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
976 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
977
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
978 if (decor & MSIM_TEXT_UNDERLINE) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
979 g_string_append(gs_begin, "<u>");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
980 g_string_append(gs_end, "</u>");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
981 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
982
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
983
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
984 *begin = gs_begin->str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
985 *end = gs_end->str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
986 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
987
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
988 /** Convert a msim markup color to a color suitable for libpurple.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
989 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
990 * @param msim Either a color name, or an rgb(x,y,z) code.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
991 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
992 * @return A new string, either a color name or #rrggbb code. Must g_free().
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
993 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
994 static char *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
995 msim_color_to_purple(const char *msim)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
996 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
997 guint red, green, blue;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
998
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
999 if (!msim) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1000 return g_strdup("black");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1001 }
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1002
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1003 if (sscanf(msim, "rgb(%d,%d,%d)", &red, &green, &blue) != 3) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1004 /* Color name. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1005 return g_strdup(msim);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1006 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1007 /* TODO: rgba (alpha). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1008
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1009 return g_strdup_printf("#%.2x%.2x%.2x", red, green, blue);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1010 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1011
18904
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1012 /** Convert the msim markup <a> (anchor) tag into HTML. */
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1013 static void
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1014 msim_markup_a_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1015 {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1016 const gchar *href;
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1017
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1018 href = xmlnode_get_attrib(root, "h");
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1019 if (!href) {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1020 href = "";
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1021 }
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1022
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1023 *begin = g_strdup_printf("<a href=\"%s\">%s", href, href);
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1024 *end = g_strdup("</a>");
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1025 }
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1026
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1027 /** Convert the msim markup <p> (paragraph) tag into HTML. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1028 static void
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1029 msim_markup_p_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1030 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1031 /* Just pass through unchanged.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1032 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1033 * Note: attributes currently aren't passed, if there are any. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1034 *begin = g_strdup("<p>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1035 *end = g_strdup("</p>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1036 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1037
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1038 /** Convert the msim markup <c> tag (text color) into HTML. TODO: Test */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1039 static void
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1040 msim_markup_c_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1041 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1042 const gchar *color;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1043 gchar *purple_color;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1044
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1045 color = xmlnode_get_attrib(root, "v");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1046 if (!color) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1047 purple_debug_info("msim", "msim_markup_c_to_html: <c> tag w/o v attr");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1048 *begin = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1049 *end = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1050 /* TODO: log as unrecognized */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1051 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1052 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1053
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1054 purple_color = msim_color_to_purple(color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1055
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1056 *begin = g_strdup_printf("<font color='%s'>", purple_color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1057
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1058 g_free(purple_color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1059
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1060 /* *begin = g_strdup_printf("<span style='color: %s'>", color); */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1061 *end = g_strdup("</font>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1062 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1063
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1064 /** Convert the msim markup <b> tag (background color) into HTML. TODO: Test */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1065 static void
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1066 msim_markup_b_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1067 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1068 const gchar *color;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1069 gchar *purple_color;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1070
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1071 color = xmlnode_get_attrib(root, "v");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1072 if (!color) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1073 *begin = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1074 *end = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1075 purple_debug_info("msim", "msim_markup_b_to_html: <b> w/o v attr");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1076 /* TODO: log as unrecognized. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1077 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1078 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1079
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1080 purple_color = msim_color_to_purple(color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1081
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1082 /* TODO: find out how to set background color. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1083 *begin = g_strdup_printf("<span style='background-color: %s'>",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1084 purple_color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1085 g_free(purple_color);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1086
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1087 *end = g_strdup("</p>");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1088 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1089
17956
60f40fc52aa4 Support emoticons on incoming messages, approximating MySpaceIM's smileys
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17955
diff changeset
1090 /** Convert the msim markup <i> tag (emoticon image) into HTML. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1091 static void
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1092 msim_markup_i_to_html(MsimSession *session, xmlnode *root, gchar **begin, gchar **end)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1093 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1094 const gchar *name;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1095 guint i;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1096 struct MSIM_EMOTICON *emote;
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1097
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1098 name = xmlnode_get_attrib(root, "n");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1099 if (!name) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1100 purple_debug_info("msim", "msim_markup_i_to_html: <i> w/o n");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1101 *begin = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1102 *end = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1103 /* TODO: log as unrecognized */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1104 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1105 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1106
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1107 /* Find and use canonical form of smiley symbol. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1108 for (i = 0; (emote = &msim_emoticons[i]) && emote->name != NULL; ++i) {
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1109 if (!strcmp(name, emote->name)) {
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1110 *begin = g_strdup(emote->symbol);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1111 *end = g_strdup("");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1112 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1113 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1114 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1115
18903
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1116 /* Couldn't find it, sorry. Try to degrade gracefully. */
3159f259bbe4 Support all emoticons used in the official MySpaceIM client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18899
diff changeset
1117 *begin = g_strdup_printf("**%s**", name);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1118 *end = g_strdup("");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1119 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1120
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1121 /** Convert an individual msim markup tag to HTML. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1122 static void
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1123 msim_markup_tag_to_html(MsimSession *session, xmlnode *root, gchar **begin,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1124 gchar **end)
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1125 {
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1126 if (!strcmp(root->name, "f")) {
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1127 msim_markup_f_to_html(session, root, begin, end);
18904
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1128 } else if (!strcmp(root->name, "a")) {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1129 msim_markup_a_to_html(session, root, begin, end);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1130 } else if (!strcmp(root->name, "p")) {
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1131 msim_markup_p_to_html(session, root, begin, end);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1132 } else if (!strcmp(root->name, "c")) {
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1133 msim_markup_c_to_html(session, root, begin, end);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1134 } else if (!strcmp(root->name, "b")) {
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1135 msim_markup_b_to_html(session, root, begin, end);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1136 } else if (!strcmp(root->name, "i")) {
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1137 msim_markup_i_to_html(session, root, begin, end);
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1138 } else {
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1139 purple_debug_info("msim", "msim_markup_tag_to_html: "
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1140 "unknown tag name=%s, ignoring",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1141 (root && root->name) ? root->name : "(NULL)");
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1142 *begin = g_strdup("");
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1143 *end = g_strdup("");
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1144 }
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1145 }
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1146
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1147 /** Convert an individual HTML tag to msim markup. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1148 static void
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1149 html_tag_to_msim_markup(MsimSession *session, xmlnode *root, gchar **begin,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1150 gchar **end)
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1151 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1152 /* TODO: Coalesce nested tags into one <f> tag!
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1153 * Currently, the 's' value will be overwritten when b/i/u is nested
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1154 * within another one, and only the inner-most formatting will be
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1155 * applied to the text. */
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1156 if (!strcmp(root->name, "root")) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1157 *begin = g_strdup("");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1158 *end = g_strdup("");
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1159 } else if (!strcmp(root->name, "b") || !strcmp(root->name, "B")) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1160 *begin = g_strdup_printf("<f s='%d'>", MSIM_TEXT_BOLD);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1161 *end = g_strdup("</f>");
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1162 } else if (!strcmp(root->name, "i") || !strcmp(root->name, "I")) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1163 *begin = g_strdup_printf("<f s='%d'>", MSIM_TEXT_ITALIC);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1164 *end = g_strdup("</f>");
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1165 } else if (!strcmp(root->name, "u") || !strcmp(root->name, "U")) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1166 *begin = g_strdup_printf("<f s='%d'>", MSIM_TEXT_UNDERLINE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1167 *end = g_strdup("</f>");
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1168 } else if (!strcmp(root->name, "a") || !strcmp(root->name, "A")) {
18904
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1169 const gchar *href, *link_text;
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1170
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1171 href = xmlnode_get_attrib(root, "href");
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1172
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1173 if (!href) {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1174 href = xmlnode_get_attrib(root, "HREF");
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1175 }
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1176
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1177 link_text = xmlnode_get_data(root);
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1178
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1179 if (href) {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1180 if (!strcmp(link_text, href)) {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1181 /* Purple gives us: <a href="URL">URL</a>
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1182 * Translate to <a h='URL' />
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1183 * Displayed as text of URL with link to URL
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1184 */
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1185 *begin = g_strdup_printf("<a h='%s' />", href);
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1186 } else {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1187 /* But if we get: <a href="URL">text</a>
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1188 * Translate to: text: <a h='URL' />
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1189 *
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1190 * Because official client only supports self-closed <a>
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1191 * tags; you can't change the link text.
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1192 */
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1193 *begin = g_strdup_printf("%s: <a h='%s' />", link_text, href);
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1194 }
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1195 } else {
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1196 *begin = g_strdup("<a />");
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1197 }
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1198
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1199 /* Sorry, kid. MySpace doesn't support you within <a> tags. */
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1200 xmlnode_free(root->child);
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1201 root->child = NULL;
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1202
da2f37d232a9 Support sending and receiving hyperlinks.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18903
diff changeset
1203 *end = g_strdup("");
18907
1a11b26fcb11 Replace non-portable stricmp() with two calls to strcmp(), one uppercase and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18905
diff changeset
1204 } else if (!strcmp(root->name, "font") || !strcmp(root->name, "FONT")) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1205 const gchar *size;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1206 const gchar *face;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1207
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1208 size = xmlnode_get_attrib(root, "size");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1209 face = xmlnode_get_attrib(root, "face");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1210
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1211 if (face && size) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1212 *begin = g_strdup_printf("<f f='%s' h='%d'>", face,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1213 msim_point_to_height(session,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1214 msim_purple_size_to_point(session, atoi(size))));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1215 } else if (face) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1216 *begin = g_strdup_printf("<f f='%s'>", face);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1217 } else if (size) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1218 *begin = g_strdup_printf("<f h='%d'>",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1219 msim_point_to_height(session,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1220 msim_purple_size_to_point(session, atoi(size))));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1221 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1222 *begin = g_strdup("<f>");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1223 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1224
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1225 *end = g_strdup("</f>");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1226
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1227 /* TODO: color (bg uses <body>), emoticons */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1228 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1229 *begin = g_strdup_printf("[%s]", root->name);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1230 *end = g_strdup_printf("[/%s]", root->name);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1231 }
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1232 }
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1233
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1234 /** Convert an xmlnode of msim markup or HTML to an HTML string or msim markup.
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1235 *
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1236 * @param f Function to convert tags.
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1237 *
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1238 * @return An HTML string. Caller frees.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1239 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1240 static gchar *
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1241 msim_convert_xmlnode(MsimSession *session, xmlnode *root, MSIM_XMLNODE_CONVERT f)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1242 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1243 xmlnode *node;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1244 gchar *begin, *inner, *end;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1245 GString *final;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1246
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1247 if (!root || !root->name) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1248 return g_strdup("");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1249 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1250
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1251 purple_debug_info("msim", "msim_convert_xmlnode: got root=%s\n",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1252 root->name);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1253
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1254 begin = inner = end = NULL;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1255
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1256 final = g_string_new("");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1257
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1258 f(session, root, &begin, &end);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1259
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1260 g_string_append(final, begin);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1261
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1262 /* Loop over all child nodes. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1263 for (node = root->child; node != NULL; node = node->next) {
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1264 switch (node->type) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1265 case XMLNODE_TYPE_ATTRIB:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1266 /* Attributes handled above. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1267 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1268
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1269 case XMLNODE_TYPE_TAG:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1270 /* A tag or tag with attributes. Recursively descend. */
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1271 inner = msim_convert_xmlnode(session, node, f);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1272 g_return_val_if_fail(inner != NULL, NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1273
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1274 purple_debug_info("msim", " ** node name=%s\n",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1275 (node && node->name) ? node->name : "(NULL)");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1276 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1277
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1278 case XMLNODE_TYPE_DATA:
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1279 /* Literal text. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1280 inner = g_new0(char, node->data_sz + 1);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1281 strncpy(inner, node->data, node->data_sz);
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
1282 inner[node->data_sz] = 0;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1283
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1284 purple_debug_info("msim", " ** node data=%s\n",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1285 inner ? inner : "(NULL)");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1286 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1287
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1288 default:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1289 purple_debug_info("msim",
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1290 "msim_convert_xmlnode: strange node\n");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1291 inner = g_strdup("");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1292 }
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
1293
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1294 if (inner) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1295 g_string_append(final, inner);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1296 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1297 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1298
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1299 /* TODO: Note that msim counts each piece of text enclosed by <f> as
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1300 * a paragraph and will display each on its own line. You actually have
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1301 * to _nest_ <f> tags to intersperse different text in one paragraph!
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1302 * Comment out this line below to see. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1303 g_string_append(final, end);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1304
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1305 purple_debug_info("msim", "msim_markup_xmlnode_to_gtkhtml: RETURNING %s\n",
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1306 (final && final->str) ? final->str : "(NULL)");
17946
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
1307
b3e971b375b5 Support font sizes in sending and receiving formatted text.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17945
diff changeset
1308 return final->str;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1309 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1310
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1311 /** Convert XML to something based on MSIM_XMLNODE_CONVERT. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1312 static gchar *
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1313 msim_convert_xml(MsimSession *session, const gchar *raw, MSIM_XMLNODE_CONVERT f)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1314 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1315 xmlnode *root;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1316 gchar *str;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1317 gchar *enclosed_raw;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1318
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1319 g_return_val_if_fail(raw != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1320
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1321 /* Enclose text in one root tag, to try to make it valid XML for parsing. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1322 enclosed_raw = g_strconcat("<root>", raw, "</root>", NULL);
17958
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
1323
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
1324 root = xmlnode_from_str(enclosed_raw, -1);
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
1325
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1326 if (!root) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1327 purple_debug_info("msim", "msim_markup_to_html: couldn't parse "
17958
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
1328 "%s as XML, returning raw: %s\n", enclosed_raw, raw);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1329 /* TODO: msim_unrecognized */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1330 g_free(enclosed_raw);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1331 return g_strdup(raw);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1332 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1333
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1334 g_free(enclosed_raw);
17958
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
1335
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1336 str = msim_convert_xmlnode(session, root, f);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1337 g_return_val_if_fail(str != NULL, NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1338 purple_debug_info("msim", "msim_markup_to_html: returning %s\n", str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1339
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1340 xmlnode_free(root);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1341
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1342 return str;
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1343 }
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1344
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1345 /** Convert plaintext smileys to <i> markup tags.
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1346 *
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1347 * @param before Original text with ASCII smileys. Will be freed.
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1348 * @return A new string with <i> tags, if applicable. Must be g_free()'d.
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1349 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1350 static gchar *
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1351 msim_convert_smileys_to_markup(gchar *before)
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1352 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1353 gchar *old, *new, *replacement;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1354 guint i;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1355 struct MSIM_EMOTICON *emote;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1356
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1357 old = before;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1358 new = NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1359
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1360 for (i = 0; (emote = &msim_emoticons[i]) && emote->name != NULL; ++i) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1361 gchar *name, *symbol;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1362
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1363 name = emote->name;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1364 symbol = emote->symbol;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1365
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1366 replacement = g_strdup_printf("<i n=\"%s\"/>", name);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1367
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1368 purple_debug_info("msim", "msim_convert_smileys_to_markup: %s->%s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1369 symbol ? symbol : "(NULL)",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1370 replacement ? replacement : "(NULL)");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1371 new = str_replace(old, symbol, replacement);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1372
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1373 g_free(replacement);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1374 g_free(old);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1375
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1376 old = new;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1377 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1378
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1379 return new;
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1380 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1381
17957
3bd88cbdd204 Add support for sending emoticons.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17956
diff changeset
1382
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1383 /** High-level function to convert MySpaceIM markup to Purple (HTML) markup.
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1384 *
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1385 * @return Purple markup string, must be g_free()'d. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1386 static gchar *
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1387 msim_markup_to_html(MsimSession *session, const gchar *raw)
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1388 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1389 return msim_convert_xml(session, raw,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1390 (MSIM_XMLNODE_CONVERT)(msim_markup_tag_to_html));
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1391 }
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1392
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1393 /** High-level function to convert Purple (HTML) to MySpaceIM markup.
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1394 *
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1395 * @return HTML markup string, must be g_free()'d. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1396 static gchar *
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1397 html_to_msim_markup(MsimSession *session, const gchar *raw)
17695
13bba54b429d Support sending some formatted text in instant messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17693
diff changeset
1398 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1399 gchar *markup;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1400
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1401 markup = msim_convert_xml(session, raw,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1402 (MSIM_XMLNODE_CONVERT)(html_tag_to_msim_markup));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1403
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1404 if (purple_account_get_bool(session->account, "emoticons", TRUE)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1405 /* Frees markup and allocates a new one. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1406 markup = msim_convert_smileys_to_markup(markup);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1407 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1408
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1409 return markup;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1410 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1411
17955
9e8943111022 Show official client build in buddy profiles.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17954
diff changeset
1412 /** Record the client version in the buddy list, from an incoming message. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1413 static gboolean
17955
9e8943111022 Show official client build in buddy profiles.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17954
diff changeset
1414 msim_incoming_bm_record_cv(MsimSession *session, MsimMessage *msg)
9e8943111022 Show official client build in buddy profiles.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17954
diff changeset
1415 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1416 gchar *username, *cv;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1417 gboolean ret;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1418 PurpleBuddy *buddy;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1419
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1420 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1421 cv = msim_msg_get_string(msg, "cv");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1422
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1423 g_return_val_if_fail(username != NULL, FALSE);
18908
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
1424 if (!cv) {
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
1425 /* No client version to record, don't worry about it. */
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
1426 return FALSE;
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
1427 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1428
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1429 buddy = purple_find_buddy(session->account, username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1430
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1431 if (buddy) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1432 purple_blist_node_set_int(&buddy->node, "client_cv", atol(cv));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1433 ret = TRUE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1434 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1435 ret = FALSE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1436 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1437
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1438 g_free(username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1439 g_free(cv);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1440
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1441 return ret;
17955
9e8943111022 Show official client build in buddy profiles.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17954
diff changeset
1442 }
9e8943111022 Show official client build in buddy profiles.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17954
diff changeset
1443
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1444 /** Handle an incoming buddy message. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1445 static gboolean
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1446 msim_incoming_bm(MsimSession *session, MsimMessage *msg)
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1447 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1448 guint bm;
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1449
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1450 bm = msim_msg_get_integer(msg, "bm");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1451
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1452 msim_incoming_bm_record_cv(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1453
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1454 switch (bm) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1455 case MSIM_BM_STATUS:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1456 return msim_incoming_status(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1457 case MSIM_BM_INSTANT:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1458 return msim_incoming_im(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1459 case MSIM_BM_ACTION:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1460 return msim_incoming_action(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1461 case MSIM_BM_MEDIA:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1462 return msim_incoming_media(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1463 case MSIM_BM_UNOFFICIAL_CLIENT:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1464 return msim_incoming_unofficial_client(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1465 default:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1466 /* Not really an IM, but show it for informational
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1467 * purposes during development. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1468 return msim_incoming_im(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1469 }
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1470 }
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1471
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1472 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1473 * Handle an incoming instant message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1474 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1475 * @param session The session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1476 * @param msg Message from the server, containing 'f' (userid from) and 'msg'.
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1477 * Should also contain username in _username from preprocessing.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1478 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1479 * @return TRUE if successful.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1480 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1481 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1482 msim_incoming_im(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1483 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1484 gchar *username, *msg_msim_markup, *msg_purple_markup;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1485
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1486 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1487 g_return_val_if_fail(msg != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1488
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1489 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1490 g_return_val_if_fail(username != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1491
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1492 msg_msim_markup = msim_msg_get_string(msg, "msg");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1493 g_return_val_if_fail(msg_msim_markup != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1494
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
1495 msg_purple_markup = msim_markup_to_html(session, msg_msim_markup);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1496 g_free(msg_msim_markup);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1497
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1498 serv_got_im(session->gc, username, msg_purple_markup,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1499 PURPLE_MESSAGE_RECV, time(NULL));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1500
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1501 g_free(username);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1502 g_free(msg_purple_markup);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1503
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1504 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1505 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1506
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1507 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1508 * Process unrecognized information.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1509 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1510 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1511 * @param msg An MsimMessage that was unrecognized, or NULL.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1512 * @param note Information on what was unrecognized, or NULL.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1513 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1514 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1515 msim_unrecognized(MsimSession *session, MsimMessage *msg, gchar *note)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1516 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1517 /* TODO: Some more context, outwardly equivalent to a backtrace,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1518 * for helping figure out what this msg is for. What was going on?
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1519 * But not too much information so that a user
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1520 * posting this dump reveals confidential information.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1521 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1522
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1523 /* TODO: dump unknown msgs to file, so user can send them to me
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1524 * if they wish, to help add support for new messages (inspired
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1525 * by Alexandr Shutko, who maintains OSCAR protocol documentation). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1526
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1527 purple_debug_info("msim", "Unrecognized data on account for %s\n",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1528 session->account->username ? session->account->username
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1529 : "(NULL)");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1530 if (note) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1531 purple_debug_info("msim", "(Note: %s)\n", note);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1532 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1533
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1534 if (msg) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1535 msim_msg_dump("Unrecognized message dump: %s\n", msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1536 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1537 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1538
17962
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1539 /** Process an incoming zap. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1540 static gboolean
17962
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1541 msim_incoming_zap(MsimSession *session, MsimMessage *msg)
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1542 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1543 gchar *msg_text, *username, *zap_text;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1544 gint zap;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1545 const gchar *zap_past_tense[10];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1546
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1547 zap_past_tense[0] = _("zapped");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1548 zap_past_tense[1] = _("whacked");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1549 zap_past_tense[2] = _("torched");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1550 zap_past_tense[3] = _("smooched");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1551 zap_past_tense[4] = _("hugged");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1552 zap_past_tense[5] = _("bslapped");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1553 zap_past_tense[6] = _("goosed");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1554 zap_past_tense[7] = _("hi-fived");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1555 zap_past_tense[8] = _("punk'd");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1556 zap_past_tense[9] = _("raspberried");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1557
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1558 msg_text = msim_msg_get_string(msg, "msg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1559 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1560
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1561 g_return_val_if_fail(msg_text != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1562 g_return_val_if_fail(username != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1563
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1564 g_return_val_if_fail(sscanf(msg_text, "!!!ZAP_SEND!!!=RTE_BTN_ZAPS_%d", &zap) == 1, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1565
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1566 zap = CLAMP(zap, 0, sizeof(zap_past_tense) / sizeof(zap_past_tense[0]));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1567
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1568 zap_text = g_strdup_printf(_("*** You have been %s! ***"), zap_past_tense[zap]);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1569
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1570 serv_got_im(session->gc, username, zap_text,
17962
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1571 PURPLE_MESSAGE_RECV | PURPLE_MESSAGE_SYSTEM, time(NULL));
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1572
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1573 g_free(zap_text);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1574 g_free(msg_text);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1575 g_free(username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1576
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1577 return TRUE;
17962
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1578 }
8e351e08aba0 Support incoming zaps.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17961
diff changeset
1579
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1580 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1581 * Handle an incoming action message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1582 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1583 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1584 * @param msg
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1585 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1586 * @return TRUE if successful.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1587 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1588 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1589 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1590 msim_incoming_action(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1591 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1592 gchar *msg_text, *username;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1593 gboolean rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1594
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1595 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1596 g_return_val_if_fail(msg != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1597
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1598 msg_text = msim_msg_get_string(msg, "msg");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1599 g_return_val_if_fail(msg_text != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1600
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1601 username = msim_msg_get_string(msg, "_username");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1602 g_return_val_if_fail(username != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1603
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1604 purple_debug_info("msim", "msim_incoming_action: action <%s> from <%d>\n",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1605 msg_text, username);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1606
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1607 if (strcmp(msg_text, "%typing%") == 0) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1608 /* TODO: find out if msim repeatedly sends typing messages, so we can
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1609 * give it a timeout. Right now, there does seem to be an inordinately
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1610 * amount of time between typing stopped-typing notifications. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1611 serv_got_typing(session->gc, username, 0, PURPLE_TYPING);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1612 rc = TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1613 } else if (strcmp(msg_text, "%stoptyping%") == 0) {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1614 serv_got_typing_stopped(session->gc, username);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1615 rc = TRUE;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1616 } else if (strstr(msg_text, "!!!ZAP_SEND!!!=RTE_BTN_ZAPS_")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1617 rc = msim_incoming_zap(session, msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1618 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1619 msim_unrecognized(session, msg,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1620 "got to msim_incoming_action but unrecognized value for 'msg'");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1621 rc = FALSE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1622 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1623
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1624 g_free(msg_text);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1625 g_free(username);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1626
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1627 return rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1628 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1629
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1630 /* Process an incoming media (buddy icon) message. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1631 static gboolean
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1632 msim_incoming_media(MsimSession *session, MsimMessage *msg)
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1633 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1634 gchar *username, *text;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1635
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1636 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1637 text = msim_msg_get_string(msg, "msg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1638
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1639 g_return_val_if_fail(username != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1640 g_return_val_if_fail(text != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1641
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1642 purple_debug_info("msim", "msim_incoming_media: from %s, got msg=%s\n", username, text);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1643
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1644 /* Media messages are sent when the user opens a window to someone.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1645 * Tell libpurple they started typing and stopped typing, to inform the Psychic
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1646 * Mode plugin so it too can open a window to the user. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1647 serv_got_typing(session->gc, username, 0, PURPLE_TYPING);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1648 serv_got_typing_stopped(session->gc, username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1649
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1650 g_free(username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1651
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1652 return TRUE;
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1653 }
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1654
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1655 /* Process an incoming "unofficial client" message. The plugin for
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1656 * Miranda IM sends this message with the plugin information. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1657 static gboolean
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1658 msim_incoming_unofficial_client(MsimSession *session, MsimMessage *msg)
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1659 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1660 PurpleBuddy *buddy;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1661 gchar *username, *client_info;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1662
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1663 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1664 client_info = msim_msg_get_string(msg, "msg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1665
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1666 g_return_val_if_fail(username != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1667 g_return_val_if_fail(client_info != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1668
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1669 purple_debug_info("msim", "msim_incoming_unofficial_client: %s is using client %s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1670 username, client_info);
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1671
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1672 buddy = purple_find_buddy(session->account, username);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1673
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1674 g_return_val_if_fail(buddy != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1675
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1676 purple_blist_node_remove_setting(&buddy->node, "client");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1677 purple_blist_node_set_string(&buddy->node, "client", client_info);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1678
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1679 g_free(username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1680 /* Do not free client_info - the blist now owns it. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1681
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1682 return TRUE;
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1683 }
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1684
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1685
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1686 #ifdef MSIM_SEND_CLIENT_VERSION
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1687 /** Send our client version to another unofficial client that understands it. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1688 static gboolean
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1689 msim_send_unofficial_client(MsimSession *session, gchar *username)
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1690 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1691 gchar *our_info;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1692 gboolean ret;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1693
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1694 our_info = g_strdup_printf("Libpurple %d.%d.%d - msimprpl %s",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1695 PURPLE_MAJOR_VERSION,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1696 PURPLE_MINOR_VERSION,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1697 PURPLE_MICRO_VERSION,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1698 MSIM_PRPL_VERSION_STRING);
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1699
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1700 ret = msim_send_bm(session, username, our_info, MSIM_BM_UNOFFICIAL_CLIENT);
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1701
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1702 return ret;
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1703 }
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
1704 #endif
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1705
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1706 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1707 * Handle when our user starts or stops typing to another user.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1708 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1709 * @param gc
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1710 * @param name The buddy name to which our user is typing to
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1711 * @param state PURPLE_TYPING, PURPLE_TYPED, PURPLE_NOT_TYPING
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1712 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1713 * @return 0
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1714 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1715 unsigned int
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1716 msim_send_typing(PurpleConnection *gc, const gchar *name,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1717 PurpleTypingState state)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1718 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1719 const gchar *typing_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1720 MsimSession *session;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1721
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1722 g_return_val_if_fail(gc != NULL, 0);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1723 g_return_val_if_fail(name != NULL, 0);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1724
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1725 session = (MsimSession *)gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1726
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1727 g_return_val_if_fail(MSIM_SESSION_VALID(session), 0);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1728
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1729 switch (state) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1730 case PURPLE_TYPING:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1731 typing_str = "%typing%";
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1732 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1733
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1734 case PURPLE_TYPED:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1735 case PURPLE_NOT_TYPING:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1736 default:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1737 typing_str = "%stoptyping%";
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1738 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1739 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1740
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1741 purple_debug_info("msim", "msim_send_typing(%s): %d (%s)\n", name, state, typing_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1742 msim_send_bm(session, name, typing_str, MSIM_BM_ACTION);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1743 return 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1744 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1745
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1746 /** Callback for msim_get_info(), for when user info is received. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1747 static void
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1748 msim_get_info_cb(MsimSession *session, MsimMessage *user_info_msg,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1749 gpointer data)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1750 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1751 GHashTable *body;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1752 gchar *body_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1753 MsimMessage *msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1754 gchar *user;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1755 PurpleNotifyUserInfo *user_info;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1756 PurpleBuddy *buddy;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1757 const gchar *str, *str2;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1758
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1759 g_return_if_fail(MSIM_SESSION_VALID(session));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1760
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1761 /* Get user{name,id} from msim_get_info, passed as an MsimMessage for
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1762 orthogonality. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1763 msg = (MsimMessage *)data;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1764 g_return_if_fail(msg != NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1765
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1766 user = msim_msg_get_string(msg, "user");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1767 if (!user) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1768 purple_debug_info("msim", "msim_get_info_cb: no 'user' in msg");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1769 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1770 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1771
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1772 msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1773 purple_debug_info("msim", "msim_get_info_cb: got for user: %s\n", user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1774
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1775 body_str = msim_msg_get_string(user_info_msg, "body");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1776 g_return_if_fail(body_str != NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1777 body = msim_parse_body(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1778 g_free(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1779
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1780 buddy = purple_find_buddy(session->account, user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1781 /* Note: don't assume buddy is non-NULL; will be if lookup random user
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1782 * not on blist. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1783
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1784 user_info = purple_notify_user_info_new();
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1785
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1786 /* Identification */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1787 purple_notify_user_info_add_pair(user_info, _("User"), user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1788
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1789 /* note: g_hash_table_lookup does not create a new string! */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1790 str = g_hash_table_lookup(body, "UserID");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1791 if (str)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1792 purple_notify_user_info_add_pair(user_info, _("User ID"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1793 g_strdup(str));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1794
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1795 /* a/s/l...the vitals */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1796 str = g_hash_table_lookup(body, "Age");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1797 if (str)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1798 purple_notify_user_info_add_pair(user_info, _("Age"), g_strdup(str));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1799
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1800 str = g_hash_table_lookup(body, "Gender");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1801 if (str)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1802 purple_notify_user_info_add_pair(user_info, _("Gender"), g_strdup(str));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1803
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1804 str = g_hash_table_lookup(body, "Location");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1805 if (str)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1806 purple_notify_user_info_add_pair(user_info, _("Location"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1807 g_strdup(str));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1808
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1809 /* Other information */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1810
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1811 if (buddy) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1812 /* Headline comes from buddy status messages */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1813 str = purple_blist_node_get_string(&buddy->node, "Headline");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1814 if (str)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1815 purple_notify_user_info_add_pair(user_info, "Headline", str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1816 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1817
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1818
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1819 str = g_hash_table_lookup(body, "BandName");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1820 str2 = g_hash_table_lookup(body, "SongName");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1821 if (str || str2) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1822 purple_notify_user_info_add_pair(user_info, _("Song"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1823 g_strdup_printf("%s - %s",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1824 str ? str : "Unknown Artist",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1825 str2 ? str2 : "Unknown Song"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1826 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1827
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1828
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1829 /* Total friends only available if looked up by uid, not username. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1830 str = g_hash_table_lookup(body, "TotalFriends");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1831 if (str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1832 purple_notify_user_info_add_pair(user_info, _("Total Friends"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1833 g_strdup(str));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1834 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1835
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1836 if (buddy) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1837 gint cv;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1838
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1839 str = purple_blist_node_get_string(&buddy->node, "client");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1840 cv = purple_blist_node_get_int(&buddy->node, "client_cv");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1841
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1842 if (str) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1843 purple_notify_user_info_add_pair(user_info, _("Client Version"),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1844 g_strdup_printf("%s (build %d)", str, cv));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1845 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1846 }
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
1847
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1848 purple_notify_userinfo(session->gc, user, user_info, NULL, NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1849 purple_debug_info("msim", "msim_get_info_cb: username=%s\n", user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1850 //purple_notify_user_info_destroy(user_info);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1851 /* Do not free username, since it will be used by user_info. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1852
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
1853 g_hash_table_destroy(body);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1854 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1855
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1856 /** Retrieve a user's profile. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1857 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1858 msim_get_info(PurpleConnection *gc, const gchar *user)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1859 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1860 PurpleBuddy *buddy;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1861 MsimSession *session;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1862 guint uid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1863 gchar *user_to_lookup;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1864 MsimMessage *user_msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1865
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1866 g_return_if_fail(gc != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1867 g_return_if_fail(user != NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1868
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1869 session = (MsimSession *)gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1870
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1871 g_return_if_fail(MSIM_SESSION_VALID(session));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1872
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1873 /* Obtain uid of buddy. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1874 buddy = purple_find_buddy(session->account, user);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1875 if (buddy) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1876 uid = purple_blist_node_get_int(&buddy->node, "UserID");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1877 if (!uid) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1878 PurpleNotifyUserInfo *user_info;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1879
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1880 user_info = purple_notify_user_info_new();
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1881 purple_notify_user_info_add_pair(user_info, NULL,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1882 _("This buddy appears to not have a userid stored in the buddy list, can't look up. Is the user really on the buddy list?"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1883
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1884 purple_notify_userinfo(session->gc, user, user_info, NULL, NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1885 purple_notify_user_info_destroy(user_info);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1886 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1887 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1888
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1889 user_to_lookup = g_strdup_printf("%d", uid);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1890 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1891 /* Looking up buddy not on blist. Lookup by whatever user entered. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1892 user_to_lookup = g_strdup(user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1893 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1894
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1895 /* Pass the username to msim_get_info_cb(), because since we lookup
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1896 * by userid, the userinfo message will only contain the uid (not
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1897 * the username).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1898 */
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
1899 user_msg = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1900 "user", MSIM_TYPE_STRING, g_strdup(user),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1901 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1902 purple_debug_info("msim", "msim_get_info, setting up lookup, user=%s\n", user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1903
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1904 msim_lookup_user(session, user_to_lookup, msim_get_info_cb, user_msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1905
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1906 g_free(user_to_lookup);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1907 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1908
17945
cf55077a3752 Remove MSIM_FAKE_SELF_ONLINE option, since our own status is actually updated
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17944
diff changeset
1909 /** Set your status - callback for when user manually sets it. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1910 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1911 msim_set_status(PurpleAccount *account, PurpleStatus *status)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1912 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1913 PurpleStatusType *type;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1914 MsimSession *session;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1915 guint status_code;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1916 const gchar *statstring;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1917
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1918 session = (MsimSession *)account->gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1919
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1920 g_return_if_fail(MSIM_SESSION_VALID(session));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1921
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1922 type = purple_status_get_type(status);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1923
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
1924 switch (purple_status_type_get_primitive(type)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1925 case PURPLE_STATUS_AVAILABLE:
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1926 purple_debug_info("msim", "msim_set_status: available (%d->%d)\n", PURPLE_STATUS_AVAILABLE,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1927 MSIM_STATUS_CODE_ONLINE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1928 status_code = MSIM_STATUS_CODE_ONLINE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1929 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1930
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1931 case PURPLE_STATUS_INVISIBLE:
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1932 purple_debug_info("msim", "msim_set_status: invisible (%d->%d)\n", PURPLE_STATUS_INVISIBLE,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1933 MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1934 status_code = MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1935 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1936
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1937 case PURPLE_STATUS_AWAY:
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1938 purple_debug_info("msim", "msim_set_status: away (%d->%d)\n", PURPLE_STATUS_AWAY,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1939 MSIM_STATUS_CODE_AWAY);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1940 status_code = MSIM_STATUS_CODE_AWAY;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1941 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1942
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1943 default:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1944 purple_debug_info("msim", "msim_set_status: unknown "
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1945 "status interpreting as online");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1946 status_code = MSIM_STATUS_CODE_ONLINE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1947 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1948 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1949
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1950 statstring = purple_status_get_attr_string(status, "message");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1951
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1952 if (!statstring) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1953 statstring = g_strdup("");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1954 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1955
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1956 msim_set_status_code(session, status_code, g_strdup(statstring));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1957 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1958
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1959 /** Go idle. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1960 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1961 msim_set_idle(PurpleConnection *gc, int time)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1962 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1963 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1964
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1965 g_return_if_fail(gc != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1966
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1967 session = (MsimSession *)gc->proto_data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1968
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1969 g_return_if_fail(MSIM_SESSION_VALID(session));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1970
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1971 if (time == 0) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1972 /* Going back from idle. In msim, idle is mutually exclusive
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1973 * from the other states (you can only be away or idle, but not
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1974 * both, for example), so by going non-idle I go online.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1975 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1976 /* TODO: find out how to keep old status string? */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1977 msim_set_status_code(session, MSIM_STATUS_CODE_ONLINE, g_strdup(""));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1978 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1979 /* msim doesn't support idle time, so just go idle */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1980 msim_set_status_code(session, MSIM_STATUS_CODE_IDLE, g_strdup(""));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1981 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1982 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1983
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1984 /** Set status using an MSIM_STATUS_CODE_* value.
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1985 * @param status_code An MSIM_STATUS_CODE_* value.
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1986 * @param statstring Status string, must be a dynamic string (will be freed by msim_send).
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1987 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
1988 static void
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1989 msim_set_status_code(MsimSession *session, guint status_code, gchar *statstring)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1990 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1991 g_return_if_fail(MSIM_SESSION_VALID(session));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1992 g_return_if_fail(statstring != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1993
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1994 purple_debug_info("msim", "msim_set_status_code: going to set status to code=%d,str=%s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
1995 status_code, statstring);
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
1996
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1997 if (!msim_send(session,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1998 "status", MSIM_TYPE_INTEGER, status_code,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
1999 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
17944
c109b7f1c739 Allow setting status string messages. Known bug: custom status messages always
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17942
diff changeset
2000 "statstring", MSIM_TYPE_STRING, statstring,
17696
65cf1785e5bf Fix compile warnings on Unix (missing sentinel and time_t to int typecast).
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17695
diff changeset
2001 "locstring", MSIM_TYPE_STRING, g_strdup(""),
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2002 NULL))
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2003 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2004 purple_debug_info("msim", "msim_set_status: failed to set status");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2005 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2006
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2007 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2008
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2009 /** After a uid is resolved to username, tag it with the username and submit for processing.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2010 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2011 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2012 * @param userinfo Response messsage to resolving request.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2013 * @param data MsimMessage *, the message to attach information to.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2014 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2015 static void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2016 msim_incoming_resolved(MsimSession *session, MsimMessage *userinfo,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2017 gpointer data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2018 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2019 gchar *body_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2020 GHashTable *body;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2021 gchar *username;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2022 MsimMessage *msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2023
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2024 g_return_if_fail(MSIM_SESSION_VALID(session));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2025 g_return_if_fail(userinfo != NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2026
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2027 body_str = msim_msg_get_string(userinfo, "body");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2028 g_return_if_fail(body_str != NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2029 body = msim_parse_body(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2030 g_return_if_fail(body != NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2031 g_free(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2032
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2033 username = g_hash_table_lookup(body, "UserName");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2034 g_return_if_fail(username != NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2035
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
2036
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2037 msg = (MsimMessage *)data;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2038 g_return_if_fail(msg != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2039
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2040 /* TODO: more elegant solution than below. attach whole message? */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2041 /* Special elements name beginning with '_', we'll use internally within the
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
2042 * program (did not come directly from the wire). */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2043 msg = msim_msg_append(msg, "_username", MSIM_TYPE_STRING, g_strdup(username));
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
2044
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2045 /* TODO: attach more useful information, like ImageURL */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2046
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2047 msim_process(session, msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2048
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2049 /* TODO: Free copy cloned from msim_preprocess_incoming(). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2050 //XXX msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2051 g_hash_table_destroy(body);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2052 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2053
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2054 /* Lookup a username by userid, from buddy list.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2055 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2056 * @param wanted_uid
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2057 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2058 * @return Username of wanted_uid, if on blist, or NULL. Static string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2059 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2060 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2061 static const gchar *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2062 msim_uid2username_from_blist(MsimSession *session, guint wanted_uid)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2063 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2064 GSList *buddies, *cur;
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2065 gchar *ret;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2066
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2067 buddies = purple_find_buddies(session->account, NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2068
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2069 if (!buddies)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2070 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2071 purple_debug_info("msim", "msim_uid2username_from_blist: no buddies?");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2072 return NULL;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2073 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2074
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2075 ret = NULL;
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2076
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2077 for (cur = buddies; cur != NULL; cur = g_slist_next(cur))
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2078 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2079 PurpleBuddy *buddy;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2080 guint uid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2081 const gchar *name;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2082
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2083 /* See finch/gnthistory.c */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2084 buddy = cur->data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2085
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2086 uid = purple_blist_node_get_int(&buddy->node, "UserID");
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2087 name = purple_buddy_get_name(buddy);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2088
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2089 if (uid == wanted_uid)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2090 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2091 ret = g_strdup(name);
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2092 break;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2093 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2094 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2095
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2096 g_slist_free(buddies);
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
2097 return ret;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2098 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2099
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2100 /** Preprocess incoming messages, resolving as needed, calling msim_process() when ready to process.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2101 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2102 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2103 * @param msg MsimMessage *, freed by caller.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2104 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2105 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2106 msim_preprocess_incoming(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2107 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2108 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2109 g_return_val_if_fail(msg != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2110
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2111 if (msim_msg_get(msg, "bm") && msim_msg_get(msg, "f")) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2112 guint uid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2113 const gchar *username;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2114
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2115 /* 'f' = userid message is from, in buddy messages */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2116 uid = msim_msg_get_integer(msg, "f");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2117
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2118 username = msim_uid2username_from_blist(session, uid);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2119
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2120 if (username) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2121 /* Know username already, use it. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2122 purple_debug_info("msim", "msim_preprocess_incoming: tagging with _username=%s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2123 username);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2124 msg = msim_msg_append(msg, "_username", MSIM_TYPE_STRING, g_strdup(username));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2125 return msim_process(session, msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2126
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2127 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2128 gchar *from;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2129
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2130 /* Send lookup request. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2131 /* XXX: where is msim_msg_get_string() freed? make _strdup and _nonstrdup. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2132 purple_debug_info("msim", "msim_incoming: sending lookup, setting up callback\n");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2133 from = msim_msg_get_string(msg, "f");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2134 msim_lookup_user(session, from, msim_incoming_resolved, msim_msg_clone(msg));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2135 g_free(from);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2136
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2137 /* indeterminate */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2138 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2139 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2140 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2141 /* Nothing to resolve - send directly to processing. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2142 return msim_process(session, msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2143 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2144 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2145
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2146 #ifdef MSIM_USE_KEEPALIVE
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2147 /** Check if the connection is still alive, based on last communication. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2148 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2149 msim_check_alive(gpointer data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2150 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2151 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2152 time_t delta;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2153 gchar *errmsg;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2154
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2155 session = (MsimSession *)data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2156
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2157 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2158
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2159 delta = time(NULL) - session->last_comm;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2160 //purple_debug_info("msim", "msim_check_alive: delta=%d\n", delta);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2161 if (delta >= MSIM_KEEPALIVE_INTERVAL) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2162 errmsg = g_strdup_printf(_("Connection to server lost (no data received within %d seconds)"), (int)delta);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2163
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2164 purple_debug_info("msim", "msim_check_alive: %s > interval of %d, presumed dead\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2165 errmsg, MSIM_KEEPALIVE_INTERVAL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2166 purple_connection_error(session->gc, errmsg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2167
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2168 purple_notify_error(session->gc, NULL, errmsg, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2169
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2170 g_free(errmsg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2171
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2172 return FALSE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2173 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2174
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2175 return TRUE;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2176 }
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2177 #endif
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2178
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
2179 /** Handle mail reply checks. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2180 static void
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
2181 msim_check_inbox_cb(MsimSession *session, MsimMessage *reply, gpointer data)
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2182 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2183 GHashTable *body;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2184 gchar *body_str;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2185 GString *notification;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2186 guint old_inbox_status;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2187 guint i, n;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2188 const gchar *froms[5], *tos[5], *urls[5], *subjects[5];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2189
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2190 /* Three parallel arrays for each new inbox message type. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2191 static const gchar *inbox_keys[] =
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2192 {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2193 "Mail",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2194 "BlogComment",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2195 "ProfileComment",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2196 "FriendRequest",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2197 "PictureComment"
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2198 };
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2199
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2200 static const guint inbox_bits[] =
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2201 {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2202 MSIM_INBOX_MAIL,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2203 MSIM_INBOX_BLOG_COMMENT,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2204 MSIM_INBOX_PROFILE_COMMENT,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2205 MSIM_INBOX_FRIEND_REQUEST,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2206 MSIM_INBOX_PICTURE_COMMENT
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2207 };
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2208
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2209 static const gchar *inbox_urls[] =
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2210 {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2211 "http://messaging.myspace.com/index.cfm?fuseaction=mail.inbox",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2212 "http://blog.myspace.com/index.cfm?fuseaction=blog",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2213 "http://home.myspace.com/index.cfm?fuseaction=user",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2214 "http://messaging.myspace.com/index.cfm?fuseaction=mail.friendRequests",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2215 "http://home.myspace.com/index.cfm?fuseaction=user"
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2216 };
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2217
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2218 static const gchar *inbox_text[5];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2219
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2220 /* Can't write _()'d strings in array initializers. Workaround. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2221 inbox_text[0] = _("New mail messages");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2222 inbox_text[1] = _("New blog comments");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2223 inbox_text[2] = _("New profile comments");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2224 inbox_text[3] = _("New friend requests!");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2225 inbox_text[4] = _("New picture comments");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2226
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2227 g_return_if_fail(reply != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2228
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2229 msim_msg_dump("msim_check_inbox_cb: reply=%s\n", reply);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2230
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2231 body_str = msim_msg_get_string(reply, "body");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2232 g_return_if_fail(body_str != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2233
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2234 body = msim_parse_body(body_str);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2235 g_free(body_str);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2236
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2237 notification = g_string_new("");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2238
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2239 old_inbox_status = session->inbox_status;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2240
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2241 n = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2242
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2243 for (i = 0; i < sizeof(inbox_keys) / sizeof(inbox_keys[0]); ++i) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2244 const gchar *key;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2245 guint bit;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2246
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2247 key = inbox_keys[i];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2248 bit = inbox_bits[i];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2249
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2250 if (g_hash_table_lookup(body, key)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2251 /* Notify only on when _changes_ from no mail -> has mail
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2252 * (edge triggered) */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2253 if (!(session->inbox_status & bit)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2254 purple_debug_info("msim", "msim_check_inbox_cb: got %s, at %d\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2255 key ? key : "(NULL)", n);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2256
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2257 subjects[n] = inbox_text[i];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2258 froms[n] = _("MySpace");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2259 tos[n] = session->username;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2260 /* TODO: append token, web challenge, so automatically logs in.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2261 * Would also need to free strings because they won't be static
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2262 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2263 urls[n] = inbox_urls[i];
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2264
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2265 ++n;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2266 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2267 purple_debug_info("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2268 "msim_check_inbox_cb: already notified of %s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2269 key ? key : "(NULL)");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2270 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2271
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2272 session->inbox_status |= bit;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2273 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2274 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2275
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2276 if (n) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2277 purple_debug_info("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2278 "msim_check_inbox_cb: notifying of %d\n", n);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2279
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2280 /* TODO: free strings with callback _if_ change to dynamic (w/ token) */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2281 purple_notify_emails(session->gc, /* handle */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2282 n, /* count */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2283 TRUE, /* detailed */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2284 subjects, froms, tos, urls,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2285 NULL, /* PurpleNotifyCloseCallback cb */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2286 NULL); /* gpointer user_data */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2287
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2288 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2289
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2290 g_hash_table_destroy(body);
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2291 }
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2292
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2293 /* Send request to check if there is new mail. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2294 static gboolean
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
2295 msim_check_inbox(gpointer data)
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2296 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2297 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2298
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2299 session = (MsimSession *)data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2300
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2301 purple_debug_info("msim", "msim_check_inbox: checking mail\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2302 g_return_val_if_fail(msim_send(session,
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2303 "persist", MSIM_TYPE_INTEGER, 1,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2304 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2305 "cmd", MSIM_TYPE_INTEGER, MSIM_CMD_GET,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2306 "dsn", MSIM_TYPE_INTEGER, MG_CHECK_MAIL_DSN,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2307 "lid", MSIM_TYPE_INTEGER, MG_CHECK_MAIL_LID,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2308 "uid", MSIM_TYPE_INTEGER, session->userid,
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2309 "rid", MSIM_TYPE_INTEGER,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2310 msim_new_reply_callback(session, msim_check_inbox_cb, NULL),
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2311 "body", MSIM_TYPE_STRING, g_strdup(""),
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2312 NULL), TRUE);
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2313
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2314 /* Always return true, so that we keep checking for mail. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2315 return TRUE;
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2316 }
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2317
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2318 /** Called when the session key arrives. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2319 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2320 msim_we_are_logged_on(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2321 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2322 MsimMessage *body;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2323
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2324 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2325 g_return_val_if_fail(msg != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2326
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2327 session->sesskey = msim_msg_get_integer(msg, "sesskey");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2328 purple_debug_info("msim", "SESSKEY=<%d>\n", session->sesskey);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2329
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2330 /* What is proof? Used to be uid, but now is 52 base64'd bytes... */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2331
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2332 /* Comes with: proof,profileid,userid,uniquenick -- all same values
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2333 * some of the time, but can vary. This is our own user ID. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2334 session->userid = msim_msg_get_integer(msg, "userid");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2335
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2336 /* Not sure what profileid is used for. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2337 if (msim_msg_get_integer(msg, "profileid") != session->userid) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2338 msim_unrecognized(session, msg,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2339 "Profile ID didn't match user ID, don't know why");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2340 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2341
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2342 /* We now know are our own username, only after we're logged in..
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2343 * which is weird, but happens because you login with your email
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2344 * address and not username. Will be freed in msim_session_destroy(). */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2345 session->username = msim_msg_get_string(msg, "uniquenick");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2346
18909
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2347 /* The session is now set up, ready to be connected. This emits the
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2348 * signedOn signal, so clients can now do anything with msimprpl, and
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2349 * we're ready for it (session key, userid, username all setup). */
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2350 purple_connection_update_progress(session->gc, _("Connected"), 3, 4);
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2351 purple_connection_set_state(session->gc, PURPLE_CONNECTED);
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2352
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2353
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2354 /* Additional post-connect operations */
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2355
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2356
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2357 if (msim_msg_get_integer(msg, "uniquenick") == session->userid) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2358 purple_debug_info("msim_we_are_logged_on", "TODO: pick username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2359 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2360
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
2361 body = msim_msg_new(
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2362 "UserID", MSIM_TYPE_INTEGER, session->userid,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2363 NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2364
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2365 /* Request IM info about ourself. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2366 msim_send(session,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2367 "persist", MSIM_TYPE_STRING, g_strdup("persist"),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2368 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2369 "dsn", MSIM_TYPE_INTEGER, MG_OWN_MYSPACE_INFO_DSN,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2370 "uid", MSIM_TYPE_INTEGER, session->userid,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2371 "lid", MSIM_TYPE_INTEGER, MG_OWN_MYSPACE_INFO_LID,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2372 "rid", MSIM_TYPE_INTEGER, session->next_rid++,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2373 "body", MSIM_TYPE_DICTIONARY, body,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2374 NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2375
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2376 /* Request MySpace info about ourself. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2377 msim_send(session,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2378 "persist", MSIM_TYPE_STRING, g_strdup("persist"),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2379 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2380 "dsn", MSIM_TYPE_INTEGER, MG_OWN_IM_INFO_DSN,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2381 "uid", MSIM_TYPE_INTEGER, session->userid,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2382 "lid", MSIM_TYPE_INTEGER, MG_OWN_IM_INFO_LID,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2383 "rid", MSIM_TYPE_INTEGER, session->next_rid++,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2384 "body", MSIM_TYPE_STRING, g_strdup(""),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2385 NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2386
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2387 /* TODO: set options (persist cmd=514,dsn=1,lid=10) */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2388 /* TODO: set blocklist */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2389
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2390 /* Notify servers of our current status. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2391 purple_debug_info("msim", "msim_we_are_logged_on: notifying servers of status\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2392 msim_set_status(session->account,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2393 purple_account_get_active_status(session->account));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2394
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2395 /* TODO: setinfo */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2396 /*
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
2397 body = msim_msg_new(
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2398 "TotalFriends", MSIM_TYPE_INTEGER, 666,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2399 NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2400 msim_send(session,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2401 "setinfo", MSIM_TYPE_BOOLEAN, TRUE,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2402 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2403 "info", MSIM_TYPE_DICTIONARY, body,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2404 NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2405 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2406
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2407 /* Disable due to problems with timeouts. TODO: fix. */
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
2408 #ifdef MSIM_USE_KEEPALIVE
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2409 purple_timeout_add(MSIM_KEEPALIVE_INTERVAL_CHECK,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2410 (GSourceFunc)msim_check_alive, session);
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
2411 #endif
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2412
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2413 purple_timeout_add(MSIM_MAIL_INTERVAL_CHECK,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2414 (GSourceFunc)msim_check_inbox, session);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2415
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2416 msim_check_inbox(session);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2417
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2418 return TRUE;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2419 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2420
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2421 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2422 * Process a message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2423 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2424 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2425 * @param msg A message from the server, ready for processing (possibly with resolved username information attached). Caller frees.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2426 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2427 * @return TRUE if successful. FALSE if processing failed.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2428 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2429 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2430 msim_process(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2431 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2432 g_return_val_if_fail(session != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2433 g_return_val_if_fail(msg != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2434
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2435 #ifdef MSIM_DEBUG_MSG
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2436 msim_msg_dump("ready to process: %s\n", msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2437 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2438
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2439 if (msim_msg_get_integer(msg, "lc") == 1) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2440 return msim_login_challenge(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2441 } else if (msim_msg_get_integer(msg, "lc") == 2) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2442 return msim_we_are_logged_on(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2443 } else if (msim_msg_get(msg, "bm")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2444 return msim_incoming_bm(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2445 } else if (msim_msg_get(msg, "rid")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2446 return msim_process_reply(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2447 } else if (msim_msg_get(msg, "error")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2448 return msim_error(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2449 } else if (msim_msg_get(msg, "ka")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2450 return TRUE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2451 } else {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2452 msim_unrecognized(session, msg, "in msim_process");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2453 return FALSE;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2454 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2455 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2456
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2457 /** Store an field of information about a buddy. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2458 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2459 msim_store_buddy_info_each(gpointer key, gpointer value, gpointer user_data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2460 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2461 PurpleBuddy *buddy;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2462 gchar *key_str, *value_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2463
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2464 buddy = (PurpleBuddy *)user_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2465 key_str = (gchar *)key;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2466 value_str = (gchar *)value;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2467
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2468 if (strcmp(key_str, "UserID") == 0 ||
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2469 strcmp(key_str, "Age") == 0 ||
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2470 strcmp(key_str, "TotalFriends") == 0) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2471 /* Certain fields get set as integers, instead of strings, for
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2472 * convenience. May not be the best way to do it, but having at least
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2473 * UserID as an integer is convenient...until it overflows! */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2474 purple_blist_node_set_int(&buddy->node, key_str, atol(value_str));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2475 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2476 purple_blist_node_set_string(&buddy->node, key_str, value_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2477 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2478 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2479
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2480 /** Save buddy information to the buddy list from a user info reply message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2481 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2482 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2483 * @param msg The user information reply, with any amount of information.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2484 *
18908
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2485 * The information is saved to the buddy's blist node, which ends up in
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2486 * blist.xml. If the function has no buddy information, this function
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2487 * is a no-op (and returns FALSE).
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2488 *
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2489 * TODO: Store ephemeral information in MsimBuddy instead.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2490 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2491 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2492 msim_store_buddy_info(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2493 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2494 GHashTable *body;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2495 gchar *username, *body_str, *uid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2496 PurpleBuddy *buddy;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2497
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2498 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2499 g_return_val_if_fail(msg != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2500
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2501 body_str = msim_msg_get_string(msg, "body");
18908
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2502 if (!body_str) {
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2503 return FALSE;
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2504 }
6541b0edee26 Fix some assertion failures, that should really not be assertions. Found by using
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18907
diff changeset
2505
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2506 g_return_val_if_fail(body_str != NULL, FALSE);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2507 body = msim_parse_body(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2508 g_free(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2509
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2510 /* TODO: implement a better hash-like interface, and use it. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2511 username = g_hash_table_lookup(body, "UserName");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2512
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2513 if (!username) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2514 purple_debug_info("msim",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2515 "msim_process_reply: not caching body, no UserName\n");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2516 g_hash_table_destroy(body);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2517 return FALSE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2518 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2519
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2520 uid = g_hash_table_lookup(body, "UserID");
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2521 if (!uid) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2522 g_hash_table_destroy(body);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2523 g_return_val_if_fail(uid, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2524 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2525
17954
016f9b2d6ee0 Increase read buffer size and be more careful about overruns.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17953
diff changeset
2526 purple_debug_info("msim", "associating uid %s with username %s\n", uid, username);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2527
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2528 buddy = purple_find_buddy(session->account, username);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2529 if (buddy) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2530 g_hash_table_foreach(body, msim_store_buddy_info_each, buddy);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2531 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2532
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2533 if (msim_msg_get_integer(msg, "dsn") == MG_OWN_IM_INFO_DSN &&
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2534 msim_msg_get_integer(msg, "lid") == MG_OWN_IM_INFO_LID) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2535 /* TODO: do something with our own IM info, if we need it for some
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2536 * specific purpose. Otherwise it is available on the buddy list,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2537 * if the user has themselves as their own buddy. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2538 } else if (msim_msg_get_integer(msg, "dsn") == MG_OWN_MYSPACE_INFO_DSN &&
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2539 msim_msg_get_integer(msg, "lid") == MG_OWN_MYSPACE_INFO_LID) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2540 /* TODO: same as above, but for MySpace info. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2541 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2542
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2543 g_hash_table_destroy(body);
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2544
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2545 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2546 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2547
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2548 /** Process the initial server information from the server. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2549 static gboolean
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2550 msim_process_server_info(MsimSession *session, MsimMessage *msg)
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2551 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2552 gchar *body_str;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2553 GHashTable *body;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2554
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2555 body_str = msim_msg_get_string(msg, "body");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2556 g_return_val_if_fail(body_str != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2557 body = msim_parse_body(body_str);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2558 g_free(body_str);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2559 g_return_val_if_fail(body != NULL, FALSE);
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2560
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2561 /* Example body:
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2562 AdUnitRefreshInterval=10.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2563 AlertPollInterval=360.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2564 AllowChatRoomEmoticonSharing=False.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2565 ChatRoomUserIDs=78744676;163733130;1300326231;123521495;142663391.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2566 CurClientVersion=673.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2567 EnableIMBrowse=True.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2568 EnableIMStuffAvatars=False.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2569 EnableIMStuffZaps=False.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2570 MaxAddAllFriends=100.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2571 MaxContacts=1000.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2572 MinClientVersion=594.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2573 MySpaceIM_ENGLISH=78744676.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2574 MySpaceNowTimer=720.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2575 PersistenceDataTimeout=900.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2576 UseWebChallenge=1.
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2577 WebTicketGoHome=False
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2578
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2579 Anything useful? TODO: use what is useful, and use it.
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2580 */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2581 purple_debug_info("msim_process_server_info",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2582 "maximum contacts: %s\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2583 g_hash_table_lookup(body, "MaxContacts") ?
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2584 g_hash_table_lookup(body, "MaxContacts") : "(NULL)");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2585
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2586 session->server_info = body;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2587 /* session->server_info freed in msim_session_destroy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2588
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2589 return TRUE;
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2590 }
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2591
17967
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
2592 /** Process a web challenge, used to login to the web site. */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2593 static gboolean
17967
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
2594 msim_web_challenge(MsimSession *session, MsimMessage *msg)
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
2595 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2596 /* TODO: web challenge, store token */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2597 return FALSE;
17967
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
2598 }
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
2599
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2600 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2601 * Process a persistance message reply from the server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2602 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2603 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2604 * @param msg Message reply from server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2605 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2606 * @return TRUE if successful.
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2607 *
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
2608 * msim_lookup_user sets callback for here
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2609 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2610 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2611 msim_process_reply(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2612 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2613 MSIM_USER_LOOKUP_CB cb;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2614 gpointer data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2615 guint rid, cmd, dsn, lid;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2616
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2617 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2618 g_return_val_if_fail(msg != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2619
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2620 msim_store_buddy_info(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2621
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2622 rid = msim_msg_get_integer(msg, "rid");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2623 cmd = msim_msg_get_integer(msg, "cmd");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2624 dsn = msim_msg_get_integer(msg, "dsn");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2625 lid = msim_msg_get_integer(msg, "lid");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2626
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2627 /* Unsolicited messages */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2628 if (cmd == (MSIM_CMD_BIT_REPLY | MSIM_CMD_GET)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2629 if (dsn == MG_SERVER_INFO_DSN && lid == MG_SERVER_INFO_LID) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2630 return msim_process_server_info(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2631 } else if (dsn == MG_WEB_CHALLENGE_DSN && lid == MG_WEB_CHALLENGE_LID) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2632 return msim_web_challenge(session, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2633 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2634 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2635
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2636 /* If a callback is registered for this userid lookup, call it. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2637 cb = g_hash_table_lookup(session->user_lookup_cb, GUINT_TO_POINTER(rid));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2638 data = g_hash_table_lookup(session->user_lookup_cb_data, GUINT_TO_POINTER(rid));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2639
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2640 if (cb) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2641 purple_debug_info("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2642 "msim_process_body: calling callback now\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2643 /* Clone message, so that the callback 'cb' can use it (needs to free it also). */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2644 cb(session, msim_msg_clone(msg), data);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2645 g_hash_table_remove(session->user_lookup_cb, GUINT_TO_POINTER(rid));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2646 g_hash_table_remove(session->user_lookup_cb_data, GUINT_TO_POINTER(rid));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2647 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2648 purple_debug_info("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2649 "msim_process_body: no callback for rid %d\n", rid);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2650 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2651
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2652 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2653 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2654
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2655 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2656 * Handle an error from the server.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2657 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2658 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2659 * @param msg The message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2660 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2661 * @return TRUE if successfully reported error.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2662 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2663 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2664 msim_error(MsimSession *session, MsimMessage *msg)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2665 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2666 gchar *errmsg, *full_errmsg;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2667 guint err;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2668
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2669 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2670 g_return_val_if_fail(msg != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2671
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2672 err = msim_msg_get_integer(msg, "err");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2673 errmsg = msim_msg_get_string(msg, "errmsg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2674
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2675 full_errmsg = g_strdup_printf(_("Protocol error, code %d: %s"), err,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2676 errmsg ? errmsg : "no 'errmsg' given");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2677
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2678 g_free(errmsg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2679
18909
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2680 purple_debug_info("msim", "msim_error (sesskey=%d): %s\n",
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
2681 session->sesskey, full_errmsg);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2682
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2683 purple_notify_error(session->account, g_strdup(_("MySpaceIM Error")),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2684 full_errmsg, NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2685
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2686 /* Destroy session if fatal. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2687 if (msim_msg_get(msg, "fatal")) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2688 purple_debug_info("msim", "fatal error, closing\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2689 purple_connection_error(session->gc, full_errmsg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2690 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2691
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2692 return TRUE;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2693 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2694
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2695 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2696 * Process incoming status messages.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2697 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2698 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2699 * @param msg Status update message. Caller frees.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2700 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2701 * @return TRUE if successful.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2702 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2703 static gboolean
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
2704 msim_incoming_status(MsimSession *session, MsimMessage *msg)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2705 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2706 PurpleBuddyList *blist;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2707 PurpleBuddy *buddy;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2708 GList *list;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2709 gchar *status_headline;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2710 gint status_code, purple_status_code;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2711 gchar *username;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2712
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2713 g_return_val_if_fail(MSIM_SESSION_VALID(session), FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2714 g_return_val_if_fail(msg != NULL, FALSE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2715
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2716 msim_msg_dump("msim_status msg=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2717
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2718 /* Helpfully looked up by msim_incoming_resolve() for us. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2719 username = msim_msg_get_string(msg, "_username");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2720 g_return_val_if_fail(username != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2721
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2722 {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2723 gchar *ss;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2724
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2725 ss = msim_msg_get_string(msg, "msg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2726 purple_debug_info("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2727 "msim_status: updating status for <%s> to <%s>\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2728 username, ss ? ss : "(NULL)");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2729 g_free(ss);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2730 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2731
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2732 /* Example fields:
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2733 * |s|0|ss|Offline
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2734 * |s|1|ss|:-)|ls||ip|0|p|0
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2735 */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2736 list = msim_msg_get_list(msg, "msg");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2737
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2738 status_code = atoi(g_list_nth_data(list, MSIM_STATUS_ORDINAL_ONLINE));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2739 purple_debug_info("msim", "msim_status: %s's status code = %d\n", username, status_code);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2740 status_headline = g_list_nth_data(list, MSIM_STATUS_ORDINAL_HEADLINE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2741
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2742 blist = purple_get_blist();
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2743
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2744 /* Add buddy if not found */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2745 buddy = purple_find_buddy(session->account, username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2746 if (!buddy) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2747 purple_debug_info("msim",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2748 "msim_status: making new buddy for %s\n", username);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2749 buddy = purple_buddy_new(session->account, username, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2750
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2751 purple_blist_add_buddy(buddy, NULL, NULL, NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2752
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2753 /* All buddies on list should have 'uid' integer associated with them. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2754 purple_blist_node_set_int(&buddy->node, "UserID", msim_msg_get_integer(msg, "f"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2755
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2756 msim_store_buddy_info(session, msg);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2757 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2758 purple_debug_info("msim", "msim_status: found buddy %s\n", username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2759 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2760
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2761 purple_blist_node_set_string(&buddy->node, "Headline", status_headline);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2762
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2763 /* Set user status */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2764 switch (status_code) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2765 case MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN:
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2766 purple_status_code = PURPLE_STATUS_OFFLINE;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2767 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2768
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2769 case MSIM_STATUS_CODE_ONLINE:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2770 purple_status_code = PURPLE_STATUS_AVAILABLE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2771 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2772
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2773 case MSIM_STATUS_CODE_AWAY:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2774 purple_status_code = PURPLE_STATUS_AWAY;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2775 break;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2776
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2777 case MSIM_STATUS_CODE_IDLE:
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2778 /* will be handled below */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2779 purple_status_code = -1;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2780 break;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2781
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2782 default:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2783 purple_debug_info("msim", "msim_status for %s, unknown status code %d, treating as available\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2784 username, status_code);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2785 purple_status_code = PURPLE_STATUS_AVAILABLE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2786 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2787
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2788 purple_prpl_got_user_status(session->account, username, purple_primitive_get_id_from_type(purple_status_code), NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2789
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2790 if (status_code == MSIM_STATUS_CODE_IDLE) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2791 purple_debug_info("msim", "msim_status: got idle: %s\n", username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2792 purple_prpl_got_user_idle(session->account, username, TRUE, time(NULL));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2793 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2794 /* All other statuses indicate going back to non-idle. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2795 purple_prpl_got_user_idle(session->account, username, FALSE, time(NULL));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2796 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2797
17974
3d400b022acc Disable sending third-party client version to oncoming buddies.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17973
diff changeset
2798 #ifdef MSIM_SEND_CLIENT_VERSION
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2799 if (status_code == MSIM_STATUS_CODE_ONLINE) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2800 /* Secretly whisper to unofficial clients our own version as they come online */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2801 msim_send_unofficial_client(session, username);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2802 }
17974
3d400b022acc Disable sending third-party client version to oncoming buddies.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17973
diff changeset
2803 #endif
17953
bde17299004b Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17952
diff changeset
2804
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2805 g_free(username);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2806 msim_msg_list_free(list);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2807
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2808 return TRUE;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2809 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2810
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2811 /** Add a buddy to user's buddy list. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2812 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2813 msim_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2814 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2815 MsimSession *session;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2816 MsimMessage *msg;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2817 MsimMessage *msg_persist;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2818 MsimMessage *body;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2819
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2820 session = (MsimSession *)gc->proto_data;
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
2821 purple_debug_info("msim", "msim_add_buddy: want to add %s to %s\n",
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2822 buddy->name, (group && group->name) ? group->name : "(no group)");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2823
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
2824 msg = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2825 "addbuddy", MSIM_TYPE_BOOLEAN, TRUE,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2826 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2827 /* "newprofileid" will be inserted here with uid. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2828 "reason", MSIM_TYPE_STRING, g_strdup(""),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2829 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2830
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2831 if (!msim_postprocess_outgoing(session, msg, buddy->name, "newprofileid", "reason")) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2832 purple_notify_error(NULL, NULL, _("Failed to add buddy"), _("'addbuddy' command failed."));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2833 msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2834 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2835 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2836 msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2837
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2838 /* TODO: if addbuddy fails ('error' message is returned), delete added buddy from
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2839 * buddy list since Purple adds it locally. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2840
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
2841 body = msim_msg_new(
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2842 "ContactID", MSIM_TYPE_STRING, g_strdup("<uid>"),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2843 "GroupName", MSIM_TYPE_STRING, g_strdup(group->name),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2844 "Position", MSIM_TYPE_INTEGER, 1000,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2845 "Visibility", MSIM_TYPE_INTEGER, 1,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2846 "NickName", MSIM_TYPE_STRING, g_strdup(""),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2847 "NameSelect", MSIM_TYPE_INTEGER, 0,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2848 NULL);
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2849
18885
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2850 /* TODO: Update blocklist. */
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2851
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2852 #if 0
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
2853 msg_persist = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2854 "persist", MSIM_TYPE_INTEGER, 1,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2855 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2856 "cmd", MSIM_TYPE_INTEGER, MSIM_CMD_BIT_ACTION | MSIM_CMD_PUT,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2857 "dsn", MSIM_TYPE_INTEGER, MC_CONTACT_INFO_DSN,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2858 "lid", MSIM_TYPE_INTEGER, MC_CONTACT_INFO_LID,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2859 /* TODO: Use msim_new_reply_callback to get rid. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2860 "rid", MSIM_TYPE_INTEGER, session->next_rid++,
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2861 "body", MSIM_TYPE_DICTIONARY, body,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2862 NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2863
18885
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2864 if (!msim_postprocess_outgoing(session, msg_persist, buddy->name, "body", NULL))
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2865 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2866 purple_notify_error(NULL, NULL, _("Failed to add buddy"), _("persist command failed"));
18885
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2867 msim_msg_free(msg_persist);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2868 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2869 }
18885
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2870 msim_msg_free(msg_persist);
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2871 #endif
644144f1a5c2 Use the right message in the persistance command for adding buddies, but
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18883
diff changeset
2872
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2873 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2874
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2875 /** Perform actual postprocessing on a message, adding userid as specified.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2876 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2877 * @param msg The message to postprocess.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2878 * @param uid_before Name of field where to insert new field before, or NULL for end.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2879 * @param uid_field_name Name of field to add uid to.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2880 * @param uid The userid to insert.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2881 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2882 * If the field named by uid_field_name already exists, then its string contents will
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2883 * be used for the field, except "<uid>" will be replaced by the userid.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2884 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2885 * If the field named by uid_field_name does not exist, it will be added before the
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2886 * field named by uid_before, as an integer, with the userid.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2887 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2888 * Does not handle sending, or scheduling userid lookup. For that, see msim_postprocess_outgoing().
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2889 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2890 static MsimMessage *
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2891 msim_do_postprocessing(MsimMessage *msg, const gchar *uid_before,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2892 const gchar *uid_field_name, guint uid)
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2893 {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2894 msim_msg_dump("msim_do_postprocessing msg: %s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2895
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2896 /* First, check - if the field already exists, replace <uid> within it */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2897 if (msim_msg_get(msg, uid_field_name)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2898 MsimMessageElement *elem;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2899 gchar *fmt_string;
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2900 gchar *uid_str, *new_str;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2901
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2902 /* Warning: this is a delicate, but safe, operation */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2903
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2904 elem = msim_msg_get(msg, uid_field_name);
18883
0ca629db64a4 Use a list when updating the blocklist when removing the buddy, since
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18881
diff changeset
2905
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2906 /* Get the packed element, flattening it. This allows <uid> to be
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2907 * replaced within nested data structures, since the replacement is done
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2908 * on the linear, packed data, not on a complicated data structure.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2909 *
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2910 * For example, if the field was originally a dictionary or a list, you
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2911 * would have to iterate over all the items in it to see what needs to
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2912 * be replaced. But by packing it first, the <uid> marker is easily replaced
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2913 * just by a string replacement.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2914 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2915 fmt_string = msim_msg_pack_element_data(elem);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2916
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2917 uid_str = g_strdup_printf("%d", uid);
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2918 new_str = str_replace(fmt_string, "<uid>", uid_str);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2919 g_free(uid_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2920 g_free(fmt_string);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2921
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2922 /* Free the old element data */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2923 msim_msg_free_element_data(elem->data);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2924
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2925 /* Replace it with our new data */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2926 elem->data = new_str;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2927 elem->type = MSIM_TYPE_RAW;
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
2928
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2929 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2930 /* Otherwise, insert new field into outgoing message. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2931 msg = msim_msg_insert_before(msg, uid_before, uid_field_name, MSIM_TYPE_INTEGER, GUINT_TO_POINTER(uid));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2932 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2933
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2934 msim_msg_dump("msim_postprocess_outgoing_cb: postprocessed msg=%s\n", msg);
18883
0ca629db64a4 Use a list when updating the blocklist when removing the buddy, since
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18881
diff changeset
2935
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2936 return msg;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2937 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2938
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2939 /** Callback for msim_postprocess_outgoing() to add a userid to a message, and send it (once receiving userid).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2940 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2941 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2942 * @param userinfo The user information reply message, containing the user ID
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2943 * @param data The message to postprocess and send.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2944 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2945 * The data message should contain these fields:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2946 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2947 * _uid_field_name: string, name of field to add with userid from userinfo message
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2948 * _uid_before: string, name of field before field to insert, or NULL for end
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2949 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2950 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2951 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2952 static void
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
2953 msim_postprocess_outgoing_cb(MsimSession *session, MsimMessage *userinfo,
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2954 gpointer data)
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2955 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2956 gchar *body_str;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2957 GHashTable *body;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2958 gchar *uid, *uid_field_name, *uid_before;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2959 MsimMessage *msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2960
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2961 msg = (MsimMessage *)data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2962
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2963 msim_msg_dump("msim_postprocess_outgoing_cb() got msg=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2964
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2965 /* Obtain userid from userinfo message. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2966 body_str = msim_msg_get_string(userinfo, "body");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2967 g_return_if_fail(body_str != NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2968 body = msim_parse_body(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2969 g_free(body_str);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2970
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2971 uid = g_strdup(g_hash_table_lookup(body, "UserID"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2972 g_hash_table_destroy(body);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2973
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2974 uid_field_name = msim_msg_get_string(msg, "_uid_field_name");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2975 uid_before = msim_msg_get_string(msg, "_uid_before");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2976
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2977 msg = msim_do_postprocessing(msg, uid_before, uid_field_name, atol(uid));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2978
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2979 /* Send */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
2980 if (!msim_msg_send(session, msg)) {
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
2981 msim_msg_dump("msim_postprocess_outgoing_cb: sending failed for message: %s\n", msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2982 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2983
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2984
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2985 /* Free field names AFTER sending message, because MsimMessage does NOT copy
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2986 * field names - instead, treats them as static strings (which they usually are).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2987 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2988 g_free(uid_field_name);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2989 g_free(uid_before);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2990
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
2991 g_hash_table_destroy(body);
17947
ac7066ffa109 Add msim_check_mail to check for new mail (called periodically), and
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17946
diff changeset
2992
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2993 //msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2994 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2995
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2996 /** Postprocess and send a message.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2997 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2998 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
2999 * @param msg Message to postprocess. Will NOT be freed.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3000 * @param username Username to resolve. Assumed to be a static string (will not be freed or copied).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3001 * @param uid_field_name Name of new field to add, containing uid of username. Static string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3002 * @param uid_before Name of existing field to insert username field before. Static string.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3003 *
17973
acff371d7908 Fix crash when deleting buddies on Windows. This was done by
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17972
diff changeset
3004 * @return TRUE if successful.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3005 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3006 gboolean
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3007 msim_postprocess_outgoing(MsimSession *session, MsimMessage *msg,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3008 const gchar *username, const gchar *uid_field_name,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3009 const gchar *uid_before)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3010 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3011 PurpleBuddy *buddy;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3012 guint uid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3013 gboolean rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3014
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3015 g_return_val_if_fail(msg != NULL, FALSE);
17973
acff371d7908 Fix crash when deleting buddies on Windows. This was done by
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17972
diff changeset
3016
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3017 /* Store information for msim_postprocess_outgoing_cb(). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3018 msim_msg_dump("msim_postprocess_outgoing: msg before=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3019 msg = msim_msg_append(msg, "_username", MSIM_TYPE_STRING, g_strdup(username));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3020 msg = msim_msg_append(msg, "_uid_field_name", MSIM_TYPE_STRING, g_strdup(uid_field_name));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3021 msg = msim_msg_append(msg, "_uid_before", MSIM_TYPE_STRING, g_strdup(uid_before));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3022
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3023 /* First, try the most obvious. If numeric userid is given, use that directly. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3024 if (msim_is_userid(username)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3025 uid = atol(username);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3026 } else {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3027 /* Next, see if on buddy list and know uid. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3028 buddy = purple_find_buddy(session->account, username);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3029 if (buddy) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3030 uid = purple_blist_node_get_int(&buddy->node, "UserID");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3031 } else {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3032 uid = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3033 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3034
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3035 if (!buddy || !uid)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3036 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3037 /* Don't have uid offhand - need to ask for it, and wait until hear back before sending. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3038 purple_debug_info("msim", ">>> msim_postprocess_outgoing: couldn't find username %s in blist\n",
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
3039 username ? username : "(NULL)");
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3040 msim_msg_dump("msim_postprocess_outgoing - scheduling lookup, msg=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3041 /* TODO: where is cloned message freed? Should be in _cb. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3042 msim_lookup_user(session, username, msim_postprocess_outgoing_cb, msim_msg_clone(msg));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3043 return TRUE; /* not sure of status yet - haven't sent! */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3044 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3045 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3046
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3047 /* Already have uid, postprocess and send msg immediately. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3048 purple_debug_info("msim", "msim_postprocess_outgoing: found username %s has uid %d\n",
17976
b2d81d13f015 Be more careful about null strings in %s format specifier in debug messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17974
diff changeset
3049 username ? username : "(NULL)", uid);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3050
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3051 msg = msim_do_postprocessing(msg, uid_before, uid_field_name, uid);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3052
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3053 msim_msg_dump("msim_postprocess_outgoing: msg after (uid immediate)=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3054
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3055 rc = msim_msg_send(session, msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3056
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3057 //msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3058
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3059 return rc;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3060 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3061
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3062 /** Remove a buddy from the user's buddy list. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3063 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3064 msim_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3065 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3066 MsimSession *session;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3067 MsimMessage *delbuddy_msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3068 MsimMessage *persist_msg;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3069 MsimMessage *blocklist_msg;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3070 GList *blocklist_updates;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3071
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3072 session = (MsimSession *)gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3073
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3074 delbuddy_msg = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3075 "delbuddy", MSIM_TYPE_BOOLEAN, TRUE,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3076 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3077 /* 'delprofileid' with uid will be inserted here. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3078 NULL);
17973
acff371d7908 Fix crash when deleting buddies on Windows. This was done by
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17972
diff changeset
3079
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3080 if (!msim_postprocess_outgoing(session, delbuddy_msg, buddy->name, "delprofileid", NULL)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3081 purple_notify_error(NULL, NULL, _("Failed to remove buddy"), _("'delbuddy' command failed"));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3082 msim_msg_free(delbuddy_msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3083 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3084 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3085 msim_msg_free(delbuddy_msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3086
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3087 persist_msg = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3088 "persist", MSIM_TYPE_INTEGER, 1,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3089 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3090 "cmd", MSIM_TYPE_INTEGER, MSIM_CMD_BIT_ACTION | MSIM_CMD_DELETE,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3091 "dsn", MSIM_TYPE_INTEGER, MD_DELETE_BUDDY_DSN,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3092 "lid", MSIM_TYPE_INTEGER, MD_DELETE_BUDDY_LID,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3093 "uid", MSIM_TYPE_INTEGER, session->userid,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3094 "rid", MSIM_TYPE_INTEGER, session->next_rid++,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3095 /* <uid> will be replaced by postprocessing */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3096 "body", MSIM_TYPE_STRING, g_strdup("ContactID=<uid>"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3097 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3098
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3099 if (!msim_postprocess_outgoing(session, persist_msg, buddy->name, "body", NULL)) {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3100 purple_notify_error(NULL, NULL, _("Failed to remove buddy"), _("persist command failed"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3101 msim_msg_free(persist_msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3102 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3103 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3104 msim_msg_free(persist_msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3105
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3106 blocklist_updates = NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3107 blocklist_updates = g_list_prepend(blocklist_updates, "a-");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3108 blocklist_updates = g_list_prepend(blocklist_updates, "<uid>");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3109 blocklist_updates = g_list_prepend(blocklist_updates, "b-");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3110 blocklist_updates = g_list_prepend(blocklist_updates, "<uid>");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3111 blocklist_updates = g_list_reverse(blocklist_updates);
18879
e0cac5db762b In msim_msg_pack_element_dict(), separate keys and values with '=' for
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17976
diff changeset
3112
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3113 blocklist_msg = msim_msg_new(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3114 "blocklist", MSIM_TYPE_BOOLEAN, TRUE,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3115 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
18879
e0cac5db762b In msim_msg_pack_element_dict(), separate keys and values with '=' for
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17976
diff changeset
3116 /* TODO: MsimMessage lists. Currently <uid> isn't replaced in lists. */
18883
0ca629db64a4 Use a list when updating the blocklist when removing the buddy, since
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18881
diff changeset
3117 //"idlist", MSIM_TYPE_STRING, g_strdup("a-|<uid>|b-|<uid>"),
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3118 "idlist", MSIM_TYPE_LIST, blocklist_updates,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3119 NULL);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3120
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3121 if (!msim_postprocess_outgoing(session, blocklist_msg, buddy->name, "idlist", NULL)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3122 purple_notify_error(NULL, NULL, _("Failed to remove buddy"), _("blocklist command failed"));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3123 msim_msg_free(blocklist_msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3124 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3125 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3126 msim_msg_free(blocklist_msg);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3127 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3128
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3129 /** Return whether the buddy can be messaged while offline.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3130 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3131 * The protocol supports offline messages in just the same way as online
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3132 * messages.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3133 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3134 gboolean
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3135 msim_offline_message(const PurpleBuddy *buddy)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3136 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3137 return TRUE;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3138 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3139
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3140 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3141 * Callback when input available.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3142 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3143 * @param gc_uncasted A PurpleConnection pointer.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3144 * @param source File descriptor.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3145 * @param cond PURPLE_INPUT_READ
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3146 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3147 * Reads the input, and calls msim_preprocess_incoming() to handle it.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3148 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3149 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3150 msim_input_cb(gpointer gc_uncasted, gint source, PurpleInputCondition cond)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3151 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3152 PurpleConnection *gc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3153 PurpleAccount *account;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3154 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3155 gchar *end;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3156 int n;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3157
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3158 g_return_if_fail(gc_uncasted != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3159 g_return_if_fail(source >= 0); /* Note: 0 is a valid fd */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3160
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3161 gc = (PurpleConnection *)(gc_uncasted);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3162 account = purple_connection_get_account(gc);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3163 session = gc->proto_data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3164
18909
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3165 /* libpurple/eventloop.h only defines these two */
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3166 if (cond != PURPLE_INPUT_READ && cond != PURPLE_INPUT_WRITE) {
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3167 purple_debug_info("msim_input_cb", "unknown condition=%d\n", cond);
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3168 purple_connection_error(gc, _("Invalid input condition"));
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3169 return;
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3170 }
c32fcdef2809 Only say we are connected after the MsimSession structure is fully setup.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18908
diff changeset
3171
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3172 g_return_if_fail(cond == PURPLE_INPUT_READ);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3173 g_return_if_fail(MSIM_SESSION_VALID(session));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3174
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3175 /* Mark down that we got data, so don't timeout. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3176 session->last_comm = time(NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3177
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3178 /* Only can handle so much data at once...
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3179 * If this happens, try recompiling with a higher MSIM_READ_BUF_SIZE.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3180 * Should be large enough to hold the largest protocol message.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3181 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3182 if (session->rxoff >= MSIM_READ_BUF_SIZE) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3183 purple_debug_error("msim",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3184 "msim_input_cb: %d-byte read buffer full! rxoff=%d\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3185 MSIM_READ_BUF_SIZE, session->rxoff);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3186 purple_connection_error(gc, _("Read buffer full"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3187 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3188 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3189
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3190 purple_debug_info("msim", "buffer at %d (max %d), reading up to %d\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3191 session->rxoff, MSIM_READ_BUF_SIZE,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3192 MSIM_READ_BUF_SIZE - session->rxoff);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3193
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3194 /* Read into buffer. On Win32, need recv() not read(). session->fd also holds
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3195 * the file descriptor, but it sometimes differs from the 'source' parameter.
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3196 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3197 n = recv(session->fd, session->rxbuf + session->rxoff, MSIM_READ_BUF_SIZE - session->rxoff, 0);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3198
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3199 if (n < 0 && errno == EAGAIN) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3200 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3201 } else if (n < 0) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3202 purple_debug_error("msim", "msim_input_cb: read error, ret=%d, "
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3203 "error=%s, source=%d, fd=%d (%X))\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3204 n, strerror(errno), source, session->fd, session->fd);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3205 purple_connection_error(gc, _("Read error"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3206 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3207 } else if (n == 0) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3208 purple_debug_info("msim", "msim_input_cb: server disconnected\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3209 purple_connection_error(gc, _("Server has disconnected"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3210 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3211 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3212
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3213 if (n + session->rxoff >= MSIM_READ_BUF_SIZE) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3214 purple_debug_info("msim_input_cb", "received %d bytes, pushing rxoff to %d, over buffer size of %d\n",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3215 n, n + session->rxoff, MSIM_READ_BUF_SIZE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3216 /* TODO: g_realloc like msn, yahoo, irc, jabber? */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3217 purple_connection_error(gc, _("Read buffer full"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3218 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3219
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3220 /* Null terminate */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3221 purple_debug_info("msim", "msim_input_cb: going to null terminate "
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3222 "at n=%d\n", n);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3223 session->rxbuf[session->rxoff + n] = 0;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3224
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3225 #ifdef MSIM_CHECK_EMBEDDED_NULLS
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3226 /* Check for embedded NULs. I don't handle them, and they shouldn't occur. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3227 if (strlen(session->rxbuf + session->rxoff) != n) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3228 /* Occurs after login, but it is not a null byte. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3229 purple_debug_info("msim", "msim_input_cb: strlen=%d, but read %d bytes"
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3230 "--null byte encountered?\n",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3231 strlen(session->rxbuf + session->rxoff), n);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3232 //purple_connection_error(gc, "Invalid message - null byte on input");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3233 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3234 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3235 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3236
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3237 session->rxoff += n;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3238 purple_debug_info("msim", "msim_input_cb: read=%d\n", n);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3239
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3240 #ifdef MSIM_DEBUG_RXBUF
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3241 purple_debug_info("msim", "buf=<%s>\n", session->rxbuf);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3242 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3243
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3244 /* Look for \\final\\ end markers. If found, process message. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3245 while((end = strstr(session->rxbuf, MSIM_FINAL_STRING))) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3246 MsimMessage *msg;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3247
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3248 #ifdef MSIM_DEBUG_RXBUF
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3249 purple_debug_info("msim", "in loop: buf=<%s>\n", session->rxbuf);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3250 #endif
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3251 *end = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3252 msg = msim_parse(g_strdup(session->rxbuf));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3253 if (!msg) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3254 purple_debug_info("msim", "msim_input_cb: couldn't parse rxbuf\n");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3255 purple_connection_error(gc, _("Unparseable message"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3256 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3257 /* Process message and then free it (processing function should
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3258 * clone message if it wants to keep it afterwards.) */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3259 if (!msim_preprocess_incoming(session, msg)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3260 msim_msg_dump("msim_input_cb: preprocessing message failed on msg: %s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3261 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3262 msim_msg_free(msg);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3263 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3264
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3265 /* Move remaining part of buffer to beginning. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3266 session->rxoff -= strlen(session->rxbuf) + strlen(MSIM_FINAL_STRING);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3267 memmove(session->rxbuf, end + strlen(MSIM_FINAL_STRING),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3268 MSIM_READ_BUF_SIZE - (end + strlen(MSIM_FINAL_STRING) - session->rxbuf));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3269
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3270 /* Clear end of buffer */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3271 //memset(end, 0, MSIM_READ_BUF_SIZE - (end - session->rxbuf));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3272 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3273 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3274
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3275 /* Setup a callback, to be called when a reply is received with the returned rid.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3276 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3277 * @param cb The callback, an MSIM_USER_LOOKUP_CB.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3278 * @param data Arbitrary user data to be passed to callback (probably an MsimMessage *).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3279 *
17951
c0758f8dff33 Update for 0.12.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17950
diff changeset
3280 * @return The request/reply ID, used to link replies with requests, or -1.
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3281 * Put the rid in your request, 'rid' field.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3282 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3283 * TODO: Make more generic and more specific:
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3284 * 1) MSIM_USER_LOOKUP_CB - make it for PERSIST_REPLY, not just user lookup
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3285 * 2) data - make it an MsimMessage?
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3286 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3287 static guint
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3288 msim_new_reply_callback(MsimSession *session, MSIM_USER_LOOKUP_CB cb,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3289 gpointer data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3290 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3291 guint rid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3292
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3293 g_return_val_if_fail(MSIM_SESSION_VALID(session), -1);
17951
c0758f8dff33 Update for 0.12.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17950
diff changeset
3294
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3295 rid = session->next_rid++;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3296
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3297 g_hash_table_insert(session->user_lookup_cb, GUINT_TO_POINTER(rid), cb);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3298 g_hash_table_insert(session->user_lookup_cb_data, GUINT_TO_POINTER(rid), data);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3299
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3300 return rid;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3301 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3302
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3303 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3304 * Callback when connected. Sets up input handlers.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3305 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3306 * @param data A PurpleConnection pointer.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3307 * @param source File descriptor.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3308 * @param error_message
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3309 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3310 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3311 msim_connect_cb(gpointer data, gint source, const gchar *error_message)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3312 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3313 PurpleConnection *gc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3314 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3315
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3316 g_return_if_fail(data != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3317
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3318 gc = (PurpleConnection *)data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3319 session = (MsimSession *)gc->proto_data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3320
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3321 if (source < 0) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3322 purple_connection_error(gc, _("Couldn't connect to host"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3323 purple_connection_error(gc, g_strdup_printf(
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3324 _("Couldn't connect to host: %s (%d)"),
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3325 error_message ? error_message : "no message given",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3326 source));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3327 return;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3328 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3329
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3330 session->fd = source;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3331
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3332 gc->inpa = purple_input_add(source, PURPLE_INPUT_READ, msim_input_cb, gc);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3333 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3334
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3335 /* Session methods */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3336
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3337 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3338 * Create a new MSIM session.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3339 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3340 * @param acct The account to create the session from.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3341 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3342 * @return Pointer to a new session. Free with msim_session_destroy.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3343 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3344 MsimSession *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3345 msim_session_new(PurpleAccount *acct)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3346 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3347 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3348
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3349 g_return_val_if_fail(acct != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3350
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3351 session = g_new0(MsimSession, 1);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3352
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3353 session->magic = MSIM_SESSION_STRUCT_MAGIC;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3354 session->account = acct;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3355 session->gc = purple_account_get_connection(acct);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3356 session->sesskey = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3357 session->userid = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3358 session->username = NULL;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3359 session->fd = -1;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3360
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3361 /* TODO: Remove. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3362 session->user_lookup_cb = g_hash_table_new_full(g_direct_hash,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3363 g_direct_equal, NULL, NULL); /* do NOT free function pointers! (values) */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3364 session->user_lookup_cb_data = g_hash_table_new_full(g_direct_hash,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3365 g_direct_equal, NULL, NULL);/* TODO: we don't know what the values are,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3366 they could be integers inside gpointers
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3367 or strings, so I don't freed them.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3368 Figure this out, once free cache. */
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
3369
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3370 /* Created in msim_process_server_info() */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3371 session->server_info = NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3372
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3373 session->rxoff = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3374 session->rxbuf = g_new0(gchar, MSIM_READ_BUF_SIZE);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3375 session->next_rid = 1;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3376 session->last_comm = time(NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3377 session->inbox_status = 0;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3378
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3379 return session;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3380 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3381
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3382 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3383 * Free a session.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3384 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3385 * @param session The session to destroy.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3386 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3387 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3388 msim_session_destroy(MsimSession *session)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3389 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3390 g_return_if_fail(MSIM_SESSION_VALID(session));
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3391
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3392 session->magic = -1;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3393
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3394 g_free(session->rxbuf);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3395 g_free(session->username);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3396
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3397 /* TODO: Remove. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3398 g_hash_table_destroy(session->user_lookup_cb);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3399 g_hash_table_destroy(session->user_lookup_cb_data);
17966
f1827c3dc65a Add msim_process_server_info() to save the server information dictionary
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17965
diff changeset
3400
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3401 if (session->server_info) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3402 g_hash_table_destroy(session->server_info);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3403 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3404
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3405 g_free(session);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3406 }
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3407
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3408 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3409 * Close the connection.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3410 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3411 * @param gc The connection.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3412 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3413 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3414 msim_close(PurpleConnection *gc)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3415 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3416 MsimSession *session;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3417
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3418 if (gc == NULL) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3419 return;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3420 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3421
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3422 session = (MsimSession *)gc->proto_data;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3423 if (session == NULL)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3424 return;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3425
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3426 gc->proto_data = NULL;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3427
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3428 if (!MSIM_SESSION_VALID(session)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3429 return;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3430 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3431
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3432 if (session->gc->inpa) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3433 purple_input_remove(session->gc->inpa);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3434 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3435
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3436 msim_session_destroy(session);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3437 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3438
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3439
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3440 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3441 * Check if a string is a userid (all numeric).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3442 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3443 * @param user The user id, email, or name.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3444 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3445 * @return TRUE if is userid, FALSE if not.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3446 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3447 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3448 msim_is_userid(const gchar *user)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3449 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3450 g_return_val_if_fail(user != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3451
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3452 return strspn(user, "0123456789") == strlen(user);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3453 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3454
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3455 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3456 * Check if a string is an email address (contains an @).
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3457 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3458 * @param user The user id, email, or name.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3459 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3460 * @return TRUE if is an email, FALSE if not.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3461 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3462 * This function is not intended to be used as a generic
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3463 * means of validating email addresses, but to distinguish
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3464 * between a user represented by an email address from
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3465 * other forms of identification.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3466 */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3467 static gboolean
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3468 msim_is_email(const gchar *user)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3469 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3470 g_return_val_if_fail(user != NULL, FALSE);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3471
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3472 return strchr(user, '@') != NULL;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3473 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3474
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3475
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3476 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3477 * Asynchronously lookup user information, calling callback when receive result.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3478 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3479 * @param session
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3480 * @param user The user id, email address, or username. Not freed.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3481 * @param cb Callback, called with user information when available.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3482 * @param data An arbitray data pointer passed to the callback.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3483 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3484 /* TODO: change to not use callbacks */
17969
8983b8340fdc Make msimprpl-internal functions static.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17968
diff changeset
3485 static void
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3486 msim_lookup_user(MsimSession *session, const gchar *user,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3487 MSIM_USER_LOOKUP_CB cb, gpointer data)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3488 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3489 MsimMessage *body;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3490 gchar *field_name;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3491 guint rid, cmd, dsn, lid;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3492
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3493 g_return_if_fail(MSIM_SESSION_VALID(session));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3494 g_return_if_fail(user != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3495 g_return_if_fail(cb != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3496
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3497 purple_debug_info("msim", "msim_lookup_userid: "
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3498 "asynchronously looking up <%s>\n", user);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3499
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3500 msim_msg_dump("msim_lookup_user: data=%s\n", (MsimMessage *)data);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3501
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3502 /* Setup callback. Response will be associated with request using 'rid'. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3503 rid = msim_new_reply_callback(session, cb, data);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3504
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3505 /* Send request */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3506
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3507 cmd = MSIM_CMD_GET;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3508
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3509 if (msim_is_userid(user)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3510 field_name = "UserID";
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3511 dsn = MG_MYSPACE_INFO_BY_ID_DSN;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3512 lid = MG_MYSPACE_INFO_BY_ID_LID;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3513 } else if (msim_is_email(user)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3514 field_name = "Email";
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3515 dsn = MG_MYSPACE_INFO_BY_STRING_DSN;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3516 lid = MG_MYSPACE_INFO_BY_STRING_LID;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3517 } else {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3518 field_name = "UserName";
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3519 dsn = MG_MYSPACE_INFO_BY_STRING_DSN;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3520 lid = MG_MYSPACE_INFO_BY_STRING_LID;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3521 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3522
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3523 body = msim_msg_new(
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3524 field_name, MSIM_TYPE_STRING, g_strdup(user),
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3525 NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3526
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3527 g_return_if_fail(msim_send(session,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3528 "persist", MSIM_TYPE_INTEGER, 1,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3529 "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3530 "cmd", MSIM_TYPE_INTEGER, 1,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3531 "dsn", MSIM_TYPE_INTEGER, dsn,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3532 "uid", MSIM_TYPE_INTEGER, session->userid,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3533 "lid", MSIM_TYPE_INTEGER, lid,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3534 "rid", MSIM_TYPE_INTEGER, rid,
18881
3ec39ff6b407 Use the new dictionary data type when:
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18879
diff changeset
3535 "body", MSIM_TYPE_DICTIONARY, body,
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3536 NULL));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3537 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3538
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3539
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3540 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3541 * Obtain the status text for a buddy.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3542 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3543 * @param buddy The buddy to obtain status text for.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3544 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3545 * @return Status text, or NULL if error. Caller g_free()'s.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3546 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3547 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3548 char *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3549 msim_status_text(PurpleBuddy *buddy)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3550 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3551 MsimSession *session;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3552 const gchar *display_name, *headline;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3553
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3554 g_return_val_if_fail(buddy != NULL, NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3555
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3556 session = (MsimSession *)buddy->account->gc->proto_data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3557 g_return_val_if_fail(MSIM_SESSION_VALID(session), NULL);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3558
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3559 display_name = headline = NULL;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3560
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3561 /* Retrieve display name and/or headline, depending on user preference. */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3562 if (purple_account_get_bool(session->account, "show_display_name", TRUE)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3563 display_name = purple_blist_node_get_string(&buddy->node, "DisplayName");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3564 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3565
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3566 if (purple_account_get_bool(session->account, "show_headline", FALSE)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3567 headline = purple_blist_node_get_string(&buddy->node, "Headline");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3568 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3569
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3570 /* Return appropriate combination of display name and/or headline, or neither. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3571
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3572 if (display_name && headline) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3573 return g_strconcat(display_name, " ", headline, NULL);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3574 }
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3575
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3576 if (display_name) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3577 return g_strdup(display_name);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3578 }
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3579
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3580 if (headline) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3581 return g_strdup(headline);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3582 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3583
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3584 return NULL;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3585 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3586
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3587 /**
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3588 * Obtain the tooltip text for a buddy.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3589 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3590 * @param buddy Buddy to obtain tooltip text on.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3591 * @param user_info Variable modified to have the tooltip text.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3592 * @param full TRUE if should obtain full tooltip text.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3593 *
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3594 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3595 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3596 msim_tooltip_text(PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info,
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3597 gboolean full)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3598 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3599 const gchar *str, *str2;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3600 gint n;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3601
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3602 g_return_if_fail(buddy != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3603 g_return_if_fail(user_info != NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3604
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3605 if (PURPLE_BUDDY_IS_ONLINE(buddy)) {
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3606 MsimSession *session;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3607
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3608 session = (MsimSession *)buddy->account->gc->proto_data;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3609
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3610 g_return_if_fail(MSIM_SESSION_VALID(session));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3611
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3612 /* TODO: if (full), do something different */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3613
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3614 /* Useful to identify the account the tooltip refers to.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3615 * Other prpls show this. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3616 str = purple_blist_node_get_string(&buddy->node, "UserName");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3617 if (str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3618 purple_notify_user_info_add_pair(user_info, _("User Name"), str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3619 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3620
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3621 /* a/s/l...the vitals */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3622 n = purple_blist_node_get_int(&buddy->node, "Age");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3623 if (n) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3624 purple_notify_user_info_add_pair(user_info, _("Age"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3625 g_strdup_printf("%d", n));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3626 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3627
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3628 str = purple_blist_node_get_string(&buddy->node, "Gender");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3629 if (str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3630 purple_notify_user_info_add_pair(user_info, _("Gender"), str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3631 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3632
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3633 str = purple_blist_node_get_string(&buddy->node, "Location");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3634 if (str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3635 purple_notify_user_info_add_pair(user_info, _("Location"), str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3636 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3637
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3638 /* Other information */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3639 str = purple_blist_node_get_string(&buddy->node, "Headline");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3640 if (str) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3641 purple_notify_user_info_add_pair(user_info, _("Headline"), str);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3642 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3643
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3644 str = purple_blist_node_get_string(&buddy->node, "BandName");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3645 str2 = purple_blist_node_get_string(&buddy->node, "SongName");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3646 if (str || str2) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3647 purple_notify_user_info_add_pair(user_info, _("Song"),
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3648 g_strdup_printf("%s - %s",
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3649 str ? str : _("Unknown Artist"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3650 str2 ? str2 : _("Unknown Song")));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3651 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3652
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3653 n = purple_blist_node_get_int(&buddy->node, "TotalFriends");
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3654 if (n) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3655 purple_notify_user_info_add_pair(user_info, _("Total Friends"),
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3656 g_strdup_printf("%d", n));
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3657 }
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3658
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3659 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3660 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3661
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3662 /** Actions menu for account. */
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3663 GList *
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3664 msim_actions(PurplePlugin *plugin, gpointer context)
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3665 {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3666 PurpleConnection *gc;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3667 GList *menu;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3668 //PurplePluginAction *act;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3669
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3670 gc = (PurpleConnection *)context;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3671
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3672 menu = NULL;
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3673
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3674 #if 0
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3675 /* TODO: find out how */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3676 act = purple_plugin_action_new(_("Find people..."), msim_);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3677 menu = g_list_append(menu, act);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3678
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3679 act = purple_plugin_action_new(_("Import friends..."), NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3680 menu = g_list_append(menu, act);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3681
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3682 act = purple_plugin_action_new(_("Change IM name..."), NULL);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3683 menu = g_list_append(menu, act);
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3684 #endif
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3685
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3686 return menu;
17965
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3687 }
e3687194f2b2 Use MsimMessage's new list type for status messages.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17963
diff changeset
3688
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3689 /** Callbacks called by Purple, to access this plugin. */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3690 PurplePluginProtocolInfo prpl_info = {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3691 /* options */
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3692 OPT_PROTO_USE_POINTSIZE /* specify font size in sane point size */
17948
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
3693 | OPT_PROTO_MAIL_CHECK,
c23122e0af91 Notify of new inbox messages (friend requests, inbox messages, comments),
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17947
diff changeset
3694
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3695 /* | OPT_PROTO_IM_IMAGE - TODO: direct images. */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3696 NULL, /* user_splits */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3697 NULL, /* protocol_options */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3698 NO_BUDDY_ICONS, /* icon_spec - TODO: eventually should add this */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3699 msim_list_icon, /* list_icon */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3700 NULL, /* list_emblems */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3701 msim_status_text, /* status_text */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3702 msim_tooltip_text, /* tooltip_text */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3703 msim_status_types, /* status_types */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3704 msim_blist_node_menu, /* blist_node_menu */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3705 NULL, /* chat_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3706 NULL, /* chat_info_defaults */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3707 msim_login, /* login */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3708 msim_close, /* close */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3709 msim_send_im, /* send_im */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3710 NULL, /* set_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3711 msim_send_typing, /* send_typing */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3712 msim_get_info, /* get_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3713 msim_set_status, /* set_status */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3714 msim_set_idle, /* set_idle */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3715 NULL, /* change_passwd */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3716 msim_add_buddy, /* add_buddy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3717 NULL, /* add_buddies */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3718 msim_remove_buddy, /* remove_buddy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3719 NULL, /* remove_buddies */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3720 NULL, /* add_permit */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3721 NULL, /* add_deny */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3722 NULL, /* rem_permit */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3723 NULL, /* rem_deny */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3724 NULL, /* set_permit_deny */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3725 NULL, /* join_chat */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3726 NULL, /* reject chat invite */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3727 NULL, /* get_chat_name */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3728 NULL, /* chat_invite */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3729 NULL, /* chat_leave */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3730 NULL, /* chat_whisper */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3731 NULL, /* chat_send */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3732 NULL, /* keepalive */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3733 NULL, /* register_user */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3734 NULL, /* get_cb_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3735 NULL, /* get_cb_away */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3736 NULL, /* alias_buddy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3737 NULL, /* group_buddy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3738 NULL, /* rename_group */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3739 NULL, /* buddy_free */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3740 NULL, /* convo_closed */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3741 NULL, /* normalize */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3742 NULL, /* set_buddy_icon */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3743 NULL, /* remove_group */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3744 NULL, /* get_cb_real_name */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3745 NULL, /* set_chat_topic */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3746 NULL, /* find_blist_chat */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3747 NULL, /* roomlist_get_list */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3748 NULL, /* roomlist_cancel */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3749 NULL, /* roomlist_expand_category */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3750 NULL, /* can_receive_file */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3751 NULL, /* send_file */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3752 NULL, /* new_xfer */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3753 msim_offline_message, /* offline_message */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3754 NULL, /* whiteboard_prpl_ops */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3755 msim_send_really_raw, /* send_raw */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3756 NULL, /* roomlist_room_serialize */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3757 NULL, /* _purple_reserved1 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3758 NULL, /* _purple_reserved2 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3759 NULL, /* _purple_reserved3 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3760 NULL /* _purple_reserved4 */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3761 };
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3762
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3763
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3764
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3765 /** Based on MSN's plugin info comments. */
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3766 PurplePluginInfo info = {
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3767 PURPLE_PLUGIN_MAGIC,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3768 PURPLE_MAJOR_VERSION,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3769 PURPLE_MINOR_VERSION,
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3770 PURPLE_PLUGIN_PROTOCOL, /**< type */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3771 NULL, /**< ui_requirement */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3772 0, /**< flags */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3773 NULL, /**< dependencies */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3774 PURPLE_PRIORITY_DEFAULT, /**< priority */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3775
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3776 "prpl-myspace", /**< id */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3777 "MySpaceIM", /**< name */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3778 MSIM_PRPL_VERSION_STRING, /**< version */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3779 /** summary */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3780 "MySpaceIM Protocol Plugin",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3781 /** description */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3782 "MySpaceIM Protocol Plugin",
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3783 "Jeff Connelly <jeff2@soc.pidgin.im>", /**< author */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3784 "http://developer.pidgin.im/wiki/MySpaceIM/", /**< homepage */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3785
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3786 msim_load, /**< load */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3787 NULL, /**< unload */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3788 NULL, /**< destroy */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3789 NULL, /**< ui_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3790 &prpl_info, /**< extra_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3791 NULL, /**< prefs_info */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3792 msim_actions, /**< msim_actions */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3793 NULL, /**< reserved1 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3794 NULL, /**< reserved2 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3795 NULL, /**< reserved3 */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3796 NULL /**< reserved4 */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3797 };
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3798
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3799
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3800 #ifdef MSIM_SELF_TEST
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3801 /** Test functions.
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3802 * Used to test or try out the internal workings of msimprpl. If you're reading
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3803 * this code for the first time, these functions can be instructive in learning
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3804 * how msimprpl is architected.
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3805 */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3806 void
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3807 msim_test_all(void) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3808 guint failures;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3809
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3810
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3811 failures = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3812 failures += msim_test_msg();
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3813 failures += msim_test_escaping();
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3814
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3815 if (failures) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3816 purple_debug_info("msim", "msim_test_all HAD FAILURES: %d\n", failures);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3817 } else {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3818 purple_debug_info("msim", "msim_test_all - all tests passed!\n");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3819 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3820 exit(0);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3821 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3822
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3823 /** Test MsimMessage for basic functionality. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3824 int
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3825 msim_test_msg(void)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3826 {
18879
e0cac5db762b In msim_msg_pack_element_dict(), separate keys and values with '=' for
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17976
diff changeset
3827 MsimMessage *msg, *msg_cloned, *msg2;
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3828 GList *list;
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3829 gchar *packed, *packed_expected, *packed_cloned;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3830 guint failures;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3831
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3832 failures = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3833
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3834 purple_debug_info("msim", "\n\nTesting MsimMessage\n");
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3835 msg = msim_msg_new(NULL); /* Create a new, empty message. */
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3836
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3837 /* Append some new elements. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3838 msg = msim_msg_append(msg, "bx", MSIM_TYPE_BINARY, g_string_new_len(g_strdup("XXX"), 3));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3839 msg = msim_msg_append(msg, "k1", MSIM_TYPE_STRING, g_strdup("v1"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3840 msg = msim_msg_append(msg, "k1", MSIM_TYPE_INTEGER, GUINT_TO_POINTER(42));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3841 msg = msim_msg_append(msg, "k1", MSIM_TYPE_STRING, g_strdup("v43"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3842 msg = msim_msg_append(msg, "k1", MSIM_TYPE_STRING, g_strdup("v52/xxx\\yyy"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3843 msg = msim_msg_append(msg, "k1", MSIM_TYPE_STRING, g_strdup("v7"));
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3844 msim_msg_dump("msg debug str=%s\n", msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3845 packed = msim_msg_pack(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3846
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3847 purple_debug_info("msim", "msg packed=%s\n", packed);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3848
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3849 packed_expected = "\\bx\\WFhY\\k1\\v1\\k1\\42\\k1"
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3850 "\\v43\\k1\\v52/1xxx/2yyy\\k1\\v7\\final\\";
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3851
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3852 if (0 != strcmp(packed, packed_expected)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3853 purple_debug_info("msim", "!!!(%d), msim_msg_pack not what expected: %s != %s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3854 ++failures, packed, packed_expected);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3855 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3856
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3857
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3858 msg_cloned = msim_msg_clone(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3859 packed_cloned = msim_msg_pack(msg_cloned);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3860
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3861 purple_debug_info("msim", "msg cloned=%s\n", packed_cloned);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3862 if (0 != strcmp(packed, packed_cloned)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3863 purple_debug_info("msim", "!!!(%d), msim_msg_pack on cloned message not equal to original: %s != %s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3864 ++failures, packed_cloned, packed);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3865 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3866
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3867 g_free(packed);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3868 g_free(packed_cloned);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3869 msim_msg_free(msg_cloned);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3870 msim_msg_free(msg);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3871
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3872 /* Try some of the more advanced functionality */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3873 list = NULL;
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3874
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3875 list = g_list_prepend(list, "item3");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3876 list = g_list_prepend(list, "item2");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3877 list = g_list_prepend(list, "item1");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3878 list = g_list_prepend(list, "item0");
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3879
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3880 msg = msim_msg_new(NULL);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3881 msg = msim_msg_append(msg, "string", MSIM_TYPE_STRING, g_strdup("string value"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3882 msg = msim_msg_append(msg, "raw", MSIM_TYPE_RAW, g_strdup("raw value"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3883 msg = msim_msg_append(msg, "integer", MSIM_TYPE_INTEGER, GUINT_TO_POINTER(3140));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3884 msg = msim_msg_append(msg, "boolean", MSIM_TYPE_BOOLEAN, GUINT_TO_POINTER(FALSE));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3885 msg = msim_msg_append(msg, "list", MSIM_TYPE_LIST, list);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3886
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3887 msim_msg_dump("msg with list=%s\n", msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3888 purple_debug_info("msim", "msg with list packed=%s\n", msim_msg_pack(msg));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3889
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3890 msg2 = msim_msg_new(NULL);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3891 msg2 = msim_msg_append(msg2, "outer", MSIM_TYPE_STRING, g_strdup("outer value"));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3892 msg2 = msim_msg_append(msg2, "body", MSIM_TYPE_DICTIONARY, msg);
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3893 msim_msg_dump("msg with dict=%s\n", msg2); /* msg2 now 'owns' msg */
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3894 purple_debug_info("msim", "msg with dict packed=%s\n", msim_msg_pack(msg2));
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3896 msim_msg_free(msg2);
18879
e0cac5db762b In msim_msg_pack_element_dict(), separate keys and values with '=' for
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17976
diff changeset
3897
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3898 return failures;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3899 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3900
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3901 /** Test protocol-level escaping/unescaping. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3902 int
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3903 msim_test_escaping(void)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3904 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3905 guint failures;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3906 gchar *raw, *escaped, *unescaped, *expected;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3907
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3908 failures = 0;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3909
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3910 purple_debug_info("msim", "\n\nTesting escaping\n");
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3911
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3912 raw = "hello/world\\hello/world";
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3913
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3914 escaped = msim_escape(raw);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3915 purple_debug_info("msim", "msim_test_escaping: raw=%s, escaped=%s\n", raw, escaped);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3916 expected = "hello/1world/2hello/1world";
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3917 if (0 != strcmp(escaped, expected)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3918 purple_debug_info("msim", "!!!(%d), msim_escape failed: %s != %s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3919 ++failures, escaped, expected);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3920 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3921
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3922
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3923 unescaped = msim_unescape(escaped);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3924 g_free(escaped);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3925 purple_debug_info("msim", "msim_test_escaping: unescaped=%s\n", unescaped);
18890
00499df91ffe Use cuddled if's etc. everywhere, to better match style of Pidgin/libpurple.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18885
diff changeset
3926 if (0 != strcmp(raw, unescaped)) {
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3927 purple_debug_info("msim", "!!!(%d), msim_unescape failed: %s != %s\n",
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3928 ++failures, raw, unescaped);
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3929 }
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3930
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3931 return failures;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3932 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3933 #endif
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3934
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3935 /** Initialize plugin. */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3936 void
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3937 init_plugin(PurplePlugin *plugin)
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3938 {
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3939 PurpleAccountOption *option;
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3940 #ifdef MSIM_SELF_TEST
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3941 msim_test_all();
18905
3f95e691bad2 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18904
diff changeset
3942 exit(0);
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3943 #endif /* MSIM_SELF_TEST */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3944
18898
b94f831750e0 Clarify password-too-long error (MySpace limits it, not us), and clean up
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18897
diff changeset
3945
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3946 /* TODO: default to automatically try different ports. Make the user be
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3947 * able to set the first port to try (like LastConnectedPort in Windows client). */
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3948 option = purple_account_option_string_new(_("Connect server"), "server", MSIM_SERVER);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3949 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3950
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3951 option = purple_account_option_int_new(_("Connect port"), "port", MSIM_PORT);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3952 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3953
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3954 option = purple_account_option_bool_new(_("Show display name in status text"), "show_display_name", TRUE);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3955 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3956
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3957 option = purple_account_option_bool_new(_("Show headline in status text"), "show_headline", TRUE);
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3958 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
3959
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3960 option = purple_account_option_bool_new(_("Send emoticons"), "emoticons", FALSE);
17958
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
3961 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
58c790b37e03 Add account option to send emoticons, defaulting to off since can't currently
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17957
diff changeset
3962
17967
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
3963 #ifdef MSIM_USER_REALLY_CARES_ABOUT_PRECISE_FONT_SIZES
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3964 option = purple_account_option_int_new(_("Screen resolution (dots per inch)"), "dpi", MSIM_DEFAULT_DPI);
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
3965 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
3966
18895
f732d072b118 Change all code to better match the style of libpurple - use 8-space tabs
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18894
diff changeset
3967 option = purple_account_option_int_new(_("Base font size (points)"), "base_font_size", MSIM_BASE_FONT_POINT_SIZE);
17952
4001661344e4 Make DPI and base font point size configurable in account options. This
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17951
diff changeset
3968 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
17967
c9acdf96e74e Update login process to more closely match official client.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17966
diff changeset
3969 #endif
18897
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3970
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3971 /* TODO: /zap command. Problem with this is that there are different kinds of zaps,
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3972 * and the selection is best made available in a drop-down menu, instead of forcing
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3973 * the user to type the kind of zap and memorizing available zaps (or putting it in the
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3974 * help menu). A new "attention" API, for zap/buzz/nudge (different protocols) will
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3975 * solve this. */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3976 #if 0
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3977 purple_cmd_register("zap", /* cmd */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3978 "w", /* args - accept a single word */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3979 PURPLE_CMD_P_PRPL, /* priority */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3980 PURPLE_CMD_FLAG_IM | PURPLE_CMD_FLAG_PRPL_ONLY, /* flags */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3981 "prpl-myspace", /* prpl_id */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3982 msim_cmd_zap, /* func */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3983 _("zap: zap a user to get their attention"), /* helpstr */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3984 NULL); /* data */
d0be4366e876 Change msim_msg_new() and msim_msg_new_v() to accept the first key name as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 18895
diff changeset
3985 #endif
17693
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3986 }
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3987
3c613fec5617 Set status to current status when signing on. This makes the "Sign in as
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17692
diff changeset
3988 PURPLE_INIT_PLUGIN(myspace, init_plugin, info);