Thu, 08 Jul 2004 17:37:33 +0000
[gaim-migrate @ 10312]
whitespace
| 8849 | 1 | /* |
| 2 | ||
| 3 | silcgaim_ops.c | |
| 4 | ||
| 5 | Author: Pekka Riikonen <priikone@silcnet.org> | |
| 6 | ||
| 7 | Copyright (C) 2004 Pekka Riikonen | |
| 8 | ||
| 9 | This program is free software; you can redistribute it and/or modify | |
| 10 | it under the terms of the GNU General Public License as published by | |
| 11 | the Free Software Foundation; version 2 of the License. | |
| 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 | */ | |
| 19 | ||
| 20 | #include "silcincludes.h" | |
| 21 | #include "silcclient.h" | |
| 22 | #include "silcgaim.h" | |
| 23 | ||
| 24 | /* Message sent to the application by library. `conn' associates the | |
| 25 | message to a specific connection. `conn', however, may be NULL. | |
| 26 | The `type' indicates the type of the message sent by the library. | |
| 27 | The application can for example filter the message according the | |
| 28 | type. */ | |
| 29 | ||
| 30 | static void | |
| 31 | silc_say(SilcClient client, SilcClientConnection conn, | |
| 32 | SilcClientMessageType type, char *msg, ...) | |
| 33 | { | |
| 34 | /* Nothing */ | |
| 35 | } | |
| 36 | ||
| 37 | ||
| 38 | /* Message for a channel. The `sender' is the sender of the message | |
| 39 | The `channel' is the channel. The `message' is the message. Note | |
| 40 | that `message' maybe NULL. The `flags' indicates message flags | |
| 41 | and it is used to determine how the message can be interpreted | |
| 42 | (like it may tell the message is multimedia message). */ | |
| 43 | ||
| 44 | static void | |
| 45 | silc_channel_message(SilcClient client, SilcClientConnection conn, | |
| 46 | SilcClientEntry sender, SilcChannelEntry channel, | |
| 47 | SilcMessagePayload payload, SilcChannelPrivateKey key, | |
| 48 | SilcMessageFlags flags, const unsigned char *message, | |
| 49 | SilcUInt32 message_len) | |
| 50 | { | |
| 51 | GaimConnection *gc = client->application; | |
| 52 | SilcGaim sg = gc->proto_data; | |
| 53 | GaimConversation *convo = NULL; | |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
54 | char *msg, *tmp; |
| 8849 | 55 | |
| 56 | if (!message) | |
| 57 | return; | |
| 58 | ||
| 59 | if (key) { | |
| 60 | GList *l; | |
| 61 | SilcGaimPrvgrp prv; | |
| 62 | ||
| 63 | for (l = sg->grps; l; l = l->next) | |
| 64 | if (((SilcGaimPrvgrp)l->data)->key == key) { | |
| 65 | prv = l->data; | |
| 66 | convo = gaim_find_conversation_with_account(prv->channel, | |
| 67 | sg->account); | |
| 68 | break; | |
| 69 | } | |
| 70 | } | |
| 71 | if (!convo) | |
| 72 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 73 | sg->account); | |
| 74 | if (!convo) | |
| 75 | return; | |
| 76 | ||
| 77 | if (flags & SILC_MESSAGE_FLAG_SIGNED && | |
| 78 | gaim_prefs_get_bool("/plugins/prpl/silc/verify_chat")) { | |
| 79 | /* XXX */ | |
| 80 | } | |
| 81 | ||
| 82 | if (flags & SILC_MESSAGE_FLAG_DATA) { | |
| 83 | /* XXX */ | |
| 84 | return; | |
| 85 | } | |
| 86 | ||
| 87 | if (flags & SILC_MESSAGE_FLAG_ACTION) { | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
88 | msg = g_strdup_printf("/me %s", |
| 8849 | 89 | (const char *)message); |
| 90 | if (!msg) | |
| 91 | return; | |
| 92 | ||
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
93 | tmp = gaim_escape_html(msg); |
| 8849 | 94 | /* Send to Gaim */ |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
95 | serv_got_chat_in(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo)), |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
96 | sender->nickname ? |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
97 | sender->nickname : "<unknown>", 0, |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
98 | tmp, time(NULL)); |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
99 | g_free(tmp); |
| 8849 | 100 | g_free(msg); |
| 101 | return; | |
| 102 | } | |
| 103 | ||
| 104 | if (flags & SILC_MESSAGE_FLAG_NOTICE) { | |
| 105 | msg = g_strdup_printf("(notice) <I>%s</I> %s", | |
| 106 | sender->nickname ? | |
| 107 | sender->nickname : "<unknown>", | |
| 108 | (const char *)message); | |
| 109 | if (!msg) | |
| 110 | return; | |
| 111 | ||
| 112 | /* Send to Gaim */ | |
| 113 | gaim_conversation_write(convo, NULL, (const char *)msg, | |
| 114 | GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 115 | g_free(msg); | |
| 116 | return; | |
| 117 | } | |
| 118 | ||
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
119 | if (flags & SILC_MESSAGE_FLAG_UTF8) { |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
120 | tmp = gaim_escape_html((const char *)message); |
| 8849 | 121 | /* Send to Gaim */ |
| 122 | serv_got_chat_in(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo)), | |
| 123 | sender->nickname ? | |
| 124 | sender->nickname : "<unknown>", 0, | |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
125 | tmp, time(NULL)); |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
126 | g_free(tmp); |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
127 | } |
| 8849 | 128 | } |
| 129 | ||
| 130 | ||
| 131 | /* Private message to the client. The `sender' is the sender of the | |
| 132 | message. The message is `message'and maybe NULL. The `flags' | |
| 133 | indicates message flags and it is used to determine how the message | |
| 134 | can be interpreted (like it may tell the message is multimedia | |
| 135 | message). */ | |
| 136 | ||
| 137 | static void | |
| 138 | silc_private_message(SilcClient client, SilcClientConnection conn, | |
| 139 | SilcClientEntry sender, SilcMessagePayload payload, | |
| 140 | SilcMessageFlags flags, const unsigned char *message, | |
| 141 | SilcUInt32 message_len) | |
| 142 | { | |
| 143 | GaimConnection *gc = client->application; | |
| 144 | SilcGaim sg = gc->proto_data; | |
| 145 | GaimConversation *convo = NULL; | |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
146 | char *msg, *tmp; |
| 8849 | 147 | |
| 148 | if (!message) | |
| 149 | return; | |
| 150 | ||
| 151 | if (sender->nickname) | |
| 152 | convo = gaim_find_conversation_with_account(sender->nickname, sg->account); | |
| 153 | ||
| 154 | if (flags & SILC_MESSAGE_FLAG_SIGNED && | |
| 155 | gaim_prefs_get_bool("/plugins/prpl/silc/verify_im")) { | |
| 156 | /* XXX */ | |
| 157 | } | |
| 158 | ||
| 159 | if (flags & SILC_MESSAGE_FLAG_DATA) { | |
| 160 | /* XXX */ | |
| 161 | return; | |
| 162 | } | |
| 163 | ||
| 164 | if (flags & SILC_MESSAGE_FLAG_ACTION && convo) { | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
165 | msg = g_strdup_printf("/me %s", |
| 8849 | 166 | (const char *)message); |
| 167 | if (!msg) | |
| 168 | return; | |
| 169 | ||
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
170 | tmp = gaim_escape_html(msg); |
| 8849 | 171 | /* Send to Gaim */ |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
172 | serv_got_im(gc, sender->nickname ? |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
173 | sender->nickname : "<unknown>", |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
174 | tmp, 0, time(NULL)); |
| 8849 | 175 | g_free(msg); |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
176 | g_free(tmp); |
| 8849 | 177 | return; |
| 178 | } | |
| 179 | ||
| 180 | if (flags & SILC_MESSAGE_FLAG_NOTICE && convo) { | |
| 181 | msg = g_strdup_printf("(notice) <I>%s</I> %s", | |
| 182 | sender->nickname ? | |
| 183 | sender->nickname : "<unknown>", | |
| 184 | (const char *)message); | |
| 185 | if (!msg) | |
| 186 | return; | |
| 187 | ||
| 188 | /* Send to Gaim */ | |
| 189 | gaim_conversation_write(convo, NULL, (const char *)msg, | |
| 190 | GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 191 | g_free(msg); | |
| 192 | return; | |
| 193 | } | |
| 194 | ||
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
195 | if (flags & SILC_MESSAGE_FLAG_UTF8) { |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
196 | tmp = gaim_escape_html((const char *)message); |
| 8849 | 197 | /* Send to Gaim */ |
| 198 | serv_got_im(gc, sender->nickname ? | |
| 199 | sender->nickname : "<unknown>", | |
|
9359
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
200 | tmp, 0, time(NULL)); |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
201 | g_free(tmp); |
|
89c40efa7f7b
[gaim-migrate @ 10167]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9353
diff
changeset
|
202 | } |
| 8849 | 203 | } |
| 204 | ||
| 205 | ||
| 206 | /* Notify message to the client. The notify arguments are sent in the | |
| 207 | same order as servers sends them. The arguments are same as received | |
| 208 | from the server except for ID's. If ID is received application receives | |
| 209 | the corresponding entry to the ID. For example, if Client ID is received | |
| 210 | application receives SilcClientEntry. Also, if the notify type is | |
| 211 | for channel the channel entry is sent to application (even if server | |
| 212 | does not send it because client library gets the channel entry from | |
| 213 | the Channel ID in the packet's header). */ | |
| 214 | ||
| 215 | static void | |
| 216 | silc_notify(SilcClient client, SilcClientConnection conn, | |
| 217 | SilcNotifyType type, ...) | |
| 218 | { | |
| 219 | va_list va; | |
| 220 | GaimConnection *gc = client->application; | |
| 221 | SilcGaim sg = gc->proto_data; | |
| 222 | GaimConversation *convo; | |
| 223 | SilcClientEntry client_entry, client_entry2; | |
| 224 | SilcChannelEntry channel; | |
| 225 | SilcServerEntry server_entry; | |
| 226 | SilcIdType idtype; | |
| 227 | void *entry; | |
| 228 | SilcUInt32 mode; | |
| 229 | SilcHashTableList htl; | |
| 230 | SilcChannelUser chu; | |
| 231 | char buf[512], buf2[512], *tmp, *name; | |
| 232 | SilcBuffer buffer; | |
| 233 | SilcNotifyType notify; | |
| 234 | GaimBuddy *b; | |
| 235 | int i; | |
| 236 | ||
| 237 | va_start(va, type); | |
| 238 | memset(buf, 0, sizeof(buf)); | |
| 239 | ||
| 240 | switch (type) { | |
| 241 | ||
| 242 | case SILC_NOTIFY_TYPE_NONE: | |
| 243 | break; | |
| 244 | ||
| 245 | case SILC_NOTIFY_TYPE_INVITE: | |
| 246 | { | |
| 247 | GHashTable *components; | |
| 248 | channel = va_arg(va, SilcChannelEntry); | |
| 249 | name = va_arg(va, char *); | |
| 250 | client_entry = va_arg(va, SilcClientEntry); | |
| 251 | ||
| 252 | components = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
253 | g_hash_table_insert(components, strdup("channel"), strdup(name)); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
254 | serv_got_chat_invite(gc, name, client_entry->nickname, NULL, components); |
| 8849 | 255 | } |
| 256 | break; | |
| 257 | ||
| 258 | case SILC_NOTIFY_TYPE_JOIN: | |
| 259 | client_entry = va_arg(va, SilcClientEntry); | |
| 260 | channel = va_arg(va, SilcChannelEntry); | |
| 261 | ||
| 262 | /* If we joined channel, do nothing */ | |
| 263 | if (client_entry == conn->local_entry) | |
| 264 | break; | |
| 265 | ||
| 266 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 267 | sg->account); | |
| 268 | if (!convo) | |
| 269 | break; | |
| 270 | ||
| 271 | /* Join user to channel */ | |
| 8891 | 272 | g_snprintf(buf, sizeof(buf), "%s@%s", |
| 8849 | 273 | client_entry->username, client_entry->hostname); |
| 274 | gaim_conv_chat_add_user(GAIM_CONV_CHAT(convo), | |
| 275 | g_strdup(client_entry->nickname), buf); | |
| 276 | ||
| 277 | break; | |
| 278 | ||
| 279 | case SILC_NOTIFY_TYPE_LEAVE: | |
| 280 | client_entry = va_arg(va, SilcClientEntry); | |
| 281 | channel = va_arg(va, SilcChannelEntry); | |
| 282 | ||
| 283 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 284 | sg->account); | |
| 285 | if (!convo) | |
| 286 | break; | |
| 287 | ||
| 288 | /* Remove user from channel */ | |
| 289 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), | |
| 290 | client_entry->nickname, NULL); | |
| 291 | ||
| 292 | break; | |
| 293 | ||
| 294 | case SILC_NOTIFY_TYPE_SIGNOFF: | |
| 295 | client_entry = va_arg(va, SilcClientEntry); | |
| 296 | tmp = va_arg(va, char *); | |
| 297 | ||
| 298 | if (!client_entry->nickname) | |
| 299 | break; | |
| 300 | ||
| 301 | /* Remove from all channels */ | |
| 302 | silc_hash_table_list(client_entry->channels, &htl); | |
| 303 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { | |
| 304 | convo = gaim_find_conversation_with_account(chu->channel->channel_name, | |
| 305 | sg->account); | |
| 306 | if (!convo) | |
| 307 | continue; | |
| 308 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), | |
| 309 | client_entry->nickname, | |
| 310 | tmp); | |
| 311 | } | |
| 312 | silc_hash_table_list_reset(&htl); | |
| 313 | ||
| 314 | break; | |
| 315 | ||
| 316 | case SILC_NOTIFY_TYPE_TOPIC_SET: | |
| 317 | idtype = va_arg(va, int); | |
| 318 | entry = va_arg(va, void *); | |
| 319 | tmp = va_arg(va, char *); | |
| 320 | channel = va_arg(va, SilcChannelEntry); | |
| 321 | ||
| 322 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 323 | sg->account); | |
| 324 | if (!convo) | |
| 325 | break; | |
| 326 | ||
| 327 | if (!tmp) | |
| 328 | break; | |
| 329 | ||
| 330 | if (idtype == SILC_ID_CLIENT) { | |
| 331 | client_entry = (SilcClientEntry)entry; | |
| 332 | g_snprintf(buf, sizeof(buf), | |
| 333 | _("%s has changed the topic of <I>%s</I> to: %s"), | |
| 334 | client_entry->nickname, channel->channel_name, tmp); | |
| 335 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), client_entry->nickname, | |
| 336 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 337 | } else if (idtype == SILC_ID_SERVER) { | |
| 338 | server_entry = (SilcServerEntry)entry; | |
| 339 | g_snprintf(buf, sizeof(buf), | |
| 340 | _("%s has changed the topic of <I>%s</I> to: %s"), | |
| 341 | server_entry->server_name, channel->channel_name, tmp); | |
| 342 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), server_entry->server_name, | |
| 343 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 344 | } else if (idtype == SILC_ID_CHANNEL) { | |
| 345 | channel = (SilcChannelEntry)entry; | |
| 346 | g_snprintf(buf, sizeof(buf), | |
| 347 | _("%s has changed the topic of <I>%s</I> to: %s"), | |
| 348 | channel->channel_name, channel->channel_name, tmp); | |
| 349 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), channel->channel_name, | |
| 350 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 351 | } | |
| 352 | ||
| 353 | gaim_conv_chat_set_topic(GAIM_CONV_CHAT(convo), NULL, tmp); | |
| 354 | ||
| 355 | break; | |
| 356 | ||
| 357 | case SILC_NOTIFY_TYPE_NICK_CHANGE: | |
| 358 | client_entry = va_arg(va, SilcClientEntry); | |
| 359 | client_entry2 = va_arg(va, SilcClientEntry); | |
| 360 | ||
| 361 | if (!strcmp(client_entry->nickname, client_entry2->nickname)) | |
| 362 | break; | |
| 363 | ||
| 364 | /* Change nick on all channels */ | |
| 365 | silc_hash_table_list(client_entry2->channels, &htl); | |
| 366 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { | |
| 367 | convo = gaim_find_conversation_with_account(chu->channel->channel_name, | |
| 368 | sg->account); | |
| 369 | if (!convo) | |
| 370 | continue; | |
| 371 | gaim_conv_chat_rename_user(GAIM_CONV_CHAT(convo), | |
| 372 | client_entry->nickname, | |
| 373 | client_entry2->nickname); | |
| 374 | } | |
| 375 | silc_hash_table_list_reset(&htl); | |
| 376 | ||
| 377 | break; | |
| 378 | ||
| 379 | case SILC_NOTIFY_TYPE_CMODE_CHANGE: | |
| 380 | idtype = va_arg(va, int); | |
| 381 | entry = va_arg(va, void *); | |
| 382 | mode = va_arg(va, SilcUInt32); | |
| 383 | (void)va_arg(va, char *); | |
| 384 | (void)va_arg(va, char *); | |
| 385 | (void)va_arg(va, char *); | |
| 386 | (void)va_arg(va, SilcPublicKey); | |
| 387 | buffer = va_arg(va, SilcBuffer); | |
| 388 | channel = va_arg(va, SilcChannelEntry); | |
| 389 | ||
| 390 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 391 | sg->account); | |
| 392 | if (!convo) | |
| 393 | break; | |
| 394 | ||
| 395 | if (idtype == SILC_ID_CLIENT) | |
| 396 | name = ((SilcClientEntry)entry)->nickname; | |
| 397 | else if (idtype == SILC_ID_SERVER) | |
| 398 | name = ((SilcServerEntry)entry)->server_name; | |
| 399 | else | |
| 400 | name = ((SilcChannelEntry)entry)->channel_name; | |
| 401 | if (!name) | |
| 402 | break; | |
| 403 | ||
| 404 | if (mode) { | |
| 405 | silcgaim_get_chmode_string(mode, buf2, sizeof(buf2)); | |
| 406 | g_snprintf(buf, sizeof(buf), | |
| 407 | _("<I>%s</I> set channel <I>%s</I> modes to: %s"), name, | |
| 408 | channel->channel_name, buf2); | |
| 409 | } else { | |
| 410 | g_snprintf(buf, sizeof(buf), | |
| 411 | _("<I>%s</I> removed all channel <I>%s</I> modes"), name, | |
| 412 | channel->channel_name); | |
| 413 | } | |
| 414 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), channel->channel_name, | |
| 415 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 416 | break; | |
| 417 | ||
| 418 | case SILC_NOTIFY_TYPE_CUMODE_CHANGE: | |
| 419 | idtype = va_arg(va, int); | |
| 420 | entry = va_arg(va, void *); | |
| 421 | mode = va_arg(va, SilcUInt32); | |
| 422 | client_entry2 = va_arg(va, SilcClientEntry); | |
| 423 | channel = va_arg(va, SilcChannelEntry); | |
| 424 | ||
| 425 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 426 | sg->account); | |
| 427 | if (!convo) | |
| 428 | break; | |
| 429 | ||
| 430 | if (idtype == SILC_ID_CLIENT) | |
| 431 | name = ((SilcClientEntry)entry)->nickname; | |
| 432 | else if (idtype == SILC_ID_SERVER) | |
| 433 | name = ((SilcServerEntry)entry)->server_name; | |
| 434 | else | |
| 435 | name = ((SilcChannelEntry)entry)->channel_name; | |
| 436 | if (!name) | |
| 437 | break; | |
| 438 | ||
| 439 | if (mode) { | |
| 440 | silcgaim_get_chumode_string(mode, buf2, sizeof(buf2)); | |
| 441 | g_snprintf(buf, sizeof(buf), | |
| 442 | _("<I>%s</I> set <I>%s's</I> modes to: %s"), name, | |
| 443 | client_entry2->nickname, buf2); | |
| 444 | } else { | |
| 445 | g_snprintf(buf, sizeof(buf), | |
| 446 | _("<I>%s</I> removed all <I>%s's</I> modes"), name, | |
| 447 | client_entry2->nickname); | |
| 448 | } | |
| 449 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), channel->channel_name, | |
| 450 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 451 | break; | |
| 452 | ||
| 453 | case SILC_NOTIFY_TYPE_MOTD: | |
| 454 | tmp = va_arg(va, char *); | |
| 455 | silc_free(sg->motd); | |
| 456 | sg->motd = silc_memdup(tmp, strlen(tmp)); | |
| 457 | break; | |
| 458 | ||
| 459 | case SILC_NOTIFY_TYPE_KICKED: | |
| 460 | client_entry = va_arg(va, SilcClientEntry); | |
| 461 | tmp = va_arg(va, char *); | |
| 462 | client_entry2 = va_arg(va, SilcClientEntry); | |
| 463 | channel = va_arg(va, SilcChannelEntry); | |
| 464 | ||
| 465 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 466 | sg->account); | |
| 467 | if (!convo) | |
| 468 | break; | |
| 469 | ||
| 470 | if (client_entry == conn->local_entry) { | |
| 471 | /* Remove us from channel */ | |
| 472 | g_snprintf(buf, sizeof(buf), | |
| 473 | _("You have been kicked off <I>%s</I> by <I>%s</I> (%s)"), | |
| 474 | channel->channel_name, client_entry2->nickname, | |
| 475 | tmp ? tmp : ""); | |
| 476 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), client_entry->nickname, | |
| 477 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 478 | serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo))); | |
| 479 | } else { | |
| 480 | /* Remove user from channel */ | |
| 481 | g_snprintf(buf, sizeof(buf), ("Kicked by %s (%s)"), | |
| 482 | client_entry2->nickname, tmp ? tmp : ""); | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
483 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), |
| 8849 | 484 | client_entry->nickname, |
| 485 | buf); | |
| 486 | } | |
| 487 | ||
| 488 | break; | |
| 489 | ||
| 490 | case SILC_NOTIFY_TYPE_KILLED: | |
| 491 | client_entry = va_arg(va, SilcClientEntry); | |
| 492 | tmp = va_arg(va, char *); | |
| 493 | idtype = va_arg(va, int); | |
| 494 | entry = va_arg(va, SilcClientEntry); | |
| 495 | ||
| 496 | if (!client_entry->nickname) | |
| 497 | break; | |
| 498 | ||
| 499 | if (client_entry == conn->local_entry) { | |
| 500 | if (idtype == SILC_ID_CLIENT) { | |
| 501 | client_entry2 = (SilcClientEntry)entry; | |
| 502 | g_snprintf(buf, sizeof(buf), | |
| 503 | _("You have been killed by %s (%s)"), | |
| 504 | client_entry2->nickname, tmp ? tmp : ""); | |
| 505 | } else if (idtype == SILC_ID_SERVER) { | |
| 506 | server_entry = (SilcServerEntry)entry; | |
| 507 | g_snprintf(buf, sizeof(buf), | |
| 508 | _("You have been killed by %s (%s)"), | |
| 509 | server_entry->server_name, tmp ? tmp : ""); | |
| 510 | } else if (idtype == SILC_ID_CHANNEL) { | |
| 511 | channel = (SilcChannelEntry)entry; | |
| 512 | g_snprintf(buf, sizeof(buf), | |
| 513 | _("You have been killed by %s (%s)"), | |
| 514 | channel->channel_name, tmp ? tmp : ""); | |
| 515 | } | |
| 516 | ||
| 517 | /* Remove us from all channels */ | |
| 518 | silc_hash_table_list(client_entry->channels, &htl); | |
| 519 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { | |
| 520 | convo = gaim_find_conversation_with_account(chu->channel->channel_name, | |
| 521 | sg->account); | |
| 522 | if (!convo) | |
| 523 | continue; | |
| 524 | gaim_conv_chat_write(GAIM_CONV_CHAT(convo), client_entry->nickname, | |
| 525 | buf, GAIM_MESSAGE_SYSTEM, time(NULL)); | |
| 526 | serv_got_chat_left(gc, gaim_conv_chat_get_id(GAIM_CONV_CHAT(convo))); | |
| 527 | } | |
| 528 | silc_hash_table_list_reset(&htl); | |
| 529 | ||
| 530 | } else { | |
| 531 | if (idtype == SILC_ID_CLIENT) { | |
| 532 | client_entry2 = (SilcClientEntry)entry; | |
| 533 | g_snprintf(buf, sizeof(buf), | |
| 534 | _("Killed by %s (%s)"), | |
| 535 | client_entry2->nickname, tmp ? tmp : ""); | |
| 536 | } else if (idtype == SILC_ID_SERVER) { | |
| 537 | server_entry = (SilcServerEntry)entry; | |
| 538 | g_snprintf(buf, sizeof(buf), | |
| 539 | _("Killed by %s (%s)"), | |
| 540 | server_entry->server_name, tmp ? tmp : ""); | |
| 541 | } else if (idtype == SILC_ID_CHANNEL) { | |
| 542 | channel = (SilcChannelEntry)entry; | |
| 543 | g_snprintf(buf, sizeof(buf), | |
| 544 | _("Killed by %s (%s)"), | |
| 545 | channel->channel_name, tmp ? tmp : ""); | |
| 546 | } | |
| 547 | ||
| 548 | /* Remove user from all channels */ | |
| 549 | silc_hash_table_list(client_entry->channels, &htl); | |
| 550 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { | |
| 551 | convo = gaim_find_conversation_with_account(chu->channel->channel_name, | |
| 552 | sg->account); | |
| 553 | if (!convo) | |
| 554 | continue; | |
| 555 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), | |
| 556 | client_entry->nickname, tmp); | |
| 557 | } | |
| 558 | silc_hash_table_list_reset(&htl); | |
| 559 | } | |
| 560 | ||
| 561 | break; | |
| 562 | ||
| 563 | case SILC_NOTIFY_TYPE_CHANNEL_CHANGE: | |
| 564 | break; | |
| 565 | ||
| 566 | case SILC_NOTIFY_TYPE_SERVER_SIGNOFF: | |
| 567 | { | |
| 568 | int i; | |
| 569 | SilcClientEntry *clients; | |
| 570 | SilcUInt32 clients_count; | |
| 571 | ||
| 572 | (void)va_arg(va, void *); | |
| 573 | clients = va_arg(va, SilcClientEntry *); | |
| 574 | clients_count = va_arg(va, SilcUInt32); | |
| 575 | ||
| 576 | for (i = 0; i < clients_count; i++) { | |
| 577 | if (!clients[i]->nickname) | |
| 578 | break; | |
| 579 | ||
| 580 | /* Remove from all channels */ | |
| 581 | silc_hash_table_list(clients[i]->channels, &htl); | |
| 582 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { | |
| 583 | convo = | |
| 584 | gaim_find_conversation_with_account(chu->channel->channel_name, | |
| 585 | sg->account); | |
| 586 | if (!convo) | |
| 587 | continue; | |
| 588 | gaim_conv_chat_remove_user(GAIM_CONV_CHAT(convo), | |
| 589 | clients[i]->nickname, | |
| 590 | _("Server signoff")); | |
| 591 | } | |
| 592 | silc_hash_table_list_reset(&htl); | |
| 593 | } | |
| 594 | } | |
| 595 | break; | |
| 596 | ||
| 597 | case SILC_NOTIFY_TYPE_ERROR: | |
| 598 | { | |
| 599 | SilcStatus error = va_arg(va, int); | |
| 600 | gaim_notify_error(gc, "Error Notify", | |
| 601 | silc_get_status_message(error), | |
| 602 | NULL); | |
| 603 | } | |
| 604 | break; | |
| 605 | ||
| 606 | case SILC_NOTIFY_TYPE_WATCH: | |
| 607 | { | |
| 608 | SilcPublicKey public_key; | |
| 609 | unsigned char *pk; | |
| 610 | SilcUInt32 pk_len; | |
| 611 | char *fingerprint; | |
| 612 | ||
| 613 | client_entry = va_arg(va, SilcClientEntry); | |
| 614 | (void)va_arg(va, char *); | |
| 615 | mode = va_arg(va, SilcUInt32); | |
| 616 | notify = va_arg(va, int); | |
| 617 | public_key = va_arg(va, SilcPublicKey); | |
| 618 | ||
| 619 | b = NULL; | |
| 620 | if (public_key) { | |
| 621 | GaimBlistNode *gnode, *cnode, *bnode; | |
| 622 | const char *f; | |
| 623 | ||
| 624 | pk = silc_pkcs_public_key_encode(public_key, &pk_len); | |
| 625 | if (!pk) | |
| 626 | break; | |
| 627 | fingerprint = silc_hash_fingerprint(NULL, pk, pk_len); | |
| 628 | for (i = 0; i < strlen(fingerprint); i++) | |
| 629 | if (fingerprint[i] == ' ') | |
| 630 | fingerprint[i] = '_'; | |
| 631 | g_snprintf(buf, sizeof(buf) - 1, | |
| 632 | "%s" G_DIR_SEPARATOR_S "clientkeys" | |
| 633 | G_DIR_SEPARATOR_S "clientkey_%s.pub", | |
| 634 | silcgaim_silcdir(), fingerprint); | |
| 635 | silc_free(fingerprint); | |
| 636 | silc_free(pk); | |
| 637 | ||
| 638 | /* Find buddy by associated public key */ | |
| 639 | for (gnode = gaim_get_blist()->root; gnode; | |
| 640 | gnode = gnode->next) { | |
| 641 | if (!GAIM_BLIST_NODE_IS_GROUP(gnode)) | |
| 642 | continue; | |
| 643 | for (cnode = gnode->child; cnode; cnode = cnode->next) { | |
| 644 | if( !GAIM_BLIST_NODE_IS_CONTACT(cnode)) | |
| 645 | continue; | |
| 646 | for (bnode = cnode->child; bnode; | |
| 647 | bnode = bnode->next) { | |
| 648 | if (!GAIM_BLIST_NODE_IS_BUDDY(bnode)) | |
| 649 | continue; | |
| 650 | b = (GaimBuddy *)bnode; | |
| 651 | if (b->account != gc->account) | |
| 652 | continue; | |
| 653 | f = gaim_blist_node_get_string(bnode, "public-key"); | |
| 654 | if (!strcmp(f, buf)) | |
| 655 | goto cont; | |
| 656 | } | |
| 657 | } | |
| 658 | } | |
| 659 | } | |
| 660 | cont: | |
| 661 | if (!b) { | |
| 662 | /* Find buddy by nickname */ | |
| 663 | b = gaim_find_buddy(sg->account, client_entry->nickname); | |
| 664 | if (!b) { | |
| 9272 | 665 | gaim_debug_warning("silc", "WATCH for %s, unknown buddy", |
| 8849 | 666 | client_entry->nickname); |
| 667 | break; | |
| 668 | } | |
| 669 | } | |
| 670 | ||
| 671 | silc_free(b->proto_data); | |
| 672 | b->proto_data = silc_memdup(client_entry->id, | |
| 673 | sizeof(*client_entry->id)); | |
| 674 | if (notify == SILC_NOTIFY_TYPE_NICK_CHANGE) { | |
| 675 | break; | |
| 676 | } else if (notify == SILC_NOTIFY_TYPE_UMODE_CHANGE) { | |
| 677 | /* See if client was away and is now present */ | |
| 678 | if (!(mode & (SILC_UMODE_GONE | SILC_UMODE_INDISPOSED | | |
| 679 | SILC_UMODE_BUSY | SILC_UMODE_PAGE | | |
| 680 | SILC_UMODE_DETACHED)) && | |
| 681 | (client_entry->mode & SILC_UMODE_GONE || | |
| 682 | client_entry->mode & SILC_UMODE_INDISPOSED || | |
| 683 | client_entry->mode & SILC_UMODE_BUSY || | |
| 684 | client_entry->mode & SILC_UMODE_PAGE || | |
| 685 | client_entry->mode & SILC_UMODE_DETACHED)) { | |
| 686 | client_entry->mode = mode; | |
| 687 | gaim_blist_update_buddy_presence(b, GAIM_BUDDY_ONLINE); | |
| 688 | } | |
| 689 | else if ((mode & SILC_UMODE_GONE) || | |
| 690 | (mode & SILC_UMODE_INDISPOSED) || | |
| 691 | (mode & SILC_UMODE_BUSY) || | |
| 692 | (mode & SILC_UMODE_PAGE) || | |
| 693 | (mode & SILC_UMODE_DETACHED)) { | |
| 694 | client_entry->mode = mode; | |
| 695 | gaim_blist_update_buddy_presence(b, GAIM_BUDDY_OFFLINE); | |
| 696 | } | |
| 697 | } else if (notify == SILC_NOTIFY_TYPE_SIGNOFF || | |
| 698 | notify == SILC_NOTIFY_TYPE_SERVER_SIGNOFF || | |
| 699 | notify == SILC_NOTIFY_TYPE_KILLED) { | |
| 700 | client_entry->mode = mode; | |
| 701 | gaim_blist_update_buddy_presence(b, GAIM_BUDDY_OFFLINE); | |
| 702 | } else if (notify == SILC_NOTIFY_TYPE_NONE) { | |
| 703 | client_entry->mode = mode; | |
| 704 | gaim_blist_update_buddy_presence(b, GAIM_BUDDY_ONLINE); | |
| 705 | } | |
| 706 | } | |
| 707 | break; | |
| 708 | ||
| 709 | default: | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
710 | gaim_debug_info("silc", "Unhandled notification: %d\n", type); |
| 8849 | 711 | break; |
| 712 | } | |
| 713 | ||
| 714 | va_end(va); | |
| 715 | } | |
| 716 | ||
| 717 | ||
| 718 | /* Command handler. This function is called always in the command function. | |
| 719 | If error occurs it will be called as well. `conn' is the associated | |
| 720 | client connection. `cmd_context' is the command context that was | |
| 721 | originally sent to the command. `success' is FALSE if error occurred | |
| 722 | during command. `command' is the command being processed. It must be | |
| 723 | noted that this is not reply from server. This is merely called just | |
| 724 | after application has called the command. Just to tell application | |
| 725 | that the command really was processed. */ | |
| 726 | ||
| 727 | static void | |
| 728 | silc_command(SilcClient client, SilcClientConnection conn, | |
| 729 | SilcClientCommandContext cmd_context, bool success, | |
| 730 | SilcCommand command, SilcStatus status) | |
| 731 | { | |
| 732 | GaimConnection *gc = client->application; | |
| 733 | SilcGaim sg = gc->proto_data; | |
| 734 | ||
| 735 | switch (command) { | |
| 736 | ||
| 737 | case SILC_COMMAND_CMODE: | |
| 738 | if (cmd_context->argc == 3 && | |
| 739 | !strcmp(cmd_context->argv[2], "+C")) | |
| 740 | sg->chpk = TRUE; | |
| 741 | else | |
| 742 | sg->chpk = FALSE; | |
| 743 | break; | |
| 744 | ||
| 745 | default: | |
| 746 | break; | |
| 747 | } | |
| 748 | } | |
| 749 | ||
| 9024 | 750 | #if 0 |
| 8849 | 751 | static void |
| 752 | silcgaim_whois_more(SilcClientEntry client_entry, gint id) | |
| 753 | { | |
| 754 | SilcAttributePayload attr; | |
| 755 | SilcAttribute attribute; | |
| 756 | char *buf; | |
| 757 | GString *s; | |
| 758 | SilcVCardStruct vcard; | |
| 759 | int i; | |
| 760 | ||
| 761 | if (id != 0) | |
| 762 | return; | |
| 763 | ||
| 764 | memset(&vcard, 0, sizeof(vcard)); | |
| 765 | ||
| 766 | s = g_string_new(""); | |
| 767 | ||
| 768 | silc_dlist_start(client_entry->attrs); | |
| 769 | while ((attr = silc_dlist_get(client_entry->attrs)) != SILC_LIST_END) { | |
| 770 | attribute = silc_attribute_get_attribute(attr); | |
| 771 | switch (attribute) { | |
| 772 | ||
| 773 | case SILC_ATTRIBUTE_USER_INFO: | |
| 774 | if (!silc_attribute_get_object(attr, (void *)&vcard, | |
| 775 | sizeof(vcard))) | |
| 776 | continue; | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
777 | g_string_append_printf(s, "%s:\n\n", _("Personal Information")); |
| 8849 | 778 | if (vcard.full_name) |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
779 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
780 | _("Full Name"), |
| 8849 | 781 | vcard.full_name); |
| 782 | if (vcard.first_name) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
783 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
784 | _("First Name"), |
| 8849 | 785 | vcard.first_name); |
| 786 | if (vcard.middle_names) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
787 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
788 | _("Middle Name"), |
| 8849 | 789 | vcard.middle_names); |
| 790 | if (vcard.family_name) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
791 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
792 | _("Family Name"), |
| 8849 | 793 | vcard.family_name); |
| 794 | if (vcard.nickname) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
795 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
796 | _("Nickname"), |
| 8849 | 797 | vcard.nickname); |
| 798 | if (vcard.bday) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
799 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
800 | _("Birth Day"), |
| 8849 | 801 | vcard.bday); |
| 802 | if (vcard.title) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
803 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
804 | _("Job Title"), |
| 8849 | 805 | vcard.title); |
| 806 | if (vcard.role) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
807 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
808 | _("Job Role"), |
| 8849 | 809 | vcard.role); |
| 810 | if (vcard.org_name) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
811 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
812 | _("Organization"), |
| 8849 | 813 | vcard.org_name); |
| 814 | if (vcard.org_unit) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
815 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
816 | _("Unit"), |
| 8849 | 817 | vcard.org_unit); |
| 818 | if (vcard.url) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
819 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
820 | _("Homepage"), |
| 8849 | 821 | vcard.url); |
| 822 | if (vcard.label) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
823 | g_string_append_printf(s, "%s:\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
824 | _("Address"), |
| 8849 | 825 | vcard.label); |
| 826 | for (i = 0; i < vcard.num_tels; i++) { | |
| 827 | if (vcard.tels[i].telnum) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
828 | g_string_append_printf(s, "%s:\t\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
829 | _("Phone"), |
| 8849 | 830 | vcard.tels[i].telnum); |
| 831 | } | |
| 832 | for (i = 0; i < vcard.num_emails; i++) { | |
| 833 | if (vcard.emails[i].address) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
834 | g_string_append_printf(s, "%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
835 | _("EMail"), |
| 8849 | 836 | vcard.emails[i].address); |
| 837 | } | |
| 838 | if (vcard.note) | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
839 | g_string_append_printf(s, "\n%s:\t\t%s\n", |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
840 | _("Note"), |
| 8849 | 841 | vcard.note); |
| 842 | break; | |
| 843 | } | |
| 844 | } | |
| 845 | ||
| 846 | buf = g_string_free(s, FALSE); | |
| 847 | gaim_notify_info(NULL, _("User Information"), _("User Information"), | |
| 848 | buf); | |
| 849 | g_free(buf); | |
| 850 | } | |
| 9024 | 851 | #endif |
| 8849 | 852 | |
| 853 | /* Command reply handler. This function is called always in the command reply | |
| 854 | function. If error occurs it will be called as well. Normal scenario | |
| 855 | is that it will be called after the received command data has been parsed | |
| 856 | and processed. The function is used to pass the received command data to | |
| 857 | the application. | |
| 858 | ||
| 859 | `conn' is the associated client connection. `cmd_payload' is the command | |
| 860 | payload data received from server and it can be ignored. It is provided | |
| 861 | if the application would like to re-parse the received command data, | |
| 862 | however, it must be noted that the data is parsed already by the library | |
| 863 | thus the payload can be ignored. `success' is FALSE if error occurred. | |
| 864 | In this case arguments are not sent to the application. The `status' is | |
| 865 | the command reply status server returned. The `command' is the command | |
| 866 | reply being processed. The function has variable argument list and each | |
| 867 | command defines the number and type of arguments it passes to the | |
| 868 | application (on error they are not sent). */ | |
| 869 | ||
| 870 | static void | |
| 871 | silc_command_reply(SilcClient client, SilcClientConnection conn, | |
| 872 | SilcCommandPayload cmd_payload, bool success, | |
| 873 | SilcCommand command, SilcStatus status, ...) | |
| 874 | { | |
| 875 | GaimConnection *gc = client->application; | |
| 876 | SilcGaim sg = gc->proto_data; | |
| 877 | GaimConversation *convo; | |
| 878 | va_list vp; | |
| 879 | ||
| 880 | va_start(vp, status); | |
| 881 | ||
| 882 | switch (command) { | |
| 883 | case SILC_COMMAND_JOIN: | |
| 884 | { | |
| 885 | SilcChannelEntry channel_entry; | |
| 886 | ||
| 887 | if (!success) { | |
| 888 | gaim_notify_error(gc, _("Join Chat"), _("Cannot join channel"), | |
| 889 | silc_get_status_message(status)); | |
| 890 | return; | |
| 891 | } | |
| 892 | ||
| 893 | (void)va_arg(vp, char *); | |
| 894 | channel_entry = va_arg(vp, SilcChannelEntry); | |
| 895 | ||
| 896 | /* Resolve users on channel */ | |
| 897 | silc_client_get_clients_by_channel(client, conn, channel_entry, | |
| 898 | silcgaim_chat_join_done, | |
| 899 | channel_entry); | |
| 900 | } | |
| 901 | break; | |
| 902 | ||
| 903 | case SILC_COMMAND_LEAVE: | |
| 904 | break; | |
| 905 | ||
| 906 | case SILC_COMMAND_USERS: | |
| 907 | break; | |
| 908 | ||
| 909 | case SILC_COMMAND_WHOIS: | |
| 910 | { | |
| 911 | SilcUInt32 idle, mode; | |
| 912 | SilcBuffer channels, user_modes; | |
| 913 | SilcClientEntry client_entry; | |
| 914 | char *buf, tmp[1024]; | |
| 915 | GString *s; | |
| 916 | ||
| 917 | if (!success) { | |
| 918 | gaim_notify_error(gc, _("User Information"), | |
| 919 | _("Cannot get user information"), | |
| 920 | silc_get_status_message(status)); | |
| 921 | break; | |
| 922 | } | |
| 923 | ||
| 924 | client_entry = va_arg(vp, SilcClientEntry); | |
| 925 | if (!client_entry->nickname) | |
| 926 | break; | |
| 927 | (void)va_arg(vp, char *); | |
| 928 | (void)va_arg(vp, char *); | |
| 929 | (void)va_arg(vp, char *); | |
| 930 | channels = va_arg(vp, SilcBuffer); | |
| 931 | mode = va_arg(vp, SilcUInt32); | |
| 932 | idle = va_arg(vp, SilcUInt32); | |
| 933 | (void)va_arg(vp, unsigned char *); | |
| 934 | user_modes = va_arg(vp, SilcBuffer); | |
| 935 | ||
| 936 | s = g_string_new(""); | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
937 | g_string_append_printf(s, "%s:\t\t%s\n", _("Nickname"), client_entry->nickname); |
| 8849 | 938 | if (client_entry->realname) |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
939 | g_string_append_printf(s, "%s:\t%s\n", _("Realname"), client_entry->realname); |
| 8849 | 940 | if (client_entry->username) |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
941 | g_string_append_printf(s, "%s:\t\t%s\n", _("Username"), client_entry->username); |
| 8849 | 942 | if (client_entry->hostname) |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
943 | g_string_append_printf(s, "%s:\t\t%s\n", _("Hostname"), client_entry->hostname); |
| 8849 | 944 | if (client_entry->server) |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
945 | g_string_append_printf(s, "%s:\t\t%s\n", _("Server"), client_entry->server); |
| 8849 | 946 | |
| 947 | if (mode) { | |
| 948 | memset(tmp, 0, sizeof(tmp)); | |
| 949 | silcgaim_get_umode_string(mode, tmp, sizeof(tmp) - 1); | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
950 | g_string_append_printf(s, "%s:\t%s\n", _("User Mode"), tmp); |
| 8849 | 951 | } |
| 952 | ||
| 953 | if (channels && user_modes) { | |
| 954 | SilcUInt32 *umodes; | |
| 955 | SilcDList list = | |
| 956 | silc_channel_payload_parse_list(channels->data, | |
| 957 | channels->len); | |
| 958 | if (list && silc_get_mode_list(user_modes, | |
| 959 | silc_dlist_count(list), | |
| 960 | &umodes)) { | |
| 961 | SilcChannelPayload entry; | |
| 962 | int i = 0; | |
| 963 | ||
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
964 | g_string_append_printf(s, "\n%s:\n", _("Channels")); |
| 8849 | 965 | memset(tmp, 0, sizeof(tmp)); |
| 966 | silc_dlist_start(list); | |
| 967 | while ((entry = silc_dlist_get(list)) | |
| 968 | != SILC_LIST_END) { | |
| 969 | SilcUInt32 name_len; | |
| 970 | char *m = silc_client_chumode_char(umodes[i++]); | |
| 971 | char *name = silc_channel_get_name(entry, &name_len); | |
| 972 | if (m) | |
| 973 | silc_strncat(tmp, sizeof(tmp) - 1, m, strlen(m)); | |
| 974 | silc_strncat(tmp, sizeof(tmp) - 1, name, name_len); | |
| 975 | silc_strncat(tmp, sizeof(tmp) - 1, " ", 1); | |
| 976 | silc_free(m); | |
| 977 | ||
| 978 | } | |
| 8891 | 979 | g_string_append_printf(s, "%s\n", tmp); |
| 8849 | 980 | silc_free(umodes); |
| 981 | } | |
| 982 | } | |
| 983 | ||
| 984 | if (client_entry->public_key) { | |
| 985 | char *fingerprint, *babbleprint; | |
| 986 | unsigned char *pk; | |
| 987 | SilcUInt32 pk_len; | |
| 988 | pk = silc_pkcs_public_key_encode(client_entry->public_key, &pk_len); | |
| 989 | fingerprint = silc_hash_fingerprint(NULL, pk, pk_len); | |
| 990 | babbleprint = silc_hash_babbleprint(NULL, pk, pk_len); | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
991 | g_string_append_printf(s, "\n%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint); |
|
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
992 | g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint); |
| 8849 | 993 | silc_free(fingerprint); |
| 994 | silc_free(babbleprint); | |
| 995 | silc_free(pk); | |
| 996 | } | |
| 997 | ||
| 998 | buf = g_string_free(s, FALSE); | |
| 999 | #if 0 /* XXX for now, let's not show attrs here */ | |
| 1000 | if (client_entry->attrs) | |
| 1001 | gaim_request_action(NULL, _("User Information"), | |
| 1002 | _("User Information"), | |
| 1003 | buf, 1, client_entry, 2, | |
| 1004 | _("OK"), G_CALLBACK(silcgaim_whois_more), | |
| 1005 | _("More..."), G_CALLBACK(silcgaim_whois_more)); | |
| 1006 | else | |
| 1007 | #endif | |
| 1008 | gaim_notify_info(NULL, _("User Information"), | |
| 1009 | _("User Information"), buf); | |
| 1010 | g_free(buf); | |
| 1011 | } | |
| 1012 | break; | |
| 1013 | ||
| 1014 | case SILC_COMMAND_DETACH: | |
| 1015 | if (!success) { | |
| 1016 | gaim_notify_error(gc, _("Detach From Server"), _("Cannot detach"), | |
| 1017 | silc_get_status_message(status)); | |
| 1018 | return; | |
| 1019 | } | |
| 1020 | break; | |
| 1021 | ||
| 1022 | case SILC_COMMAND_TOPIC: | |
| 1023 | { | |
| 1024 | SilcChannelEntry channel; | |
| 1025 | ||
| 1026 | if (!success) { | |
| 1027 | gaim_notify_error(gc, _("Topic"), _("Cannot set topic"), | |
| 1028 | silc_get_status_message(status)); | |
| 1029 | return; | |
| 1030 | } | |
| 1031 | ||
| 1032 | channel = va_arg(vp, SilcChannelEntry); | |
| 1033 | ||
| 1034 | convo = gaim_find_conversation_with_account(channel->channel_name, | |
| 1035 | sg->account); | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1036 | if (!convo) { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1037 | gaim_debug_error("silc", "Got a topic for %s, which doesn't exist\n", |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1038 | channel->channel_name); |
| 8849 | 1039 | break; |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1040 | } |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1041 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1042 | if (gaim_conversation_get_type(convo) != GAIM_CONV_CHAT) { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1043 | gaim_debug_error("silc", "Got a topic for %s, which isn't a chat\n", |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1044 | channel->channel_name); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1045 | break; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1046 | } |
| 8849 | 1047 | |
| 1048 | /* Set topic */ | |
| 1049 | if (channel->topic) | |
| 1050 | gaim_conv_chat_set_topic(GAIM_CONV_CHAT(convo), NULL, channel->topic); | |
| 1051 | } | |
| 1052 | break; | |
| 1053 | ||
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1054 | case SILC_COMMAND_NICK: |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1055 | { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1056 | /* I don't think we should need to do this because the server should |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1057 | * be sending a SILC_NOTIFY_TYPE_NICK_CHANGE when we change our own |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1058 | * nick, but it isn't, so we deal with it here instead. Stu. */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1059 | SilcClientEntry local_entry; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1060 | SilcHashTableList htl; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1061 | SilcChannelUser chu; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1062 | const char *oldnick; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1063 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1064 | if (!success) { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1065 | return; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1066 | } |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1067 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1068 | local_entry = va_arg(vp, SilcClientEntry); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1069 | |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1070 | /* Change nick on all channels */ |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1071 | silc_hash_table_list(local_entry->channels, &htl); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1072 | while (silc_hash_table_get(&htl, NULL, (void *)&chu)) { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1073 | convo = gaim_find_conversation_with_account(chu->channel->channel_name, |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1074 | sg->account); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1075 | if (!convo || (gaim_conversation_get_type(convo) != GAIM_CONV_CHAT)) |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1076 | continue; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1077 | oldnick = gaim_conv_chat_get_nick(GAIM_CONV_CHAT(convo)); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1078 | if (strcmp(oldnick, local_entry->nickname)) { |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1079 | gaim_conv_chat_rename_user(GAIM_CONV_CHAT(convo), |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1080 | oldnick, local_entry->nickname); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1081 | gaim_conv_chat_set_nick(GAIM_CONV_CHAT(convo), local_entry->nickname); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1082 | } |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1083 | } |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1084 | silc_hash_table_list_reset(&htl); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1085 | } |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1086 | break; |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1087 | |
| 8849 | 1088 | case SILC_COMMAND_LIST: |
| 1089 | { | |
| 1090 | char *topic, *name; | |
| 1091 | int usercount; | |
| 1092 | GaimRoomlistRoom *room; | |
| 1093 | ||
| 1094 | if (sg->roomlist_canceled) | |
| 1095 | break; | |
| 1096 | ||
| 1097 | if (!success) { | |
| 1098 | gaim_notify_error(gc, _("Roomlist"), _("Cannot get room list"), | |
| 1099 | silc_get_status_message(status)); | |
| 1100 | gaim_roomlist_set_in_progress(sg->roomlist, FALSE); | |
| 1101 | gaim_roomlist_unref(sg->roomlist); | |
| 1102 | sg->roomlist = NULL; | |
| 1103 | return; | |
| 1104 | } | |
| 1105 | ||
| 1106 | (void)va_arg(vp, SilcChannelEntry); | |
| 1107 | name = va_arg(vp, char *); | |
| 1108 | topic = va_arg(vp, char *); | |
| 1109 | usercount = va_arg(vp, int); | |
| 1110 | ||
| 1111 | room = gaim_roomlist_room_new(GAIM_ROOMLIST_ROOMTYPE_ROOM, name, NULL); | |
| 1112 | gaim_roomlist_room_add_field(sg->roomlist, room, name); | |
| 1113 | gaim_roomlist_room_add_field(sg->roomlist, room, | |
| 1114 | SILC_32_TO_PTR(usercount)); | |
| 1115 | gaim_roomlist_room_add_field(sg->roomlist, room, | |
| 1116 | topic ? topic : ""); | |
| 1117 | gaim_roomlist_room_add(sg->roomlist, room); | |
| 1118 | ||
| 1119 | if (status == SILC_STATUS_LIST_END || | |
| 1120 | status == SILC_STATUS_OK) { | |
| 1121 | gaim_roomlist_set_in_progress(sg->roomlist, FALSE); | |
| 1122 | gaim_roomlist_unref(sg->roomlist); | |
| 1123 | sg->roomlist = NULL; | |
| 1124 | } | |
| 1125 | } | |
| 1126 | break; | |
| 1127 | ||
| 1128 | case SILC_COMMAND_GETKEY: | |
| 1129 | { | |
| 1130 | SilcPublicKey public_key; | |
| 1131 | ||
| 1132 | if (!success) { | |
| 1133 | gaim_notify_error(gc, _("Get Public Key"), | |
| 1134 | _("Cannot fetch the public key"), | |
| 1135 | silc_get_status_message(status)); | |
| 1136 | return; | |
| 1137 | } | |
| 1138 | ||
| 1139 | (void)va_arg(vp, SilcUInt32); | |
| 1140 | (void)va_arg(vp, void *); | |
| 1141 | public_key = va_arg(vp, SilcPublicKey); | |
| 1142 | ||
| 1143 | if (!public_key) | |
| 1144 | gaim_notify_error(gc, _("Get Public Key"), | |
| 1145 | _("Cannot fetch the public key"), | |
| 1146 | _("No public key was received")); | |
| 1147 | } | |
| 1148 | break; | |
| 1149 | ||
| 1150 | case SILC_COMMAND_INFO: | |
| 1151 | { | |
| 1152 | ||
| 1153 | SilcServerEntry server_entry; | |
| 1154 | char *server_name; | |
| 1155 | char *server_info; | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1156 | char tmp[256], *msg; |
| 8849 | 1157 | |
| 1158 | if (!success) { | |
| 1159 | gaim_notify_error(gc, _("Server Information"), | |
| 1160 | _("Cannot get server information"), | |
| 1161 | silc_get_status_message(status)); | |
| 1162 | return; | |
| 1163 | } | |
| 1164 | ||
| 1165 | server_entry = va_arg(vp, SilcServerEntry); | |
| 1166 | server_name = va_arg(vp, char *); | |
| 1167 | server_info = va_arg(vp, char *); | |
| 1168 | ||
| 1169 | if (server_name && server_info) { | |
| 1170 | g_snprintf(tmp, sizeof(tmp), "Server: %s\n%s", | |
| 1171 | server_name, server_info); | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1172 | msg = g_markup_escape_text(tmp, strlen(tmp)); |
| 8849 | 1173 | gaim_notify_info(NULL, _("Server Information"), |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1174 | _("Server Information"), msg); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1175 | g_free(msg); |
| 8849 | 1176 | } |
| 1177 | } | |
| 1178 | break; | |
| 1179 | ||
| 1180 | case SILC_COMMAND_KILL: | |
| 1181 | if (!success) { | |
| 1182 | gaim_notify_error(gc, _("Kill User"), | |
| 1183 | _("Could not kill user"), | |
| 1184 | silc_get_status_message(status)); | |
| 1185 | return; | |
| 1186 | } | |
| 1187 | break; | |
| 1188 | ||
| 1189 | case SILC_COMMAND_CMODE: | |
| 1190 | { | |
| 1191 | SilcChannelEntry channel_entry; | |
| 1192 | SilcBuffer channel_pubkeys; | |
| 1193 | ||
| 1194 | if (!success) | |
| 1195 | return; | |
| 1196 | ||
| 1197 | channel_entry = va_arg(vp, SilcChannelEntry); | |
| 1198 | (void)va_arg(vp, SilcUInt32); | |
| 1199 | (void)va_arg(vp, SilcPublicKey); | |
| 1200 | channel_pubkeys = va_arg(vp, SilcBuffer); | |
| 1201 | ||
| 1202 | if (sg->chpk) | |
| 1203 | silcgaim_chat_chauth_show(sg, channel_entry, channel_pubkeys); | |
| 1204 | } | |
| 1205 | break; | |
| 1206 | ||
| 1207 | default: | |
|
9353
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1208 | if (success) |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1209 | gaim_debug_info("silc", "Unhandled command: %d (succeeded)\n", command); |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1210 | else |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1211 | gaim_debug_info("silc", "Unhandled command: %d (failed: %s)\n", command, |
|
ff6546387358
[gaim-migrate @ 10161]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
9272
diff
changeset
|
1212 | silc_get_status_message(status)); |
| 8849 | 1213 | break; |
| 1214 | } | |
| 1215 | ||
| 1216 | va_end(vp); | |
| 1217 | } | |
| 1218 | ||
| 1219 | ||
| 1220 | /* Called to indicate that connection was either successfully established | |
| 1221 | or connecting failed. This is also the first time application receives | |
| 1222 | the SilcClientConnection objecet which it should save somewhere. | |
| 1223 | If the `success' is FALSE the application must always call the function | |
| 1224 | silc_client_close_connection. */ | |
| 1225 | ||
| 1226 | static void | |
| 1227 | silc_connected(SilcClient client, SilcClientConnection conn, | |
| 1228 | SilcClientConnectionStatus status) | |
| 1229 | { | |
| 1230 | GaimConnection *gc = client->application; | |
| 1231 | SilcGaim sg = gc->proto_data; | |
| 1232 | gboolean reject_watch, block_invites, block_ims; | |
| 1233 | ||
| 1234 | if (!gc) { | |
| 1235 | sg->conn = NULL; | |
| 1236 | silc_client_close_connection(client, conn); | |
| 1237 | return; | |
| 1238 | } | |
| 1239 | ||
| 1240 | switch (status) { | |
| 1241 | case SILC_CLIENT_CONN_SUCCESS: | |
| 1242 | case SILC_CLIENT_CONN_SUCCESS_RESUME: | |
| 1243 | gaim_connection_set_state(gc, GAIM_CONNECTED); | |
| 1244 | serv_finish_login(gc); | |
| 1245 | unlink(silcgaim_session_file(gaim_account_get_username(sg->account))); | |
| 1246 | ||
| 1247 | /* Send any UMODEs configured for account */ | |
| 1248 | reject_watch = gaim_account_get_bool(sg->account, "reject-watch", FALSE); | |
| 1249 | block_invites = gaim_account_get_bool(sg->account, "block-invites", FALSE); | |
| 1250 | block_ims = gaim_account_get_bool(sg->account, "block-ims", FALSE); | |
| 1251 | if (reject_watch || block_invites || block_ims) { | |
| 1252 | char m[5]; | |
| 1253 | g_snprintf(m, sizeof(m), "+%s%s%s", | |
| 1254 | reject_watch ? "w" : "", | |
| 1255 | block_invites ? "I" : "", | |
| 1256 | block_ims ? "P" : ""); | |
| 1257 | silc_client_command_call(sg->client, sg->conn, NULL, | |
| 1258 | "UMODE", m, NULL); | |
| 1259 | } | |
| 1260 | ||
| 1261 | return; | |
| 1262 | break; | |
| 1263 | ||
| 1264 | case SILC_CLIENT_CONN_ERROR: | |
| 1265 | gaim_connection_error(gc, _("Error during connecting to SILC Server")); | |
| 1266 | unlink(silcgaim_session_file(gaim_account_get_username(sg->account))); | |
| 1267 | break; | |
| 1268 | ||
| 1269 | case SILC_CLIENT_CONN_ERROR_KE: | |
| 1270 | gaim_connection_error(gc, _("Key Exchange failed")); | |
| 1271 | break; | |
| 1272 | ||
| 1273 | case SILC_CLIENT_CONN_ERROR_AUTH: | |
| 1274 | gaim_connection_error(gc, _("Authentication failed")); | |
| 1275 | break; | |
| 1276 | ||
| 1277 | case SILC_CLIENT_CONN_ERROR_RESUME: | |
| 1278 | gaim_connection_error(gc, | |
| 8910 | 1279 | _("Resuming detached session failed. " |
| 8849 | 1280 | "Press Reconnect to create new connection.")); |
| 1281 | unlink(silcgaim_session_file(gaim_account_get_username(sg->account))); | |
| 1282 | break; | |
| 1283 | ||
| 1284 | case SILC_CLIENT_CONN_ERROR_TIMEOUT: | |
|
9039
2fb80b14dd95
[gaim-migrate @ 9815]
Björn Voigt <bjoern@cs.tu-berlin.de>
parents:
9024
diff
changeset
|
1285 | gaim_connection_error(gc, _("Connection Timeout")); |
| 8849 | 1286 | break; |
| 1287 | } | |
| 1288 | ||
| 1289 | /* Error */ | |
| 1290 | sg->conn = NULL; | |
| 1291 | silc_client_close_connection(client, conn); | |
| 1292 | } | |
| 1293 | ||
| 1294 | ||
| 1295 | /* Called to indicate that connection was disconnected to the server. | |
| 1296 | The `status' may tell the reason of the disconnection, and if the | |
| 1297 | `message' is non-NULL it may include the disconnection message | |
| 1298 | received from server. */ | |
| 1299 | ||
| 1300 | static void | |
| 1301 | silc_disconnected(SilcClient client, SilcClientConnection conn, | |
| 1302 | SilcStatus status, const char *message) | |
| 1303 | { | |
| 1304 | GaimConnection *gc = client->application; | |
| 1305 | SilcGaim sg = gc->proto_data; | |
| 1306 | ||
| 1307 | if (sg->resuming && !sg->detaching) | |
| 1308 | unlink(silcgaim_session_file(gaim_account_get_username(sg->account))); | |
| 1309 | ||
| 1310 | sg->conn = NULL; | |
| 1311 | ||
| 1312 | /* Close the connection */ | |
| 1313 | if (!sg->detaching) | |
| 1314 | gaim_connection_error(gc, _("Disconnected by server")); | |
| 1315 | else | |
| 1316 | gaim_connection_destroy(gc); | |
| 1317 | } | |
| 1318 | ||
| 1319 | ||
| 1320 | typedef struct { | |
| 1321 | SilcGetAuthMeth completion; | |
| 1322 | void *context; | |
| 1323 | } *SilcGaimGetAuthMethod; | |
| 1324 | ||
| 1325 | /* Callback called when we've received the authentication method information | |
| 1326 | from the server after we've requested it. */ | |
| 1327 | ||
| 1328 | static void silc_get_auth_method_callback(SilcClient client, | |
| 1329 | SilcClientConnection conn, | |
| 1330 | SilcAuthMethod auth_meth, | |
| 1331 | void *context) | |
| 1332 | { | |
| 1333 | SilcGaimGetAuthMethod internal = context; | |
| 1334 | ||
| 1335 | switch (auth_meth) { | |
| 1336 | case SILC_AUTH_NONE: | |
| 1337 | /* No authentication required. */ | |
| 1338 | (*internal->completion)(TRUE, auth_meth, NULL, 0, internal->context); | |
| 1339 | break; | |
| 1340 | ||
| 1341 | case SILC_AUTH_PASSWORD: | |
| 1342 | /* By returning NULL here the library will ask the passphrase from us | |
| 1343 | by calling the silc_ask_passphrase. */ | |
| 1344 | (*internal->completion)(TRUE, auth_meth, NULL, 0, internal->context); | |
| 1345 | break; | |
| 1346 | ||
| 1347 | case SILC_AUTH_PUBLIC_KEY: | |
| 1348 | /* Do not get the authentication data now, the library will generate | |
| 1349 | it using our default key, if we do not provide it here. */ | |
| 1350 | (*internal->completion)(TRUE, auth_meth, NULL, 0, internal->context); | |
| 1351 | break; | |
| 1352 | } | |
| 1353 | ||
| 1354 | silc_free(internal); | |
| 1355 | } | |
| 1356 | ||
| 1357 | /* Find authentication method and authentication data by hostname and | |
| 1358 | port. The hostname may be IP address as well. When the authentication | |
| 1359 | method has been resolved the `completion' callback with the found | |
| 1360 | authentication method and authentication data is called. The `conn' | |
| 1361 | may be NULL. */ | |
| 1362 | ||
| 1363 | static void | |
| 1364 | silc_get_auth_method(SilcClient client, SilcClientConnection conn, | |
| 1365 | char *hostname, SilcUInt16 port, | |
| 1366 | SilcGetAuthMeth completion, void *context) | |
| 1367 | { | |
| 1368 | GaimConnection *gc = client->application; | |
| 1369 | SilcGaim sg = gc->proto_data; | |
| 1370 | SilcGaimGetAuthMethod internal; | |
| 1371 | ||
| 1372 | /* Progress */ | |
| 1373 | if (sg->resuming) | |
| 1374 | gaim_connection_update_progress(gc, _("Resuming session"), 4, 5); | |
| 1375 | else | |
| 1376 | gaim_connection_update_progress(gc, _("Authenticating connection"), 4, 5); | |
| 1377 | ||
| 1378 | /* Check configuration if we have this connection configured. If we | |
| 1379 | have then return that data immediately, as it's faster way. */ | |
| 1380 | if (gc->account->password && *gc->account->password) { | |
| 1381 | completion(TRUE, SILC_AUTH_PASSWORD, gc->account->password, | |
| 1382 | strlen(gc->account->password), context); | |
| 1383 | return; | |
| 1384 | } | |
| 1385 | if (gaim_account_get_bool(sg->account, "pubkey-auth", FALSE)) { | |
| 1386 | completion(TRUE, SILC_AUTH_PUBLIC_KEY, NULL, 0, context); | |
| 1387 | return; | |
| 1388 | } | |
| 1389 | ||
| 1390 | /* Resolve the authentication method from server, as we may not know it. */ | |
| 1391 | internal = silc_calloc(1, sizeof(*internal)); | |
| 1392 | if (!internal) | |
| 1393 | return; | |
| 1394 | internal->completion = completion; | |
| 1395 | internal->context = context; | |
| 1396 | silc_client_request_authentication_method(client, conn, | |
| 1397 | silc_get_auth_method_callback, | |
| 1398 | internal); | |
| 1399 | } | |
| 1400 | ||
| 1401 | ||
| 1402 | /* Verifies received public key. The `conn_type' indicates which entity | |
| 1403 | (server, client etc.) has sent the public key. If user decides to trust | |
| 1404 | the application may save the key as trusted public key for later | |
| 1405 | use. The `completion' must be called after the public key has been | |
| 1406 | verified. */ | |
| 1407 | ||
| 1408 | static void | |
| 1409 | silc_verify_public_key(SilcClient client, SilcClientConnection conn, | |
| 1410 | SilcSocketType conn_type, unsigned char *pk, | |
| 1411 | SilcUInt32 pk_len, SilcSKEPKType pk_type, | |
| 1412 | SilcVerifyPublicKey completion, void *context) | |
| 1413 | { | |
| 1414 | GaimConnection *gc = client->application; | |
| 1415 | SilcGaim sg = gc->proto_data; | |
| 1416 | ||
| 1417 | if (!sg->conn && (conn_type == SILC_SOCKET_TYPE_SERVER || | |
| 1418 | conn_type == SILC_SOCKET_TYPE_ROUTER)) { | |
| 1419 | /* Progress */ | |
| 1420 | if (sg->resuming) | |
| 1421 | gaim_connection_update_progress(gc, _("Resuming session"), 3, 5); | |
| 1422 | else | |
| 1423 | gaim_connection_update_progress(gc, _("Verifying server public key"), | |
| 1424 | 3, 5); | |
| 1425 | } | |
| 1426 | ||
| 1427 | /* Verify public key */ | |
| 1428 | silcgaim_verify_public_key(client, conn, NULL, conn_type, pk, | |
| 1429 | pk_len, pk_type, completion, context); | |
| 1430 | } | |
| 1431 | ||
| 1432 | typedef struct { | |
| 1433 | SilcAskPassphrase completion; | |
| 1434 | void *context; | |
| 1435 | } *SilcGaimAskPassphrase; | |
| 1436 | ||
| 1437 | static void | |
| 1438 | silc_ask_passphrase_cb(SilcGaimAskPassphrase internal, const char *passphrase) | |
| 1439 | { | |
| 1440 | if (!passphrase || !(*passphrase)) | |
| 1441 | internal->completion(NULL, 0, internal->context); | |
| 1442 | else | |
| 1443 | internal->completion((unsigned char *)passphrase, | |
| 1444 | strlen(passphrase), internal->context); | |
| 1445 | silc_free(internal); | |
| 1446 | } | |
| 1447 | ||
| 1448 | /* Ask (interact, that is) a passphrase from user. The passphrase is | |
| 1449 | returned to the library by calling the `completion' callback with | |
| 1450 | the `context'. The returned passphrase SHOULD be in UTF-8 encoded, | |
| 1451 | if not then the library will attempt to encode. */ | |
| 1452 | ||
| 1453 | static void | |
| 1454 | silc_ask_passphrase(SilcClient client, SilcClientConnection conn, | |
| 1455 | SilcAskPassphrase completion, void *context) | |
| 1456 | { | |
| 1457 | SilcGaimAskPassphrase internal = silc_calloc(1, sizeof(*internal)); | |
| 1458 | ||
| 1459 | if (!internal) | |
| 1460 | return; | |
| 1461 | internal->completion = completion; | |
| 1462 | internal->context = context; | |
| 1463 | gaim_request_input(NULL, _("Passphrase"), NULL, | |
| 1464 | _("Passphrase required"), NULL, FALSE, TRUE, NULL, | |
| 1465 | _("OK"), G_CALLBACK(silc_ask_passphrase_cb), | |
| 1466 | _("Cancel"), G_CALLBACK(silc_ask_passphrase_cb), | |
| 1467 | internal); | |
| 1468 | } | |
| 1469 | ||
| 1470 | ||
| 1471 | /* Notifies application that failure packet was received. This is called | |
| 1472 | if there is some protocol active in the client. The `protocol' is the | |
| 1473 | protocol context. The `failure' is opaque pointer to the failure | |
| 1474 | indication. Note, that the `failure' is protocol dependant and | |
| 1475 | application must explicitly cast it to correct type. Usually `failure' | |
| 1476 | is 32 bit failure type (see protocol specs for all protocol failure | |
| 1477 | types). */ | |
| 1478 | ||
| 1479 | static void | |
| 1480 | silc_failure(SilcClient client, SilcClientConnection conn, | |
| 1481 | SilcProtocol protocol, void *failure) | |
| 1482 | { | |
| 1483 | GaimConnection *gc = client->application; | |
| 1484 | char buf[128]; | |
| 1485 | ||
| 1486 | memset(buf, 0, sizeof(buf)); | |
| 1487 | ||
| 1488 | if (protocol->protocol->type == SILC_PROTOCOL_CLIENT_KEY_EXCHANGE) { | |
| 1489 | SilcSKEStatus status = (SilcSKEStatus)SILC_PTR_TO_32(failure); | |
| 1490 | ||
| 1491 | if (status == SILC_SKE_STATUS_BAD_VERSION) | |
| 1492 | g_snprintf(buf, sizeof(buf), | |
| 1493 | _("Failure: Version mismatch, upgrade your client")); | |
| 1494 | if (status == SILC_SKE_STATUS_UNSUPPORTED_PUBLIC_KEY) | |
| 1495 | g_snprintf(buf, sizeof(buf), | |
| 1496 | _("Failure: Remote does not trust/support your public key")); | |
| 1497 | if (status == SILC_SKE_STATUS_UNKNOWN_GROUP) | |
| 1498 | g_snprintf(buf, sizeof(buf), | |
| 1499 | _("Failure: Remote does not support proposed KE group")); | |
| 1500 | if (status == SILC_SKE_STATUS_UNKNOWN_CIPHER) | |
| 1501 | g_snprintf(buf, sizeof(buf), | |
| 1502 | _("Failure: Remote does not support proposed cipher")); | |
| 1503 | if (status == SILC_SKE_STATUS_UNKNOWN_PKCS) | |
| 1504 | g_snprintf(buf, sizeof(buf), | |
| 1505 | _("Failure: Remote does not support proposed PKCS")); | |
| 1506 | if (status == SILC_SKE_STATUS_UNKNOWN_HASH_FUNCTION) | |
| 1507 | g_snprintf(buf, sizeof(buf), | |
| 1508 | _("Failure: Remote does not support proposed hash function")); | |
| 1509 | if (status == SILC_SKE_STATUS_UNKNOWN_HMAC) | |
| 1510 | g_snprintf(buf, sizeof(buf), | |
| 1511 | _("Failure: Remote does not support proposed HMAC")); | |
| 1512 | if (status == SILC_SKE_STATUS_INCORRECT_SIGNATURE) | |
| 1513 | g_snprintf(buf, sizeof(buf), _("Failure: Incorrect signature")); | |
| 1514 | if (status == SILC_SKE_STATUS_INVALID_COOKIE) | |
| 1515 | g_snprintf(buf, sizeof(buf), _("Failure: Invalid cookie")); | |
| 1516 | ||
| 1517 | /* Show the error on the progress bar. A more generic error message | |
| 1518 | is going to be showed to user after this in the silc_connected. */ | |
| 1519 | gaim_connection_update_progress(gc, buf, 2, 5); | |
| 1520 | } | |
| 1521 | ||
| 1522 | if (protocol->protocol->type == SILC_PROTOCOL_CLIENT_CONNECTION_AUTH) { | |
| 1523 | SilcUInt32 err = SILC_PTR_TO_32(failure); | |
| 1524 | ||
| 1525 | if (err == SILC_AUTH_FAILED) | |
| 1526 | g_snprintf(buf, sizeof(buf), _("Failure: Authentication failed")); | |
| 1527 | ||
| 1528 | /* Show the error on the progress bar. A more generic error message | |
| 1529 | is going to be showed to user after this in the silc_connected. */ | |
| 1530 | gaim_connection_update_progress(gc, buf, 4, 5); | |
| 1531 | } | |
| 1532 | } | |
| 1533 | ||
| 1534 | /* Asks whether the user would like to perform the key agreement protocol. | |
| 1535 | This is called after we have received an key agreement packet or an | |
| 1536 | reply to our key agreement packet. This returns TRUE if the user wants | |
| 1537 | the library to perform the key agreement protocol and FALSE if it is not | |
| 1538 | desired (application may start it later by calling the function | |
| 1539 | silc_client_perform_key_agreement). If TRUE is returned also the | |
| 1540 | `completion' and `context' arguments must be set by the application. */ | |
| 1541 | ||
| 1542 | static bool | |
| 1543 | silc_key_agreement(SilcClient client, SilcClientConnection conn, | |
| 1544 | SilcClientEntry client_entry, const char *hostname, | |
| 1545 | SilcUInt16 port, SilcKeyAgreementCallback *completion, | |
| 1546 | void **context) | |
| 1547 | { | |
| 1548 | silcgaim_buddy_keyagr_request(client, conn, client_entry, hostname, port); | |
| 1549 | *completion = NULL; | |
| 1550 | *context = NULL; | |
| 1551 | return FALSE; | |
| 1552 | } | |
| 1553 | ||
| 1554 | ||
| 1555 | /* Notifies application that file transfer protocol session is being | |
| 1556 | requested by the remote client indicated by the `client_entry' from | |
| 1557 | the `hostname' and `port'. The `session_id' is the file transfer | |
| 1558 | session and it can be used to either accept or reject the file | |
| 1559 | transfer request, by calling the silc_client_file_receive or | |
| 1560 | silc_client_file_close, respectively. */ | |
| 1561 | ||
| 1562 | static void | |
| 1563 | silc_ftp(SilcClient client, SilcClientConnection conn, | |
| 1564 | SilcClientEntry client_entry, SilcUInt32 session_id, | |
| 1565 | const char *hostname, SilcUInt16 port) | |
| 1566 | { | |
| 1567 | silcgaim_ftp_request(client, conn, client_entry, session_id, | |
| 1568 | hostname, port); | |
| 1569 | } | |
| 1570 | ||
| 1571 | ||
| 1572 | /* Delivers SILC session detachment data indicated by `detach_data' to the | |
| 1573 | application. If application has issued SILC_COMMAND_DETACH command | |
| 1574 | the client session in the SILC network is not quit. The client remains | |
| 1575 | in the network but is detached. The detachment data may be used later | |
| 1576 | to resume the session in the SILC Network. The appliation is | |
| 1577 | responsible of saving the `detach_data', to for example in a file. | |
| 1578 | ||
| 1579 | The detachment data can be given as argument to the functions | |
| 1580 | silc_client_connect_to_server, or silc_client_add_connection when | |
| 1581 | creating connection to remote server, inside SilcClientConnectionParams | |
| 1582 | structure. If it is provided the client library will attempt to resume | |
| 1583 | the session in the network. After the connection is created | |
| 1584 | successfully, the application is responsible of setting the user | |
| 1585 | interface for user into the same state it was before detaching (showing | |
| 1586 | same channels, channel modes, etc). It can do this by fetching the | |
| 1587 | information (like joined channels) from the client library. */ | |
| 1588 | ||
| 1589 | static void | |
| 1590 | silc_detach(SilcClient client, SilcClientConnection conn, | |
| 1591 | const unsigned char *detach_data, SilcUInt32 detach_data_len) | |
| 1592 | { | |
| 1593 | GaimConnection *gc = client->application; | |
| 1594 | SilcGaim sg = gc->proto_data; | |
| 1595 | const char *file; | |
| 1596 | ||
| 1597 | /* Save the detachment data to file. */ | |
| 1598 | file = silcgaim_session_file(gaim_account_get_username(sg->account)); | |
| 1599 | unlink(file); | |
| 1600 | silc_file_writefile(file, detach_data, detach_data_len); | |
| 1601 | } | |
| 1602 | ||
| 1603 | SilcClientOperations ops = { | |
| 1604 | silc_say, | |
| 1605 | silc_channel_message, | |
| 1606 | silc_private_message, | |
| 1607 | silc_notify, | |
| 1608 | silc_command, | |
| 1609 | silc_command_reply, | |
| 1610 | silc_connected, | |
| 1611 | silc_disconnected, | |
| 1612 | silc_get_auth_method, | |
| 1613 | silc_verify_public_key, | |
| 1614 | silc_ask_passphrase, | |
| 1615 | silc_failure, | |
| 1616 | silc_key_agreement, | |
| 1617 | silc_ftp, | |
| 1618 | silc_detach | |
| 1619 | }; |