Fri, 10 Jun 2022 20:42:36 -0500
fix memory leak when using purple accounts
Testing Done:
ran test_account_manager and test_notification (from /r/1502 where I first encountered that leak) in valgrind -> no more leak and no new invalid read/write
Reviewed at https://reviews.imfreedom.org/r/1503/
| 981 | 1 | /* |
| 15884 | 2 | * purple |
| 981 | 3 | * |
| 15884 | 4 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 5 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 6 | * source distribution. | |
|
6460
fc288e7221ca
[gaim-migrate @ 6969]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
7 | * |
| 981 | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * 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:
19692
diff
changeset
|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 981 | 21 | * |
| 22 | */ | |
|
40441
f23c7e772667
Make sure we're not including the gettext macros in header files and deal with the repercussions of that.
Gary Kramlich <grim@reaperworld.com>
parents:
40128
diff
changeset
|
23 | |
|
f23c7e772667
Make sure we're not including the gettext macros in header files and deal with the repercussions of that.
Gary Kramlich <grim@reaperworld.com>
parents:
40128
diff
changeset
|
24 | #include <glib/gi18n-lib.h> |
|
f23c7e772667
Make sure we're not including the gettext macros in header files and deal with the repercussions of that.
Gary Kramlich <grim@reaperworld.com>
parents:
40128
diff
changeset
|
25 | |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
26 | #include "internal.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
27 | #include "debug.h" |
|
24519
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
28 | #include "network.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
29 | #include "notify.h" |
|
39970
cc7d4ff5a205
rename accountopt.[ch] to purpleaccountoption.[ch]
Gary Kramlich <grim@reaperworld.com>
parents:
39921
diff
changeset
|
30 | #include "purpleaccountoption.h" |
|
40853
d3518ff99fa7
rename conversation.[ch] to purpleconversation.[ch] and split PurpleConversationUiOps out to its own file to avoid circular include issues.
Gary Kramlich <grim@reaperworld.com>
parents:
40807
diff
changeset
|
31 | #include "purpleconversation.h" |
|
40992
3a973a9c5a64
migrate libpurple to the ConversationManager API
Gary Kramlich <grim@reaperworld.com>
parents:
40885
diff
changeset
|
32 | #include "purpleconversationmanager.h" |
|
40680
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
33 | #include "purplecredentialmanager.h" |
|
41155
922c9e70900c
Rename protocol.[ch] to purpleprotocol.[ch]
Gary Kramlich <grim@reaperworld.com>
parents:
41137
diff
changeset
|
34 | #include "purpleprotocol.h" |
|
40735
cc0679f47fd9
Create a new PurpleProtocolManager
Gary Kramlich <grim@reaperworld.com>
parents:
40708
diff
changeset
|
35 | #include "purpleprotocolmanager.h" |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
36 | #include "purpleprotocolmedia.h" |
|
40708
53a26c29d26c
Move the PurpleProtocolServer interface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40680
diff
changeset
|
37 | #include "purpleprotocolserver.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
38 | #include "request.h" |
|
41137
3c1574216aed
Now that the History API is here, remove the purple logging api
Gary Kramlich <grim@reaperworld.com>
parents:
40992
diff
changeset
|
39 | #include "server.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
40 | #include "util.h" |
| 3738 | 41 | |
|
36624
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
42 | /************************************************************************** |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
43 | * GBoxed code for PurpleProtocolChatEntry |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
44 | **************************************************************************/ |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
45 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
46 | static PurpleProtocolChatEntry * |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
47 | purple_protocol_chat_entry_copy(PurpleProtocolChatEntry *pce) |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
48 | { |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
49 | PurpleProtocolChatEntry *pce_copy; |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
50 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
51 | g_return_val_if_fail(pce != NULL, NULL); |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
52 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
53 | pce_copy = g_new(PurpleProtocolChatEntry, 1); |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
54 | *pce_copy = *pce; |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
55 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
56 | return pce_copy; |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
57 | } |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
58 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
59 | GType |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
60 | purple_protocol_chat_entry_get_type(void) |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
61 | { |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
62 | static GType type = 0; |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
63 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
64 | if (type == 0) { |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
65 | type = g_boxed_type_register_static("PurpleProtocolChatEntry", |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
66 | (GBoxedCopyFunc)purple_protocol_chat_entry_copy, |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
67 | (GBoxedFreeFunc)g_free); |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
68 | } |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
69 | |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
70 | return type; |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
71 | } |
|
38043ecaf4a6
Finished implementing functions for protocols.[ch].
Ankit Vani <a@nevitus.org>
parents:
36623
diff
changeset
|
72 | |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
73 | /**************************************************************************/ |
| 37075 | 74 | /* Protocol API */ |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
75 | /**************************************************************************/ |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
76 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
77 | purple_protocol_got_account_idle(PurpleAccount *account, gboolean idle, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
78 | time_t idle_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
79 | { |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
80 | g_return_if_fail(account != NULL); |
| 15884 | 81 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
82 | |
| 15884 | 83 | purple_presence_set_idle(purple_account_get_presence(account), |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
84 | idle, idle_time); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
85 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
86 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
87 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
88 | purple_protocol_got_account_login_time(PurpleAccount *account, time_t login_time) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
89 | { |
| 15884 | 90 | PurplePresence *presence; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
91 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
92 | g_return_if_fail(account != NULL); |
| 15884 | 93 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
94 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
95 | if (login_time == 0) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
96 | login_time = time(NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
97 | |
| 15884 | 98 | presence = purple_account_get_presence(account); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
99 | |
| 15884 | 100 | purple_presence_set_login_time(presence, login_time); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
101 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
102 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
103 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
104 | purple_protocol_got_account_status(PurpleAccount *account, const char *status_id, ...) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
105 | { |
| 15884 | 106 | PurplePresence *presence; |
| 107 | PurpleStatus *status; | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
108 | va_list args; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
109 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
110 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
111 | g_return_if_fail(status_id != NULL); |
| 15884 | 112 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
113 | |
| 15884 | 114 | presence = purple_account_get_presence(account); |
| 115 | status = purple_presence_get_status(presence, status_id); | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
116 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
117 | g_return_if_fail(status != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
118 | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
119 | va_start(args, status_id); |
| 15884 | 120 | purple_status_set_active_with_attrs(status, TRUE, args); |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
121 | va_end(args); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
122 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
123 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
124 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
125 | purple_protocol_got_account_actions(PurpleAccount *account) |
|
26871
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
126 | { |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
127 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
128 | g_return_if_fail(account != NULL); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
129 | g_return_if_fail(purple_account_is_connected(account)); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
130 | |
|
36868
1aca7f52f1ef
Backed out the previous 4 changesets. GSignals do not seem feasible with pidgin's architecture using any method.
Ankit Vani <a@nevitus.org>
parents:
36867
diff
changeset
|
131 | purple_signal_emit(purple_accounts_get_handle(), "account-actions-changed", |
|
1aca7f52f1ef
Backed out the previous 4 changesets. GSignals do not seem feasible with pidgin's architecture using any method.
Ankit Vani <a@nevitus.org>
parents:
36867
diff
changeset
|
132 | account); |
|
26871
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
133 | } |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
134 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
135 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
136 | purple_protocol_got_user_idle(PurpleAccount *account, const char *name, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
137 | gboolean idle, time_t idle_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
138 | { |
| 15884 | 139 | PurplePresence *presence; |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
140 | GSList *list; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
141 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
142 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
143 | g_return_if_fail(name != NULL); |
|
25428
05aef3d5e63e
I think it's reasonable for prpls to call purple_prpl_got_user_idle()
Mark Doliner <markdoliner@pidgin.im>
parents:
24519
diff
changeset
|
144 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
145 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
146 | if ((list = purple_blist_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
147 | return; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
148 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
149 | while (list) { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
150 | presence = purple_buddy_get_presence(list->data); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
151 | list = g_slist_delete_link(list, list); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
152 | purple_presence_set_idle(presence, idle, idle_time); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
153 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
154 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
155 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
156 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
157 | purple_protocol_got_user_login_time(PurpleAccount *account, const char *name, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
158 | time_t login_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
159 | { |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
160 | GSList *list; |
| 15884 | 161 | PurplePresence *presence; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
162 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
163 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
164 | g_return_if_fail(name != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
165 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
166 | if ((list = purple_blist_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
167 | return; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
168 | |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
169 | if (login_time == 0) |
|
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
170 | login_time = time(NULL); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
171 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
172 | while (list) { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
173 | PurpleBuddy *buddy = list->data; |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
174 | presence = purple_buddy_get_presence(buddy); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
175 | list = g_slist_delete_link(list, list); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
176 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
177 | if (purple_presence_get_login_time(presence) != login_time) |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
178 | { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
179 | purple_presence_set_login_time(presence, login_time); |
|
15212
2919bfea7c4a
[gaim-migrate @ 17936]
Evan Schoenberg <evands@pidgin.im>
parents:
14254
diff
changeset
|
180 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
181 | purple_signal_emit(purple_blist_get_handle(), "buddy-got-login-time", buddy); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
182 | } |
|
15311
f5cf28c6e665
[gaim-migrate @ 18039]
Evan Schoenberg <evands@pidgin.im>
parents:
15212
diff
changeset
|
183 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
184 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
185 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
186 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
187 | purple_protocol_got_user_status(PurpleAccount *account, const char *name, |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
188 | const char *status_id, ...) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
189 | { |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
190 | GSList *list, *l; |
| 15884 | 191 | PurpleBuddy *buddy; |
| 192 | PurplePresence *presence; | |
| 193 | PurpleStatus *status; | |
| 194 | PurpleStatus *old_status; | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
195 | va_list args; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
196 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
197 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
198 | g_return_if_fail(name != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
199 | g_return_if_fail(status_id != NULL); |
| 15884 | 200 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
201 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
202 | if((list = purple_blist_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
203 | return; |
|
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
204 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
205 | for(l = list; l != NULL; l = l->next) { |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
206 | buddy = l->data; |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
207 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
208 | presence = purple_buddy_get_presence(buddy); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
209 | status = purple_presence_get_status(presence, status_id); |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
210 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
211 | if(NULL == status) |
| 27786 | 212 | /* |
| 213 | * TODO: This should never happen, right? We should call | |
| 214 | * g_warning() or something. | |
| 215 | */ | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
216 | continue; |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
217 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
218 | old_status = purple_presence_get_active_status(presence); |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
219 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
220 | va_start(args, status_id); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
221 | purple_status_set_active_with_attrs(status, TRUE, args); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
222 | va_end(args); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
223 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
224 | purple_buddy_update_status(buddy, old_status); |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
225 | } |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
226 | |
|
12126
3b70215e9630
[gaim-migrate @ 14426]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12108
diff
changeset
|
227 | g_slist_free(list); |
|
12654
2e25e75190c4
[gaim-migrate @ 14997]
Mark Doliner <markdoliner@pidgin.im>
parents:
12377
diff
changeset
|
228 | |
|
27596
bc7058e10c04
Make the comment reflect that we are actually just stopping the typing
Etan Reisner <deryni@pidgin.im>
parents:
26871
diff
changeset
|
229 | /* The buddy is no longer online, they are therefore by definition not |
|
bc7058e10c04
Make the comment reflect that we are actually just stopping the typing
Etan Reisner <deryni@pidgin.im>
parents:
26871
diff
changeset
|
230 | * still typing to us. */ |
|
29544
dc16ec0027ae
Use purple_prpl_got_media_caps in purple_prpl_got_user_status to remove media
Michael Ruprecht <maiku@pidgin.im>
parents:
29543
diff
changeset
|
231 | if (!purple_status_is_online(status)) { |
| 35501 | 232 | purple_serv_got_typing_stopped(purple_account_get_connection(account), name); |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
233 | purple_protocol_got_media_caps(account, name); |
|
29544
dc16ec0027ae
Use purple_prpl_got_media_caps in purple_prpl_got_user_status to remove media
Michael Ruprecht <maiku@pidgin.im>
parents:
29543
diff
changeset
|
234 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
235 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
236 | |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
237 | void purple_protocol_got_user_status_deactive(PurpleAccount *account, const char *name, |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
238 | const char *status_id) |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
239 | { |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
240 | GSList *list, *l; |
| 15884 | 241 | PurpleBuddy *buddy; |
| 242 | PurplePresence *presence; | |
| 243 | PurpleStatus *status; | |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
244 | |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
245 | g_return_if_fail(account != NULL); |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
246 | g_return_if_fail(name != NULL); |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
247 | g_return_if_fail(status_id != NULL); |
| 15884 | 248 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
249 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
250 | if((list = purple_blist_find_buddies(account, name)) == NULL) |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
251 | return; |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
252 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
253 | for(l = list; l != NULL; l = l->next) { |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
254 | buddy = l->data; |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
255 | |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
256 | presence = purple_buddy_get_presence(buddy); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
257 | status = purple_presence_get_status(presence, status_id); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
258 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
259 | if(NULL == status) |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
260 | continue; |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
261 | |
|
19692
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
262 | if (purple_status_is_active(status)) { |
|
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
263 | purple_status_set_active(status, FALSE); |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
264 | purple_buddy_update_status(buddy, status); |
|
19692
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
265 | } |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
266 | } |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
267 | |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
268 | g_slist_free(list); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
269 | } |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
270 | |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
271 | static void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
272 | do_protocol_change_account_status(PurpleAccount *account, |
| 15884 | 273 | PurpleStatus *old_status, PurpleStatus *new_status) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
274 | { |
|
36544
1bf8b6ef5aea
Renamed PurplePluginProtocolInfo to PurpleProtocol
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
275 | PurpleProtocol *protocol; |
|
40735
cc0679f47fd9
Create a new PurpleProtocolManager
Gary Kramlich <grim@reaperworld.com>
parents:
40708
diff
changeset
|
276 | PurpleProtocolManager *manager; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
277 | |
| 15884 | 278 | if (purple_status_is_online(new_status) && |
|
24519
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
279 | purple_account_is_disconnected(account) && |
|
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
280 | purple_network_is_available()) |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
281 | { |
| 15884 | 282 | purple_account_connect(account); |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
283 | return; |
|
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
284 | } |
|
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
285 | |
| 15884 | 286 | if (!purple_status_is_online(new_status)) |
|
14224
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
287 | { |
| 15884 | 288 | if (!purple_account_is_disconnected(account)) |
| 289 | purple_account_disconnect(account); | |
|
34146
99bad5c80d1e
More password wiping, better password management withing account.c, using actual UI name with KWallet
Tomasz Wasilczyk <tomkiewicz@cpw.pidgin.im>
parents:
34029
diff
changeset
|
290 | /* Clear out the unsaved password if we switch to offline status */ |
|
40680
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
291 | if (!purple_account_get_remember_password(account)) { |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
292 | PurpleCredentialManager *manager = NULL; |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
293 | |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
294 | manager = purple_credential_manager_get_default(); |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
295 | |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
296 | purple_credential_manager_clear_password_async(manager, account, |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
297 | NULL, NULL, NULL); |
|
f9ea6d5e8992
Use PurpleCredentialManager instead of the old keyring api.
Gary Kramlich <grim@reaperworld.com>
parents:
40634
diff
changeset
|
298 | } |
|
34019
bc87f596bb4c
compile, appears to work too.
Ka-Hing Cheung <khc@pidgin.im>
parents:
34018
diff
changeset
|
299 | |
|
14224
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
300 | return; |
|
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
301 | } |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
302 | |
| 15884 | 303 | if (purple_account_is_connecting(account)) |
|
12108
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
304 | /* |
|
36637
9b0109ae118d
Renamed some prpl stuff to protocol stuff.
Ankit Vani <a@nevitus.org>
parents:
36631
diff
changeset
|
305 | * We don't need to call the set_status protocol function because |
|
9b0109ae118d
Renamed some prpl stuff to protocol stuff.
Ankit Vani <a@nevitus.org>
parents:
36631
diff
changeset
|
306 | * the protocol will take care of setting its status during the |
|
12108
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
307 | * connection process. |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
308 | */ |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
309 | return; |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
310 | |
|
40735
cc0679f47fd9
Create a new PurpleProtocolManager
Gary Kramlich <grim@reaperworld.com>
parents:
40708
diff
changeset
|
311 | manager = purple_protocol_manager_get_default(); |
|
cc0679f47fd9
Create a new PurpleProtocolManager
Gary Kramlich <grim@reaperworld.com>
parents:
40708
diff
changeset
|
312 | protocol = purple_protocol_manager_find(manager, |
|
cc0679f47fd9
Create a new PurpleProtocolManager
Gary Kramlich <grim@reaperworld.com>
parents:
40708
diff
changeset
|
313 | purple_account_get_protocol_id(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
314 | |
|
41282
c47df057a426
Silence warning from changing status of the demo protocol
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41176
diff
changeset
|
315 | if (!PURPLE_IS_PROTOCOL_SERVER(protocol)) { |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
316 | return; |
|
41282
c47df057a426
Silence warning from changing status of the demo protocol
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
41176
diff
changeset
|
317 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
318 | |
|
40708
53a26c29d26c
Move the PurpleProtocolServer interface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40680
diff
changeset
|
319 | if(!purple_account_is_disconnected(account)) { |
|
53a26c29d26c
Move the PurpleProtocolServer interface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40680
diff
changeset
|
320 | purple_protocol_server_set_status(PURPLE_PROTOCOL_SERVER(protocol), |
|
53a26c29d26c
Move the PurpleProtocolServer interface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40680
diff
changeset
|
321 | account, new_status); |
|
53a26c29d26c
Move the PurpleProtocolServer interface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40680
diff
changeset
|
322 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
323 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
324 | |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
325 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
326 | purple_protocol_change_account_status(PurpleAccount *account, |
| 15884 | 327 | PurpleStatus *old_status, PurpleStatus *new_status) |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
328 | { |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
329 | g_return_if_fail(account != NULL); |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
330 | g_return_if_fail(new_status != NULL); |
|
21720
235394d5c7f4
Pull a bunch of bugfix only changes to im.pidgin.pidgin.2.3.1,
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20115
diff
changeset
|
331 | g_return_if_fail(!purple_status_is_exclusive(new_status) || old_status != NULL); |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
332 | |
|
37679
6ff708c38c04
Add "account-status-changing" signal from instantbird
Florian Quèze <florian@instantbird.org>
parents:
37148
diff
changeset
|
333 | purple_signal_emit(purple_accounts_get_handle(), "account-status-changing", |
|
6ff708c38c04
Add "account-status-changing" signal from instantbird
Florian Quèze <florian@instantbird.org>
parents:
37148
diff
changeset
|
334 | account, old_status, new_status); |
|
6ff708c38c04
Add "account-status-changing" signal from instantbird
Florian Quèze <florian@instantbird.org>
parents:
37148
diff
changeset
|
335 | |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
336 | do_protocol_change_account_status(account, old_status, new_status); |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
337 | |
|
36868
1aca7f52f1ef
Backed out the previous 4 changesets. GSignals do not seem feasible with pidgin's architecture using any method.
Ankit Vani <a@nevitus.org>
parents:
36867
diff
changeset
|
338 | purple_signal_emit(purple_accounts_get_handle(), "account-status-changed", |
|
1aca7f52f1ef
Backed out the previous 4 changesets. GSignals do not seem feasible with pidgin's architecture using any method.
Ankit Vani <a@nevitus.org>
parents:
36867
diff
changeset
|
339 | account, old_status, new_status); |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
340 | } |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
341 | |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
342 | GList * |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
343 | purple_protocol_get_statuses(PurpleAccount *account, PurplePresence *presence) |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
344 | { |
|
10447
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10052
diff
changeset
|
345 | g_return_val_if_fail(account != NULL, NULL); |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
346 | g_return_val_if_fail(presence != NULL, NULL); |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
347 | |
|
40783
4f197d3e42d6
Use g_list_copy_deep instead of manual copy/transform
Arkadiy Illarionov <qarkai@gmail.com>
parents:
40735
diff
changeset
|
348 | return g_list_copy_deep(purple_account_get_status_types(account), |
|
4f197d3e42d6
Use g_list_copy_deep instead of manual copy/transform
Arkadiy Illarionov <qarkai@gmail.com>
parents:
40735
diff
changeset
|
349 | (GCopyFunc)purple_status_new, presence); |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
350 | } |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
351 | |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
352 | gboolean |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
353 | purple_protocol_initiate_media(PurpleAccount *account, |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
354 | const char *who, |
|
26108
8d0fd2f195aa
Changed PurpleMediaStreamType to PurpleMediaSessionType.
Michael Ruprecht <maiku@pidgin.im>
parents:
26107
diff
changeset
|
355 | PurpleMediaSessionType type) |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
356 | { |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
357 | #ifdef USE_VV |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
358 | PurpleConnection *gc = NULL; |
|
36544
1bf8b6ef5aea
Renamed PurplePluginProtocolInfo to PurpleProtocol
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
359 | PurpleProtocol *protocol = NULL; |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
360 | |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
361 | if(account) { |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
362 | gc = purple_account_get_connection(account); |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
363 | } |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
364 | if(gc) { |
|
36623
caaadef03507
Renamed purple_connection_get_protocol_info() to purple_connection_get_protocol()
Ankit Vani <a@nevitus.org>
parents:
36620
diff
changeset
|
365 | protocol = purple_connection_get_protocol(gc); |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
366 | } |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
367 | |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
368 | if(PURPLE_IS_PROTOCOL_MEDIA(protocol)) { |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
369 | PurpleProtocolMedia *media = PURPLE_PROTOCOL_MEDIA(protocol); |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
370 | |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
371 | return purple_protocol_media_initiate_session(media, account, who, |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
372 | type); |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
373 | } else { |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
374 | return FALSE; |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
375 | } |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
376 | #else |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
377 | return FALSE; |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
378 | #endif |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
379 | } |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
380 | |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
381 | PurpleMediaCaps |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
382 | purple_protocol_get_media_caps(PurpleAccount *account, const char *who) |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
383 | { |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
384 | #ifdef USE_VV |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
385 | PurpleConnection *gc = NULL; |
|
36544
1bf8b6ef5aea
Renamed PurplePluginProtocolInfo to PurpleProtocol
Ankit Vani <a@nevitus.org>
parents:
36543
diff
changeset
|
386 | PurpleProtocol *protocol = NULL; |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
29670
diff
changeset
|
387 | |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
388 | if(account) { |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
389 | gc = purple_account_get_connection(account); |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
390 | } |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
391 | if(gc) { |
|
36623
caaadef03507
Renamed purple_connection_get_protocol_info() to purple_connection_get_protocol()
Ankit Vani <a@nevitus.org>
parents:
36620
diff
changeset
|
392 | protocol = purple_connection_get_protocol(gc); |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
393 | } |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
29670
diff
changeset
|
394 | |
|
40525
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
395 | if(PURPLE_IS_PROTOCOL_MEDIA(protocol)) { |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
396 | return purple_protocol_media_get_caps(PURPLE_PROTOCOL_MEDIA(protocol), |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
397 | account, who); |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
398 | } else { |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
399 | return PURPLE_MEDIA_CAPS_NONE; |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
400 | } |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
401 | #else |
|
96fc115d6c36
Move PurpleProtocolMediaInterface to its own file.
Gary Kramlich <grim@reaperworld.com>
parents:
40441
diff
changeset
|
402 | return PURPLE_MEDIA_CAPS_NONE; |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
403 | #endif |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
404 | } |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
405 | |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
406 | void |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
407 | purple_protocol_got_media_caps(PurpleAccount *account, const char *name) |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
408 | { |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
409 | #ifdef USE_VV |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
410 | GSList *list; |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
411 | |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
412 | g_return_if_fail(account != NULL); |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
413 | g_return_if_fail(name != NULL); |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
414 | |
|
34728
8efd73063ecf
Renamed buddy list functions to more appropriate/simler names.
Ankit Vani <a@nevitus.org>
parents:
34656
diff
changeset
|
415 | if ((list = purple_blist_find_buddies(account, name)) == NULL) |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
416 | return; |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
417 | |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
418 | while (list) { |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
419 | PurpleBuddy *buddy = list->data; |
|
29670
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
420 | PurpleMediaCaps oldcaps = purple_buddy_get_media_caps(buddy); |
|
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
421 | PurpleMediaCaps newcaps = 0; |
|
29547
debae7802d68
Essentially normalize the username passed to purple_prpl_got_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
29546
diff
changeset
|
422 | const gchar *bname = purple_buddy_get_name(buddy); |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
423 | list = g_slist_delete_link(list, list); |
|
29546
5858906c0f7b
Add media_caps to PurpleBuddy structure and use it to determine the old caps
Michael Ruprecht <maiku@pidgin.im>
parents:
29544
diff
changeset
|
424 | |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
29670
diff
changeset
|
425 | |
|
36545
23b59a16c808
Replaced some _prpl_ stuff with _protocol_
Ankit Vani <a@nevitus.org>
parents:
36544
diff
changeset
|
426 | newcaps = purple_protocol_get_media_caps(account, bname); |
|
29670
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
427 | purple_buddy_set_media_caps(buddy, newcaps); |
|
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
428 | |
|
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
429 | if (oldcaps == newcaps) |
|
29546
5858906c0f7b
Add media_caps to PurpleBuddy structure and use it to determine the old caps
Michael Ruprecht <maiku@pidgin.im>
parents:
29544
diff
changeset
|
430 | continue; |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
431 | |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
432 | purple_signal_emit(purple_blist_get_handle(), |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
433 | "buddy-caps-changed", buddy, |
|
29670
c1d3cb9db1d7
update prpl.c to use the new purple_buddy_[gs]et_media_caps api
Gary Kramlich <grim@reaperworld.com>
parents:
29653
diff
changeset
|
434 | newcaps, oldcaps); |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
435 | } |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
436 | #endif |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
437 | } |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27786
diff
changeset
|
438 |