Mercurial > pidgin
annotate src/protocols/zephyr/zephyr.c @ 4569:7f2de19d052d
[gaim-migrate @ 4850]
Bug fix. Gaim would crash if using the IM convo window slider bars after plugin removal.
committer: Tailor Script <tailor@pidgin.im>
| author | Herman Bloggs <hermanator12002@yahoo.com> |
|---|---|
| date | Tue, 11 Feb 2003 00:58:28 +0000 |
| parents | 3196d9044a45 |
| children | 2778ebd04b63 |
| rev | line source |
|---|---|
| 2086 | 1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ |
| 2 /* | |
| 3 * gaim | |
| 4 * | |
| 5 * Copyright (C) 1998-2001, Mark Spencer <markster@marko.net> | |
| 6 * Some code borrowed from GtkZephyr, by | |
| 7 * Jag/Sean Dilda <agrajag@linuxpower.org>/<smdilda@unity.ncsu.edu> | |
| 8 * http://gtkzephyr.linuxpower.org/ | |
| 9 * | |
| 10 * This program is free software; you can redistribute it and/or modify | |
| 11 * it under the terms of the GNU General Public License as published by | |
| 12 * the Free Software Foundation; either version 2 of the License, or | |
| 13 * (at your option) any later version. | |
| 14 * | |
| 15 * This program is distributed in the hope that it will be useful, | |
| 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 * GNU General Public License for more details. | |
| 19 * | |
| 20 * You should have received a copy of the GNU General Public License | |
| 21 * along with this program; if not, write to the Free Software | |
| 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 23 * | |
| 24 */ | |
| 25 | |
| 26 #ifdef HAVE_CONFIG_H | |
| 27 #include "config.h" | |
| 28 #endif | |
| 29 | |
| 30 #include <string.h> | |
| 31 #include <stdlib.h> | |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
32 #include <errno.h> |
| 2086 | 33 #include "gaim.h" |
| 34 #include "prpl.h" | |
| 35 #include "zephyr/zephyr.h" | |
| 36 | |
| 37 extern Code_t ZGetLocations(ZLocations_t *, int *); | |
| 38 extern Code_t ZSetLocation(char *); | |
| 39 extern Code_t ZUnsetLocation(); | |
| 40 | |
| 41 typedef struct _zframe zframe; | |
| 42 typedef struct _zephyr_triple zephyr_triple; | |
| 43 | |
| 44 /* struct I need for zephyr_to_html */ | |
| 45 struct _zframe { | |
| 46 /* true for everything but @color, since inside the parens of that one is | |
| 47 * the color. */ | |
| 48 gboolean has_closer; | |
| 49 /* </i>, </font>, </b>, etc. */ | |
| 50 char *closing; | |
| 51 /* text including the opening html thingie. */ | |
| 52 GString *text; | |
| 53 struct _zframe *enclosing; | |
| 54 }; | |
| 55 | |
| 56 struct _zephyr_triple { | |
| 57 char *class; | |
| 58 char *instance; | |
| 59 char *recipient; | |
| 60 char *name; | |
| 61 gboolean open; | |
| 62 int id; | |
| 63 }; | |
| 64 | |
| 65 #define z_call(func) if (func != ZERR_NONE)\ | |
| 66 return; | |
| 67 #define z_call_r(func) if (func != ZERR_NONE)\ | |
| 68 return TRUE; | |
| 69 #define z_call_s(func, err) if (func != ZERR_NONE) {\ | |
| 70 hide_login_progress(zgc, err);\ | |
| 71 signoff(zgc);\ | |
| 72 return;\ | |
| 73 } | |
| 74 | |
| 75 static char *zephyr_normalize(const char *); | |
| 76 | |
| 77 /* this is so bad, and if Zephyr weren't so fucked up to begin with I | |
| 78 * wouldn't do this. but it is so i will. */ | |
| 79 static guint32 nottimer = 0; | |
| 80 static guint32 loctimer = 0; | |
| 81 struct gaim_connection *zgc = NULL; | |
| 82 static GList *pending_zloc_names = NULL; | |
| 83 static GSList *subscrips = NULL; | |
| 84 static int last_id = 0; | |
| 85 | |
| 86 /* just for debugging | |
| 87 static void handle_unknown(ZNotice_t notice) | |
| 88 { | |
| 3630 | 89 debug_printf("z_packet: %s\n", notice.z_packet); |
| 90 debug_printf("z_version: %s\n", notice.z_version); | |
| 91 debug_printf("z_kind: %d\n", notice.z_kind); | |
| 92 debug_printf("z_class: %s\n", notice.z_class); | |
| 93 debug_printf("z_class_inst: %s\n", notice.z_class_inst); | |
| 94 debug_printf("z_opcode: %s\n", notice.z_opcode); | |
| 95 debug_printf("z_sender: %s\n", notice.z_sender); | |
| 96 debug_printf("z_recipient: %s\n", notice.z_recipient); | |
| 97 debug_printf("z_message: %s\n", notice.z_message); | |
| 98 debug_printf("z_message_len: %d\n", notice.z_message_len); | |
| 99 debug_printf("\n"); | |
| 2086 | 100 } |
| 101 */ | |
| 102 | |
| 103 static zephyr_triple *new_triple(const char *c, const char *i, const char *r) | |
| 104 { | |
| 105 zephyr_triple *zt; | |
| 106 zt = g_new0(zephyr_triple, 1); | |
| 107 zt->class = g_strdup(c); | |
| 108 zt->instance = g_strdup(i); | |
| 109 zt->recipient = g_strdup(r); | |
| 110 zt->name = g_strdup_printf("%s,%s,%s", c, i, r); | |
| 111 zt->id = ++last_id; | |
| 112 zt->open = FALSE; | |
| 113 return zt; | |
| 114 } | |
| 115 | |
| 116 static void free_triple(zephyr_triple *zt) | |
| 117 { | |
| 118 g_free(zt->class); | |
| 119 g_free(zt->instance); | |
| 120 g_free(zt->recipient); | |
| 121 g_free(zt->name); | |
| 122 g_free(zt); | |
| 123 } | |
| 124 | |
| 125 /* returns true if zt1 is a subset of zt2, i.e. zt2 has the same thing or | |
| 126 * wildcards in each field of zt1. */ | |
| 127 static gboolean triple_subset(zephyr_triple *zt1, zephyr_triple *zt2) | |
| 128 { | |
| 129 if (g_strcasecmp(zt2->class, zt1->class) && | |
| 130 g_strcasecmp(zt2->class, "*")) { | |
| 131 return FALSE; | |
| 132 } | |
| 133 if (g_strcasecmp(zt2->instance, zt1->instance) && | |
| 134 g_strcasecmp(zt2->instance, "*")) { | |
| 135 return FALSE; | |
| 136 } | |
| 137 if (g_strcasecmp(zt2->recipient, zt1->recipient) && | |
| 138 g_strcasecmp(zt2->recipient, "*")) { | |
| 139 return FALSE; | |
| 140 } | |
| 141 return TRUE; | |
| 142 } | |
| 143 | |
| 144 static zephyr_triple *find_sub_by_triple(zephyr_triple *zt) | |
| 145 { | |
| 146 zephyr_triple *curr_t; | |
| 147 GSList *curr = subscrips; | |
| 148 while (curr) { | |
| 149 curr_t = curr->data; | |
| 150 if (triple_subset(zt, curr_t)) | |
| 151 return curr_t; | |
| 152 curr = curr->next; | |
| 153 } | |
| 154 return NULL; | |
| 155 } | |
| 156 | |
| 157 static zephyr_triple *find_sub_by_id(int id) | |
| 158 { | |
| 159 zephyr_triple *zt; | |
| 160 GSList *curr = subscrips; | |
| 161 while (curr) { | |
| 162 zt = curr->data; | |
| 163 if (zt->id == id) | |
| 164 return zt; | |
| 165 curr = curr->next; | |
| 166 } | |
| 167 return NULL; | |
| 168 } | |
| 169 | |
| 170 /* utility macros that are useful for zephyr_to_html */ | |
| 171 | |
| 172 #define IS_OPENER(c) ((c == '{') || (c == '[') || (c == '(') || (c == '<')) | |
| 173 #define IS_CLOSER(c) ((c == '}') || (c == ']') || (c == ')') || (c == '>')) | |
| 174 | |
| 175 /* this parses zephyr formatting and converts it to html. For example, if | |
| 176 * you pass in "@{@color(blue)@i(hello)}" you should get out | |
| 177 * "<font color=blue><i>hello</i></font>". */ | |
| 178 static char *zephyr_to_html(char *message) | |
| 179 { | |
| 180 int len, cnt; | |
| 181 zframe *frames, *curr; | |
| 182 char *ret; | |
| 183 | |
| 184 frames = g_new(zframe, 1); | |
| 185 frames->text = g_string_new(""); | |
| 186 frames->enclosing = NULL; | |
| 187 frames->closing = ""; | |
| 188 frames->has_closer = FALSE; | |
| 189 | |
| 190 len = strlen(message); | |
| 191 cnt = 0; | |
| 192 while (cnt <= len) { | |
| 193 if (message[cnt] == '@') { | |
| 194 zframe *new_f; | |
| 195 char *buf; | |
| 196 int end; | |
| 197 for (end=1; (cnt+end) <= len && | |
| 198 !IS_OPENER(message[cnt+end]); end++); | |
| 199 buf = g_new0(char, end); | |
| 200 if (end) { | |
| 201 g_snprintf(buf, end, "%s", message+cnt+1); | |
| 202 } | |
| 203 if (!g_strcasecmp(buf, "italic") || | |
| 204 !g_strcasecmp(buf, "i")) { | |
| 205 new_f = g_new(zframe, 1); | |
| 206 new_f->enclosing = frames; | |
| 207 new_f->text = g_string_new("<i>"); | |
| 208 new_f->closing = "</i>"; | |
| 209 new_f->has_closer = TRUE; | |
| 210 frames = new_f; | |
| 211 cnt += end+1; /* cnt points to char after opener */ | |
| 212 } else if (!g_strcasecmp(buf, "bold") | |
| 213 || !g_strcasecmp(buf, "b")) { | |
| 214 new_f = g_new(zframe, 1); | |
| 215 new_f->enclosing = frames; | |
| 216 new_f->text = g_string_new("<b>"); | |
| 217 new_f->closing = "</b>"; | |
| 218 new_f->has_closer = TRUE; | |
| 219 frames = new_f; | |
| 220 cnt += end+1; | |
| 221 } else if (!g_strcasecmp(buf, "color")) { | |
| 222 cnt += end+1; | |
| 223 new_f = g_new(zframe, 1); | |
| 224 new_f->enclosing = frames; | |
| 225 new_f->text = g_string_new("<font color="); | |
| 226 for (; (cnt <= len) && !IS_CLOSER(message[cnt]); cnt++) { | |
| 227 g_string_append_c(new_f->text, message[cnt]); | |
| 228 } | |
| 229 cnt++; /* point to char after closer */ | |
| 230 g_string_append_c(new_f->text, '>'); | |
| 231 new_f->closing = "</font>"; | |
| 232 new_f->has_closer = FALSE; | |
| 233 frames = new_f; | |
| 234 } else if (!g_strcasecmp(buf, "")) { | |
| 235 new_f = g_new(zframe, 1); | |
| 236 new_f->enclosing = frames; | |
| 237 new_f->text = g_string_new(""); | |
| 238 new_f->closing = ""; | |
| 239 new_f->has_closer = TRUE; | |
| 240 frames = new_f; | |
| 241 cnt += end+1; /* cnt points to char after opener */ | |
| 242 } else { | |
| 243 if ((cnt+end) > len) { | |
| 244 g_string_append_c(frames->text, '@'); | |
| 245 cnt++; | |
| 246 } else { | |
| 247 /* unrecognized thingie. act like it's not there, but we | |
| 248 * still need to take care of the corresponding closer, | |
| 249 * make a frame that does nothing. */ | |
| 250 new_f = g_new(zframe, 1); | |
| 251 new_f->enclosing = frames; | |
| 252 new_f->text = g_string_new(""); | |
| 253 new_f->closing = ""; | |
| 254 new_f->has_closer = TRUE; | |
| 255 frames = new_f; | |
| 256 cnt += end+1; /* cnt points to char after opener */ | |
| 257 } | |
| 258 } | |
| 259 } else if (IS_CLOSER(message[cnt])) { | |
| 260 zframe *popped; | |
| 261 gboolean last_had_closer; | |
| 262 if (frames->enclosing) { | |
| 263 do { | |
| 264 popped = frames; | |
| 265 frames = frames->enclosing; | |
| 266 g_string_append(frames->text, popped->text->str); | |
| 267 g_string_append(frames->text, popped->closing); | |
| 268 g_string_free(popped->text, TRUE); | |
| 269 last_had_closer = popped->has_closer; | |
| 270 g_free(popped); | |
| 271 } while (frames && frames->enclosing && !last_had_closer); | |
| 272 } else { | |
| 273 g_string_append_c(frames->text, message[cnt]); | |
| 274 } | |
| 275 cnt++; | |
| 276 } else if (message[cnt] == '\n') { | |
| 277 g_string_append(frames->text, "<br>"); | |
| 278 cnt++; | |
| 279 } else { | |
| 280 g_string_append_c(frames->text, message[cnt++]); | |
| 281 } | |
| 282 } | |
| 283 /* go through all the stuff that they didn't close */ | |
| 284 while (frames->enclosing) { | |
| 285 curr = frames; | |
| 286 g_string_append(frames->enclosing->text, frames->text->str); | |
| 287 g_string_append(frames->enclosing->text, frames->closing); | |
| 288 g_string_free(frames->text, TRUE); | |
| 289 frames = frames->enclosing; | |
| 290 g_free(curr); | |
| 291 } | |
| 292 ret = frames->text->str; | |
| 293 g_string_free(frames->text, FALSE); | |
| 294 g_free(frames); | |
| 295 return ret; | |
| 296 } | |
| 297 | |
| 298 static gboolean pending_zloc(char *who) | |
| 299 { | |
| 300 GList *curr; | |
| 301 for (curr = pending_zloc_names; curr != NULL; curr = curr->next) { | |
| 302 if (!g_strcasecmp(who, (char*)curr->data)) { | |
| 303 g_free((char*)curr->data); | |
| 304 pending_zloc_names = g_list_remove(pending_zloc_names, curr->data); | |
| 305 return TRUE; | |
| 306 } | |
| 307 } | |
| 308 return FALSE; | |
| 309 } | |
| 310 | |
| 311 static void handle_message(ZNotice_t notice, struct sockaddr_in from) | |
| 312 { | |
| 313 if (!g_strcasecmp(notice.z_class, LOGIN_CLASS)) { | |
| 3277 | 314 /* well, we'll be updating in 20 seconds anyway, might as well ignore this. */ |
| 2086 | 315 } else if (!g_strcasecmp(notice.z_class, LOCATE_CLASS)) { |
| 316 if (!g_strcasecmp(notice.z_opcode, LOCATE_LOCATE)) { | |
| 317 int nlocs; | |
| 318 char *user; | |
| 319 struct buddy *b; | |
| 320 | |
| 321 if (ZParseLocations(¬ice, NULL, &nlocs, &user) != ZERR_NONE) | |
| 322 return; | |
| 4491 | 323 if ((b = find_buddy(zgc->account, user)) == NULL) { |
| 2086 | 324 char *e = strchr(user, '@'); |
| 325 if (e) *e = '\0'; | |
| 4491 | 326 b = find_buddy(zgc->account, user); |
| 2086 | 327 } |
| 328 if (!b) { | |
| 329 free(user); | |
| 330 return; | |
| 331 } | |
| 332 if (pending_zloc(b->name)) { | |
| 333 ZLocations_t locs; | |
| 334 int one = 1; | |
| 335 GString *str = g_string_new(""); | |
| 336 g_string_sprintfa(str, "<b>User:</b> %s<br>" | |
| 337 "<b>Alias:</b> %s<br>", | |
| 4227 | 338 b->name, b->alias); |
| 2086 | 339 if (!nlocs) { |
| 340 g_string_sprintfa(str, "<br>Hidden or not logged-in"); | |
| 341 } | |
| 342 for (; nlocs > 0; nlocs--) { | |
| 343 ZGetLocations(&locs, &one); | |
| 344 g_string_sprintfa(str, "<br>At %s since %s", locs.host, | |
| 345 locs.time); | |
| 346 } | |
|
2791
8f6365332a05
[gaim-migrate @ 2804]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2773
diff
changeset
|
347 g_show_info_text(NULL, NULL, 2, str->str, NULL); |
| 2086 | 348 g_string_free(str, TRUE); |
| 349 } else | |
| 350 serv_got_update(zgc, b->name, nlocs, 0, 0, 0, 0, 0); | |
| 351 | |
| 352 free(user); | |
| 353 } | |
| 354 } else { | |
| 355 char *buf, *buf2; | |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
356 char *send_inst; |
| 3277 | 357 char *realmptr; |
| 358 char *sendertmp; | |
| 2086 | 359 char *ptr = notice.z_message + strlen(notice.z_message) + 1; |
| 360 int len = notice.z_message_len - (ptr - notice.z_message); | |
| 361 int away; | |
| 362 if (len > 0) { | |
| 363 buf = g_malloc(len + 1); | |
| 364 g_snprintf(buf, len + 1, "%s", ptr); | |
| 365 g_strchomp(buf); | |
| 366 buf2 = zephyr_to_html(buf); | |
| 367 g_free(buf); | |
| 368 if (!g_strcasecmp(notice.z_class, "MESSAGE") && | |
| 369 !g_strcasecmp(notice.z_class_inst, "PERSONAL")) { | |
| 370 if (!g_strcasecmp(notice.z_message, "Automated reply:")) | |
| 371 away = TRUE; | |
| 372 else | |
| 373 away = FALSE; | |
|
2856
b1e300a85678
[gaim-migrate @ 2869]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2804
diff
changeset
|
374 serv_got_im(zgc, notice.z_sender, buf2, 0, time(NULL), -1); |
| 2086 | 375 } else { |
| 376 zephyr_triple *zt1, *zt2; | |
| 377 zt1 = new_triple(notice.z_class, notice.z_class_inst, | |
| 378 notice.z_recipient); | |
| 379 zt2 = find_sub_by_triple(zt1); | |
| 380 if (!zt2) { | |
| 381 /* we shouldn't be subscribed to this message. ignore. */ | |
| 382 } else { | |
| 383 if (!zt2->open) { | |
| 384 zt2->open = TRUE; | |
| 385 serv_got_joined_chat(zgc, zt2->id, zt2->name); | |
| 386 } | |
| 3277 | 387 /* If the person is in the default Realm, then strip the |
| 388 Realm from the sender field */ | |
| 389 sendertmp = g_strdup_printf("%s",notice.z_sender); | |
| 390 realmptr = strchr(sendertmp,'@'); | |
| 391 realmptr++; | |
| 392 if (!g_strcasecmp(realmptr,ZGetRealm())) { | |
| 393 realmptr--; | |
| 394 sprintf(realmptr,"%c",'\0'); | |
| 395 send_inst = g_strdup_printf("%s %s",sendertmp, | |
| 396 notice.z_class_inst); | |
| 397 | |
| 398 } else { | |
| 399 send_inst = g_strdup_printf("%s %s",notice.z_sender, | |
| 400 notice.z_class_inst); | |
| 401 } | |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
402 serv_got_chat_in(zgc, zt2->id, send_inst, FALSE, |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
403 buf2, time(NULL)); |
| 3277 | 404 g_free(sendertmp); |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
405 g_free(send_inst); |
| 2086 | 406 } |
| 407 free_triple(zt1); | |
| 408 } | |
| 409 g_free(buf2); | |
| 410 } | |
| 411 } | |
| 412 } | |
| 413 | |
| 414 static gint check_notify(gpointer data) | |
| 415 { | |
| 416 while (ZPending()) { | |
| 417 ZNotice_t notice; | |
| 418 struct sockaddr_in from; | |
| 419 z_call_r(ZReceiveNotice(¬ice, &from)); | |
| 420 | |
| 421 switch (notice.z_kind) { | |
| 422 case UNSAFE: | |
| 423 case UNACKED: | |
| 424 case ACKED: | |
| 425 handle_message(notice, from); | |
| 426 break; | |
| 427 default: | |
| 428 /* we'll just ignore things for now */ | |
| 429 debug_printf("ZEPHYR: Unhandled Notice\n"); | |
| 430 break; | |
| 431 } | |
| 432 | |
| 433 ZFreeNotice(¬ice); | |
| 434 } | |
| 435 | |
| 436 return TRUE; | |
| 437 } | |
| 438 | |
| 439 static gint check_loc(gpointer data) | |
| 440 { | |
| 441 GSList *gr, *m; | |
| 442 ZAsyncLocateData_t ald; | |
| 443 | |
| 444 ald.user = NULL; | |
| 445 memset(&(ald.uid), 0, sizeof(ZUnique_Id_t)); | |
| 446 ald.version = NULL; | |
| 447 | |
| 4349 | 448 gr = groups; |
| 2086 | 449 while (gr) { |
| 450 struct group *g = gr->data; | |
| 451 m = g->members; | |
| 452 while (m) { | |
| 453 struct buddy *b = m->data; | |
| 4491 | 454 if(b->account->gc == zgc) { |
| 4349 | 455 char *chk; |
| 456 chk = zephyr_normalize(b->name); | |
| 457 /* doesn't matter if this fails or not; we'll just move on to the next one */ | |
| 458 ZRequestLocations(chk, &ald, UNACKED, ZAUTH); | |
| 459 free(ald.user); | |
| 460 free(ald.version); | |
| 461 } | |
| 2086 | 462 m = m->next; |
| 463 } | |
| 464 gr = gr->next; | |
| 465 } | |
| 466 | |
| 467 return TRUE; | |
| 468 } | |
| 469 | |
| 470 static char *get_exposure_level() | |
| 471 { | |
| 472 char *exposure = ZGetVariable("exposure"); | |
| 473 | |
| 474 if (!exposure) | |
| 475 return EXPOSE_REALMVIS; | |
| 476 if (!g_strcasecmp(exposure, EXPOSE_NONE)) | |
| 477 return EXPOSE_NONE; | |
| 478 if (!g_strcasecmp(exposure, EXPOSE_OPSTAFF)) | |
| 479 return EXPOSE_OPSTAFF; | |
| 480 if (!g_strcasecmp(exposure, EXPOSE_REALMANN)) | |
| 481 return EXPOSE_REALMANN; | |
| 482 if (!g_strcasecmp(exposure, EXPOSE_NETVIS)) | |
| 483 return EXPOSE_NETVIS; | |
| 484 if (!g_strcasecmp(exposure, EXPOSE_NETANN)) | |
| 485 return EXPOSE_NETANN; | |
| 486 return EXPOSE_REALMVIS; | |
| 487 } | |
| 488 | |
| 489 static void strip_comments(char *str) | |
| 490 { | |
| 491 char *tmp = strchr(str, '#'); | |
| 492 if (tmp) | |
| 493 *tmp = '\0'; | |
| 494 g_strchug(str); | |
| 495 g_strchomp(str); | |
| 496 } | |
| 497 | |
| 498 static void process_zsubs() | |
| 499 { | |
| 500 FILE *f; | |
| 501 gchar *fname; | |
| 502 gchar buff[BUFSIZ]; | |
| 503 | |
| 3630 | 504 fname = g_strdup_printf("%s/.zephyr.subs", gaim_home_dir()); |
| 2086 | 505 f = fopen(fname, "r"); |
| 506 if (f) { | |
| 507 char **triple; | |
| 508 ZSubscription_t sub; | |
| 509 char *recip; | |
| 510 while (fgets(buff, BUFSIZ, f)) { | |
| 511 strip_comments(buff); | |
| 512 if (buff[0]) { | |
| 513 triple = g_strsplit(buff, ",", 3); | |
| 3277 | 514 if (triple[0] && triple[1] ) { |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
515 char *tmp = g_strdup_printf("%s@%s", g_getenv("USER"), |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
516 ZGetRealm()); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
517 char *atptr; |
| 2086 | 518 sub.zsub_class = triple[0]; |
| 519 sub.zsub_classinst = triple[1]; | |
| 3277 | 520 if(triple[2] == NULL) { |
| 521 recip = g_malloc0(1); | |
| 522 } else if (!g_strcasecmp(triple[2], "%me%")) { | |
| 2086 | 523 recip = g_strdup_printf("%s@%s", g_getenv("USER"), |
| 524 ZGetRealm()); | |
| 525 } else if (!g_strcasecmp(triple[2], "*")) { | |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
526 /* wildcard |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
527 * form of class,instance,* */ |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
528 recip = g_malloc0(1); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
529 } else if (!g_strcasecmp(triple[2], tmp)) { |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
530 /* form of class,instance,aatharuv@ATHENA.MIT.EDU */ |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
531 recip = g_strdup(triple[2]); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
532 } else if ((atptr = strchr(triple[2], '@')) != NULL) { |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
533 /* form of class,instance,*@ANDREW.CMU.EDU |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
534 * class,instance,@ANDREW.CMU.EDU |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
535 * If realm is local realm, blank recipient, else |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
536 * @REALM-NAME |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
537 */ |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
538 char *realmat = g_strdup_printf("@%s", ZGetRealm()); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
539 if (!g_strcasecmp(atptr, realmat)) |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
540 recip = g_malloc0(1); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
541 else |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
542 recip = g_strdup(atptr); |
|
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
543 g_free(realmat); |
| 2086 | 544 } else { |
| 545 recip = g_strdup(triple[2]); | |
| 546 } | |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
547 g_free(tmp); |
| 2086 | 548 sub.zsub_recipient = recip; |
| 549 if (ZSubscribeTo(&sub, 1, 0) != ZERR_NONE) { | |
| 550 debug_printf("Zephyr: Couldn't subscribe to %s, %s, " | |
| 551 "%s\n", | |
| 552 sub.zsub_class, | |
| 553 sub.zsub_classinst, | |
| 554 sub.zsub_recipient); | |
| 555 } | |
| 556 subscrips = g_slist_append(subscrips, | |
| 557 new_triple(triple[0], triple[1], recip)); | |
| 558 g_free(recip); | |
| 559 } | |
| 560 g_strfreev(triple); | |
| 561 } | |
| 562 } | |
| 563 } | |
| 564 } | |
| 565 | |
| 566 static void process_anyone() | |
| 567 { | |
| 568 FILE *fd; | |
| 569 gchar buff[BUFSIZ], *filename; | |
| 570 | |
| 3630 | 571 filename = g_strconcat(gaim_home_dir(), "/.anyone", NULL); |
| 2086 | 572 if ((fd = fopen(filename, "r")) != NULL) { |
| 573 while (fgets(buff, BUFSIZ, fd)) { | |
| 574 strip_comments(buff); | |
| 575 if (buff[0]) | |
| 4491 | 576 add_buddy(zgc->account, "Anyone", buff, buff); |
| 2086 | 577 } |
| 578 fclose(fd); | |
| 579 } | |
| 580 g_free(filename); | |
| 581 } | |
| 582 | |
| 4491 | 583 static void zephyr_login(struct gaim_account *account) |
| 2086 | 584 { |
| 585 ZSubscription_t sub; | |
| 586 | |
| 587 if (zgc) { | |
| 3427 | 588 do_error_dialog("Already logged in with Zephyr", "Because Zephyr uses your system username, you are unable to " |
| 589 "have multiple accounts on it when logged in as the same user.", GAIM_ERROR); | |
| 2086 | 590 return; |
| 591 } | |
| 592 | |
| 4491 | 593 zgc = new_gaim_conn(account); |
| 2086 | 594 |
| 595 z_call_s(ZInitialize(), "Couldn't initialize zephyr"); | |
| 596 z_call_s(ZOpenPort(NULL), "Couldn't open port"); | |
| 597 z_call_s(ZSetLocation(get_exposure_level()), "Couldn't set location"); | |
| 598 | |
| 599 sub.zsub_class = "MESSAGE"; | |
| 600 sub.zsub_classinst = "PERSONAL"; | |
| 601 sub.zsub_recipient = ZGetSender(); | |
| 602 | |
| 603 /* we don't care if this fails. i'm lying right now. */ | |
| 604 if (ZSubscribeTo(&sub, 1, 0) != ZERR_NONE) { | |
| 605 debug_printf("Zephyr: Couldn't subscribe to messages!\n"); | |
| 606 } | |
| 607 | |
| 608 account_online(zgc); | |
| 609 serv_finish_login(zgc); | |
| 610 | |
| 611 process_anyone(); | |
| 612 process_zsubs(); | |
| 613 | |
|
2131
acc11216ec5d
[gaim-migrate @ 2141]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2123
diff
changeset
|
614 nottimer = g_timeout_add(100, check_notify, NULL); |
|
2804
1648c703ddc2
[gaim-migrate @ 2817]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2791
diff
changeset
|
615 loctimer = g_timeout_add(20000, check_loc, NULL); |
| 2086 | 616 } |
| 617 | |
| 618 static void write_zsubs() | |
| 619 { | |
| 620 GSList *s = subscrips; | |
| 621 zephyr_triple *zt; | |
| 622 FILE *fd; | |
| 623 char *fname; | |
| 624 | |
| 3277 | 625 char** triple; |
| 3630 | 626 fname = g_strdup_printf("%s/.zephyr.subs", gaim_home_dir()); |
| 2086 | 627 fd = fopen(fname, "w"); |
| 628 | |
| 629 if (!fd) { | |
| 630 g_free(fname); | |
| 631 return; | |
| 632 } | |
| 633 | |
| 634 while (s) { | |
| 635 zt = s->data; | |
| 3277 | 636 triple = g_strsplit(zt->name,",",3); |
| 637 if (triple[2] != NULL) { | |
| 638 if (!g_strcasecmp(triple[2], "")) { | |
| 639 fprintf(fd, "%s,%s,*\n", triple[0], triple[1]); | |
| 640 } else if (!g_strcasecmp(triple[2], ZGetSender())) { | |
| 641 fprintf(fd, "%s,%s,%%me%%\n",triple[0],triple[1]); | |
| 642 } else { | |
| 643 fprintf(fd, "%s\n", zt->name); | |
| 644 } | |
| 645 } else { | |
| 646 fprintf(fd, "%s,%s,*\n",triple[0], triple[1]); | |
| 647 } | |
| 648 g_free(triple); | |
| 2086 | 649 s = s->next; |
| 650 } | |
| 651 g_free(fname); | |
| 652 fclose(fd); | |
| 653 } | |
| 654 | |
| 655 static void write_anyone() | |
| 656 { | |
| 657 GSList *gr, *m; | |
| 658 struct group *g; | |
| 659 struct buddy *b; | |
| 3277 | 660 char *ptr, *fname, *ptr2; |
| 2086 | 661 FILE *fd; |
| 662 | |
| 3630 | 663 fname = g_strdup_printf("%s/.anyone", gaim_home_dir()); |
| 2086 | 664 fd = fopen(fname, "w"); |
| 665 if (!fd) { | |
| 666 g_free(fname); | |
| 667 return; | |
| 668 } | |
| 669 | |
| 4349 | 670 gr = groups; |
| 2086 | 671 while (gr) { |
| 672 g = gr->data; | |
| 673 m = g->members; | |
| 674 while (m) { | |
| 675 b = m->data; | |
| 4491 | 676 if(b->account->gc == zgc) { |
| 4349 | 677 if ((ptr = strchr(b->name, '@')) != NULL) { |
| 678 ptr2 = ptr + 1; | |
| 679 /* We should only strip the realm name if the principal | |
| 680 is in the user's realm | |
| 681 */ | |
| 682 if (!g_strcasecmp(ptr2,ZGetRealm())) { | |
| 683 *ptr = '\0'; | |
| 684 } | |
| 3277 | 685 } |
| 4349 | 686 fprintf(fd, "%s\n", b->name); |
| 687 if (ptr) | |
| 688 *ptr = '@'; | |
| 3277 | 689 } |
| 2086 | 690 m = m->next; |
| 691 } | |
| 692 gr = gr->next; | |
| 693 } | |
| 694 | |
| 695 fclose(fd); | |
| 696 g_free(fname); | |
| 697 } | |
| 698 | |
| 699 static void zephyr_close(struct gaim_connection *gc) | |
| 700 { | |
| 701 GList *l; | |
| 702 GSList *s; | |
| 703 l = pending_zloc_names; | |
| 704 while (l) { | |
| 705 g_free((char*)l->data); | |
| 706 l = l->next; | |
| 707 } | |
| 708 g_list_free(pending_zloc_names); | |
| 709 | |
| 710 write_anyone(); | |
| 711 write_zsubs(); | |
| 712 | |
| 713 s = subscrips; | |
| 714 while (s) { | |
| 715 free_triple((zephyr_triple*)s->data); | |
| 716 s = s->next; | |
| 717 } | |
| 718 g_slist_free(subscrips); | |
| 719 | |
| 720 if (nottimer) | |
|
2131
acc11216ec5d
[gaim-migrate @ 2141]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2123
diff
changeset
|
721 g_source_remove(nottimer); |
| 2086 | 722 nottimer = 0; |
| 723 if (loctimer) | |
|
2131
acc11216ec5d
[gaim-migrate @ 2141]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2123
diff
changeset
|
724 g_source_remove(loctimer); |
| 2086 | 725 loctimer = 0; |
| 726 zgc = NULL; | |
| 727 z_call(ZCancelSubscriptions(0)); | |
| 728 z_call(ZUnsetLocation()); | |
| 729 z_call(ZClosePort()); | |
| 730 } | |
| 731 | |
| 3466 | 732 static void zephyr_add_buddy(struct gaim_connection *gc, const char *buddy) { } |
|
2681
37d80035e77f
[gaim-migrate @ 2694]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2501
diff
changeset
|
733 static void zephyr_remove_buddy(struct gaim_connection *gc, char *buddy, char *group) { } |
| 2086 | 734 |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
735 static int zephyr_chat_send(struct gaim_connection *gc, int id, char *im) |
| 2086 | 736 { |
| 737 ZNotice_t notice; | |
| 738 zephyr_triple *zt; | |
| 739 char *buf; | |
| 740 const char *sig; | |
| 741 | |
| 742 zt = find_sub_by_id(id); | |
| 743 if (!zt) | |
| 744 /* this should never happen. */ | |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
745 return -EINVAL; |
| 2086 | 746 |
| 747 sig = ZGetVariable("zwrite-signature"); | |
| 748 if (!sig) { | |
| 749 sig = g_get_real_name(); | |
| 750 } | |
| 751 buf = g_strdup_printf("%s%c%s", sig, '\0', im); | |
| 752 | |
| 753 bzero((char *)¬ice, sizeof(notice)); | |
| 754 notice.z_kind = ACKED; | |
| 755 notice.z_port = 0; | |
| 756 notice.z_opcode = ""; | |
| 757 notice.z_class = zt->class; | |
| 758 notice.z_class_inst = zt->instance; | |
| 759 if (!g_strcasecmp(zt->recipient, "*")) | |
| 760 notice.z_recipient = zephyr_normalize(""); | |
| 761 else | |
| 762 notice.z_recipient = zephyr_normalize(zt->recipient); | |
| 763 notice.z_sender = 0; | |
| 764 notice.z_default_format = | |
| 765 "Class $class, Instance $instance:\n" | |
| 766 "To: @bold($recipient) at $time $date\n" | |
| 767 "From: @bold($1) <$sender>\n\n$2"; | |
| 768 notice.z_message_len = strlen(im) + strlen(sig) + 4; | |
| 769 notice.z_message = buf; | |
| 770 ZSendNotice(¬ice, ZAUTH); | |
| 771 g_free(buf); | |
|
2167
edf8c5a70e5b
[gaim-migrate @ 2177]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2162
diff
changeset
|
772 return 0; |
| 2086 | 773 } |
| 774 | |
| 3033 | 775 static int zephyr_send_im(struct gaim_connection *gc, char *who, char *im, int len, int flags) { |
| 2086 | 776 ZNotice_t notice; |
| 777 char *buf; | |
| 778 const char *sig; | |
| 779 | |
|
2231
8c4ff1a368bd
[gaim-migrate @ 2241]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2205
diff
changeset
|
780 if (flags & IM_FLAG_AWAY) |
| 2086 | 781 sig = "Automated reply:"; |
| 782 else { | |
| 783 sig = ZGetVariable("zwrite-signature"); | |
| 784 if (!sig) { | |
| 785 sig = g_get_real_name(); | |
| 786 } | |
| 787 } | |
| 788 buf = g_strdup_printf("%s%c%s", sig, '\0', im); | |
| 789 | |
| 790 bzero((char *)¬ice, sizeof(notice)); | |
| 791 notice.z_kind = ACKED; | |
| 792 notice.z_port = 0; | |
| 793 notice.z_opcode = ""; | |
| 794 notice.z_class = "MESSAGE"; | |
| 795 notice.z_class_inst = "PERSONAL"; | |
| 796 notice.z_sender = 0; | |
| 797 notice.z_recipient = who; | |
| 798 notice.z_default_format = | |
| 799 "Class $class, Instance $instance:\n" | |
| 800 "To: @bold($recipient) at $time $date\n" | |
| 801 "From: @bold($1) <$sender>\n\n$2"; | |
| 802 notice.z_message_len = strlen(im) + strlen(sig) + 4; | |
| 803 notice.z_message = buf; | |
| 804 ZSendNotice(¬ice, ZAUTH); | |
| 805 g_free(buf); | |
|
2303
f5bf315e6104
[gaim-migrate @ 2313]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2231
diff
changeset
|
806 return 1; |
| 2086 | 807 } |
| 808 | |
| 809 static char *zephyr_normalize(const char *orig) | |
| 810 { | |
| 811 static char buf[80]; | |
| 812 if (strchr(orig, '@')) { | |
| 813 g_snprintf(buf, 80, "%s", orig); | |
| 814 } else { | |
| 815 g_snprintf(buf, 80, "%s@%s", orig, ZGetRealm()); | |
| 816 } | |
| 817 return buf; | |
| 818 } | |
| 819 | |
| 820 static void zephyr_zloc(struct gaim_connection *gc, char *who) | |
| 821 { | |
| 822 ZAsyncLocateData_t ald; | |
| 823 | |
| 824 if (ZRequestLocations(zephyr_normalize(who), &ald, UNACKED, ZAUTH) | |
| 825 != ZERR_NONE) { | |
| 826 return; | |
| 827 } | |
| 828 pending_zloc_names = g_list_append(pending_zloc_names, | |
| 829 g_strdup(zephyr_normalize(who))); | |
| 830 } | |
| 831 | |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
832 static GList *zephyr_buddy_menu(struct gaim_connection *gc, char *who) |
| 2086 | 833 { |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
834 GList *m = NULL; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
835 struct proto_buddy_menu *pbm; |
| 2086 | 836 |
|
2170
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
837 pbm = g_new0(struct proto_buddy_menu, 1); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
838 pbm->label = _("ZLocate"); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
839 pbm->callback = zephyr_zloc; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
840 pbm->gc = gc; |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
841 m = g_list_append(m, pbm); |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
842 |
|
c24595d3c364
[gaim-migrate @ 2180]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2167
diff
changeset
|
843 return m; |
| 2086 | 844 } |
| 845 | |
| 846 static void zephyr_set_away(struct gaim_connection *gc, char *state, char *msg) | |
| 847 { | |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
848 if (gc->away) { |
| 2086 | 849 g_free(gc->away); |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
850 gc->away = NULL; |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
851 } |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
852 |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
853 if (!g_strcasecmp(state, "Hidden")) { |
| 2086 | 854 ZSetLocation(EXPOSE_OPSTAFF); |
|
4111
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
855 gc->away = g_strdup(""); |
|
ee884f1d7ae3
[gaim-migrate @ 4326]
Christian Hammond <chipx86@chipx86.com>
parents:
3867
diff
changeset
|
856 } else if (!g_strcasecmp(state, "Online")) |
| 2086 | 857 ZSetLocation(get_exposure_level()); |
| 858 else /* state is GAIM_AWAY_CUSTOM */ if (msg) | |
| 859 gc->away = g_strdup(msg); | |
| 860 } | |
| 861 | |
|
2501
227cc42ffa6e
[gaim-migrate @ 2514]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2417
diff
changeset
|
862 static GList *zephyr_away_states(struct gaim_connection *gc) |
| 2086 | 863 { |
| 864 GList *m = NULL; | |
| 865 | |
| 866 m = g_list_append(m, "Online"); | |
| 867 m = g_list_append(m, GAIM_AWAY_CUSTOM); | |
| 868 m = g_list_append(m, "Hidden"); | |
| 869 | |
| 870 return m; | |
| 871 } | |
| 872 | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
873 static GList *zephyr_chat_info(struct gaim_connection *gc) { |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
874 GList *m = NULL; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
875 struct proto_chat_entry *pce; |
| 2086 | 876 |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
877 pce = g_new0(struct proto_chat_entry, 1); |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
878 pce->label = _("Class:"); |
| 3158 | 879 m = g_list_append(m, pce); |
| 2086 | 880 |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
881 pce = g_new0(struct proto_chat_entry, 1); |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
882 pce->label = _("Instance:"); |
| 3158 | 883 m = g_list_append(m, pce); |
| 2086 | 884 |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
885 pce = g_new0(struct proto_chat_entry, 1); |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
886 pce->label = _("Recipient:"); |
| 3158 | 887 m = g_list_append(m, pce); |
| 2086 | 888 |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
889 return m; |
| 2086 | 890 } |
| 891 | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
892 static void zephyr_join_chat(struct gaim_connection *gc, GList *data) |
| 2086 | 893 { |
| 894 ZSubscription_t sub; | |
| 895 zephyr_triple *zt1, *zt2; | |
| 896 const char *classname; | |
| 897 const char *instname; | |
| 898 const char *recip; | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
899 |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
900 if (!data || !data->next || !data->next->next) |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
901 return; |
| 2086 | 902 |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
903 classname = data->data; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
904 instname = data->next->data; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
905 recip = data->next->next->data; |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
906 if (!g_strcasecmp(recip, "%me%")) |
|
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
907 recip = g_getenv("USER"); |
| 2086 | 908 |
| 909 zt1 = new_triple(classname, instname, recip); | |
| 910 zt2 = find_sub_by_triple(zt1); | |
| 911 if (zt2) { | |
| 912 free_triple(zt1); | |
| 913 if (!zt2->open) | |
| 914 serv_got_joined_chat(gc, zt2->id, zt2->name); | |
| 915 return; | |
| 916 } | |
| 917 | |
| 918 sub.zsub_class = zt1->class; | |
| 919 sub.zsub_classinst = zt1->instance; | |
| 920 sub.zsub_recipient = zt1->recipient; | |
| 921 | |
| 922 if (ZSubscribeTo(&sub, 1, 0) != ZERR_NONE) { | |
| 923 free_triple(zt1); | |
| 924 return; | |
| 925 } | |
| 926 | |
| 927 subscrips = g_slist_append(subscrips, zt1); | |
| 928 zt1->open = TRUE; | |
| 929 serv_got_joined_chat(gc, zt1->id, zt1->name); | |
| 930 } | |
| 931 | |
| 932 static void zephyr_chat_leave(struct gaim_connection *gc, int id) | |
| 933 { | |
| 934 zephyr_triple *zt; | |
| 935 zt = find_sub_by_id(id); | |
| 936 if (zt) { | |
| 937 zt->open = FALSE; | |
| 938 zt->id = ++last_id; | |
| 939 } | |
| 940 } | |
| 941 | |
| 942 static struct prpl *my_protocol = NULL; | |
| 943 | |
| 944 void zephyr_init(struct prpl *ret) | |
| 945 { | |
| 946 ret->protocol = PROTO_ZEPHYR; | |
|
2100
a93aeb6f813d
[gaim-migrate @ 2110]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
947 ret->options = OPT_PROTO_NO_PASSWORD; |
| 3572 | 948 ret->name = g_strdup("Zephyr"); |
| 2086 | 949 ret->login = zephyr_login; |
| 950 ret->close = zephyr_close; | |
| 951 ret->add_buddy = zephyr_add_buddy; | |
| 952 ret->remove_buddy = zephyr_remove_buddy; | |
| 953 ret->send_im = zephyr_send_im; | |
| 954 ret->get_info = zephyr_zloc; | |
| 955 ret->normalize = zephyr_normalize; | |
| 956 ret->buddy_menu = zephyr_buddy_menu; | |
| 957 ret->away_states = zephyr_away_states; | |
| 958 ret->set_away = zephyr_set_away; | |
|
2205
cff4fbe01c7b
[gaim-migrate @ 2215]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2170
diff
changeset
|
959 ret->chat_info = zephyr_chat_info; |
| 2086 | 960 ret->join_chat = zephyr_join_chat; |
| 961 ret->chat_send = zephyr_chat_send; | |
| 962 ret->chat_leave = zephyr_chat_leave; | |
| 963 | |
| 964 my_protocol = ret; | |
| 965 } | |
| 966 | |
| 967 #ifndef STATIC | |
| 968 | |
| 3867 | 969 G_MODULE_EXPORT void gaim_prpl_init(struct prpl *prpl) |
| 2086 | 970 { |
| 3572 | 971 zephyr_init(prpl); |
| 972 prpl->plug->desc.api_version = PLUGIN_API_VERSION; | |
| 2086 | 973 } |
| 974 | |
| 975 | |
| 976 #endif |
