• Publicity: Public Only All

calendar-outlook-procs.tcl

Utility functions for syncing Calendar with Outlook taken from SloanSpace v1, hacked for OpenACS by Ben.

Location:
packages/calendar/tcl/calendar-outlook-procs.tcl
Authors:
wtem@olywa.net
ben@openforce.biz

Procedures in this file

Detailed information

calendar::outlook::cal_outlook_gmt_sql (public, deprecated)

 calendar::outlook::cal_outlook_gmt_sql [ hours ] [ dash ]
Deprecated. Invoking this procedure generates a warning.

Formats the hours to subtract or add to make the date_time be in gmt. DEPRECATED: upstream code stopped using this api in date 2002-07-10.

Parameters:
hours (defaults to "0")
dash (optional)
See Also:
  • nothing

Partial Call Graph (max 5 caller/called nodes):
%3 ad_log_deprecated ad_log_deprecated (public) calendar::outlook::cal_outlook_gmt_sql calendar::outlook::cal_outlook_gmt_sql calendar::outlook::cal_outlook_gmt_sql->ad_log_deprecated

Testcases:
No testcase defined.

calendar::outlook::format_item (public)

 calendar::outlook::format_item -cal_item_id cal_item_id \
    [ -all_occurrences_p all_occurrences_p ] \
    [ -client_timezone client_timezone ]

the cal_item_id is obvious. If we want all occurrences, we set all_occurrences_p to true. The client timezone helps to make things right. It is the number offset from GMT.

Switches:
-cal_item_id
(required)
-all_occurrences_p
(defaults to "0") (optional)
-client_timezone
(defaults to "0") (optional)

Partial Call Graph (max 5 caller/called nodes):
%3 test_cal_item_add_delete cal_item_add_delete (test calendar) calendar::outlook::format_item calendar::outlook::format_item test_cal_item_add_delete->calendar::outlook::format_item calendar::item::get calendar::item::get (public) calendar::outlook::format_item->calendar::item::get calendar::outlook::ics_timestamp_format calendar::outlook::ics_timestamp_format (public) calendar::outlook::format_item->calendar::outlook::ics_timestamp_format db_1row db_1row (public) calendar::outlook::format_item->db_1row

Testcases:
cal_item_add_delete

calendar::outlook::ics_timestamp_format (public)

 calendar::outlook::ics_timestamp_format -timestamp timestamp

the timestamp must be in the format YYYY-MM-DD HH24:MI:SS

Switches:
-timestamp
(required)

Partial Call Graph (max 5 caller/called nodes):
%3 test_cal_item_add_delete cal_item_add_delete (test calendar) calendar::outlook::ics_timestamp_format calendar::outlook::ics_timestamp_format test_cal_item_add_delete->calendar::outlook::ics_timestamp_format calendar::outlook::format_item calendar::outlook::format_item (public) calendar::outlook::format_item->calendar::outlook::ics_timestamp_format

Testcases:
cal_item_add_delete
[ hide source ] | [ make this the default ]

Content File Source

ad_library {
    Utility functions for syncing Calendar with Outlook
    
    taken from SloanSpace v1, hacked for OpenACS by Ben.

    @author wtem@olywa.net
    @author ben@openforce.biz
}

# wtem@olywa.net, 2001-06-12
# adding support for syncing a single event with msoutlook

# 1. make sure the server config file 
# (in this case an .ini file) has the .ics extension mapped to msoutlook
# i.e. .ics=application/x-msoutlook

# 2. define a proc to pull an event from the database and put it in ics formatt
# and any helper procs necessary

# 3. register the proc to all requests for .ics

namespace eval calendar::outlook {
   
    d_proc ics_timestamp_format {
        {-timestamp:required}
    } {
        the timestamp must be in the format YYYY-MM-DD HH24:MI:SS
    } {
        regsub { } $timestamp {T} timestamp
        regsub -all -- {-} $timestamp {} timestamp
        regsub -all {:} $timestamp {} timestamp
        
        append timestamp "Z"
        return $timestamp
    }

    d_proc -deprecated cal_outlook_gmt_sql {
        {hours 0}
        {dash ""}
    } {
        Formats the hours to subtract or add to make the date_time be
        in gmt.

        DEPRECATED: upstream code stopped using this api in date
                    2002-07-10.

        @see nothing
    } {
        # east of gmt is notated as "-",
        # in order to get gmt (to store the date_time for outlook)
        # we need to have the hour equal gmt at the same time as the client
        # i.e. if its noon gmt, then its 4am in pst
        
        if {$dash ne ""} {
            set date_time_math "- $hours/24"
        } else {
            set date_time_math "+ $hours/24"
        }

        return $date_time_math
    }

    d_proc -public format_item {
        {-cal_item_id:required}
        {-all_occurrences_p 0}
        {-client_timezone 0}
    } {
        the cal_item_id is obvious.
        If we want all occurrences, we set all_occurrences_p to true.
        
        The client timezone helps to make things right. 
        It is the number offset from GMT.
    } {
        calendar::item::get -cal_item_id $cal_item_id -array cal_item -normalize_time_to_utc 1
        # If necessary, select recurrence information

        # Here we have some fields
        # start_time end_time title description
        
        # For now we don't do recurrence

        set DTSTART [ics_timestamp_format -timestamp $cal_item(start_date_ansi)]
        set DTEND [ics_timestamp_format -timestamp $cal_item(end_date_ansi)]

        # Put it together
        set ics_event "BEGIN:VCALENDAR\r\nPRODID:-//OpenACS//OpenACS 5.0 MIMEDIR//EN\r\nVERSION:2.0\r\nMETHOD:PUBLISH\r\nBEGIN:VEVENT\r\nDTSTART:$DTSTART\r\nDTEND:$DTEND\r\n"

        # Recurrence stuff
        if {$cal_item(recurrence_id) ne "" && $all_occurrences_p} {

            set recur_rule "RRULE:FREQ="

            # Select recurrence info
            set recurrence_id $cal_item(recurrence_id)
            db_1row select_recurrence {} -column_array recurrence

            switch -glob $recurrence(interval_name) {
                day { append recur_rule "DAILY" }
                week { append recur_rule "WEEKLY" }
                *month* { append recur_rule "MONTHLY"}
                year { append recur_rule "YEARLY"}
            }

            if { $recurrence(interval_name) eq "week" && $recurrence(days_of_week) ne "" } {
                
                #DRB: Standard indicates ordinal week days are OK, but Outlook
                #only takes two-letter abbreviation form.

                append recur_rule ";BYDAY="
                set week_list [list "SU" "MO" "TU" "WE" "TH" "FR" "SA" "SU"]
                set sep ""
                set day_list [split $recurrence(days_of_week) " "]
                foreach day $day_list {
                    append recur_rule "$sep[lindex $week_list $day]"
                    set sep ","
                }
            }

            if { $recurrence(every_nth_interval) ne "" } {
                append recur_rule ";INTERVAL=$recurrence(every_nth_interval)"
            }

            if { $recurrence(recur_until) ne "" } {
                #DRB: this should work with a DATE: type but doesn't with Outlook at least.
                append recur_rule ";UNTIL=$recurrence(recur_until)"
                append recur_rule "T000000Z"
            }

            append ics_event "$recur_rule\r\n"

        }

        ns_log debug "calendar::outlook::format_item: DTSTART = $DTSTART"

        regexp {^([0-9]*)T} $DTSTART all CREATION_DATE
        set DESCRIPTION $cal_item(description)
        set TITLE $cal_item(name)

        append ics_event "LOCATION:Not Listed\r\nTRANSP:OPAQUE\r\nSEQUENCE:0\r\nUID:$cal_item_id\r\nDTSTAMP:$CREATION_DATE\r\nDESCRIPTION:$DESCRIPTION\r\nSUMMARY:$TITLE\r\nPRIORITY:5\r\nCLASS:PUBLIC\r\n"

        append ics_event "END:VEVENT\r\nEND:VCALENDAR\r\n"
        return $ics_event
    }
        
}

# Local variables:
#    mode: tcl
#    tcl-indent-level: 4
#    indent-tabs-mode: nil
# End: