fix-end-date-printing #2

Merged
bjoernf merged 2 commits from fix-end-date-printing into master 2023-09-10 11:37:33 +02:00
5 changed files with 53 additions and 12 deletions
Showing only changes of commit d29fcdbec5 - Show all commits

View File

@ -42,6 +42,6 @@ sudo make uninstall
#### TODO #### TODO
- add option to print upcoming events only until a certain date - cap the number of upcoming events being printed (and introduce --all option)
- show end date for events that span over multiple days - don't show the DTEND day of an all day event, but DTEND - 1
- tests - tests

View File

@ -13,6 +13,8 @@ an all day event can span over multiple days and look like this:
DTSTART;VALUE=DATE:20230911^M$ DTSTART;VALUE=DATE:20230911^M$
DTEND;VALUE=DATE:20230916^M$ DTEND;VALUE=DATE:20230916^M$
The DTEND of an all day event is exclusively, it is not an all day event anymore!
appointment: appointment:
DTSTART;TZID=/freeassociation.sourceforge.net/Continent/City: DTSTART;TZID=/freeassociation.sourceforge.net/Continent/City:
20230909T090000 20230909T090000

View File

@ -59,17 +59,55 @@ void marshall_date_time(char date_time[]) {
strcpy(date_time, transformed_string); strcpy(date_time, transformed_string);
} }
void print_end_date(char end_date[]) { void print_end_date(char end_date[], char start_date[]) {
time_t start_uts = transform_date_to_unix_ts(start_date);
time_t end_uts = transform_date_to_unix_ts(end_date);
double time_difference = difftime(end_uts, start_uts);
// end_date is all day event // end_date is all day event
if (strlen(end_date) == 8) if (strlen(end_date) == 8) {
if (time_difference == 86400) {
return; return;
} else {
printf (" - ");
pretty_print_date_time(end_date);
return;
}
} else {
// end_date is not an all day event
strtok(end_date, "T"); char *end_date_chunk = strtok(end_date, "T");
char *time = strtok(NULL, "T"); char *end_time_chunk = strtok(NULL, "T");
char *start_date_chunk = strtok(start_date, "T");
printf (" - %c%c:", time[0], time[1]); printf (" - ");
printf ("%c%c:", time[2], time[3]);
printf ("%c%c", time[4], time[5]); // only print the end date if it is not the same as the start date
if (strcmp(start_date_chunk, end_date_chunk) != 0) {
printf("%c%c%c%c-", end_date_chunk[0], end_date_chunk[1], \
end_date_chunk[2], end_date_chunk[3]);
printf("%c%c-", end_date_chunk[4], end_date_chunk[5]);
printf("%c%c ", end_date_chunk[6], end_date_chunk[7]);
}
printf ("%c%c:", end_time_chunk[0], end_time_chunk[1]);
printf ("%c%c:", end_time_chunk[2], end_time_chunk[3]);
printf ("%c%c", end_time_chunk[4], end_time_chunk[5]);
}
}
// YYYYmmdd -> unix timestamp
time_t transform_date_to_unix_ts(char date_str[]) {
time_t unix_stamp = 0;
int date_only = atoi(date_str);
struct tm my_tm = {0};
my_tm.tm_year = date_only / 10000 - 1900;
my_tm.tm_mon = (date_only % 10000) / 100 - 1;
my_tm.tm_mday = date_only % 100;
unix_stamp = mktime(&my_tm);
return unix_stamp;
} }
char *get_tz() { char *get_tz() {

View File

@ -5,4 +5,5 @@ void get_date(char buffer[]);
char *get_tz(); char *get_tz();
void pretty_print_date_time(char date_time[]); void pretty_print_date_time(char date_time[]);
void marshall_date_time(char date_time[]); void marshall_date_time(char date_time[]);
void print_end_date(char end_date[]); void print_end_date(char end_date[], char start_date[]);
time_t transform_date_to_unix_ts(char date_str[]);

View File

@ -50,7 +50,7 @@ void print_upcoming(struct event *head, char current_start_date[]) {
while (head != NULL) { while (head != NULL) {
if (strcmp(head->start_date, current_start_date) >= 0) { if (strcmp(head->start_date, current_start_date) >= 0) {
pretty_print_date_time(head->start_date); pretty_print_date_time(head->start_date);
print_end_date(head->end_date); print_end_date(head->end_date, head->start_date);
printf("\n%s\n", head->summary); printf("\n%s\n", head->summary);
if (head->next != NULL) if (head->next != NULL)
printf("\n"); printf("\n");