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 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
|
/*
* $Id: event.c 8595 2010-05-25 04:05:05Z ajc $
*
* Editing calendar events.
*
* Copyright (c) 1996-2010 by the citadel.org team
*
* 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 3 of the License, 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
*/
#include "webcit.h"
#include "webserver.h"
#include "calendar.h"
/*
* Display an event by itself (for editing)
* supplied_vevent the event to edit
* msgnum reference on the citserver
*/
void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, char *from,
int unread, calview *calv)
{
icalcomponent *vevent;
icalproperty *p;
icalvalue *v;
struct icaltimetype t_start, t_end;
time_t now;
struct tm tm_now;
int created_new_vevent = 0;
icalproperty *organizer = NULL;
char organizer_string[SIZ];
icalproperty *attendee = NULL;
char attendee_string[SIZ];
char buf[SIZ];
int organizer_is_me = 0;
int i, j = 0;
int sequence = 0;
char weekday_labels[7][32];
char month_labels[12][32];
long weekstart = 0;
icalproperty *rrule = NULL;
struct icalrecurrencetype recur;
char weekday_is_selected[7];
int which_rrmonthtype_is_preselected = 0;
int rrmday;
int rrmweekday;
icaltimetype day1;
int weekbase;
int rrmweek;
int rrymweek;
int rrymweekday;
int rrymonth;
int which_rrend_is_preselected;
int which_rryeartype_is_preselected;
char *tabnames[3];
const char *frequency_units[8];
const char *ordinals[6];
frequency_units[0] = _("seconds");
frequency_units[1] = _("minutes");
frequency_units[2] = _("hours");
frequency_units[3] = _("days");
frequency_units[4] = _("weeks");
frequency_units[5] = _("months");
frequency_units[6] = _("years");
frequency_units[7] = _("never");
ordinals[0] = "0";
ordinals[1] = _("first");
ordinals[2] = _("second");
ordinals[3] = _("third");
ordinals[4] = _("fourth");
ordinals[5] = _("fifth");
tabnames[0] = _("Event");
tabnames[1] = _("Attendees");
tabnames[2] = _("Recurrence");
get_pref_long("weekstart", &weekstart, 17);
if (weekstart > 6) weekstart = 0;
lprintf(9, "display_edit_individual_event(%ld) calview=%s year=%s month=%s day=%s\n",
msgnum, bstr("calview"), bstr("year"), bstr("month"), bstr("day")
);
/* populate the weekday names - begin */
now = time(NULL);
localtime_r(&now, &tm_now);
while (tm_now.tm_wday != 0) {
now -= 86400L;
localtime_r(&now, &tm_now);
}
for (i=0; i<7; ++i) {
localtime_r(&now, &tm_now);
wc_strftime(weekday_labels[i], 32, "%A", &tm_now);
now += 86400L;
}
/* populate the weekday names - end */
/* populate the month names - begin */
now = 259200L; /* 1970-jan-04 is the first Sunday ever */
localtime_r(&now, &tm_now);
for (i=0; i<12; ++i) {
localtime_r(&now, &tm_now);
wc_strftime(month_labels[i], 32, "%B", &tm_now);
now += 2678400L;
}
/* populate the month names - end */
now = time(NULL);
strcpy(organizer_string, "");
strcpy(attendee_string, "");
if (supplied_vevent != NULL) {
vevent = supplied_vevent;
/* Convert all timestamps to UTC to make them easier to process. */
ical_dezonify(vevent);
/*
* If we're looking at a fully encapsulated VCALENDAR
* rather than a VEVENT component, attempt to use the first
* relevant VEVENT subcomponent. If there is none, the
* NULL returned by icalcomponent_get_first_component() will
* tell the next iteration of this function to create a
* new one.
*/
if (icalcomponent_isa(vevent) == ICAL_VCALENDAR_COMPONENT) {
display_edit_individual_event(
icalcomponent_get_first_component(
vevent, ICAL_VEVENT_COMPONENT),
msgnum, from, unread, NULL
);
return;
}
}
else {
vevent = icalcomponent_new(ICAL_VEVENT_COMPONENT);
created_new_vevent = 1;
}
/* Learn the sequence */
p = icalcomponent_get_first_property(vevent, ICAL_SEQUENCE_PROPERTY);
if (p != NULL) {
sequence = icalproperty_get_sequence(p);
}
/* Begin output */
output_headers(1, 1, 2, 0, 0, 0);
wc_printf("<div id=\"banner\">\n");
wc_printf("<h1>");
wc_printf(_("Add or edit an event"));
wc_printf("</h1>");
wc_printf("</div>\n");
wc_printf("<div id=\"content\" class=\"service\">\n");
wc_printf("<div class=\"fix_scrollbar_bug\">");
/************************************************************
* Uncomment this to see the UID in calendar events for debugging
wc_printf("UID == ");
p = icalcomponent_get_first_property(vevent, ICAL_UID_PROPERTY);
if (p != NULL) {
escputs((char *)icalproperty_get_comment(p));
}
wc_printf("<br />\n");
wc_printf("SEQUENCE == %d<br />\n", sequence);
*************************************************************/
wc_printf("<form name=\"EventForm\" method=\"POST\" action=\"save_event\">\n");
wc_printf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"msgnum\" VALUE=\"%ld\">\n",
msgnum);
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"calview\" VALUE=\"%s\">\n",
bstr("calview"));
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"year\" VALUE=\"%s\">\n",
bstr("year"));
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"month\" VALUE=\"%s\">\n",
bstr("month"));
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"day\" VALUE=\"%s\">\n",
bstr("day"));
tabbed_dialog(3, tabnames);
begin_tab(0, 3);
/* Put it in a borderless table so it lines up nicely */
wc_printf("<TABLE border=0 width=100%%>\n");
wc_printf("<TR><TD><B>");
wc_printf(_("Summary"));
wc_printf("</B></TD><TD>\n"
"<INPUT TYPE=\"text\" NAME=\"summary\" "
"MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
p = icalcomponent_get_first_property(vevent, ICAL_SUMMARY_PROPERTY);
if (p != NULL) {
escputs((char *)icalproperty_get_comment(p));
}
wc_printf("\"></TD></TR>\n");
wc_printf("<TR><TD><B>");
wc_printf(_("Location"));
wc_printf("</B></TD><TD>\n"
"<INPUT TYPE=\"text\" NAME=\"location\" "
"MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
p = icalcomponent_get_first_property(vevent, ICAL_LOCATION_PROPERTY);
if (p != NULL) {
escputs((char *)icalproperty_get_comment(p));
}
wc_printf("\"></TD></TR>\n");
wc_printf("<TR><TD><B>");
wc_printf(_("Start"));
wc_printf("</B></TD><TD>\n");
p = icalcomponent_get_first_property(vevent, ICAL_DTSTART_PROPERTY);
if (p != NULL) {
t_start = icalproperty_get_dtstart(p);
if (t_start.is_date) {
t_start.hour = 0;
t_start.minute = 0;
t_start.second = 0;
}
}
else {
localtime_r(&now, &tm_now);
if (havebstr("year")) {
tm_now.tm_year = ibstr("year") - 1900;
tm_now.tm_mon = ibstr("month") - 1;
tm_now.tm_mday = ibstr("day");
}
if (havebstr("hour")) {
tm_now.tm_hour = ibstr("hour");
tm_now.tm_min = ibstr("minute");
tm_now.tm_sec = 0;
}
else {
tm_now.tm_hour = 0;
tm_now.tm_min = 0;
tm_now.tm_sec = 0;
}
t_start = icaltime_from_timet_with_zone(
mktime(&tm_now),
((yesbstr("alldayevent")) ? 1 : 0),
icaltimezone_get_utc_timezone()
);
t_start.is_utc = 1;
}
display_icaltimetype_as_webform(&t_start, "dtstart", 0);
wc_printf("<INPUT TYPE=\"checkbox\" id=\"alldayevent\" NAME=\"alldayevent\" "
"VALUE=\"yes\" onclick=\"eventEditAllDay();\""
" %s >%s",
(t_start.is_date ? "CHECKED=\"CHECKED\"" : "" ),
_("All day event")
);
wc_printf("</TD></TR>\n");
wc_printf("<TR><TD><B>");
wc_printf(_("End"));
wc_printf("</B></TD><TD id=\"dtendcell\">\n");
p = icalcomponent_get_first_property(vevent,
ICAL_DTEND_PROPERTY);
if (p != NULL) {
t_end = icalproperty_get_dtend(p);
/*
* If this is an all-day-event, the end time is set to real end
* day + 1, so we have to adjust accordingly.
*/
if (t_start.is_date) {
icaltime_adjust(&t_end, -1, 0, 0, 0);
}
}
else {
if (created_new_vevent == 1) {
/* set default duration */
if (t_start.is_date) {
/*
* If this is an all-day-event, set the end time to be identical to
* the start time (the hour/minute/second will be set to midnight).
*/
t_end = t_start;
}
else {
/*
* If this is not an all-day event and there is no
* end time specified, make the default one hour
* from the start time.
*/
t_end = t_start;
t_end.hour += 1;
t_end.second = 0;
t_end = icaltime_normalize(t_end);
/* t_end = icaltime_from_timet(now, 0); */
}
}
else {
/*
* If an existing event has no end date/time this is
* supposed to mean end = start.
*/
t_end = t_start;
}
}
display_icaltimetype_as_webform(&t_end, "dtend", 0);
wc_printf("</TD></TR>\n");
wc_printf("<TR><TD><B>");
wc_printf(_("Notes"));
wc_printf("</B></TD><TD>\n"
"<TEXTAREA NAME=\"description\" wrap=soft "
"ROWS=5 COLS=72 WIDTH=72>\n"
);
p = icalcomponent_get_first_property(vevent, ICAL_DESCRIPTION_PROPERTY);
if (p != NULL) {
escputs((char *)icalproperty_get_comment(p));
}
wc_printf("</TEXTAREA></TD></TR>");
/*
* For a new event, the user creating the event should be the
* organizer. Set this field accordingly.
*/
if (icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY)
== NULL) {
sprintf(organizer_string, "MAILTO:%s", ChrPtr(WC->cs_inet_email));
icalcomponent_add_property(vevent,
icalproperty_new_organizer(organizer_string)
);
}
/*
* Determine who is the organizer of this event.
* We need to determine "me" or "not me."
*/
organizer = icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY);
if (organizer != NULL) {
strcpy(organizer_string, icalproperty_get_organizer(organizer));
if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
strcpy(organizer_string, &organizer_string[7]);
striplt(organizer_string);
serv_printf("ISME %s", organizer_string);
serv_getln(buf, sizeof buf);
if (buf[0] == '2') {
organizer_is_me = 1;
}
}
}
wc_printf("<TR><TD><B>");
wc_printf(_("Organizer"));
wc_printf("</B></TD><TD>");
escputs(organizer_string);
if (organizer_is_me) {
wc_printf(" <FONT SIZE=-1><I>");
wc_printf(_("(you are the organizer)"));
wc_printf("</I></FONT>\n");
}
/*
* Transmit the organizer as a hidden field. We don't want the user
* to be able to change it, but we do want it fed back to the server,
* especially if this is a new event and there is no organizer already
* in the calendar object.
*/
wc_printf("<INPUT TYPE=\"hidden\" NAME=\"organizer\" VALUE=\"");
escputs(organizer_string);
wc_printf("\">");
wc_printf("</TD></TR>\n");
/* Transparency */
wc_printf("<TR><TD><B>");
wc_printf(_("Show time as:"));
wc_printf("</B></TD><TD>");
p = icalcomponent_get_first_property(vevent, ICAL_TRANSP_PROPERTY);
if (p == NULL) {
/* No transparency found. Default to opaque (busy). */
p = icalproperty_new_transp(ICAL_TRANSP_OPAQUE);
if (p != NULL) {
icalcomponent_add_property(vevent, p);
}
}
if (p != NULL) {
v = icalproperty_get_value(p);
}
else {
v = NULL;
}
wc_printf("<INPUT TYPE=\"radio\" NAME=\"transp\" VALUE=\"transparent\"");
if ((v != NULL) && (icalvalue_get_transp(v) == ICAL_TRANSP_TRANSPARENT)) {
wc_printf(" CHECKED");
}
wc_printf(">");
wc_printf(_("Free"));
wc_printf(" ");
wc_printf("<INPUT TYPE=\"radio\" NAME=\"transp\" VALUE=\"opaque\"");
if ((v != NULL) && (icalvalue_get_transp(v) == ICAL_TRANSP_OPAQUE)) {
wc_printf(" CHECKED");
}
wc_printf(">");
wc_printf(_("Busy"));
wc_printf("</TD></TR>\n");
/* Done with properties. */
wc_printf("</TABLE>\n");
end_tab(0, 3);
/* Attendees tab (need to move things here) */
begin_tab(1, 3);
wc_printf("<TABLE border=0 width=100%%>\n"); /* same table style as the event tab */
wc_printf("<TR><TD><B>");
wc_printf(_("Attendees"));
wc_printf("</B><br />"
"<font size=-2>");
wc_printf(_("(One per line)"));
wc_printf("</font>\n");
/* Pop open an address book -- begin */
wc_printf(
" <a href=\"javascript:PopOpenAddressBook('attendees_box|%s');\" "
"title=\"%s\">"
"<img align=middle border=0 width=24 height=24 src=\"static/viewcontacts_24x.gif\">"
"</a>",
_("Attendees"),
_("Contacts")
);
/* Pop open an address book -- end */
wc_printf("</TD><TD>"
"<TEXTAREA %s NAME=\"attendees\" id=\"attendees_box\" wrap=soft "
"onchange=\"EnableOrDisableCheckButton();\" "
"onKeyPress=\"EnableOrDisableCheckButton();\" "
"ROWS=10 COLS=72 WIDTH=72>\n",
(organizer_is_me ? "" : "DISABLED ")
);
i = 0;
for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY);
attendee != NULL;
attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
strcpy(attendee_string, icalproperty_get_attendee(attendee));
if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
/* screen name or email address */
strcpy(attendee_string, &attendee_string[7]);
striplt(attendee_string);
if (i++) wc_printf("\n");
escputs(attendee_string);
wc_printf(" ");
/* participant status */
partstat_as_string(buf, attendee);
escputs(buf);
}
}
wc_printf("</TEXTAREA></TD></TR>\n");
wc_printf("</TABLE>\n");
end_tab(1, 3);
/* Recurrence tab */
begin_tab(2, 3);
rrule = icalcomponent_get_first_property(vevent, ICAL_RRULE_PROPERTY);
if (rrule) {
recur = icalproperty_get_rrule(rrule);
}
else {
/* blank recurrence with some sensible defaults */
memset(&recur, 0, sizeof(struct icalrecurrencetype));
recur.count = 3;
recur.until = icaltime_null_time();
recur.interval = 1;
recur.freq = ICAL_WEEKLY_RECURRENCE;
}
wc_printf("<INPUT TYPE=\"checkbox\" id=\"is_recur\" NAME=\"is_recur\" "
"VALUE=\"yes\" "
"onclick=\"RecurrenceShowHide();\""
" %s >%s",
(rrule ? "CHECKED=\"CHECKED\"" : "" ),
_("This is a recurring event")
);
wc_printf("<div id=\"rrule_div\">\n"); /* begin 'rrule_div' div */
wc_printf("<table border=0 cellspacing=\"10\" width=100%%>\n");
wc_printf("<tr><td><b>");
wc_printf(_("Recurrence rule"));
wc_printf("</b></td><td>");
if ((recur.freq < 0) || (recur.freq > 6)) recur.freq = 4;
wc_printf("%s ", _("Repeats every"));
wc_printf("<input type=\"text\" name=\"interval\" maxlength=\"3\" size=\"3\" ");
wc_printf("value=\"%d\"> ", recur.interval);
wc_printf("<select name=\"freq\" id=\"freq_selector\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (i=0; i<(sizeof frequency_units / sizeof(char *)); ++i) {
wc_printf("<option %s%svalue=\"%d\">%s</option>\n",
((i == recur.freq) ? "selected " : ""),
(((i == recur.freq) || ((i>=3)&&(i<=6))) ? "" : "disabled "),
i,
frequency_units[i]
);
}
wc_printf("</select>\n");
wc_printf("<div id=\"weekday_selector\">"); /* begin 'weekday_selector' div */
wc_printf("%s<br>", _("on these weekdays:"));
memset(weekday_is_selected, 0, 7);
for (i=0; i<ICAL_BY_DAY_SIZE; ++i) {
if (recur.by_day[i] == ICAL_RECURRENCE_ARRAY_MAX) {
i = ICAL_RECURRENCE_ARRAY_MAX; /* all done */
}
else {
for (j=0; j<7; ++j) {
if (icalrecurrencetype_day_day_of_week(recur.by_day[i]) == j+1) {
weekday_is_selected[j] = 1;
}
}
}
}
for (j=0; j<7; ++j) {
i = ((j + (int)weekstart) % 7);
wc_printf("<input type=\"checkbox\" name=\"weekday%d\" value=\"yes\"", i);
if (weekday_is_selected[i]) wc_printf(" checked");
wc_printf(">%s\n", weekday_labels[i]);
}
wc_printf("</div>\n"); /* end 'weekday_selector' div */
wc_printf("<div id=\"monthday_selector\">"); /* begin 'monthday_selector' div */
wc_printf("<input type=\"radio\" name=\"rrmonthtype\" id=\"rrmonthtype_mday\" "
"value=\"rrmonthtype_mday\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rrmonthtype_is_preselected == 0) ? "checked" : "")
);
rrmday = t_start.day;
rrmweekday = icaltime_day_of_week(t_start) - 1;
/* Figure out what week of the month we're in */
day1 = t_start;
day1.day = 1;
weekbase = icaltime_week_number(day1);
rrmweek = icaltime_week_number(t_start) - weekbase + 1;
/* Are we going by day of the month or week/day? */
if (recur.by_month_day[0] != ICAL_RECURRENCE_ARRAY_MAX) {
which_rrmonthtype_is_preselected = 0;
rrmday = recur.by_month_day[0];
}
else if (recur.by_day[0] != ICAL_RECURRENCE_ARRAY_MAX) {
which_rrmonthtype_is_preselected = 1;
rrmweek = icalrecurrencetype_day_position(recur.by_day[0]);
rrmweekday = icalrecurrencetype_day_day_of_week(recur.by_day[0]) - 1;
}
wc_printf(_("on day %s%d%s of the month"), "<span id=\"rrmday\">", rrmday, "</span>");
wc_printf("<br />\n");
wc_printf("<input type=\"radio\" name=\"rrmonthtype\" id=\"rrmonthtype_wday\" "
"value=\"rrmonthtype_wday\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rrmonthtype_is_preselected == 1) ? "checked" : "")
);
wc_printf(_("on the "));
wc_printf("<select name=\"rrmweek\" id=\"rrmweek\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (i=1; i<=5; ++i) {
wc_printf("<option %svalue=\"%d\">%s</option>\n",
((i==rrmweek) ? "selected " : ""),
i,
ordinals[i]
);
}
wc_printf("</select> \n");
wc_printf("<select name=\"rrmweekday\" id=\"rrmweekday\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (j=0; j<7; ++j) {
i = ((j + (int)weekstart) % 7);
wc_printf("<option %svalue=\"%d\">%s</option>\n",
((i==rrmweekday) ? "selected " : ""),
i,
weekday_labels[i]
);
}
wc_printf("</select>");
wc_printf(" %s<br />\n", _("of the month"));
wc_printf("</div>\n"); /* end 'monthday_selector' div */
rrymweek = rrmweek;
rrymweekday = rrmweekday;
rrymonth = t_start.month;
which_rryeartype_is_preselected = 0;
if (
(recur.by_day[0] != ICAL_RECURRENCE_ARRAY_MAX)
&& (recur.by_day[0] != 0)
&& (recur.by_month[0] != ICAL_RECURRENCE_ARRAY_MAX)
&& (recur.by_month[0] != 0)
) {
which_rryeartype_is_preselected = 1;
rrymweek = icalrecurrencetype_day_position(recur.by_day[0]);
rrymweekday = icalrecurrencetype_day_day_of_week(recur.by_day[0]) - 1;
rrymonth = recur.by_month[0];
}
wc_printf("<div id=\"yearday_selector\">"); /* begin 'yearday_selector' div */
wc_printf("<input type=\"radio\" name=\"rryeartype\" id=\"rryeartype_ymday\" "
"value=\"rryeartype_ymday\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rryeartype_is_preselected == 0) ? "checked" : "")
);
wc_printf(_("every "));
wc_printf("<span id=\"ymday\">%s</span><br />", _("year on this date"));
wc_printf("<input type=\"radio\" name=\"rryeartype\" id=\"rryeartype_ywday\" "
"value=\"rryeartype_ywday\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rryeartype_is_preselected == 1) ? "checked" : "")
);
wc_printf(_("on the "));
wc_printf("<select name=\"rrymweek\" id=\"rrymweek\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (i=1; i<=5; ++i) {
wc_printf("<option %svalue=\"%d\">%s</option>\n",
((i==rrymweek) ? "selected " : ""),
i,
ordinals[i]
);
}
wc_printf("</select> \n");
wc_printf("<select name=\"rrymweekday\" id=\"rrymweekday\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (j=0; j<7; ++j) {
i = ((j + (int)weekstart) % 7);
wc_printf("<option %svalue=\"%d\">%s</option>\n",
((i==rrymweekday) ? "selected " : ""),
i,
weekday_labels[i]
);
}
wc_printf("</select>");
wc_printf(" %s ", _("of"));
wc_printf("<select name=\"rrymonth\" id=\"rrymonth\" size=\"1\" "
"onChange=\"RecurrenceShowHide();\">\n");
for (i=1; i<=12; ++i) {
wc_printf("<option %svalue=\"%d\">%s</option>\n",
((i==rrymonth) ? "selected " : ""),
i,
month_labels[i-1]
);
}
wc_printf("</select>");
wc_printf("<br />\n");
wc_printf("</div>\n"); /* end 'yearday_selector' div */
wc_printf("</td></tr>\n");
which_rrend_is_preselected = 0;
if (!icaltime_is_null_time(recur.until)) which_rrend_is_preselected = 2;
if (recur.count > 0) which_rrend_is_preselected = 1;
wc_printf("<tr><td><b>");
wc_printf(_("Recurrence range"));
wc_printf("</b></td><td>\n");
wc_printf("<input type=\"radio\" name=\"rrend\" id=\"rrend_none\" "
"value=\"rrend_none\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rrend_is_preselected == 0) ? "checked" : "")
);
wc_printf("%s<br />\n", _("No ending date"));
wc_printf("<input type=\"radio\" name=\"rrend\" id=\"rrend_count\" "
"value=\"rrend_count\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rrend_is_preselected == 1) ? "checked" : "")
);
wc_printf(_("Repeat this event"));
wc_printf(" <input type=\"text\" name=\"rrcount\" id=\"rrcount\" maxlength=\"3\" size=\"3\" ");
wc_printf("value=\"%d\"> ", recur.count);
wc_printf(_("times"));
wc_printf("<br />\n");
wc_printf("<input type=\"radio\" name=\"rrend\" id=\"rrend_until\" "
"value=\"rrend_until\" "
"%s onChange=\"RecurrenceShowHide();\">",
((which_rrend_is_preselected == 2) ? "checked" : "")
);
wc_printf(_("Repeat this event until "));
if (icaltime_is_null_time(recur.until)) {
recur.until = icaltime_add(t_start, icaldurationtype_from_int(604800));
}
display_icaltimetype_as_webform(&recur.until, "rruntil", 1);
wc_printf("<br />\n");
wc_printf("</td></tr>\n");
wc_printf("</table>\n");
wc_printf("</div>\n"); /* end 'rrule' div */
end_tab(2, 3);
/* submit buttons (common area beneath the tabs) */
begin_tab(3, 3);
wc_printf("<CENTER>"
"<INPUT TYPE=\"submit\" NAME=\"save_button\" VALUE=\"%s\">"
" "
"<INPUT TYPE=\"submit\" NAME=\"delete_button\" VALUE=\"%s\">\n"
" "
"<INPUT TYPE=\"submit\" id=\"check_button\" NAME=\"check_button\" VALUE=\"%s\">\n"
" "
"<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">\n"
"</CENTER>\n",
_("Save"),
_("Delete"),
_("Check attendee availability"),
_("Cancel")
);
wc_printf("</FORM>\n");
end_tab(3, 3);
wc_printf("</div>\n"); /* end 'fix_scrollbar_bug' div */
StrBufAppendPrintf(WC->trailing_javascript,
"eventEditAllDay(); \n"
"RecurrenceShowHide(); \n"
"EnableOrDisableCheckButton(); \n"
);
address_book_popup();
wDumpContent(1);
if (created_new_vevent) {
icalcomponent_free(vevent);
}
}
/*
* Save an edited event
*
* supplied_vevent: the event to save
* msgnum: the index on the citserver
*/
void save_individual_event(icalcomponent *supplied_vevent, long msgnum, char *from,
int unread, calview *calv) {
char buf[SIZ];
icalproperty *prop;
icalcomponent *vevent, *encaps;
int created_new_vevent = 0;
int all_day_event = 0;
struct icaltimetype event_start, t;
icalproperty *attendee = NULL;
char attendee_string[SIZ];
int i, j;
int foundit;
char form_attendees[SIZ];
char organizer_string[SIZ];
int sequence = 0;
enum icalproperty_transp formtransp = ICAL_TRANSP_NONE;
if (supplied_vevent != NULL) {
vevent = supplied_vevent;
/* Convert all timestamps to UTC to make them easier to process. */
ical_dezonify(vevent);
/*
* If we're looking at a fully encapsulated VCALENDAR
* rather than a VEVENT component, attempt to use the first
* relevant VEVENT subcomponent. If there is none, the
* NULL returned by icalcomponent_get_first_component() will
* tell the next iteration of this function to create a
* new one.
*/
if (icalcomponent_isa(vevent) == ICAL_VCALENDAR_COMPONENT) {
save_individual_event(
icalcomponent_get_first_component(
vevent, ICAL_VEVENT_COMPONENT),
msgnum, from, unread, NULL
);
return;
}
}
else {
vevent = icalcomponent_new(ICAL_VEVENT_COMPONENT);
created_new_vevent = 1;
}
if ( (havebstr("save_button"))
|| (havebstr("check_button")) ) {
/* Replace values in the component with ones from the form */
while (prop = icalcomponent_get_first_property(vevent,
ICAL_SUMMARY_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
/* Add NOW() to the calendar object... */
icalcomponent_set_dtstamp(vevent,
icaltime_from_timet(
time(NULL), 0));
if (havebstr("summary")) {
icalcomponent_add_property(vevent,
icalproperty_new_summary(bstr("summary")));
} else {
icalcomponent_add_property(vevent,
icalproperty_new_summary(_("Untitled Event")));
}
while (prop = icalcomponent_get_first_property(vevent,
ICAL_LOCATION_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
if (havebstr("location")) {
icalcomponent_add_property(vevent,
icalproperty_new_location(bstr("location")));
}
while (prop = icalcomponent_get_first_property(vevent,
ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
if (havebstr("description")) {
icalcomponent_add_property(vevent,
icalproperty_new_description(bstr("description")));
}
while (prop = icalcomponent_get_first_property(vevent,
ICAL_DTSTART_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
if (yesbstr("alldayevent")) {
all_day_event = 1;
}
else {
all_day_event = 0;
}
if (all_day_event) {
icaltime_from_webform_dateonly(&event_start, "dtstart");
}
else {
icaltime_from_webform(&event_start, "dtstart");
}
prop = icalproperty_new_dtstart(event_start);
if (all_day_event) {
/* Force it to serialize as a date-only rather than date/time */
icalproperty_set_value(prop, icalvalue_new_date(event_start));
}
if (prop) icalcomponent_add_property(vevent, prop);
else icalproperty_free(prop);
while (prop = icalcomponent_get_first_property(vevent,
ICAL_DTEND_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
while (prop = icalcomponent_get_first_property(vevent,
ICAL_DURATION_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
if (all_day_event) {
icaltime_from_webform_dateonly(&t, "dtend");
/* with this field supposed to be non-inclusive we have to add one day */
icaltime_adjust(&t, 1, 0, 0, 0);
}
else {
icaltime_from_webform(&t, "dtend");
}
icalcomponent_add_property(vevent,
icalproperty_new_dtend(icaltime_normalize(t)
)
);
/* recurrence rules -- begin */
/* remove any existing rule */
while (prop = icalcomponent_get_first_property(vevent, ICAL_RRULE_PROPERTY), prop != NULL) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
if (yesbstr("is_recur")) {
struct icalrecurrencetype recur;
icalrecurrencetype_clear(&recur);
recur.interval = atoi(bstr("interval"));
recur.freq = atoi(bstr("freq"));
switch(recur.freq) {
/* These can't happen; they're disabled. */
case ICAL_SECONDLY_RECURRENCE:
break;
case ICAL_MINUTELY_RECURRENCE:
break;
case ICAL_HOURLY_RECURRENCE:
break;
/* Daily is valid but there are no further inputs. */
case ICAL_DAILY_RECURRENCE:
break;
/* These are the real options. */
case ICAL_WEEKLY_RECURRENCE:
j=0;
for (i=0; i<7; ++i) {
snprintf(buf, sizeof buf, "weekday%d", i);
if (YESBSTR(buf)) recur.by_day[j++] =
icalrecurrencetype_day_day_of_week(i+1);
}
recur.by_day[j++] = ICAL_RECURRENCE_ARRAY_MAX;
break;
case ICAL_MONTHLY_RECURRENCE:
if (!strcasecmp(bstr("rrmonthtype"), "rrmonthtype_mday")) {
recur.by_month_day[0] = event_start.day;
recur.by_month_day[1] = ICAL_RECURRENCE_ARRAY_MAX;
}
else if (!strcasecmp(bstr("rrmonthtype"), "rrmonthtype_wday")) {
recur.by_day[0] = (atoi(bstr("rrmweek")) * 8)
+ atoi(bstr("rrmweekday")) + 1;
recur.by_day[1] = ICAL_RECURRENCE_ARRAY_MAX;
}
break;
case ICAL_YEARLY_RECURRENCE:
if (!strcasecmp(bstr("rryeartype"), "rryeartype_ymday")) {
/* no further action is needed here */
}
else if (!strcasecmp(bstr("rryeartype"), "rryeartype_ywday")) {
recur.by_month[0] = atoi(bstr("rrymonth"));
recur.by_month[1] = ICAL_RECURRENCE_ARRAY_MAX;
recur.by_day[0] = (atoi(bstr("rrymweek")) * 8)
+ atoi(bstr("rrymweekday")) + 1;
recur.by_day[1] = ICAL_RECURRENCE_ARRAY_MAX;
}
break;
/* This one can't happen either. */
case ICAL_NO_RECURRENCE:
break;
}
if (!strcasecmp(bstr("rrend"), "rrend_count")) {
recur.count = atoi(bstr("rrcount"));
}
else if (!strcasecmp(bstr("rrend"), "rrend_until")) {
icaltime_from_webform_dateonly(&recur.until, "rruntil");
}
icalcomponent_add_property(vevent, icalproperty_new_rrule(recur));
}
/* recurrence rules -- end */
/* See if transparency is indicated */
if (havebstr("transp")) {
if (!strcasecmp(bstr("transp"), "opaque")) {
formtransp = ICAL_TRANSP_OPAQUE;
}
else if (!strcasecmp(bstr("transp"), "transparent")) {
formtransp = ICAL_TRANSP_TRANSPARENT;
}
while (prop = icalcomponent_get_first_property(vevent, ICAL_TRANSP_PROPERTY),
(prop != NULL)) {
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
icalcomponent_add_property(vevent, icalproperty_new_transp(formtransp));
}
/* Give this event a UID if it doesn't have one. */
if (icalcomponent_get_first_property(vevent,
ICAL_UID_PROPERTY) == NULL) {
generate_uuid(buf);
icalcomponent_add_property(vevent, icalproperty_new_uid(buf));
}
/* Increment the sequence ID */
while (prop = icalcomponent_get_first_property(vevent,
ICAL_SEQUENCE_PROPERTY), (prop != NULL) ) {
i = icalproperty_get_sequence(prop);
if (i > sequence) sequence = i;
icalcomponent_remove_property(vevent, prop);
icalproperty_free(prop);
}
++sequence;
icalcomponent_add_property(vevent,
icalproperty_new_sequence(sequence)
);
/*
* Set the organizer, only if one does not already exist *and*
* the form is supplying one
*/
strcpy(buf, bstr("organizer"));
if ( (icalcomponent_get_first_property(vevent,
ICAL_ORGANIZER_PROPERTY) == NULL)
&& (!IsEmptyStr(buf)) ) {
/* set new organizer */
sprintf(organizer_string, "MAILTO:%s", buf);
icalcomponent_add_property(vevent,
icalproperty_new_organizer(organizer_string)
);
}
/*
* Add any new attendees listed in the web form
*/
/* First, strip out the parenthesized partstats. */
strcpy(form_attendees, bstr("attendees"));
while ( stripout(form_attendees, '(', ')') != 0);
/* Next, change any commas to newlines, because we want newline-separated attendees. */
j = strlen(form_attendees);
for (i=0; i<j; ++i) {
if (form_attendees[i] == ',') {
form_attendees[i] = '\n';
while (isspace(form_attendees[i+1])) {
strcpy(&form_attendees[i+1], &form_attendees[i+2]);
}
}
}
/* Now iterate! */
for (i=0; i<num_tokens(form_attendees, '\n'); ++i) {
extract_token(buf, form_attendees, i, '\n', sizeof buf);
striplt(buf);
if (!IsEmptyStr(buf)) {
sprintf(attendee_string, "MAILTO:%s", buf);
foundit = 0;
for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
if (!strcasecmp(attendee_string,
icalproperty_get_attendee(attendee)))
++foundit;
}
if (foundit == 0) {
icalcomponent_add_property(vevent,
icalproperty_new_attendee(attendee_string)
);
}
}
}
/*
* Remove any attendees *not* listed in the web form
*/
STARTOVER: for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
strcpy(attendee_string, icalproperty_get_attendee(attendee));
if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
strcpy(attendee_string, &attendee_string[7]);
striplt(attendee_string);
foundit = 0;
for (i=0; i<num_tokens(form_attendees, '\n'); ++i) {
extract_token(buf, form_attendees, i, '\n', sizeof buf);
striplt(buf);
if (!strcasecmp(buf, attendee_string)) ++foundit;
}
if (foundit == 0) {
icalcomponent_remove_property(vevent, attendee);
icalproperty_free(attendee);
goto STARTOVER;
}
}
}
/*
* Encapsulate event into full VCALENDAR component. Clone it first,
* for two reasons: one, it's easier to just free the whole thing
* when we're done instead of unbundling, but more importantly, we
* can't encapsulate something that may already be encapsulated
* somewhere else.
*/
encaps = ical_encapsulate_subcomponent(icalcomponent_new_clone(vevent));
/* Set the method to PUBLISH */
icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
/* If the user clicked 'Save' then save it to the server. */
if ( (encaps != NULL) && (havebstr("save_button")) ) {
serv_puts("ENT0 1|||4|||1|");
serv_getln(buf, sizeof buf);
if (buf[0] == '8') {
serv_puts("Content-type: text/calendar");
serv_puts("");
serv_puts(icalcomponent_as_ical_string(encaps));
serv_puts("000");
}
if ( (buf[0] == '8') || (buf[0] == '4') ) {
while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
}
}
if (buf[0] == '2') {
strcpy(WC->ImportantMessage, &buf[4]);
}
icalmemory_free_ring ();
icalcomponent_free(encaps);
encaps = NULL;
}
/* Or, check attendee availability if the user asked for that. */
if ( (encaps != NULL) && (havebstr("check_button")) ) {
/* Call this function, which does the real work */
check_attendee_availability(encaps);
/* This displays the form again, with our annotations */
display_edit_individual_event(encaps, msgnum, from, unread, NULL);
icalcomponent_free(encaps);
encaps = NULL;
}
if (encaps != NULL) {
icalcomponent_free(encaps);
encaps = NULL;
}
}
/*
* If the user clicked 'Delete' then delete it.
*/
if ( (havebstr("delete_button")) && (msgnum > 0L) ) {
serv_printf("DELE %ld", lbstr("msgnum"));
serv_getln(buf, sizeof buf);
}
if (created_new_vevent) {
icalcomponent_free(vevent);
}
/* If this was a save or delete, go back to the calendar or summary view. */
if (!havebstr("check_button")) {
if (!strcasecmp(bstr("calview"), "summary")) {
summary();
}
else {
readloop(readfwd, eUseDefault);
}
}
}
|