libpurple/protocols/myspace/myspace.h

Sun, 19 Aug 2007 21:43:12 +0000

author
Jeff Connelly <jeff2@soc.pidgin.im>
date
Sun, 19 Aug 2007 21:43:12 +0000
branch
soc.2007.msimprpl
changeset 19516
b18f753b8637
parent 19514
9456ceb35a25
child 19526
fbe48d11a1ff
permissions
-rw-r--r--

For each msim_msg_get_*() function that takes an element name, add
msim_msg_get_*_from_element() that takes an MsimMessageElement *. Allows for
operating directly on MsimMessageElement *'s instead of indirectly by
element name. Important for looping.

17930
d8908611bf64 Use symbolic constants for persist messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17924
diff changeset
1 /* MySpaceIM Protocol Plugin, header file
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
2 *
18013
3238cfe8d879 Fix email address.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18012
diff changeset
3 * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im>
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
4 *
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
5 * This program is free software; you can redistribute it and/or modify
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
6 * it under the terms of the GNU General Public License as published by
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
7 * the Free Software Foundation; either version 2 of the License, or
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
8 * (at your option) any later version.
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
9 *
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
10 * This program is distributed in the hope that it will be useful,
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
13 * GNU General Public License for more details.
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
14 *
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
16 * along with this program; if not, write to the Free Software
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
18 */
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
19
17902
8e0b1d066efb Add partial implementation of MsimMessage (not used anywhere yet).
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17901
diff changeset
20 #ifndef _MYSPACE_MYSPACE_H
8e0b1d066efb Add partial implementation of MsimMessage (not used anywhere yet).
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17901
diff changeset
21 #define _MYSPACE_MYSPACE_H
8e0b1d066efb Add partial implementation of MsimMessage (not used anywhere yet).
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17901
diff changeset
22
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
23 /* Other includes */
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
24 #include <string.h>
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
25 #include <errno.h>/* for EAGAIN */
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
26 #include <stdarg.h>
18061
76e936ec829e Implement round() if it is not available, using floor().
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18060
diff changeset
27 #include <math.h>
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
28
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
29 #include <glib.h>
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
30
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
31 #ifdef _WIN32
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
32 #include "win32dep.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
33 #else
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
34 /* For recv() and send(); needed to match Win32 */
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
35 #include <sys/types.h>
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
36 #include <sys/socket.h>
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
37 #endif
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
38
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
39 #include "internal.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
40
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
41 #include "notify.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
42 #include "plugin.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
43 #include "accountopt.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
44 #include "version.h"
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
45 #include "cipher.h" /* for SHA-1 */
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
46 #include "util.h" /* for base64 */
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
47 #include "debug.h" /* for purple_debug_info */
17995
8ca08f4eface Add msim_markup_to_html() to convert MySpaceIM-style markup to Purple-compatible
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17993
diff changeset
48 #include "xmlnode.h"
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
49
17910
9bbfa75ba90b (Incomplete - plugin does not load) Begin migrating protocol message receiving to MsimMessage.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17906
diff changeset
50 /* MySpaceIM includes */
9bbfa75ba90b (Incomplete - plugin does not load) Begin migrating protocol message receiving to MsimMessage.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17906
diff changeset
51 #include "message.h"
9bbfa75ba90b (Incomplete - plugin does not load) Begin migrating protocol message receiving to MsimMessage.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17906
diff changeset
52
17892
66984c1aac79 Re-add RC4 code from Samba, whose use is enabled by not defining
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17890
diff changeset
53 /* Conditional compilation options */
18064
527bea0f11ab Disable sending third-party client version to oncoming buddies.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18061
diff changeset
54 /* Send third-party client version? (Recognized by us and Miranda's plugin) */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
55 /*#define MSIM_SEND_CLIENT_VERSION */
17892
66984c1aac79 Re-add RC4 code from Samba, whose use is enabled by not defining
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17890
diff changeset
56
66984c1aac79 Re-add RC4 code from Samba, whose use is enabled by not defining
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17890
diff changeset
57 /* Debugging options */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
58 /*#define MSIM_DEBUG_MSG */
16335
0c2b32acc27a Replace printf() in MySpaceIM prpl with purple_debug_info().
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 16333
diff changeset
59 /* Low-level and rarely needed */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
60 /*#define MSIM_DEBUG_PARSE */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
61 /*#define MSIM_DEBUG_LOGIN_CHALLENGE*/
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
62 /*#define MSIM_DEBUG_RXBUF */
17892
66984c1aac79 Re-add RC4 code from Samba, whose use is enabled by not defining
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17890
diff changeset
63
17984
9a53a8583bba Add msim_unrecognized() to handle unhandled messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17982
diff changeset
64 /* Define to cause init_plugin() to run some tests and print
9a53a8583bba Add msim_unrecognized() to handle unhandled messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17982
diff changeset
65 * the results to the Purple debug log, then exit. Useful to
9a53a8583bba Add msim_unrecognized() to handle unhandled messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17982
diff changeset
66 * run with 'pidgin -d' to see the output. Don't define if
9a53a8583bba Add msim_unrecognized() to handle unhandled messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17982
diff changeset
67 * you want to actually use the plugin! */
19160
b22fa2dbfe05 Re-enable non-test mode. This revision now correctly handles links with paths.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19159
diff changeset
68 /*#define MSIM_SELF_TEST */
17984
9a53a8583bba Add msim_unrecognized() to handle unhandled messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17982
diff changeset
69
19506
0e4b5fe04c11 Re-apply the msimprpl-specific parts of revision
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19172
diff changeset
70 /* Use the attention API for zaps? */
19507
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
71 /* Can't have until >=2.2.0, since is a new API. */
19509
75059eaf1be9 Link to profile in get info.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19508
diff changeset
72 /*#define MSIM_USE_ATTENTION_API */
19506
0e4b5fe04c11 Re-apply the msimprpl-specific parts of revision
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19172
diff changeset
73
17892
66984c1aac79 Re-add RC4 code from Samba, whose use is enabled by not defining
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17890
diff changeset
74 /* Constants */
16335
0c2b32acc27a Replace printf() in MySpaceIM prpl with purple_debug_info().
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 16333
diff changeset
75
18017
48384af36ad9 Increase password length limit to 10 and update changes file.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18016
diff changeset
76 /* Maximum length of a password that is acceptable. This is the limit
48384af36ad9 Increase password length limit to 10 and update changes file.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18016
diff changeset
77 * on the official client (build 679) and on the 'new password' field at
48384af36ad9 Increase password length limit to 10 and update changes file.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18016
diff changeset
78 * http://settings.myspace.com/index.cfm?fuseaction=user.changepassword
48384af36ad9 Increase password length limit to 10 and update changes file.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18016
diff changeset
79 * (though curiously, not on the 'current password' field). */
19510
1917495b301e No longer check the length of passwords - instead, pass the password to the
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19509
diff changeset
80
1917495b301e No longer check the length of passwords - instead, pass the password to the
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19509
diff changeset
81 /* Not defined; instead have the client reject the password, until libpurple
1917495b301e No longer check the length of passwords - instead, pass the password to the
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19509
diff changeset
82 * supports specifying a length limit on the protocol's password. */
1917495b301e No longer check the length of passwords - instead, pass the password to the
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19509
diff changeset
83 /* #define MSIM_MAX_PASSWORD_LENGTH 10 */
17998
e739eb3e0567 Fail with our own error message if an entered password is greater than 8
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17995
diff changeset
84
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
85 /* Build version of MySpaceIM to report to servers (1.0.xxx.0) */
18057
77eb36712aca Update login process to more closely match official client.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18056
diff changeset
86 #define MSIM_CLIENT_VERSION 697
77eb36712aca Update login process to more closely match official client.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18056
diff changeset
87
77eb36712aca Update login process to more closely match official client.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18056
diff changeset
88 /* Language codes from http://www.microsoft.com/globaldev/reference/oslocversion.mspx */
77eb36712aca Update login process to more closely match official client.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18056
diff changeset
89 #define MSIM_LANGUAGE_ID_ENGLISH 1033
77eb36712aca Update login process to more closely match official client.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18056
diff changeset
90 #define MSIM_LANGUAGE_NAME_ENGLISH "ENGLISH"
18043
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
91
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
92 /* msimprpl version string of this plugin */
19164
1fd7022f57eb Update for 0.14.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19160
diff changeset
93 #define MSIM_PRPL_VERSION_STRING "0.14"
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
94
18020
f951defd22fd Add msim_check_alive(), called every MSIM_KEEPALIVE_INTERVAL_CHECK milliseconds,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18019
diff changeset
95 /* Default server */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
96 #define MSIM_SERVER "im.myspace.akadns.net"
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
97 #define MSIM_PORT 1863 /* TODO: alternate ports and automatic */
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
98
18020
f951defd22fd Add msim_check_alive(), called every MSIM_KEEPALIVE_INTERVAL_CHECK milliseconds,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18019
diff changeset
99 /* Time between keepalives (seconds) - if no data within this time, is dead. */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
100 #define MSIM_KEEPALIVE_INTERVAL (3 * 60)
18020
f951defd22fd Add msim_check_alive(), called every MSIM_KEEPALIVE_INTERVAL_CHECK milliseconds,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18019
diff changeset
101
f951defd22fd Add msim_check_alive(), called every MSIM_KEEPALIVE_INTERVAL_CHECK milliseconds,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18019
diff changeset
102 /* Time to check if alive (milliseconds) */
18023
11b08b55ff2f Lower timeout to 2 minutes (to be closer to keepalive of 124 s).
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18022
diff changeset
103 #define MSIM_KEEPALIVE_INTERVAL_CHECK (30 * 1000)
18020
f951defd22fd Add msim_check_alive(), called every MSIM_KEEPALIVE_INTERVAL_CHECK milliseconds,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18019
diff changeset
104
18037
038a99b09d35 Add msim_check_mail to check for new mail (called periodically), and
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18036
diff changeset
105 /* Time to check for new mail (milliseconds) */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
106 #define MSIM_MAIL_INTERVAL_CHECK (60 * 1000)
18037
038a99b09d35 Add msim_check_mail to check for new mail (called periodically), and
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18036
diff changeset
107
038a99b09d35 Add msim_check_mail to check for new mail (called periodically), and
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18036
diff changeset
108
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
109 /* Constants */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
110 #define HASH_SIZE 0x14 /**< Size of SHA-1 hash for login */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
111 #define NONCE_SIZE 0x20 /**< Half of decoded 'nc' field */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
112 #define MSIM_READ_BUF_SIZE (15 * 1024) /**< Receive buffer size */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
113 #define MSIM_FINAL_STRING "\\final\\" /**< Message end marker */
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
114
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
115 /* Messages */
18043
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
116 #define MSIM_BM_INSTANT 1
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
117 #define MSIM_BM_STATUS 100
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
118 #define MSIM_BM_ACTION 121
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
119 #define MSIM_BM_MEDIA 122
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
120 #define MSIM_BM_PROFILE 124
6c7ea1ce1beb Support unofficial bm code 200, also used by Miranda IM plugin, to report
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18042
diff changeset
121 #define MSIM_BM_UNOFFICIAL_CLIENT 200
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
122
17901
ecaeb5f6e531 Replacement magic numbers by symbolic constants.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17899
diff changeset
123 /* Authentication algorithm for login2 */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
124 #define MSIM_AUTH_ALGORITHM 196610
17901
ecaeb5f6e531 Replacement magic numbers by symbolic constants.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17899
diff changeset
125
18031
4ebc87fe43d9 Lowercase password before sending it. Closes #2066.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18028
diff changeset
126 /* Recognized challenge length */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
127 #define MSIM_AUTH_CHALLENGE_LENGTH 0x40
18031
4ebc87fe43d9 Lowercase password before sending it. Closes #2066.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18028
diff changeset
128
17985
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
129 /* TODO: obtain IPs of network interfaces from user's machine, instead of
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
130 * hardcoding these values below (used in msim_compute_login_response).
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
131 * This is not immediately
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
132 * important because you can still connect and perform basic
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
133 * functions of the protocol. There is also a high chance that the addreses
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
134 * are RFC1918 private, so the servers couldn't do anything with them
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
135 * anyways except make note of that fact. Probably important for any
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
136 * kind of direct connection, or file transfer functionality.
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
137 */
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
138
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
139 #define MSIM_LOGIN_IP_LIST "\x00\x00\x00\x00\x05\x7f\x00\x00\x01\x00\x00\x00\x00\x0a\x00\x00\x40\xc0\xa8\x58\x01\xc0\xa8\x3c\x01"
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
140 #define MSIM_LOGIN_IP_LIST_LEN 25
17985
930a05d4e86f Use constants for IP address list, defined in myspace.h.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17984
diff changeset
141
17933
03228b5c78b5 Show online buddies on buddy list as online.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17930
diff changeset
142 /* Indexes into status string (0|1|2|3|..., but 0 always empty) */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
143 #define MSIM_STATUS_ORDINAL_EMPTY 0
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
144 #define MSIM_STATUS_ORDINAL_UNKNOWNs 1
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
145 #define MSIM_STATUS_ORDINAL_ONLINE 2
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
146 #define MSIM_STATUS_ORDINAL_UNKNOWNss 3
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
147 #define MSIM_STATUS_ORDINAL_HEADLINE 4
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
148 #define MSIM_STATUS_ORDINAL_UNKNOWNls 5
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
149 #define MSIM_STATUS_ORDINAL_UNKNOWN 6
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
150 #define MSIM_STATUS_ORDINAL_UNKNOWN1 7
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
151 #define MSIM_STATUS_ORDINAL_UNKNOWNp 8
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
152 #define MSIM_STATUS_ORDINAL_UNKNOWN2 9
17933
03228b5c78b5 Show online buddies on buddy list as online.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17930
diff changeset
153
18007
d9fcb200fff6 Recognize online/away status of buddies on buddy list.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18003
diff changeset
154 /* Status codes - states a buddy (or you!) can be in. */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
155 #define MSIM_STATUS_CODE_OFFLINE_OR_HIDDEN 0
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
156 #define MSIM_STATUS_CODE_ONLINE 1
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
157 #define MSIM_STATUS_CODE_IDLE 2
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
158 #define MSIM_STATUS_CODE_AWAY 5
18024
7059556f0804 General clean up and adding more error-checking.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18023
diff changeset
159
7059556f0804 General clean up and adding more error-checking.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18023
diff changeset
160 /* Text formatting bits for <f s=#> */
7059556f0804 General clean up and adding more error-checking.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18023
diff changeset
161 #define MSIM_TEXT_BOLD 1
18028
85ed2582be94 Support sending some formatted text in instant messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18025
diff changeset
162 #define MSIM_TEXT_ITALIC 2
18024
7059556f0804 General clean up and adding more error-checking.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18023
diff changeset
163 #define MSIM_TEXT_UNDERLINE 4
18007
d9fcb200fff6 Recognize online/away status of buddies on buddy list.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18003
diff changeset
164
18042
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
165 /* Default baseline size of purple's fonts, in points. What is size 3 in points.
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
166 * _font_scale specifies scaling factor relative to this point size. Note this
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
167 * is only the default; it is configurable in account options. */
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
168 #define MSIM_BASE_FONT_POINT_SIZE 8
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
169
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
170 /* Default display's DPI. 96 is common but it can differ. Also configurable
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
171 * in account options. */
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
172 #define MSIM_DEFAULT_DPI 96
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
173
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
174
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
175 /* Random number in every MsimSession, to ensure it is valid. */
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
176 #define MSIM_SESSION_STRUCT_MAGIC 0xe4a6752b
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
177
18038
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
178 /* Inbox status bitfield values for MsimSession.inbox_status */
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
179 #define MSIM_INBOX_MAIL (1 << 0)
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
180 #define MSIM_INBOX_BLOG_COMMENT (1 << 1)
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
181 #define MSIM_INBOX_PROFILE_COMMENT (1 << 2)
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
182 #define MSIM_INBOX_FRIEND_REQUEST (1 << 3)
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
183 #define MSIM_INBOX_PICTURE_COMMENT (1 << 4)
4a904c0a564e Notify of new inbox messages (friend requests, inbox messages, comments),
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18037
diff changeset
184
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
185 /* Everything needed to keep track of a session (proto_data field in PurpleConnection) */
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
186 typedef struct _MsimSession
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
187 {
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
188 guint magic; /**< MSIM_SESSION_STRUCT_MAGIC */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
189 PurpleAccount *account;
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
190 PurpleConnection *gc;
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
191 guint sesskey; /**< Session key from server */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
192 guint userid; /**< This user's numeric user ID */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
193 gchar *username; /**< This user's unique username */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
194 gint fd; /**< File descriptor to/from server */
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
195
17957
bc5874ed7a09 Add msim_uid2username_from_blist() to lookup a username by userid, by
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17953
diff changeset
196 /* TODO: Remove. */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
197 GHashTable *user_lookup_cb; /**< Username -> userid lookup callback */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
198 GHashTable *user_lookup_cb_data; /**< Username -> userid lookup callback data */
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
199
19514
9456ceb35a25 Replace msim_parse_body(), which returns a GHashTable * and takes a gchar *,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19510
diff changeset
200 MsimMessage *server_info; /**< Parameters from server */
18056
2c2d509ebe78 Add msim_process_server_info() to save the server information dictionary
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18055
diff changeset
201
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
202 gchar *rxbuf; /**< Receive buffer */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
203 guint rxoff; /**< Receive buffer offset */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
204 guint next_rid; /**< Next request/response ID */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
205 time_t last_comm; /**< Time received last communication */
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
206 guint inbox_status; /**< Bit field of inbox notifications */
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
207 } MsimSession;
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
208
19507
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
209 /* Check if an MsimSession is valid */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
210 #define MSIM_SESSION_VALID(s) (session != NULL && session->magic == MSIM_SESSION_STRUCT_MAGIC)
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
211
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
212 /* Hold ephemeral information about buddies, for proto_data of PurpleBuddy. */
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
213 /* GHashTable? */
19166
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
214 typedef struct _MsimUser
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
215 {
19166
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
216 PurpleBuddy *buddy;
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
217 guint client_cv;
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
218 gchar *client_info;
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
219 guint age;
19166
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
220 gchar *gender;
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
221 gchar *location;
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
222 guint total_friends;
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
223 gchar *headline;
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
224 gchar *display_name;
19166
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
225 /* Note: uid is in &buddy->node (set_blist_node_int), since it never changes */
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
226 gchar *username;
19166
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
227 gchar *band_name, *song_name;
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
228 gchar *image_url;
d625520b98ac Use MsimUser structure for storing ephemeral information on users, instead
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19164
diff changeset
229 } MsimUser;
19159
31c6475e3ff1 Rewrite escaping so that it is more correct, in order to fix #2521. Test it.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19149
diff changeset
230
19507
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
231
19508
cb76a8c90128 If the attention API is being used, then redefine our attention type
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19507
diff changeset
232 #ifdef MSIM_USE_ATTENTION_API
cb76a8c90128 If the attention API is being used, then redefine our attention type
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19507
diff changeset
233 #define MsimAttentionType PurpleAttentionType
cb76a8c90128 If the attention API is being used, then redefine our attention type
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19507
diff changeset
234 #else
19507
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
235 /* Different kinds of attention alerts. Not yet in libpurple, so define
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
236 * our own structure here. */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
237 typedef struct _MsimAttentionType MsimAttentionType;
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
238
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
239 /** A type of "attention" message (zap, nudge, buzz, etc. depending on the
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
240 * protocol) that can be sent and received. */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
241 struct _MsimAttentionType {
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
242 PurpleStoredImage *icon;
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
243 const gchar *description; /**< Shown before sending. */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
244 const gchar *incoming_description; /**< Shown when sent. */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
245 const gchar *outgoing_description; /**< Shown when received. */
5489112d974c Make msimprpl work without a libpurple attention API.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19506
diff changeset
246 };
19508
cb76a8c90128 If the attention API is being used, then redefine our attention type
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19507
diff changeset
247 #endif
17911
8c54f28e3067 (Plugin loads, but cannot do anything useful)
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17910
diff changeset
248
18059
9dcbd6ed0b28 Make msimprpl-internal functions static.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18058
diff changeset
249 gchar *str_replace(const gchar *str, const gchar *old, const gchar *new);
9dcbd6ed0b28 Make msimprpl-internal functions static.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18058
diff changeset
250
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
251 /* Callback function pointer type for when a user's information is received,
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
252 * initiated from a user lookup. */
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
253 typedef void (*MSIM_USER_LOOKUP_CB)(MsimSession *session, MsimMessage *userinfo, gpointer data);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
254
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
255 /* Functions */
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
256 gboolean msim_load(PurplePlugin *plugin);
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
257 GList *msim_status_types(PurpleAccount *acct);
18053
e0e7522cda38 Allow sending zaps through buddy list menu.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18052
diff changeset
258
19506
0e4b5fe04c11 Re-apply the msimprpl-specific parts of revision
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19172
diff changeset
259 GList *msim_attention_types(PurpleAccount *acct);
0e4b5fe04c11 Re-apply the msimprpl-specific parts of revision
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19172
diff changeset
260 gboolean msim_send_attention(PurpleConnection *gc, gchar *username, guint code);
0e4b5fe04c11 Re-apply the msimprpl-specific parts of revision
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19172
diff changeset
261
18053
e0e7522cda38 Allow sending zaps through buddy list menu.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18052
diff changeset
262 GList *msim_blist_node_menu(PurpleBlistNode *node);
e0e7522cda38 Allow sending zaps through buddy list menu.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18052
diff changeset
263
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
264 const gchar *msim_list_icon(PurpleAccount *acct, PurpleBuddy *buddy);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
265
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
266 gboolean msim_send_raw(MsimSession *session, const gchar *msg);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
267
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
268 void msim_login(PurpleAccount *acct);
17934
d163dde3aff1 Add, but do not use, incomplete functions for using typing notifications.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17933
diff changeset
269
17970
3c92ce43ddae Change to use const gchar * where appropriate.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17969
diff changeset
270 int msim_send_im(PurpleConnection *gc, const gchar *who, const gchar *message,
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
271 PurpleMessageFlags flags);
18028
85ed2582be94 Support sending some formatted text in instant messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18025
diff changeset
272
18042
390fbe2a4e87 Make DPI and base font point size configurable in account options. This
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18039
diff changeset
273 typedef void (*MSIM_XMLNODE_CONVERT)(MsimSession *, xmlnode *, gchar **, gchar **);
17934
d163dde3aff1 Add, but do not use, incomplete functions for using typing notifications.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17933
diff changeset
274
17970
3c92ce43ddae Change to use const gchar * where appropriate.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17969
diff changeset
275 unsigned int msim_send_typing(PurpleConnection *gc, const gchar *name, PurpleTypingState state);
3c92ce43ddae Change to use const gchar * where appropriate.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17969
diff changeset
276 void msim_get_info(PurpleConnection *gc, const gchar *name);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
277
18012
c83766296952 Allow setting status to away or online.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18007
diff changeset
278 void msim_set_status(PurpleAccount *account, PurpleStatus *status);
18019
dc5d60a5ac54 Add support for idle.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18017
diff changeset
279 void msim_set_idle(PurpleConnection *gc, int time);
18012
c83766296952 Allow setting status to away or online.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18007
diff changeset
280
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
281 void msim_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group);
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
282 void msim_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group);
17937
0f30d74fcd9c Add incomplete msim_add_buddy() implementation.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17935
diff changeset
283
17968
c29352b95fa6 Add msim_offline_message() for offline message status. Always return TRUE,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17966
diff changeset
284 gboolean msim_offline_message(const PurpleBuddy *buddy);
c29352b95fa6 Add msim_offline_message() for offline message status. Always return TRUE,
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17966
diff changeset
285
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
286 MsimSession *msim_session_new(PurpleAccount *acct);
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
287 void msim_session_destroy(MsimSession *session);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
288
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
289 void msim_close(PurpleConnection *gc);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
290
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
291 char *msim_status_text(PurpleBuddy *buddy);
19149
b9e554509131 Change all code to better match the style of libpurple - use 8-space tabs
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 19135
diff changeset
292 void msim_tooltip_text(PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gboolean full);
18055
ed3a5b60eff6 Use MsimMessage's new list type for status messages.
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 18053
diff changeset
293 GList *msim_actions(PurplePlugin *plugin, gpointer context);
16333
0fdea8ad21cb Add MySpaceIM header file and reorganize functions.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
diff changeset
294
17995
8ca08f4eface Add msim_markup_to_html() to convert MySpaceIM-style markup to Purple-compatible
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17993
diff changeset
295 #ifdef MSIM_SELF_TEST
8ca08f4eface Add msim_markup_to_html() to convert MySpaceIM-style markup to Purple-compatible
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17993
diff changeset
296 void msim_test_all(void) __attribute__((__noreturn__));
17981
2e330f731690 Add msim_test_all() and related procedures, to perform basic functionality
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17970
diff changeset
297 int msim_test_msg(void);
2e330f731690 Add msim_test_all() and related procedures, to perform basic functionality
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17970
diff changeset
298 int msim_test_escaping(void);
17995
8ca08f4eface Add msim_markup_to_html() to convert MySpaceIM-style markup to Purple-compatible
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17993
diff changeset
299 #endif
17981
2e330f731690 Add msim_test_all() and related procedures, to perform basic functionality
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17970
diff changeset
300
17903
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
301 void init_plugin(PurplePlugin *plugin);
1c344d9266b8 Use MsimMessage via msim_send(), instead of msim_send_raw(). This is a more
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17902
diff changeset
302
17902
8e0b1d066efb Add partial implementation of MsimMessage (not used anywhere yet).
Jeff Connelly <jeff2@soc.pidgin.im>
parents: 17901
diff changeset
303 #endif /* !_MYSPACE_MYSPACE_H */

mercurial