Tue, 22 Jun 2010 22:44:28 +0000
Destroy Parts when the SlpMessage is destroyed.
| 5361 | 1 | /** |
| 2 | * @file state.c State functions and definitions | |
| 3 | * | |
| 15884 | 4 | * purple |
| 5361 | 5 | * |
| 15884 | 6 | * Purple is the legal property of its developers, whose names are too numerous |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
7 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
8 | * source distribution. |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5824
diff
changeset
|
9 | * |
| 5361 | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by | |
| 12 | * the Free Software Foundation; either version 2 of the License, or | |
| 13 | * (at your option) any later version. | |
| 14 | * | |
| 15 | * This program is distributed in the hope that it will be useful, | |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 | * GNU General Public License for more details. | |
| 19 | * | |
| 20 | * You should have received a copy of the GNU General Public License | |
| 21 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15884
diff
changeset
|
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 5361 | 23 | */ |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
24 | |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
25 | #include "internal.h" |
|
30945
b875cf477e19
Remove unnecesary includes from msn.h.
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
30930
diff
changeset
|
26 | #include "debug.h" |
|
29305
202cb72ed5b0
Minor header file cleanup. Mostly I wanted to move some enums above some #includes
Mark Doliner <markdoliner@pidgin.im>
parents:
29300
diff
changeset
|
27 | |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
28 | #include "core.h" |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
29 | |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
30 | #include "notification.h" |
| 5361 | 31 | #include "state.h" |
| 32 | ||
| 33 | static const char *away_text[] = | |
| 34 | { | |
| 35 | N_("Available"), | |
| 36 | N_("Available"), | |
| 37 | N_("Busy"), | |
| 38 | N_("Idle"), | |
| 39 | N_("Be Right Back"), | |
| 40 | N_("Away From Computer"), | |
| 41 | N_("On The Phone"), | |
| 42 | N_("Out To Lunch"), | |
| 43 | N_("Available"), | |
| 44 | N_("Available") | |
| 45 | }; | |
| 46 | ||
| 13866 | 47 | /* |
| 48 | * WLM media PSM info build prcedure | |
| 49 | * | |
| 50 | * Result can like: | |
|
20591
8469ac3acbec
Various (untested) changes to the CurrentMedia parsing. This code is a
Richard Laager <rlaager@pidgin.im>
parents:
20590
diff
changeset
|
51 | * <CurrentMedia>\0Music\01\0{0} - {1}\0Song Title\0Song Artist\0Song Album\0\0</CurrentMedia>\ |
| 13866 | 52 | * <CurrentMedia>\0Games\01\0Playing {0}\0Game Name\0</CurrentMedia>\ |
| 53 | * <CurrentMedia>\0Office\01\0Office Message\0Office App Name\0</CurrentMedia>" | |
| 54 | */ | |
|
20474
b0ef257ef8d4
The second msn.tgz from SF Patch #1621854 from Ka-Hing Cheung.
Ka-Hing Cheung <khc@pidgin.im>
parents:
20472
diff
changeset
|
55 | static char * |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
56 | msn_build_psm(const char *psmstr,const char *mediastr, const char *guidstr, guint protocol_ver) |
| 13856 | 57 | { |
| 58 | xmlnode *dataNode,*psmNode,*mediaNode,*guidNode; | |
| 59 | char *result; | |
| 60 | int length; | |
| 61 | ||
| 62 | dataNode = xmlnode_new("Data"); | |
| 63 | ||
| 64 | psmNode = xmlnode_new("PSM"); | |
| 65 | if(psmstr != NULL){ | |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
66 | xmlnode_insert_data(psmNode, psmstr, -1); |
| 13856 | 67 | } |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
68 | xmlnode_insert_child(dataNode, psmNode); |
| 13856 | 69 | |
| 70 | mediaNode = xmlnode_new("CurrentMedia"); | |
| 71 | if(mediastr != NULL){ | |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
72 | xmlnode_insert_data(mediaNode, mediastr, -1); |
| 13856 | 73 | } |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
74 | xmlnode_insert_child(dataNode, mediaNode); |
| 13856 | 75 | |
| 76 | guidNode = xmlnode_new("MachineGuid"); | |
| 77 | if(guidstr != NULL){ | |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
78 | xmlnode_insert_data(guidNode, guidstr, -1); |
| 13856 | 79 | } |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
80 | xmlnode_insert_child(dataNode, guidNode); |
| 13856 | 81 | |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
82 | if (protocol_ver >= 16) { |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
83 | /* TODO: What is this for? */ |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
84 | xmlnode *ddpNode = xmlnode_new("DDP"); |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
85 | xmlnode_insert_child(dataNode, ddpNode); |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
86 | } |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
87 | |
|
24025
7827cb5dabe2
Rely on xmlnode_insert_data to call strlen on a bunch of MSN status strings.
Will Thompson <resiak@pidgin.im>
parents:
23830
diff
changeset
|
88 | result = xmlnode_to_str(dataNode, &length); |
|
20574
41544383ab30
Plug some leak.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20551
diff
changeset
|
89 | xmlnode_free(dataNode); |
| 13856 | 90 | return result; |
| 91 | } | |
| 92 | ||
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
93 | /* get the CurrentMedia info from the XML node */ |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
94 | char * |
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
95 | msn_get_currentmedia(xmlnode *payloadNode) |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
96 | { |
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
97 | xmlnode *currentmediaNode; |
|
20578
82571739414b
Fix some memory leaks. Free xmlnodes properly using xmlnode_free instead of
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20574
diff
changeset
|
98 | char *currentmedia; |
|
23441
fd45c23a3eb2
Delete trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
22969
diff
changeset
|
99 | |
|
23830
1436e3de5d6c
The great MSN debug message cleanup! Threw in a few whitespace fixes,
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23441
diff
changeset
|
100 | purple_debug_info("msn", "Get CurrentMedia\n"); |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
101 | currentmediaNode = xmlnode_get_child(payloadNode, "CurrentMedia"); |
|
23830
1436e3de5d6c
The great MSN debug message cleanup! Threw in a few whitespace fixes,
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23441
diff
changeset
|
102 | if (currentmediaNode == NULL) { |
|
26474
69f112d09563
Add some missing newlines in debug messages.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25638
diff
changeset
|
103 | purple_debug_info("msn", "No CurrentMedia Node\n"); |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
104 | return NULL; |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
105 | } |
|
20578
82571739414b
Fix some memory leaks. Free xmlnodes properly using xmlnode_free instead of
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20574
diff
changeset
|
106 | currentmedia = xmlnode_get_data(currentmediaNode); |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
107 | |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
108 | return currentmedia; |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
109 | } |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
110 | |
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
111 | /* Get the PSM info from the XML node */ |
|
20474
b0ef257ef8d4
The second msn.tgz from SF Patch #1621854 from Ka-Hing Cheung.
Ka-Hing Cheung <khc@pidgin.im>
parents:
20472
diff
changeset
|
112 | char * |
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
113 | msn_get_psm(xmlnode *payloadNode) |
| 13888 | 114 | { |
|
29426
60dc51885de1
Avoid calling xmlnode_from_str twice when parsing the UBX data.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29420
diff
changeset
|
115 | xmlnode *psmNode; |
|
20578
82571739414b
Fix some memory leaks. Free xmlnodes properly using xmlnode_free instead of
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20574
diff
changeset
|
116 | char *psm; |
|
23441
fd45c23a3eb2
Delete trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
22969
diff
changeset
|
117 | |
|
23830
1436e3de5d6c
The great MSN debug message cleanup! Threw in a few whitespace fixes,
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23441
diff
changeset
|
118 | purple_debug_info("msn", "msn get PSM\n"); |
| 13888 | 119 | psmNode = xmlnode_get_child(payloadNode, "PSM"); |
|
25638
d0923c8063de
I thought I did this already, but anyway, a patch from Dimmuxx to stop the
Daniel Ljungborg <dimmuxx@yahoo.se>
parents:
24772
diff
changeset
|
120 | if (psmNode == NULL) { |
|
26474
69f112d09563
Add some missing newlines in debug messages.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25638
diff
changeset
|
121 | purple_debug_info("msn", "No PSM status Node\n"); |
| 13888 | 122 | return NULL; |
| 123 | } | |
|
20578
82571739414b
Fix some memory leaks. Free xmlnodes properly using xmlnode_free instead of
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20574
diff
changeset
|
124 | psm = xmlnode_get_data(psmNode); |
| 13888 | 125 | |
| 126 | return psm; | |
| 127 | } | |
| 128 | ||
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
129 | static char * |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
130 | create_media_string(PurplePresence *presence) |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
131 | { |
|
24772
c87747478d71
Only get the artist and album if we are setting a Music mediatype.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24771
diff
changeset
|
132 | const char *title, *game, *office; |
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
133 | char *ret; |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
134 | PurpleStatus *status = purple_presence_get_status(presence, "tune"); |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
135 | if (!status || !purple_status_is_active(status)) |
|
25638
d0923c8063de
I thought I did this already, but anyway, a patch from Dimmuxx to stop the
Daniel Ljungborg <dimmuxx@yahoo.se>
parents:
24772
diff
changeset
|
136 | return NULL; |
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
137 | |
|
24771
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
138 | title = purple_status_get_attr_string(status, PURPLE_TUNE_TITLE); |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
139 | game = purple_status_get_attr_string(status, "game"); |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
140 | office = purple_status_get_attr_string(status, "office"); |
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
141 | |
|
24772
c87747478d71
Only get the artist and album if we are setting a Music mediatype.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24771
diff
changeset
|
142 | if (title && *title) { |
|
c87747478d71
Only get the artist and album if we are setting a Music mediatype.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24771
diff
changeset
|
143 | const char *artist = purple_status_get_attr_string(status, PURPLE_TUNE_ARTIST); |
|
c87747478d71
Only get the artist and album if we are setting a Music mediatype.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24771
diff
changeset
|
144 | const char *album = purple_status_get_attr_string(status, PURPLE_TUNE_ALBUM); |
|
24771
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
145 | ret = g_strdup_printf("WMP\\0Music\\01\\0{0}%s%s\\0%s\\0%s\\0%s\\0", |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
146 | artist ? " - {1}" : "", |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
147 | album ? " ({2})" : "", |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
148 | title, |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
149 | artist ? artist : "", |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
150 | album ? album : ""); |
|
24772
c87747478d71
Only get the artist and album if we are setting a Music mediatype.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24771
diff
changeset
|
151 | } |
|
24771
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
152 | else if (game && *game) |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
153 | ret = g_strdup_printf("\\0Games\\01\\0Playing {0}\\0%s\\0", game); |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
154 | else if (office && *office) |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
155 | ret = g_strdup_printf("\\0Office\\01\\0Editing {0}\\0%s\\0", office); |
|
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
156 | else |
|
25638
d0923c8063de
I thought I did this already, but anyway, a patch from Dimmuxx to stop the
Daniel Ljungborg <dimmuxx@yahoo.se>
parents:
24772
diff
changeset
|
157 | ret = NULL; |
|
24771
7a17ecc0c85b
Add the Games and Office media to MSN as attributes tacked on to the tune
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
24025
diff
changeset
|
158 | |
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
159 | return ret; |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
160 | } |
|
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
161 | |
|
23441
fd45c23a3eb2
Delete trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
22969
diff
changeset
|
162 | /* set the MSN's PSM info,Currently Read from the status Line |
| 13891 | 163 | * Thanks for Cris Code |
| 164 | */ | |
|
30917
68e0555a80b8
We don't need to expose this function as it's only used locally.
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
30908
diff
changeset
|
165 | static void |
| 13856 | 166 | msn_set_psm(MsnSession *session) |
| 167 | { | |
|
27495
8fd70382bf7b
We shouldn't de-reference variables before checking if they're not NULL.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27296
diff
changeset
|
168 | PurpleAccount *account; |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
169 | PurplePresence *presence; |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
170 | PurpleStatus *status; |
|
20474
b0ef257ef8d4
The second msn.tgz from SF Patch #1621854 from Ka-Hing Cheung.
Ka-Hing Cheung <khc@pidgin.im>
parents:
20472
diff
changeset
|
171 | char *payload; |
|
b0ef257ef8d4
The second msn.tgz from SF Patch #1621854 from Ka-Hing Cheung.
Ka-Hing Cheung <khc@pidgin.im>
parents:
20472
diff
changeset
|
172 | const char *statusline; |
|
21453
a90cf329cd48
propagate from branch 'im.pidgin.pidgin.next.minor' (head 2f91b326b3f073672c2475a8c30a06826da9b82f)
Ka-Hing Cheung <khc@pidgin.im>
diff
changeset
|
173 | gchar *statusline_stripped, *media = NULL; |
| 13891 | 174 | |
| 175 | g_return_if_fail(session != NULL); | |
| 176 | g_return_if_fail(session->notification != NULL); | |
| 13856 | 177 | |
|
27495
8fd70382bf7b
We shouldn't de-reference variables before checking if they're not NULL.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27296
diff
changeset
|
178 | account = session->account; |
|
21073
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
179 | |
|
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
180 | /* Get the PSM string from Purple's Status Line */ |
|
16183
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
181 | presence = purple_account_get_presence(account); |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
182 | status = purple_presence_get_active_status(presence); |
|
92409c474659
Committing khc's msnp14 changes from Trac Ticket #148. --rlaager
Ka-Hing Cheung <khc@pidgin.im>
parents:
15884
diff
changeset
|
183 | statusline = purple_status_get_attr_string(status, "message"); |
|
21073
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
184 | |
|
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
185 | /* MSN expects plain text, not HTML */ |
|
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
186 | statusline_stripped = purple_markup_strip_html(statusline); |
|
21193
e918a1846d03
Use an independant status type for 'current media' stuff, instead of using
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
20608
diff
changeset
|
187 | media = create_media_string(presence); |
|
21073
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
188 | g_free(session->psm); |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
189 | session->psm = msn_build_psm(statusline_stripped, media, session->protocol_ver >= 16 ? session->guid : NULL, session->protocol_ver); |
|
21073
a2f27248579c
MSN personal status messages are plain text, not HTML. Previously, we were unescaping the message but not stripping it, which left any HTML tags intact.
Evan Schoenberg <evands@pidgin.im>
parents:
20608
diff
changeset
|
190 | |
| 13856 | 191 | payload = session->psm; |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
192 | |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
193 | msn_notification_send_uux(session, payload); |
| 21906 | 194 | |
| 195 | g_free(statusline_stripped); | |
| 196 | g_free(media); | |
| 13856 | 197 | } |
| 198 | ||
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
199 | void |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
200 | msn_change_status(MsnSession *session) |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
201 | { |
| 15884 | 202 | PurpleAccount *account; |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
203 | MsnCmdProc *cmdproc; |
|
30908
a56cb7eb6036
msn: Delete msn_cmdproc_send since it just have duplicated code from
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
29456
diff
changeset
|
204 | MsnTransaction *trans; |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
205 | MsnUser *user; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
206 | MsnObject *msnobj; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
207 | const char *state_text; |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
208 | GHashTable *ui_info = purple_core_get_ui_info(); |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
209 | MsnClientCaps caps = MSN_CLIENT_ID; |
|
27292
1e8a952548f9
Whitespace + a change cluttering up the diff with im.pidgin.pidgin
Paul Aurich <darkrain42@pidgin.im>
parents:
26684
diff
changeset
|
210 | |
|
10481
a5d6b8e1717d
[gaim-migrate @ 11769]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9262
diff
changeset
|
211 | g_return_if_fail(session != NULL); |
|
a5d6b8e1717d
[gaim-migrate @ 11769]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9262
diff
changeset
|
212 | g_return_if_fail(session->notification != NULL); |
|
a5d6b8e1717d
[gaim-migrate @ 11769]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9262
diff
changeset
|
213 | |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
214 | /* set client caps based on what the UI tells us it is... */ |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
215 | if (ui_info) { |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
216 | const gchar *client_type = g_hash_table_lookup(ui_info, "client_type"); |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
217 | if (client_type) { |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
218 | if (strcmp(client_type, "phone") == 0 || |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
219 | strcmp(client_type, "handheld") == 0) { |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
220 | caps |= MSN_CLIENT_CAP_WIN_MOBILE; |
|
27296
31e4b491abae
These strcmp checks are for equality, meaning a return of 0.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27292
diff
changeset
|
221 | } else if (strcmp(client_type, "web") == 0) { |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
222 | caps |= MSN_CLIENT_CAP_WEBMSGR; |
|
27296
31e4b491abae
These strcmp checks are for equality, meaning a return of 0.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27292
diff
changeset
|
223 | } else if (strcmp(client_type, "bot") == 0) { |
|
25579
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
224 | caps |= MSN_CLIENT_CAP_BOT; |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
225 | } |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
226 | /* MSN doesn't a "console" type... |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
227 | What, they have no ncurses UI? :-) */ |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
228 | } |
|
256aa4861079
Sätt client type on MSN.
Marcus Lundblad <malu@pidgin.im>
parents:
24772
diff
changeset
|
229 | } |
|
27292
1e8a952548f9
Whitespace + a change cluttering up the diff with im.pidgin.pidgin
Paul Aurich <darkrain42@pidgin.im>
parents:
26684
diff
changeset
|
230 | |
|
14453
1cc75906700c
[gaim-migrate @ 17098]
Mark Doliner <markdoliner@pidgin.im>
parents:
14254
diff
changeset
|
231 | account = session->account; |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
232 | cmdproc = session->notification->cmdproc; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
233 | user = session->user; |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
234 | state_text = msn_state_get_text(msn_state_from_account(account)); |
|
10908
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
235 | |
|
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
236 | /* If we're not logged in yet, don't send the status to the server, |
|
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
237 | * it will be sent when login completes |
|
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
238 | */ |
|
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
239 | if (!session->logged_in) |
|
15694532c3c6
[gaim-migrate @ 12640]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10481
diff
changeset
|
240 | return; |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
241 | |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
242 | msn_set_psm(session); |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
243 | |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
244 | msnobj = msn_user_get_object(user); |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
245 | |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
246 | if (msnobj == NULL) |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
247 | { |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
248 | if (session->protocol_ver >= 16) |
|
30908
a56cb7eb6036
msn: Delete msn_cmdproc_send since it just have duplicated code from
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
29456
diff
changeset
|
249 | trans = msn_transaction_new(cmdproc, "CHG", "%s %u:%02u 0", state_text, caps, MSN_CLIENT_ID_EXT_CAPS); |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
250 | else |
|
30930
bea746046da3
propagate from branch 'im.pidgin.pidgin' (head f858236de0f4fa15af469c339aaac39d7287b442)
Elliott Sales de Andrade <qulogic@pidgin.im>
diff
changeset
|
251 | trans = msn_transaction_new(cmdproc, "CHG", "%s %u", state_text, caps); |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
252 | } |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
253 | else |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
254 | { |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
255 | char *msnobj_str; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
256 | |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
257 | msnobj_str = msn_object_to_string(msnobj); |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
258 | |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
259 | if (session->protocol_ver >= 16) |
|
30908
a56cb7eb6036
msn: Delete msn_cmdproc_send since it just have duplicated code from
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
29456
diff
changeset
|
260 | trans = msn_transaction_new(cmdproc, "CHG", "%s %u:%02u %s", state_text, |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
261 | caps, MSN_CLIENT_ID_EXT_CAPS, purple_url_encode(msnobj_str)); |
|
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
262 | else |
|
30930
bea746046da3
propagate from branch 'im.pidgin.pidgin' (head f858236de0f4fa15af469c339aaac39d7287b442)
Elliott Sales de Andrade <qulogic@pidgin.im>
diff
changeset
|
263 | trans = msn_transaction_new(cmdproc, "CHG", "%s %u %s", state_text, |
|
29420
c81c525111db
Initial support for msnp16, based on patch by Masca.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
27495
diff
changeset
|
264 | caps, purple_url_encode(msnobj_str)); |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
265 | |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
266 | g_free(msnobj_str); |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
267 | } |
|
30908
a56cb7eb6036
msn: Delete msn_cmdproc_send since it just have duplicated code from
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
29456
diff
changeset
|
268 | |
|
a56cb7eb6036
msn: Delete msn_cmdproc_send since it just have duplicated code from
Jorge Villaseñor <masca@cpw.pidgin.im>
parents:
29456
diff
changeset
|
269 | msn_cmdproc_send_trans(cmdproc, trans); |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
270 | } |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
271 | |
| 5361 | 272 | const char * |
| 273 | msn_away_get_text(MsnAwayType type) | |
| 274 | { | |
| 7631 | 275 | g_return_val_if_fail(type <= MSN_HIDDEN, NULL); |
| 5361 | 276 | |
|
5824
cbae51183b18
[gaim-migrate @ 6254]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
5361
diff
changeset
|
277 | return _(away_text[type]); |
| 5361 | 278 | } |
|
9193
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
279 | |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
280 | const char * |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
281 | msn_state_get_text(MsnAwayType state) |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
282 | { |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
283 | static char *status_text[] = |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
284 | { "NLN", "NLN", "BSY", "IDL", "BRB", "AWY", "PHN", "LUN", "HDN", "HDN" }; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
285 | |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
286 | return status_text[state]; |
|
6e76f1367896
[gaim-migrate @ 9988]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
287 | } |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
288 | |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
289 | MsnAwayType |
| 15884 | 290 | msn_state_from_account(PurpleAccount *account) |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
291 | { |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
292 | MsnAwayType msnstatus; |
| 15884 | 293 | PurplePresence *presence; |
| 294 | PurpleStatus *status; | |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
295 | const char *status_id; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
296 | |
| 15884 | 297 | presence = purple_account_get_presence(account); |
| 298 | status = purple_presence_get_active_status(presence); | |
| 299 | status_id = purple_status_get_id(status); | |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
300 | |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
301 | if (!strcmp(status_id, "away")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
302 | msnstatus = MSN_AWAY; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
303 | else if (!strcmp(status_id, "brb")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
304 | msnstatus = MSN_BRB; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
305 | else if (!strcmp(status_id, "busy")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
306 | msnstatus = MSN_BUSY; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
307 | else if (!strcmp(status_id, "phone")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
308 | msnstatus = MSN_PHONE; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
309 | else if (!strcmp(status_id, "lunch")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
310 | msnstatus = MSN_LUNCH; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
311 | else if (!strcmp(status_id, "invisible")) |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
312 | msnstatus = MSN_HIDDEN; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
313 | else |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
314 | msnstatus = MSN_ONLINE; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
315 | |
| 15884 | 316 | if ((msnstatus == MSN_ONLINE) && purple_presence_is_idle(presence)) |
|
11992
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
317 | msnstatus = MSN_IDLE; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
318 | |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
319 | return msnstatus; |
|
906176cc9b22
[gaim-migrate @ 14285]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10908
diff
changeset
|
320 | } |