1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
|
/* -*-mode:c; c-style:k&r; c-basic-offset:4; -*- */
/*
* VCalendar (RFC 2445) stuff
* Copyright (C) 2009 Albrecht Dre <albrecht.dress@arcor.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
# include "config.h"
#endif /* HAVE_CONFIG_H */
#include "rfc2445.h"
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <glib/gi18n.h>
#include <glib-object.h>
#include "libbalsa.h"
#include "missing.h"
/* participant roles as defined by RFC 2446 */
typedef enum {
VCAL_ROLE_UNKNOWN = 0,
VCAL_ROLE_CHAIR,
VCAL_ROLE_REQ_PART,
VCAL_ROLE_OPT_PART,
VCAL_ROLE_NON_PART
} LibBalsaVCalRole;
static GObjectClass *libbalsa_vcal_parent_class = NULL;
static GObjectClass *libbalsa_vevent_parent_class = NULL;
/* LibBalsaAddress extra object data */
#define RFC2445_ROLE "RFC2445:Role"
#define RFC2445_PARTSTAT "RFC2445:PartStat"
#define RFC2445_RSVP "RFC2445:RSVP"
static void libbalsa_vcal_class_init(LibBalsaVCalClass * klass);
static void libbalsa_vcal_init(LibBalsaVCal * self);
static void libbalsa_vcal_finalize(LibBalsaVCal * self);
static void libbalsa_vevent_class_init(LibBalsaVEventClass * klass);
static void libbalsa_vevent_init(LibBalsaVEvent * self);
static void libbalsa_vevent_finalize(LibBalsaVEvent * self);
static LibBalsaAddress *cal_address_2445_to_lbaddress(const gchar * uri,
gchar ** attributes,
gboolean
is_organizer);
/* conversion helpers */
static time_t date_time_2445_to_time_t(const gchar * date_time);
static gchar *time_t_to_date_time_2445(time_t ttime);
static gchar *text_2445_unescape(const gchar * text);
static gchar *text_2445_escape(const gchar * text);
static const gchar *vcal_role_to_str(LibBalsaVCalRole role);
static LibBalsaVCalMethod vcal_str_to_method(const gchar * method);
static LibBalsaVCalRole vcal_str_to_role(const gchar * role);
static LibBalsaVCalPartStat vcal_str_to_part_stat(const gchar * pstat);
#define LB_ROLE2PTR(r) GINT_TO_POINTER((gint) (r))
#define LB_PSTAT2PTR(r) GINT_TO_POINTER((gint) (r))
#define LB_PTR2ROLE(p) ((LibBalsaVCalRole) GPOINTER_TO_INT(p))
#define LB_PTR2PSTAT(p) ((LibBalsaVCalPartStat) GPOINTER_TO_INT(p))
static struct {
gchar *str_2445;
gchar *hr_text;
} pstats[] = {
{ NULL, N_("unknown") },
{ "NEEDS-ACTION", N_("needs action") },
{ "ACCEPTED", N_("accepted") },
{ "DECLINED", N_("declined") },
{ "TENTATIVE", N_("tentatively accepted") },
{ "DELEGATED", N_("delegated") },
{ "COMPLETED", N_("completed") },
{ "IN-PROCESS", N_("in process") }
};
/* --- VCal GObject stuff --- */
GType
libbalsa_vcal_get_type(void)
{
static GType libbalsa_vcal_type = 0;
if (!libbalsa_vcal_type) {
static const GTypeInfo libbalsa_vcal_type_info = {
sizeof(LibBalsaVCalClass), /* class_size */
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) libbalsa_vcal_class_init, /* class_init */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(LibBalsaVCal), /* instance_size */
0, /* n_preallocs */
(GInstanceInitFunc) libbalsa_vcal_init, /* instance_init */
/* no value_table */
};
libbalsa_vcal_type =
g_type_register_static(G_TYPE_OBJECT, "LibBalsaVCal",
&libbalsa_vcal_type_info, 0);
}
return libbalsa_vcal_type;
}
static void
libbalsa_vcal_class_init(LibBalsaVCalClass * klass)
{
GObjectClass *gobject_klass = G_OBJECT_CLASS(klass);
libbalsa_vcal_parent_class = g_type_class_peek(G_TYPE_OBJECT);
gobject_klass->finalize = (GObjectFinalizeFunc) libbalsa_vcal_finalize;
}
static void
libbalsa_vcal_init(LibBalsaVCal * self)
{
self->method = ITIP_UNKNOWN;
self->vevent = NULL;
}
static void
libbalsa_vcal_finalize(LibBalsaVCal * self)
{
g_return_if_fail(self != NULL);
if (self->vevent) {
g_list_foreach(self->vevent, (GFunc) g_object_unref, NULL);
g_list_free(self->vevent);
}
libbalsa_vcal_parent_class->finalize(G_OBJECT(self));
}
LibBalsaVCal *
libbalsa_vcal_new(void)
{
return LIBBALSA_VCAL(g_object_new(LIBBALSA_TYPE_VCAL, NULL));
}
/* --- VEvent GObject stuff --- */
GType
libbalsa_vevent_get_type(void)
{
static GType libbalsa_vevent_type = 0;
if (!libbalsa_vevent_type) {
static const GTypeInfo libbalsa_vevent_type_info = {
sizeof(LibBalsaVEventClass), /* class_size */
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) libbalsa_vevent_class_init, /* class_init */
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(LibBalsaVEvent), /* instance_size */
0, /* n_preallocs */
(GInstanceInitFunc) libbalsa_vevent_init, /* instance_init */
/* no value_table */
};
libbalsa_vevent_type =
g_type_register_static(G_TYPE_OBJECT, "LibBalsaVEvent",
&libbalsa_vevent_type_info, 0);
}
return libbalsa_vevent_type;
}
static void
libbalsa_vevent_class_init(LibBalsaVEventClass * klass)
{
GObjectClass *gobject_klass = G_OBJECT_CLASS(klass);
libbalsa_vevent_parent_class = g_type_class_peek(G_TYPE_OBJECT);
gobject_klass->finalize =
(GObjectFinalizeFunc) libbalsa_vevent_finalize;
}
static void
libbalsa_vevent_init(LibBalsaVEvent * self)
{
self->start = self->end = self->stamp = (time_t) - 1;
}
static void
libbalsa_vevent_finalize(LibBalsaVEvent * self)
{
g_return_if_fail(self != NULL);
if (self->organizer)
g_object_unref(self->organizer);
if (self->attendee) {
g_list_foreach(self->attendee, (GFunc) g_object_unref, NULL);
g_list_free(self->attendee);
}
g_free(self->uid);
g_free(self->summary);
g_free(self->location);
g_free(self->description);
libbalsa_vevent_parent_class->finalize(G_OBJECT(self));
}
LibBalsaVEvent *
libbalsa_vevent_new(void)
{
return LIBBALSA_VEVENT(g_object_new(LIBBALSA_TYPE_VEVENT, NULL));
}
#define STR_REPL_2445_TXT(s, v) \
do { \
g_free(s); \
s = text_2445_unescape(v); \
} while (0)
/* parse a text/calendar part and convert it into a LibBalsaVCal object */
LibBalsaVCal *
libbalsa_vcal_new_from_body(LibBalsaMessageBody * body)
{
LibBalsaVCal *retval;
gchar *charset;
gchar *method;
gchar *vcal_buf;
gchar *p;
gchar **lines;
LibBalsaVEvent *event;
gboolean in_embedded;
int k;
g_return_val_if_fail(body != NULL, NULL);
/* get the body buffer */
if (libbalsa_message_body_get_content(body, &vcal_buf, NULL) <= 0)
return NULL;
/* check if the body has a charset (default is utf-8, see '2445,
* sect 4.1.4) */
charset = libbalsa_message_body_get_parameter(body, "charset");
if (charset && g_ascii_strcasecmp(charset, "utf-8")) {
gsize written;
gchar *conv_buf;
conv_buf =
g_convert(vcal_buf, -1, "utf-8", charset, NULL, &written,
NULL);
g_free(vcal_buf);
vcal_buf = conv_buf;
}
g_free(charset);
if (!vcal_buf)
return NULL;
/* o.k., create a new object */
retval = libbalsa_vcal_new();
/* replace \r\n by \n */
p = strchr(vcal_buf, '\r');
while (p) {
if (p[1] =='\n')
memmove(p, p + 1, strlen(p + 1) + 1);
p = strchr(p + 1, '\r');
}
/* unfold the body and split into lines */
p = strchr(vcal_buf, '\n');
while (p) {
if (p[1] == '\t' || p[1] == ' ')
memmove(p, p + 2, strlen(p + 2) + 1);
p = strchr(p + 1, '\n');
}
lines = g_strsplit(vcal_buf, "\n", -1);
g_free(vcal_buf);
/* scan lines to extract vevent(s) */
event = NULL;
method = NULL;
in_embedded = FALSE;
for (k = 0; lines[k]; k++) {
if (!event) {
if (!method && !g_ascii_strncasecmp("METHOD:", lines[k], 7))
method = g_strdup(lines[k] + 7);
if (!g_ascii_strcasecmp("BEGIN:VEVENT", lines[k]))
event = libbalsa_vevent_new();
} else if (strlen(lines[k])) {
gchar *value = strchr(lines[k], ':');
gchar **entry;
if (value)
*value++ = '\0';
entry = g_strsplit(lines[k], ";", -1);
if (!g_ascii_strcasecmp(entry[0], "END")) {
if (value && !g_ascii_strcasecmp(value, "VEVENT")) {
retval->vevent = g_list_append(retval->vevent, event);
event = NULL;
} else {
in_embedded = FALSE;
}
} else if (!g_ascii_strcasecmp(entry[0], "BEGIN"))
in_embedded = TRUE;
else if (!in_embedded) {
if (!g_ascii_strcasecmp(entry[0], "DTSTART"))
event->start = date_time_2445_to_time_t(value);
else if (!g_ascii_strcasecmp(entry[0], "DTEND"))
event->end = date_time_2445_to_time_t(value);
else if (!g_ascii_strcasecmp(entry[0], "DTSTAMP"))
event->stamp = date_time_2445_to_time_t(value);
else if (!g_ascii_strcasecmp(entry[0], "UID"))
STR_REPL_2445_TXT(event->uid, value);
else if (!g_ascii_strcasecmp(entry[0], "SUMMARY"))
STR_REPL_2445_TXT(event->summary, value);
else if (!g_ascii_strcasecmp(entry[0], "LOCATION"))
STR_REPL_2445_TXT(event->location, value);
else if (!g_ascii_strcasecmp(entry[0], "DESCRIPTION"))
STR_REPL_2445_TXT(event->description, value);
else if (!g_ascii_strcasecmp(entry[0], "ORGANIZER")) {
if (event->organizer)
g_object_unref(event->organizer);
event->organizer =
cal_address_2445_to_lbaddress(value, entry + 1, TRUE);
} else if (!g_ascii_strcasecmp(entry[0], "ATTENDEE"))
event->attendee =
g_list_prepend(event->attendee,
cal_address_2445_to_lbaddress(value,
entry + 1,
FALSE));
}
g_strfreev(entry);
}
}
g_strfreev(lines);
if (event)
g_object_unref(event);
/* set the method */
retval->method = vcal_str_to_method(method);
g_free(method);
return retval;
}
/* return a rfc 2445 attendee (i.e. a LibBalsaAddress w/ extra information)
* as a human-readable string */
gchar *
libbalsa_vcal_attendee_to_str(LibBalsaAddress * person)
{
GString *retval;
gchar *str;
LibBalsaVCalRole role;
LibBalsaVCalPartStat pstat;
g_return_val_if_fail(LIBBALSA_IS_ADDRESS(person), NULL);
retval = g_string_new("");
role = LB_PTR2ROLE(g_object_get_data(G_OBJECT(person),
RFC2445_ROLE));
if (role != VCAL_ROLE_UNKNOWN)
g_string_printf(retval, "%s ", vcal_role_to_str(role));
str = libbalsa_address_to_gchar(person, -1);
retval = g_string_append(retval, str);
g_free(str);
pstat = LB_PTR2PSTAT(g_object_get_data(G_OBJECT(person),
RFC2445_PARTSTAT));
if (pstat != VCAL_PSTAT_UNKNOWN)
g_string_append_printf(retval, " (%s)",
libbalsa_vcal_part_stat_to_str(pstat));
return g_string_free(retval, FALSE);
}
/* check if a rfc 2445 attendee (i.e. a LibBalsaAddress w/ extra information)
* has the RSVP flag ("please reply") set */
gboolean
libbalsa_vcal_attendee_rsvp(LibBalsaAddress * person)
{
g_return_val_if_fail(LIBBALSA_IS_ADDRESS(person), FALSE);
return (gboolean)
GPOINTER_TO_INT(g_object_get_data(G_OBJECT(person), RFC2445_RSVP));
}
/* return a new buffer containing a proper reply to an event for a new
* participant status */
gchar *
libbalsa_vevent_reply(const LibBalsaVEvent * event, const gchar * sender,
LibBalsaVCalPartStat new_stat)
{
GString *retval;
gchar *buf;
gssize p;
gchar *eol;
/* check for allowed new state and sender */
g_return_val_if_fail((new_stat == VCAL_PSTAT_ACCEPTED ||
new_stat == VCAL_PSTAT_DECLINED ||
new_stat == VCAL_PSTAT_TENTATIVE) &&
sender != NULL, NULL);
/* build the part */
retval = g_string_new("BEGIN:VCALENDAR\nVERSION:2.0\n"
"PRODID:-//GNOME//Balsa " BALSA_VERSION "//EN\n"
"METHOD:REPLY\nBEGIN:VEVENT\n");
buf = time_t_to_date_time_2445(time(NULL));
g_string_append_printf(retval, "DTSTAMP:%s\n", buf);
g_free(buf);
g_string_append_printf(retval, "ATTENDEE;PARTSTAT=%s:mailto:%s\n",
pstats[(int) new_stat].str_2445, sender);
if (event->uid)
g_string_append_printf(retval, "UID:%s\n", event->uid);
if (event->organizer && event->organizer->address_list)
g_string_append_printf(retval, "ORGANIZER:mailto:%s\n",
(gchar *) event->organizer->address_list->
data);
if (event->summary) {
buf = text_2445_escape(event->summary);
g_string_append_printf(retval, "SUMMARY:%s\n", buf);
g_free(buf);
}
if (event->description) {
buf = text_2445_escape(event->description);
g_string_append_printf(retval, "DESCRIPTION:%s\n", buf);
g_free(buf);
}
if (event->start != (time_t) - 1) {
buf = time_t_to_date_time_2445(event->start);
g_string_append_printf(retval, "DTSTART:%s\n", buf);
g_free(buf);
}
if (event->end != (time_t) - 1) {
buf = time_t_to_date_time_2445(event->end);
g_string_append_printf(retval, "DTEND:%s\n", buf);
g_free(buf);
}
retval = g_string_append(retval, "END:VEVENT\nEND:VCALENDAR");
/* fold */
p = 0;
eol = strchr(retval->str, '\n');
while (eol) {
if (eol - (retval->str + p) > 74) {
retval = g_string_insert(retval, p + 74, "\n ");
p += 76;
} else
p = eol - retval->str + 1;
eol = strchr(retval->str + p, '\n');
}
/* done */
return g_string_free(retval, FALSE);
}
/* -- rfc 2445 parser helper functions -- */
#define FILL_TM(tm, buf, idx) \
do { \
tm = atoi(buf + idx); \
buf[idx] = '\0'; \
} while (0)
/* convert a rfc 2445 time string into a time_t value */
// FIXME - what about entries containing a TZID?
static time_t
date_time_2445_to_time_t(const gchar * date_time)
{
gint len;
struct tm tm_buf;
char strbuf[17];
time_t the_time;
struct tm utc_tm;
time_t utc_time;
gint diff_min;
g_return_val_if_fail(date_time != NULL, (time_t) (-1));
len = strlen(date_time);
/* must be yyyymmddThhmmssZ? */
if (len < 15 || len > 16 || date_time[8] != 'T' ||
(len == 16 && date_time[15] != 'Z'))
return (time_t) - 1;
/* fill for conversion... */
strcpy(strbuf, date_time); /* safe, due to checks above */
if (len == 16) {
strbuf[15] = '\0';
}
FILL_TM(tm_buf.tm_sec, strbuf, 13);
FILL_TM(tm_buf.tm_min, strbuf, 11);
FILL_TM(tm_buf.tm_hour, strbuf, 9);
FILL_TM(tm_buf.tm_mday, strbuf, 6);
FILL_TM(tm_buf.tm_mon, strbuf, 4);
FILL_TM(tm_buf.tm_year, strbuf, 0);
tm_buf.tm_mon--;
tm_buf.tm_year -= 1900;
tm_buf.tm_isdst = -1;
the_time = mktime(&tm_buf);
/* return value if local time was requested */
if (len == 15)
return the_time;
/* adjust for utc */
gmtime_r(&the_time, &utc_tm);
utc_tm.tm_isdst = -1;
utc_time = mktime(&utc_tm);
diff_min = (utc_time - the_time) / 60;
tm_buf.tm_min -= diff_min % 60;
tm_buf.tm_hour -= diff_min / 60;
tm_buf.tm_isdst = -1;
the_time = mktime(&tm_buf);
return the_time;
}
static gchar *
time_t_to_date_time_2445(time_t ttime)
{
gchar *retval = g_malloc(17);
struct tm tm;
gmtime_r(&ttime, &tm);
strftime(retval, 17, "%Y%m%dT%H%M%SZ", &tm);
return retval;
}
/* unescape a text from rfc 2445 format to a plain string */
static gchar *
text_2445_unescape(const gchar * text)
{
gchar *retval;
gchar *p;
g_return_val_if_fail(text != NULL, NULL);
retval = g_strdup(text);
p = strchr(retval, '\\');
while (p) {
if (p[1] == 'n' || p[1] == 'N')
p[1] = '\n';
memmove(p, p + 1, strlen(p + 1) + 1);
p = strchr(retval, '\\');
}
return retval;
}
/* unescape a text from rfc 2445 format to a plain string */
static gchar *
text_2445_escape(const gchar * text)
{
GString *retval;
static const gchar *do_escape = "\\;,\n";
const gchar *esc_p;
g_return_val_if_fail(text != NULL, NULL);
retval = g_string_new(text);
for (esc_p = do_escape; *esc_p; esc_p++) {
gchar *enc_p = strchr(retval->str, *esc_p);
while (enc_p) {
gssize inspos = enc_p - retval->str;
if (*enc_p == '\n')
*enc_p = 'n';
retval = g_string_insert_c(retval, inspos, '\\');
enc_p = strchr(retval->str + inspos + 2, *esc_p);
}
}
return g_string_free(retval, FALSE);
}
/* extract a rfc 2445 mailto address and into a LibBalsaAddress and add the
* extra information (rfc 2445 attributes) as data to the returned object. */
static LibBalsaAddress *
cal_address_2445_to_lbaddress(const gchar * uri, gchar ** attributes,
gboolean is_organizer)
{
LibBalsaAddress *retval;
/* must be a mailto: uri */
if (g_ascii_strncasecmp("mailto:", uri, 7))
return NULL;
retval = libbalsa_address_new();
retval->address_list = g_list_prepend(NULL, g_strdup(uri + 7));
if (!is_organizer)
g_object_set_data(G_OBJECT(retval), RFC2445_ROLE,
LB_ROLE2PTR(VCAL_ROLE_REQ_PART));
if (attributes) {
int n;
gchar *the_attr;
/* scan attributes for extra information */
for (n = 0; (the_attr = attributes[n]); n++) {
if (!g_ascii_strncasecmp(the_attr, "CN=", 3))
retval->full_name = g_strdup(the_attr + 3);
else if (!g_ascii_strncasecmp(the_attr, "ROLE=", 5))
g_object_set_data(G_OBJECT(retval), RFC2445_ROLE,
LB_ROLE2PTR(vcal_str_to_role(the_attr + 5)));
else if (!g_ascii_strncasecmp(the_attr, "PARTSTAT=", 9))
g_object_set_data(G_OBJECT(retval), RFC2445_PARTSTAT,
LB_PSTAT2PTR(vcal_str_to_part_stat(the_attr + 9)));
else if (!g_ascii_strncasecmp(the_attr, "RSVP=", 5))
g_object_set_data(G_OBJECT(retval), RFC2445_RSVP,
GINT_TO_POINTER(! g_ascii_strcasecmp(the_attr + 5, "TRUE")));
}
}
return retval;
}
/* -- conversion helpers string <--> enumeration -- */
/* convert the passed method string into the enumeration */
static LibBalsaVCalMethod
vcal_str_to_method(const gchar * method)
{
static struct {
gchar *meth_id;
LibBalsaVCalMethod meth;
} meth_list[] = {
{ "PUBLISH", ITIP_PUBLISH },
{ "REQUEST", ITIP_REQUEST },
{ "REPLY", ITIP_REPLY },
{ "CANCEL", ITIP_CANCEL },
{ NULL, ITIP_UNKNOWN}
};
gint n;
if (!method)
return ITIP_UNKNOWN;
for (n = 0;
meth_list[n].meth_id
&& g_ascii_strcasecmp(method, meth_list[n].meth_id); n++);
return meth_list[n].meth;
}
/* return a rfc 2445 method as human-readable string */
const gchar *
libbalsa_vcal_method_to_str(LibBalsaVCalMethod method)
{
static gchar *methods[] = {
N_("unknown"),
N_("Event Notification"),
N_("Event Request"),
N_("Reply to Event Request"),
N_("Event Cancellation"),
};
g_return_val_if_fail(method >= ITIP_UNKNOWN && method <= ITIP_CANCEL,
NULL);
return methods[(int) method];
}
/* return a rfc 2445 role as human-readable string */
static const gchar *
vcal_role_to_str(LibBalsaVCalRole role)
{
static gchar *roles[] = {
N_("unknown"),
N_("chair"),
N_("required participant"),
N_("optional participant"),
N_("non-participant, information only")
};
g_return_val_if_fail(role >= VCAL_ROLE_UNKNOWN
&& role <= VCAL_ROLE_NON_PART, NULL);
return roles[(int) role];
}
/* convert the passed role string into the enumeration */
static LibBalsaVCalRole
vcal_str_to_role(const gchar * role)
{
static struct {
gchar *role_id;
LibBalsaVCalRole role;
} role_list[] = {
{ "CHAIR", VCAL_ROLE_CHAIR },
{ "REQ-PARTICIPANT", VCAL_ROLE_REQ_PART },
{ "OPT-PARTICIPANT", VCAL_ROLE_OPT_PART },
{ "NON-PARTICIPANT", VCAL_ROLE_NON_PART },
{ NULL, VCAL_ROLE_UNKNOWN}
};
gint n;
if (!role)
return VCAL_ROLE_UNKNOWN;
for (n = 0;
role_list[n].role_id
&& g_ascii_strcasecmp(role, role_list[n].role_id); n++);
return role_list[n].role;
}
/* return a rfc 2445 participant status as human-readable string */
const gchar *
libbalsa_vcal_part_stat_to_str(LibBalsaVCalPartStat pstat)
{
g_return_val_if_fail(pstat >= VCAL_PSTAT_UNKNOWN
&& pstat <= VCAL_PSTAT_IN_PROCESS, NULL);
return pstats[(int) pstat].hr_text;
}
/* convert the passed participant status string into the enumeration */
static LibBalsaVCalPartStat
vcal_str_to_part_stat(const gchar * pstat)
{
static struct {
gchar *pstat_id;
LibBalsaVCalPartStat pstat;
} pstat_list[] = {
{ "NEEDS-ACTION", VCAL_PSTAT_NEEDS_ACTION },
{ "ACCEPTED", VCAL_PSTAT_ACCEPTED},
{ "DECLINED", VCAL_PSTAT_DECLINED },
{ "TENTATIVE", VCAL_PSTAT_TENTATIVE },
{ "DELEGATED", VCAL_PSTAT_DELEGATED },
{ "COMPLETED", VCAL_PSTAT_COMPLETED },
{ "IN-PROCESS", VCAL_PSTAT_IN_PROCESS },
{ NULL, VCAL_PSTAT_UNKNOWN }
};
gint n;
if (!pstat)
return VCAL_PSTAT_UNKNOWN;
for (n = 0;
pstat_list[n].pstat_id
&& g_ascii_strcasecmp(pstat, pstat_list[n].pstat_id); n++);
return pstat_list[n].pstat;
}
|