Ejemplo n.º 1
0
 /**
  *
  * @param mixed $handler_id The ID of the handler.
  * @param array &$data The local request data.
  */
 public function _show_user_busy($handler_id, array &$data)
 {
     $encoder = new org_openpsa_calendar_vcal();
     echo $encoder->get_headers();
     foreach ($this->_request_data['events'] as $event) {
         // clear all data not absolutely required for busy listing
         foreach ($event->__object as $k => $v) {
             switch (true) {
                 case $k == 'metadata':
                     break;
                 case $k == 'title':
                     $event->title = 'busy';
                     break;
                 case $k == 'guid':
                 case $k == 'start':
                 case $k == 'end':
                     $event->{$k} = $v;
                     break;
                 case is_array($v):
                     $event->{$k} = array();
                     break;
                 case is_string($v):
                 default:
                     $event->{$k} = '';
                     break;
             }
         }
         // Only display the requested user as participant
         $event->participants[$data['person']->id] = true;
         // Always force busy in this view
         $event->busy = true;
         echo $encoder->export_event($event);
     }
     echo $encoder->vcal_footers();
 }
Ejemplo n.º 2
0
 function notify($type = 'update', $event = false, $nl = "\n")
 {
     $l10n = midcom::get('i18n')->get_l10n('org.openpsa.calendar');
     $recipient = $this->get_person_obj();
     if (!$recipient) {
         debug_add('recipient could not be gotten, aborting', MIDCOM_LOG_WARN);
         return false;
     }
     //In general we should have the event passed to us since we might be notifying about changes that have not been committed yet
     if (!$event) {
         $event = $this->get_event_obj();
     }
     if ($recipient->id == midcom_connection::get_user() && !$event->send_notify_me) {
         //Do not send notification to current user
         debug_add('event->send_notify_me is false and recipient is current user, aborting notify');
         return false;
     }
     $message = array();
     $action = 'org.openpsa.calendar:noevent';
     switch ($type) {
         //Event information was updated
         case 'update':
             //PONDER: This in theory should have the old event title
             $action = 'org.openpsa.calendar:event_update';
             $message['title'] = sprintf($l10n->get('event "%s" was updated'), $event->title);
             $message['abstract'] = sprintf($l10n->get('event "%s" (%s) was updated'), $event->title, $event->format_timeframe());
             $message['content'] = sprintf($l10n->get('event "%s" was modified, updated information below.') . "{$nl}{$nl}", $event->title);
             $message['content'] .= $event->details_text(false, $this, $nl);
             break;
             //Participant was added to the event
         //Participant was added to the event
         case 'add':
             $action = 'org.openpsa.calendar:event_add';
             $message['title'] = sprintf($l10n->get('you have been added to event "%s"'), $event->title);
             $message['abstract'] = sprintf($l10n->get('you have been added to event "%s" (%s)'), $event->title, $event->format_timeframe());
             $message['content'] = sprintf($l10n->get('you have been added to event "%s" participants list, event information below.') . "{$nl}{$nl}", $event->title);
             $message['content'] .= $event->details_text(false, $this, $nl);
             break;
             //Participant was removed from event
         //Participant was removed from event
         case 'remove':
             $action = 'org.openpsa.calendar:event_remove';
             $message['title'] = sprintf($l10n->get('you have been removed from event "%s"'), $event->title);
             $message['abstract'] = sprintf($l10n->get('you have been removed from event "%s" (%s)'), $event->title, $event->format_timeframe());
             $message['content'] = sprintf($l10n->get('you have been removed from event "%s" (%s) participants list.'), $event->title, $event->format_timeframe());
             break;
             //Event was cancelled (=deleted)
         //Event was cancelled (=deleted)
         case 'cancel':
             $action = 'org.openpsa.calendar:event_cancel';
             $message['title'] = sprintf($l10n->get('event "%s" was cancelled'), $event->title);
             $message['abstract'] = sprintf($l10n->get('event "%s" (%s) was cancelled'), $event->title, $event->format_timeframe());
             $message['content'] = sprintf($l10n->get('event "%s" (%s) was cancelled.'), $event->title, $event->format_timeframe());
             break;
         default:
             debug_add("action '{$type}' is invalid, aborting notification", MIDCOM_LOG_ERROR);
             return false;
     }
     if ($type == 'cancel' || $type == 'remove') {
         // TODO: Create iCal export with correct delete commands
     } else {
         $encoder = new org_openpsa_calendar_vcal();
         $vcal_data = $encoder->get_headers();
         $vcal_data .= $encoder->export_event($event);
         $vcal_data .= $encoder->get_footers();
         $message['attachments'] = array(array('name' => midcom_helper_misc::generate_urlname_from_string(sprintf('%s on %s', $event->title, date('Ymd_Hi', $event->start))) . '.ics', 'mimetype' => 'text/calendar', 'content' => $vcal_data));
     }
     return org_openpsa_notifications::notify($action, $recipient->guid, $message);
 }