* @copyright (c) 2004-18 by RalfBecker-At-outdoor-training.de * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License */ use EGroupware\Api; use EGroupware\Api\Link; use EGroupware\Api\Framework; use EGroupware\Api\Egw; use EGroupware\Api\Acl; use EGroupware\Api\Vfs; use EGroupware\Api\Etemplate; /** * calendar UserInterface forms: view and edit events, freetime search * * The new UI, BO and SO classes have a strikt definition, in which time-zone they operate: * UI only operates in user-time, so there have to be no conversation at all !!! * BO's functions take and return user-time only (!), they convert internaly everything to servertime, because * SO operates only on server-time * * The state of the UI elements is managed in the uical class, which all UI classes extend. * * All permanent debug messages of the calendar-code should done via the debug-message method of the bocal class !!! */ class calendar_uiforms extends calendar_ui { var $public_functions = array( 'freetimesearch' => True, 'edit' => true, 'process_edit' => true, 'export' => true, 'import' => true, 'cat_acl' => true, 'meeting' => true, 'mail_import' => true, 'notify' => true ); /** * Standard durations used in edit and freetime search * * @var array */ var $durations = array(); /** * default locking time for entries, that are opened by another user * * @var int lock time in seconds */ var $locktime_default=1; /** * Constructor */ function __construct() { parent::__construct(true); // call the parent's constructor for ($n=15; $n <= 16*60; $n+=($n < 60 ? 15 : ($n < 240 ? 30 : ($n < 600 ? 60 : 120)))) { $this->durations[$n*60] = sprintf('%d:%02d',$n/60,$n%60); } } /** * Create a default event (adding a new event) by evaluating certain _GET vars * * @return array event-array */ function &default_add_event() { $extra_participants = $_GET['participants'] ? (!is_array($_GET['participants']) ? explode(',',$_GET['participants']) : $_GET['participants']) : array(); // if participant is a contact, add its link title as title foreach($extra_participants as $uid) { if ($uid[0] == 'c') { $title = Link::title('addressbook', substr($uid, 1)); break; } } if($_GET['title']) { $title = $_GET['title']; } if (isset($_GET['owner'])) { $owner = $_GET['owner']; if(!is_array($owner) && strpos($owner, ',')) { $owner = explode(',',$owner); } if(is_array($owner)) { // old behavior "selected" should also be used for not set preference, therefore we need to test for !== '0' if($this->cal_prefs['default_participant'] !== '0' || count($extra_participants) === 0 && count($owner) === 1) { $extra_participants += $owner; } $owner = count($owner) > 1 ? $this->user : $owner[0]; } else if ($owner) { $extra_participants[] = $owner; } } else { // old behavior "selected" should also be used for not set preference, therefore we need to test for === '0' $owner = $this->cal_prefs['default_participant'] === '0' ? $this->user : $this->owner; } if (!$owner || !is_numeric($owner) || $GLOBALS['egw']->accounts->get_type($owner) != 'u' || !$this->bo->check_perms(Acl::ADD,0,$owner)) { if ($owner) // make an owner who is no user or we have no add-rights a participant { if(!is_array($owner)) { $owner = explode(',',$owner); } // if we come from ressources we don't need any users selected in calendar if (!isset($_GET['participants']) || $_GET['participants'][0] != 'r') { foreach($owner as $uid) { $extra_participants[] = $uid; } } } $owner = $this->user; } //error_log("this->owner=$this->owner, _GET[owner]=$_GET[owner], user=$this->user => owner=$owner, extra_participants=".implode(',',$extra_participants).")"); if(isset($_GET['start'])) { $start = Api\DateTime::to($_GET['start'], 'ts'); } else { $ts = new Api\DateTime(); $ts->setUser(); $start = $this->bo->date2ts(array( 'full' => isset($_GET['date']) && (int) $_GET['date'] ? (int) $_GET['date'] : $this->date, 'hour' => (int) (isset($_GET['hour']) ? $_GET['hour'] : ($ts->format('H')+1)), 'minute' => (int) $_GET['minute'], )); } //echo "
_GET[date]=$_GET[date], _GET[hour]=$_GET[hour], _GET[minute]=$_GET[minute], this->date=$this->date ==> start=$start=".date('Y-m-d H:i',$start)."
\n"; $participant_types['u'] = $participant_types = $participants = array(); foreach($extra_participants as $uid) { if (isset($participants[$uid])) continue; // already included if (!$this->bo->check_acl_invite($uid)) continue; // no right to invite --> ignored if (is_numeric($uid)) { $participants[$uid] = $participant_types['u'][$uid] = calendar_so::combine_status($uid == $this->user ? 'A' : 'U',1, ($uid == $this->user || ($uid == $owner && $this->bo->check_perms(Acl::ADD,0,$owner))) ? 'CHAIR' : 'REQ-PARTICIPANT'); } elseif (is_array($this->bo->resources[$uid[0]])) { // Expand mailing lists if($uid[0] == 'l') { foreach($this->bo->enum_mailing_list($uid) as $contact) { $participants[$contact] = $participant_types['c'][substr($contact,1)] = calendar_so::combine_status('U',1,'REQ-PARTICIPANT'); } continue; } // if contact is a user, use the user instead (as the GUI) if ($uid[0] == 'c' && ($account_id = $GLOBALS['egw']->accounts->name2id(substr($uid,1),'person_id'))) { $uid = $account_id; $participants[$uid] = $participant_types['u'][$uid] = calendar_so::combine_status($uid == $this->user ? 'A' : 'U',1, ($uid == $this->user || ($uid == $owner && $this->bo->check_perms(Acl::ADD,0,$owner))) ? 'CHAIR' : 'REQ-PARTICIPANT'); continue; } $res_data = $this->bo->resources[$uid[0]]; list($id,$quantity) = explode(':',substr($uid,1)); if (($status = $res_data['new_status'] ? ExecMethod($res_data['new_status'],$id) : 'U')) { $participants[$uid] = $participant_types[$uid[0]][$id] = calendar_so::combine_status($status,$quantity,'REQ-PARTICIPANT'); } } } if (!$participants) // if all participants got removed, include current user { $participants[$this->user] = $participant_types['u'][$this->user] = calendar_so::combine_status('A',1,'CHAIR'); } if(isset($_GET['cat_id'])) { $cat_id = explode(',',$_GET['cat_id']); foreach($cat_id as &$cat) { $cat = (int)$cat; } } else { $cat_id = $this->cal_prefs['default_category']; } $duration = isset($_GET['duration']) ? (int)$_GET['duration'] : (int) $this->bo->cal_prefs['defaultlength']*60; if(isset($_GET['end'])) { $end = Api\DateTime::to($_GET['end'], 'ts'); $duration = $end - $start; } else { $end = $start + $duration; } $whole_day = ($duration + 60 == DAY_s); $alarms = array(); $alarm_pref = $whole_day ? 'default-alarm-wholeday' : 'default-alarm'; // if default alarm set in prefs --> add it // we assume here that user does NOT have a whole-day but no regular default-alarm, no whole-day! if((string)$this->cal_prefs[$alarm_pref] !== '') { $offset = 60 * $this->cal_prefs[$alarm_pref]; $alarms[1] = array( 'default' => 1, 'offset' => $offset, 'time' => $start - $offset, 'all' => $this->cal_prefs['default-alarm-for'] === 'all', 'owner' => $owner, 'id' => 1, ); } // add automatic alarm 5min before videoconference for all participants if (!empty($_GET['videoconference'])) { $offset = 5 * 60; $alarms[1+count($alarms)] = array( 'offset' => $offset, 'time' => $start - $offset, 'all' => true, 'owner' => $owner, 'id' => 2, ); } $ret = array( 'participant_types' => $participant_types, 'participants' => $participants, 'owner' => $owner, 'start' => $start, 'end' => $end, 'tzid' => $this->bo->common_prefs['tz'], 'priority' => 2, // normal 'public'=> $this->cal_prefs['default_private'] ? 0 : 1, 'alarm' => $alarms, 'recur_exception' => array(), 'title' => $title ? $title : '', 'category' => $cat_id, 'videoconference' => !empty($_GET['videoconference']), '##notify_externals' => !empty($_GET['videoconference']) ? 'yes' : $this->cal_prefs['notify_externals'], ); return $ret; } /** * Process the edited event and evtl. call edit to redisplay it * * @param array $content posted eTemplate content * @ToDo add conflict check / available quantity of resources when adding participants */ function process_edit($content) { if (!is_array($content)) // redirect from etemplate, if POST empty { return $this->edit(null,null,strip_tags($_GET['msg'])); } // clear notification errors notifications::errors(true); $messages = null; $msg_permission_denied_added = false; // We'd like to just refresh the data as that's the fastest, but some changes // affect more than just one event widget, so require a full refresh. // $update_type is one of the update types // (add, edit, update, delete) $update_type = $content['id'] ? ($content['recur_type'] == MCAL_RECUR_NONE ? 'update' : 'edit') : 'add'; $button = @key((array)$content['button']); if (!$button && $content['action']) $button = $content['action']; // action selectbox unset($content['button']); unset($content['action']); $view = $content['view']; if ($button == 'ical') { $msg = $this->export($content['id'],true); } // delete a recur-exception if (!empty($content['recur_exception']['delete_exception'])) { $date = key($content['recur_exception']['delete_exception']); // eT2 converts time to if (!is_numeric($date)) $date = Api\DateTime::to (str_replace('Z','', $date), 'ts'); unset($content['recur_exception']['delete_exception']); if (($key = array_search($date,$content['recur_exception'])) !== false) { // propagate the exception to a single event $recur_exceptions = $this->bo->so->get_related($content['uid']); foreach ($recur_exceptions as $id) { if (!($exception = $this->bo->read($id)) || $exception['recurrence'] != $content['recur_exception'][$key]) continue; $exception['uid'] = Api\CalDAV::generate_uid('calendar', $id); $exception['reference'] = $exception['recurrence'] = 0; $this->bo->update($exception, true, true,false,true,$messages,$content['no_notifications']); break; } unset($content['recur_exception'][$key]); $content['recur_exception'] = array_values($content['recur_exception']); } $update_type = 'edit'; } if (!empty($content['recur_rdates']['delete_rdate'])) { $date = key($content['recur_rdates']['delete_rdate']); // eT2 converts time to if (!is_numeric($date)) $date = Api\DateTime::to(str_replace('Z', '', $date), 'ts'); unset($content['recur_rdates']['delete_rdate']); if (($key = array_search($date, $content['recur_rdates'])) !== false) { // if this is an initial edit, simply remove the rdate if (empty($content['id'])) { unset($content['recur_rdates'][$key]); $content['recur_rdates'] = array_values($content['recur_rdates']); } // otherwise add the recurrence as (deleted) exception elseif (!in_array($date, $content['recur_exception'])) { $content['recur_exception'][] = $date; } } } // delete an alarm if (!empty($content['alarm']['delete_alarm'])) { $id = key($content['alarm']['delete_alarm']); //echo "delete alarm $id"; _debug_array($content['alarm']['delete_alarm']); if ($content['id']) { if ($this->bo->delete_alarm($id)) { $msg = lang('Alarm deleted'); unset($content['alarm'][$id]); } else { $msg = lang('Permission denied'); } } else { unset($content['alarm'][$id]); } } if($content['end'] && $content['start'] >= $content['end']) { unset($content['end']); $content['duration'] = $this->bo->cal_prefs['defaultlength']*60; } if ($content['duration']) { $content['end'] = $content['start'] + $content['duration']; } // fix default alarm for a new (whole day) event, to be according to default-alarm(-wholeday) pref if ($content['alarm'][1]['default']) { $def_alarm = $this->cal_prefs['default-alarm'.($content['whole_day'] ? '-wholeday' : '')]; if ((string)$def_alarm === '') { unset($content['alarm'][1]); // '' = no alarm on whole day --> delete it } else { $content['alarm'][1]['offset'] = $offset = 60 * $def_alarm; $content['start'] = $this->bo->date2array($content['start']); $content['start'][1]['time'] = $this->bo->date2ts($content['start']) - $offset; $content['start'] = $this->bo->date2ts($content['start']); } } else if ($content['cal_id'] && count($content['alarm']) > 0 && current($content['alarm'])['default'] && // Existing event, check for change from/to whole day ($old = $this->bo->read($content['cal_id'])) && $old['whole_day'] !== $content['whole_day'] && ($def_alarm = $this->cal_prefs['default-alarm'.($content['whole_day'] ? '-wholeday' : '')]) ) { // Reset default alarm $old_default = array_shift($content['alarm']); $this->bo->delete_alarm($old_default['id']); $offset = 60 * $def_alarm; array_unshift($content['alarm'], array( 'default' => 1, 'offset' => $offset , 'time' => $content['start'] - $offset, 'all' => false, 'owner' => 0, 'id' => 1 )); } $event = $content; unset($event['new_alarm']); unset($event['alarm']['delete_alarm']); unset($event['duration']); if (in_array($button,array('ignore','freetime','reedit','confirm_edit_series'))) { // no conversation necessary, event is already in the right format } else { // convert content => event if ($content['whole_day']) { $event['start'] = $this->bo->date2array($event['start']); $event['start']['hour'] = $event['start']['minute'] = 0; unset($event['start']['raw']); $event['start'] = $this->bo->date2ts($event['start']); $event['end'] = $this->bo->date2array($event['end']); $event['end']['hour'] = 23; $event['end']['minute'] = $event['end']['second'] = 59; unset($event['end']['raw']); $event['end'] = $this->bo->date2ts($event['end']); } // some checks for recurrences, if you give a date, make it a weekly repeating event and visa versa if ($event['recur_type'] == MCAL_RECUR_NONE && $event['recur_data']) $event['recur_type'] = MCAL_RECUR_WEEKLY; if ($event['recur_type'] == MCAL_RECUR_WEEKLY && !$event['recur_data']) { $event['recur_data'] = 1 << (int)date('w',$event['start']); } if ($event['recur_type'] != MCAL_RECUR_NONE && !isset($event['recur_enddate'])) { // No recur end date, make sure it's set to something or it won't be changed $event['recur_enddate'] = 0; } if (isset($content['participants'])) { $event['participants'] = $event['participant_types'] = array(); foreach($content['participants'] as $key => $data) { switch($key) { case 'delete': // handled in default case 'quantity': // handled in new_resource case 'role': // handled in add, account or resource case 'cal_resources': case 'status_date': break; case 'notify_externals': $event['##notify_externals'] = $data; break; case 'participant': foreach($data as $participant) { // Participant widget returns "" when no value is selected if(is_null($participant) || !trim($participant)) { continue; } // email or rfc822 addresse (eg. "Ralf Becker$uid: status changed '$data[old_status]' --> '$status<'/p>\n";
$new_status = calendar_so::combine_status($status, $quantity, $role);
if ($this->bo->set_status($event['id'],$uid,$new_status,isset($content['edit_single']) ? $content['participants']['status_date'] : 0, false, true, $content['no_notifications']??false))
{
// Update main window
$d = new Api\DateTime($content['edit_single'], Api\DateTime::$user_timezone);
$client_updated = $this->update_client($event['id'], $d);
// refreshing the calendar-view with the changed participant-status
if($event['recur_type'] != MCAL_RECUR_NONE)
{
$msg = lang('Status for all future scheduled days changed');
}
else
{
if(isset($content['edit_single']))
{
$msg = lang('Status for this particular day changed');
// prevent accidentally creating a real exception afterwards
$view = true;
$hide_delete = true;
}
else
{
$msg = lang('Status changed');
//Refresh the event in the main window after changing status
Framework::refresh_opener($msg, 'calendar', $event['id'], $client_updated ? 'update' : 'delete');
}
}
if (!$content['no_popup'])
{
//we are handling refreshing for status changes on client side
}
if ($status == 'R' && $event['alarm'])
{
// remove from bo->set_status deleted alarms of rejected users from UI too
foreach($event['alarm'] as $alarm_id => $alarm)
{
if ((string)$alarm['owner'] === (string)$uid)
{
unset($event['alarm'][$alarm_id]);
}
}
}
}
}
if ($uid && $status != 'G')
{
$event['participants'][$uid] = $event['participant_types'][$type][$id] =
calendar_so::combine_status($status,$quantity,$role);
}
}
break;
}
}
}
}
$preserv = array(
'view' => $view,
'hide_delete' => $hide_delete,
'edit_single' => $content['edit_single'],
'reference' => $content['reference'],
'recurrence' => $content['recurrence'],
'actual_date' => $content['actual_date'],
'no_popup' => $content['no_popup'],
'tabs' => $content['tabs'],
'template' => $content['template'],
);
$noerror=true;
//error_log(__METHOD__.$button.'#'.array2string($content['edit_single']).'#');
$ignore_conflicts = $status_reset_to_unknown = false;
switch((string)$button)
{
case 'ignore':
$ignore_conflicts = true;
$button = $event['button_was']; // save or apply
unset($event['button_was']);
break;
}
switch((string)$button)
{
case 'exception': // create an exception in a recurring event
$msg = $this->_create_exception($event,$preserv);
break;
case 'add_rdate':
if (!empty($event['recur_rdate']) && array_search($event['recur_rdate'], (array)$event['recur_rdates']) === false)
{
$event['recur_rdates'][] = $event['recur_rdate'];
usort($event['recur_rdates'], static function($a, $b) {
return $a <=> $b;
});
$msg = lang('Added recurrence on %1.', Api\DateTime::to($event['recur_rdate']));
}
break;
case 'edit':
// Going from add dialog to full edit dialog
unset($preserv['template']);
unset($event['template']);
Api\Json\Response::get()->call('egw.open', '', 'calendar', 'edit', $event);
Framework::window_close();
break;
case 'copy': // create new event with copied content, some content need to be unset to make a "new" event
unset($event['id']);
unset($event['uid']);
unset($event['reference']);
unset($preserv['reference']);
unset($event['recurrence']);
unset($preserv['recurrence']);
unset($event['recur_exception']);
unset($event['edit_single']); // in case it has been set
unset($event['modified']);
unset($event['modifier']);
unset($event['caldav_name']);
$event['owner'] = !(int)$event['owner'] || !$this->bo->check_perms(Acl::ADD,0,$event['owner']) ? $this->user : $event['owner'];
// Clear participant stati
foreach($event['participant_types'] as $type => &$participants)
{
foreach($participants as $id => &$p_response)
{
if($type == 'u' && $id == $event['owner']) continue;
calendar_so::split_status($p_response, $quantity, $role);
// if resource defines callback for status of new status (eg. Resources app acknowledges direct booking acl), call it
$status = isset($this->bo->resources[$type]['new_status']) ? ExecMethod($this->bo->resources[$type]['new_status'],$id) : 'U';
$p_response = calendar_so::combine_status($status,$quantity,$role);
}
}
// Copy alarms
if (is_array($event['alarm']))
{
$alarm_index = 0;
$alarms = $event['alarm'];
$event['alarm'] = Array();
foreach($alarms as $n => $alarm)
{
unset($alarm['cal_id']);
$alarm['id'] = $alarm_index++;
$event['alarm'][] = $alarm;
}
}
// Get links to be copied
// With no ID, $content['link_to']['to_id'] is used
$content['link_to'] = array('to_app' => 'calendar', 'to_id' => 0);
foreach(Link::get_links('calendar', $content['id']) as $link)
{
if ($link['app'] != Link::VFS_APPNAME)
{
Link::link('calendar', $content['link_to']['to_id'], $link['app'], $link['id'], $link['remark']);
}
elseif ($link['app'] == Link::VFS_APPNAME)
{
Link::link('calendar', $content['link_to']['to_id'], Link::VFS_APPNAME, array(
'tmp_name' => Link::vfs_path($link['app2'], $link['id2']).'/'.$link['id'],
'name' => $link['id'],
), $link['remark']);
}
}
unset($link);
$preserv['view'] = $preserv['edit_single'] = false;
$msg = lang('%1 copied - the copy can now be edited', lang(Link::get_registry('calendar','entry')));
$event['title'] = lang('Copy of:').' '.$event['title'];
break;
case 'mail':
case 'sendrequest':
case 'save':
case 'print':
case 'apply':
case 'infolog':
if ($event['id'] && !$this->bo->check_perms(Acl::EDIT,$event))
{
$msg = lang('Permission denied');
$button = '';
break;
}
if ($event['start'] > $event['end'])
{
$msg = lang('Error: Starttime has to be before the endtime !!!');
$button = '';
break;
}
if ($event['recur_type'] != MCAL_RECUR_NONE && $event['recur_enddate'] && $event['start'] > $event['recur_enddate'])
{
$msg = lang('repetition').': '.lang('Error: Starttime has to be before the endtime !!!');
$button = '';
break;
}
if ($event['recur_type'] != MCAL_RECUR_NONE && $event['end']-$event['start'] > calendar_rrule::recurrence_interval($event['recur_type'], $event['recur_interval']))
{
$msg = lang('Error: Duration of event longer then recurrence interval!');
$button = '';
break;
}
if (!$event['participants'])
{
$msg = lang('Error: no participants selected !!!');
$button = '';
break;
}
// if private event with ressource reservation is forbidden
if (!$event['public'] && $GLOBALS['egw_info']['server']['no_ressources_private'])
{
foreach (array_keys($event['participants']) as $uid)
{
if ($uid[0] == 'r') //ressource detection
{
$msg = lang('Error: ressources reservation in private events is not allowed!!!');
$button = '';
break 2; //break foreach and case
}
}
}
if ($content['edit_single']) // we edited a single event from a series
{
$event['reference'] = $event['id'];
$event['recurrence'] = $content['edit_single'];
unset($event['id']);
$conflicts = $this->bo->update($event,$ignore_conflicts,true,false,true,$messages,$content['no_notifications']);
if (!is_array($conflicts) && $conflicts)
{
// now we need to add the original start as recur-execption to the series
$recur_event = $this->bo->read($event['reference']);
$recur_event['recur_exception'][] = $content['edit_single'];
// check if we need to move the alarms, because they are next on that exception
foreach($recur_event['alarm'] as $id => $alarm)
{
if ($alarm['time'] == $content['edit_single'] - $alarm['offset'])
{
$rrule = calendar_rrule::event2rrule($recur_event, true);
foreach ($rrule as $time)
{
if ($content['edit_single'] < $time->format('ts'))
{
$alarm['time'] = $time->format('ts') - $alarm['offset'];
$this->bo->save_alarm($event['reference'], $alarm);
break;
}
}
}
}
unset($recur_event['start']); unset($recur_event['end']); // no update necessary
unset($recur_event['alarm']); // unsetting alarms too, as they cant be updated without start!
$this->bo->update($recur_event,true); // no conflict check here
// Save links
if($content['links'])
{
Link::link('calendar', $event['id'], $content['links']['to_id']);
}
if(Api\Json\Response::isJSONResponse())
{
// Sending null will trigger a removal of the original
// for that date
Api\Json\Response::get()->generic('data', array('uid' => 'calendar::'.$content['reference'].':'.$content['actual_date'], 'data' => null));
}
unset($recur_event);
unset($event['edit_single']); // if we further edit it, it's just a single event
unset($preserv['edit_single']);
}
else // conflict or error, we need to reset everything to the state before we tried to save it
{
$event['id'] = $event['reference'];
$event['reference'] = $event['recurrence'] = 0;
$event['uid'] = $content['uid'];
$preserv['apply_to_future_exceptions'] = $content['apply_to_future_exceptions'] ?? null;
}
$update_type = 'edit';
}
else // we edited a non-reccuring event or the whole series
{
if (($old_event = $this->bo->read($event['id'])))
{
if ($event['recur_type'] != MCAL_RECUR_NONE)
{
$update_type = 'edit';
// we edit a existing series event
if ($event['start'] != $old_event['start'] ||
$event['whole_day'] != $old_event['whole_day'] ||
$event['end'] != $old_event['end'])
{
// calculate offset against old series start or clicked recurrance,
// depending on which is smaller
$offset = $event['start'] - $old_event['start'];
if (abs($offset) > abs($off2 = $event['start'] - $event['actual_date']))
{
$offset = $off2;
}
$msg = $this->_break_recurring($event, $old_event, $event['actual_date'] + $offset,$content['no_notifications']);
if($msg)
{
$noerror = false;
}
}
}
else
{
if ($old_event['start'] != $event['start'] ||
$old_event['end'] != $event['end'] ||
$event['whole_day'] != $old_event['whole_day'])
{
// check if we need to move the alarms, because they are relative
$this->bo->check_move_alarms($event, $old_event);
}
}
}
// Update alarm (default alarm or set alarm before change start date)
// for new event.
elseif (is_array($event['alarm']) && ($event['alarm'][1]['time'] + $event['alarm'][1]['offset'] != $event['start']))
{
$this->bo->check_move_alarms($event);
}
// Adding participants needs to be done as an edit, in case we
// have participants visible in seperate calendars
if(is_array($old_event['participants']) && count(array_diff_key($event['participants'], $old_event['participants'])))
{
$update_type = 'edit';
}
// Changing category may affect event filtering
if($this->cal_prefs['saved_states']['cat_id'] && $old_event['category'] != $event['category'])
{
$update_type = 'edit';
}
$conflicts = $this->bo->update($event,$ignore_conflicts,true,false,true,$messages,$content['no_notifications']);
unset($event['ignore']);
}
if (is_array($conflicts))
{
$event['button_was'] = $button; // remember for ignore
$preserv['apply_changes_to_exceptions'] = $content['apply_changes_to_exceptions'] ?? null;
$preserv['no_notifications'] = $content['no_notifications'] ?? null;
return $this->conflicts($event,$conflicts,$preserv);
}
// check if we should apply the changes to the exceptions
if (!empty($content['apply_changes_to_exceptions']))
{
$this->apply_changes_to_exceptions($event, $messages, !empty($content['no_notifications']));
}
// Event spans multiple days, need an edit to make sure they all get updated
// We could check old date, as removing from days could still be an update
if(date('Ymd', $event['start']) != date('Ymd', $event['end']))
{
$update_type = 'edit';
}
// check if there are messages from update, eg. removed participants or Api\Categories because of missing rights
if ($messages)
{
$msg .= ($msg ? ', ' : '').implode(', ',$messages);
}
if ($conflicts === 0)
{
$msg .= ($msg ? ', ' : '') .lang('Error: the entry has been updated since you opened it for editing!').'
'.
lang('Copy your changes to the clipboard, %1reload the entry%2 and merge them.','','');
$noerror = false;
}
elseif ($conflicts > 0)
{
// series moved by splitting in two --> move alarms and exceptions
if ($old_event && $old_event['id'] != $event['id'])
{
$update_type = 'edit';
foreach ((array)$old_event['alarms'] as $alarm)
{
// check if alarms still needed in old event, if not delete it
$event_time = $alarm['time'] + $alarm['offset'];
if ($event_time >= $this->bo->now_su)
{
$this->bo->delete_alarm($alarm['id']);
}
$alarm['time'] += $offset;
unset($alarm['id']);
// if alarm would be in the past (eg. event moved back) --> move to next possible recurrence
if ($alarm['time'] < $this->bo->now_su)
{
if (($next_occurrence = $this->bo->read($event['id'], $this->bo->now_su+$alarm['offset'], true)))
{
$alarm['time'] = $next_occurrence['start'] - $alarm['offset'];
}
else
{
$alarm = false; // no (further) recurence found --> ignore alarm
}
}
// alarm is currently on a previous recurrence --> set for first recurrence of new series
elseif ($event_time < $event['start'])
{
$alarm['time'] = $event['start'] - $alarm['offset'];
}
if ($alarm)
{
$alarm['id'] = $this->bo->save_alarm($event['id'], $alarm);
$event['alarm'][$alarm['id']] = $alarm;
}
}
// attach all future exceptions to the new series
$events =& $this->bo->search(array(
'query' => array('cal_uid' => $old_event['uid']),
'filter' => 'owner', // return all possible entries
'daywise' => false,
'date_format' => 'ts',
));
foreach ((array)$events as $exception)
{
if ($exception['recurrence'] > $this->bo->now_su)
{
$exception['recurrence'] += $offset;
$exception['reference'] = $event['id'];
$exception['uid'] = $event['uid'];
$msg = null;
$this->bo->update($exception, true, true, true, true, $msg, $content['no_notifications']);
}
}
}
$message = lang('Event saved');
if ($status_reset_to_unknown)
{
foreach((array)$event['participants'] as $uid => $status)
{
if ($uid[0] != 'c' && $uid[0] != 'e' && $uid != $this->bo->user)
{
calendar_so::split_status($status,$q,$r);
$status = calendar_so::combine_status('U',$q,$r);
$this->bo->set_status($event['id'], $uid, $status, 0, true);
}
}
$message .= lang(', stati of participants reset');
}
$response = Api\Json\Response::get();
if($response && $update_type != 'delete' && !$client_updated)
{
$client_updated = $this->update_client($event['id'], null, is_array($old_event) ? $old_event : []);
}
$msg = $message . ($msg ? ', ' . $msg : '');
Framework::refresh_opener($msg, 'calendar', $event['id'], $client_updated ? ($event['recur_type'] ? 'edit' : $update_type) : 'delete');
// writing links for new entry, existing ones are handled by the widget itself
if (!$content['id'] && is_array($content['link_to']['to_id']))
{
Link::link('calendar',$event['id'],$content['link_to']['to_id']);
}
}
else
{
$msg = ($msg ? $msg.'
':'') . lang('Error: saving the event !!!');
}
break;
case 'cancel':
if($content['cancel_needs_refresh'])
{
Framework::refresh_opener($msg, 'calendar');
}
break;
case 'delete': // delete of event (regular or series)
$exceptions_kept = null;
if ($this->bo->delete($event['id'], (int)$content['edit_single'], false, $event['no_notifications'],
$content['delete_exceptions'] == 'true', $exceptions_kept))
{
if ($event['recur_type'] != MCAL_RECUR_NONE && $content['reference'] == 0 && !$content['edit_single'])
{
$msg = lang('Series deleted');
if ($exceptions_kept) $msg .= lang(', exceptions preserved');
}
else
{
$msg = lang('Event deleted');
}
}
break;
case 'freetime':
// the "click" has to be in onload, to make sure the button is already created
$event['button_was'] = $button;
break;
case 'add_alarm':
$time = $content['start'];
$offset = $time - $content['new_alarm']['date'];
if ($event['recur_type'] != MCAL_RECUR_NONE &&
($next_occurrence = $this->bo->read($event['id'], $this->bo->now_su + $offset, true)) &&
$time < $next_occurrence['start'])
{
$content['new_alarm']['date'] = $next_occurrence['start'] - $offset;
}
// Avoid duplicates
foreach($content['alarm'] as $key => $alarm)
{
if($alarm['offset'] == $offset && (
($alarm['all'] && $content['new_alarm']['owner'] == 0) ||
(!$alarm['all'] && $alarm['owner'] == $content['new_alarm']['owner'])
))
{
break 2;
}
}
if ($this->bo->check_perms(Acl::EDIT,!$content['new_alarm']['owner'] ? $event : 0,$content['new_alarm']['owner']))
{
$alarm = array(
'offset' => $offset,
'time' => $content['new_alarm']['date'],
'all' => !$content['new_alarm']['owner'],
'owner' => $content['new_alarm']['owner'] ? $content['new_alarm']['owner'] : $this->user,
);
if ($alarm['time'] < $this->bo->now_su)
{
$msg = lang("Can't add alarms in the past !!!");
}
elseif ($event['id']) // save the alarm immediatly
{
if (($alarm_id = $this->bo->save_alarm($event['id'],$alarm)))
{
$alarm['id'] = $alarm_id;
$event['alarm'][$alarm_id] = $alarm;
$msg = lang('Alarm added');
Framework::refresh_opener($msg,'calendar', $event['id'], 'update');
}
else
{
$msg = lang('Error adding the alarm');
}
}
else
{
for($alarm['id']=1; isset($event['alarm'][$alarm['id']]); $alarm['id']++) {} // get a temporary non-conflicting, numeric id
$event['alarm'][$alarm['id']] = $alarm;
}
}
else
{
$msg = lang('Permission denied');
}
break;
}
// add notification-errors, if we have some
if (($notification_errors = notifications::errors(true)))
{
$msg .= ($msg ? "\n" : '').implode("\n", $notification_errors);
}
// New event, send data before updating so it's there
$response = Api\Json\Response::get();
if($response && !$content['id'] && $event['id'] && !$client_updated)
{
$client_updated = $this->update_client($event['id']);
}
if (in_array($button,array('cancel','save','delete','delete_exceptions','delete_keep_exceptions')) && $noerror)
{
if ($content['lock_token']) // remove an existing lock
{
Vfs::unlock(Vfs::app_entry_lock_path('calendar',$content['id']),$content['lock_token'],false);
}
if ($content['no_popup'])
{
Egw::redirect_link('/index.php',array(
'menuaction' => 'calendar.calendar_uiviews.index',
'msg' => $msg,
'ajax' => 'true'
));
}
if (in_array($button,array('delete_exceptions','delete_keep_exceptions')) || $content['recur_type'] && $button == 'delete')
{
Framework::refresh_opener($msg,'calendar');
}
else
{
Framework::refresh_opener($msg, 'calendar',
$event['id'] . ($content['edit_single'] ? ':' . (int)$content['edit_single'] : '' ),
$button == 'save' && $client_updated ? ($content['id'] ? $update_type : 'add') : 'delete'
);
}
Framework::window_close();
}
unset($event['no_notifications']);
return $this->edit($event,$preserv,$msg,$event['id'] ? $event['id'] : $content['link_to']['to_id']);
}
/**
* Create an exception from the clicked event
*
* It's not stored to the DB unless the user saves it!
*
* @param array &$event
* @param array &$preserv
* @return string message that exception was created
*/
function _create_exception(&$event,&$preserv)
{
// In some cases where the user makes the first day an exception, actual_date may be missing
$preserv['actual_date'] = $preserv['actual_date'] ? $preserv['actual_date'] : $event['start'];
$event['end'] += $preserv['actual_date'] - $event['start'];
$event['reference'] = $preserv['reference'] = $event['id'];
$event['recurrence'] = $preserv['recurrence'] = $preserv['actual_date'];
$event['start'] = $preserv['edit_single'] = $preserv['actual_date'];
$event['recur_type'] = MCAL_RECUR_NONE;
foreach(array('recur_enddate','recur_interval','recur_exception','recur_data', 'recur_rdates') as $name)
{
unset($event[$name]);
}
// add all alarms as new alarms to execption
$event['alarm'] = array_values((array)$event['alarm']);
foreach($event['alarm'] as &$alarm)
{
unset($alarm['uid'], $alarm['id'], $alarm['time']);
}
// Copy links
if(!is_array($event['link_to'])) $event['link_to'] = array();
$event['link_to']['to_app'] = 'calendar';
$event['link_to']['to_id'] = 0;
foreach(Link::get_links($event['link_to']['to_app'], $event['id']) as $link)
{
if(!$link['id']) continue;
if ($link['app'] != Link::VFS_APPNAME)
{
Link::link('calendar', $event['link_to']['to_id'], $link['app'], $link['id'], $link['remark']);
}
elseif ($link['app'] == Link::VFS_APPNAME)
{
Link::link('calendar', $event['link_to']['to_id'], Link::VFS_APPNAME, array(
'tmp_name' => Link::vfs_path($link['app2'], $link['id2']).'/'.$link['id'],
'name' => $link['id'],
), $link['remark']);
}
}
$event['links'] = $event['link_to'];
if($this->bo->check_perms(Acl::EDIT,$event))
{
return lang('Save event as exception - Delete single occurrence - Edit status or alarms for this particular day');
}
return lang('Edit status or alarms for this particular day');
}
/**
* Since we cannot change recurrences in the past, break a recurring
* event (that starts in the past), and create a new event.
*
* $old_event will be ended (if needed) and $event will be modified with the
* new start date and time. It is not allowed to edit events in the past,
* so if $as_of_date is in the past, it will be adjusted to today.
*
* @param array &$event Event to be modified
* @param array $old_event Unmodified (original) event, as read from the database
* @param date $as_of_date If provided, the break will be done as of this
* date instead of today
* @param boolean $no_notifications Toggle notifications to participants
*
* @return false or error message
*/
function _break_recurring(&$event, $old_event, $as_of_date = null, $no_notifications = true)
{
$msg = false;
if(!$as_of_date )
{
$as_of_date = time();
}
//error_log(__METHOD__ . Api\DateTime::to($old_event['start']) . ' -> '. Api\DateTime::to($event['start']) . ' as of ' . Api\DateTime::to($as_of_date));
if(!($next_occurrence = $this->bo->read($event['id'], $this->bo->now_su + 1, true)))
{
$msg = lang("Error: You can't shift a series from the past!");
return $msg;
}
// Hold on to this in case something goes wrong
$orig_event = $event;
$offset = $event['start'] - $old_event['start'];
$duration = $event['duration'] ? $event['duration'] : $event['end'] - $event['start'];
// base start-date of new series on actual / clicked date
$event['start'] = $as_of_date ;
if (Api\DateTime::to($old_event['start'],'Ymd') < Api\DateTime::to($as_of_date,'Ymd') ||
// Adjust for requested date in the past
Api\DateTime::to($as_of_date,'ts') < time()
)
{
// copy event by unsetting the id(s)
unset($event['id']);
unset($event['uid']);
unset($event['caldav_name']);
$event['alarm'] = array();
// set enddate of existing event
$rriter = calendar_rrule::event2rrule($old_event, true);
$rriter->rewind();
$last = $rriter->current();
do
{
$rriter->next_no_exception();
$occurrence = $rriter->current();
}
while ($rriter->valid() && (
Api\DateTime::to($occurrence, 'ts') <= time() ||
Api\DateTime::to($occurrence, 'Ymd') < Api\DateTime::to($as_of_date,'Ymd')
) && ($last = $occurrence));
// Make sure as_of_date is still valid, may have to move forward
if(Api\DateTime::to($as_of_date,'ts') < Api\DateTime::to($last,'ts') ||
Api\DateTime::to($as_of_date, 'Ymd') == Api\DateTime::to($last, 'Ymd'))
{
$event['start'] = Api\DateTime::to($rriter->current(),'ts') + $offset;
}
//error_log(__METHOD__ ." Series should end at " . Api\DateTime::to($last) . " New series starts at " . Api\DateTime::to($event['start']));
if ($duration)
{
$event['end'] = $event['start'] + $duration;
}
elseif($event['end'] < $event['start'])
{
$event['end'] = $old_event['end'] - $old_event['start'] + $event['start'];
}
//error_log(__LINE__.": event[start]=$event[start]=".Api\DateTime::to($event['start']).", duration={$duration}, event[end]=$event[end]=".Api\DateTime::to($event['end']).", offset=$offset\n");
$event['participants'] = $old_event['participants'];
foreach ($old_event['recur_exception'] as $key => $exdate)
{
if ($exdate > Api\DateTime::to($last,'ts'))
{
//error_log("Moved exception on " . Api\DateTime::to($exdate));
unset($old_event['recur_exception'][$key]);
$event['recur_exception'][$key] += $offset;
}
else
{
//error_log("Kept exception on ". Api\DateTime::to($exdate));
unset($event['recur_exception'][$key]);
}
}
$last->setTime(0, 0, 0);
$old_event['recur_enddate'] = Api\DateTime::to($last, 'ts');
$dummy = null;
if (!$this->bo->update($old_event,true,true,false,true,$dummy, $no_notifications))
{
$msg .= ($msg ? ', ' : '') .lang('Error: the entry has been updated since you opened it for editing!').'
'.
lang('Copy your changes to the clipboard, %1reload the entry%2 and merge them.','','');
$event = $orig_event;
}
}
$event['start'] = Api\DateTime::to($event['start'],'ts');
return $msg;
}
/**
* return javascript to open mail compose window with preset content to mail all participants
*
* @param array $event
* @param boolean $added
* @return string javascript window.open command
*/
function ajax_custom_mail($event,$added,$asrequest=false)
{
$to = array();
foreach($event['participants'] as $uid => $status)
{
//error_log(__METHOD__.__LINE__.' '.$uid.':'.array2string($status));
if (empty($status)) continue;
if(!is_array($status))
{
$quantity = $role = null;
calendar_so::split_status($status,$quantity,$role);
$status = array(
'status' => $status,
'uid' => $uid,
);
}
$toadd = '';
if ((isset($status['status']) && $status['status'] == 'R') || (isset($status['uid']) && $status['uid'] == $this->user)) continue;
if (isset($status['uid']) && is_numeric($status['uid']) && $GLOBALS['egw']->accounts->get_type($status['uid']) == 'u')
{
if (!($email = $GLOBALS['egw']->accounts->id2name($status['uid'],'account_email'))) continue;
$toadd = $GLOBALS['egw']->accounts->id2name($status['uid'], 'account_firstname').' '.
$GLOBALS['egw']->accounts->id2name($status['uid'], 'account_lastname').' <'.$email.'>';
if (!in_array($toadd,$to)) $to[] = $toadd;
}
elseif ($uid < 0)
{
foreach($GLOBALS['egw']->accounts->members($uid,true) as $uid)
{
if (!($email = $GLOBALS['egw']->accounts->id2name($uid,'account_email'))) continue;
$toadd = $GLOBALS['egw']->accounts->id2name($uid, 'account_firstname').' '.
$GLOBALS['egw']->accounts->id2name($uid, 'account_lastname').' <'.$email.'>';
// dont add groupmembers if they already rejected the event, or are the current user
if (!in_array($toadd,$to) && ($event['participants'][$uid] !== 'R' && $uid != $this->user)) $to[] = $toadd;
}
}
elseif(!empty($status['uid'])&& !is_numeric(substr($status['uid'],0,1)) && ($info = $this->bo->resource_info($status['uid'])))
{
$to[] = $info['email'];
//error_log(__METHOD__.__LINE__.array2string($to));
}
elseif(!is_numeric(substr($uid,0,1)) && ($info = $this->bo->resource_info($uid)))
{
$to[] = $info['email'];
//error_log(__METHOD__.__LINE__.array2string($to));
}
}
// prefer event description over standard notification text
if (empty($event['description']))
{
list(,$body) = $this->bo->get_update_message($event,$added ? MSG_ADDED : MSG_MODIFIED); // update-message is in TZ of the user
}
else
{
$body = $event['description'];
}
// respect user preference about html mail
if ($GLOBALS['egw_info']['user']['preferences']['mail']['composeOptions'] != 'text')
{
$body = '
'.$body.''; } //error_log(__METHOD__.print_r($event,true)); $boical = new calendar_ical(); // we need to pass $event[id] so iCal class reads event again, // as event is in user TZ, but iCal class expects server TZ! $ics = $boical->exportVCal(array($event['id']),'2.0','REQUEST',false); $ics_file = tempnam($GLOBALS['egw_info']['server']['temp_dir'],'ics'); if(($f = fopen($ics_file,'w'))) { fwrite($f,$ics); fclose($f); } //error_log(__METHOD__.__LINE__.array2string($to)); $vars = array( 'menuaction' => 'mail.mail_compose.compose', 'mimeType' => $GLOBALS['egw_info']['user']['preferences']['mail']['composeOptions'] != 'text' ? 'html' : 'plain', 'preset[subject]' => $event['title'], 'preset[body]' => $body, 'preset[name]' => 'event.ics', 'preset[file]' => $ics_file, 'preset[type]' => 'text/calendar'.($asrequest?'; method=REQUEST':''), 'preset[size]' => filesize($ics_file), ); $vars[$asrequest?'preset[to]': 'preset[bcc]'] = $to; if ($asrequest) $vars['preset[msg]'] = lang('You attempt to mail a meetingrequest to the recipients above. Depending on the client this mail is opened with, the recipient may or may not see the mailbody below, but only see the meeting request attached.'); $response = Api\Json\Response::get(); $response->call('app.calendar.custom_mail', $vars); } /** * Get title of a uid / calendar participant * * @param int|string $uid * @return string */ public function get_title($uid) { if (is_numeric($uid)) { return Api\Accounts::username($uid); } elseif (($info = $this->bo->resource_info($uid))) { if ($uid[0] == 'e' && $info['name'] && $info['name'] != $info['email']) { return $info['name'].' <'.$info['email'].'>'; } return $info['name'] ? $info['name'] : $info['email']; } return '#'.$uid; } /** * Compare two uid by there title * * @param int|string $uid1 * @param int|string $uid2 * @return int see strnatcasecmp */ public function uid_title_cmp($uid1, $uid2) { return strnatcasecmp($this->get_title($uid1), $this->get_title($uid2)); } /** * Edit a calendar event * * @param array $event Event to edit, if not $_GET['cal_id'] contains the event-id * @param array $preserv following keys: * view boolean view-mode, if no edit-access we automatic fallback to view-mode * hide_delete boolean hide delete button * no_popup boolean use a popup or not * edit_single int timestamp of single event edited, unset/null otherwise * @param string $msg ='' msg to display * @param mixed $link_to_id ='' from or for the link-widget * @param string $msg_type =null default automatic detect, if it contains "error" */ function edit($event=null,$preserv=null,$msg='',$link_to_id='',$msg_type=null) { $sel_options = array( 'recur_type' => &$this->bo->recur_types, 'status' => $this->bo->verbose_status, 'duration' => $this->durations, 'role' => $this->bo->roles, 'new_alarm[options]' => $this->bo->alarms + array(0 => lang('Custom')), 'action' => array( 'copy' => array('label' => 'Copy', 'title' => 'Copy this event'), 'ical' => array('label' => 'Export', 'title' => 'Download this event as iCal'), 'print' => array('label' => 'Print', 'title' => 'Print this event'), 'infolog' => array('label' => 'InfoLog', 'title' => 'Create an InfoLog from this event'), 'mail' => array('label' => 'Mail all participants', 'title' => 'Compose a mail to all participants after the event is saved'), 'sendrequest' => array('label' => 'Meetingrequest to all participants', 'title' => 'Send meetingrequest to all participants after the event is saved'), ), 'participants[notify_externals]' => [ 'yes' => lang('Yes').', '.lang('Notify all externals (non-users) about this event'), 'no' => lang('No').', '.lang('Do NOT notify externals (non-users) about this event'), 'never' => lang('Never notify externals (non-users) about events I create'), 'add_cancel' => lang('Always').', '.lang('on invitation / cancellation only'), 'time_change_4h' => lang('Always').', '.lang('on time change of more than 4 hours too'), 'time_change' => lang('Always').', '.lang('on any time change too'), 'modifications' => lang('Always').', '.lang('on all modification, but responses'), 'responses' => lang('Always').', '.lang('on participant responses too'), ], ); unset($sel_options['status']['G']); if (!is_array($event)) { $preserv = array( 'no_popup' => !empty($_GET['no_popup']), 'template' => $_GET['template'] ?? (isset($_REQUEST['print']) ? 'calendar.print' : 'calendar.edit'), ); if(!isset($_REQUEST['print']) && !empty($preserv['template']) && $this->cal_prefs['new_event_dialog'] == 'edit') { // User wants full thing unset($preserv['template']); } $cal_id = (int) $_GET['cal_id']; if($_GET['action']) { $event = $this->bo->read($cal_id); $event['action'] = $_GET['action']; unset($event['participants']); return $this->process_edit($event); } // vfs url if (!empty($_GET['ical_url']) && parse_url($_GET['ical_url'], PHP_URL_SCHEME) == 'vfs') { $_GET['ical_vfs'] = parse_url($_GET['ical_url'], PHP_URL_PATH); } // vfs path if (!empty($_GET['ical_vfs']) && (!Vfs::file_exists($_GET['ical_vfs']) || !($_GET['ical'] = file_get_contents(Vfs::PREFIX.$_GET['ical_vfs'])))) { //error_log(__METHOD__."() Error: importing the iCal: vfs file not found '$_GET[ical_vfs]'!"); $msg = lang('Error: importing the iCal').': '.lang('VFS file not found').': '.$_GET['ical_vfs']; $event =& $this->default_add_event(); } if (!empty($_GET['ical_data']) && !($_GET['ical'] = Link::get_data($_GET['ical_data']))) { //error_log(__METHOD__."() Error: importing the iCal: data not found '$_GET[ical_data]'!"); $msg = lang('Error: importing the iCal').': '.lang('Data not found').': '.$_GET['ical_data']; $event =& $this->default_add_event(); } if (!empty($_GET['ical'])) { $ical = new calendar_ical(); if (!($events = $ical->icaltoegw($_GET['ical'], '', 'utf-8'))) { error_log(__METHOD__."('$_GET[ical]') error parsing iCal!"); $msg = lang('Error: importing the iCal'); $event =& $this->default_add_event(); } else { if (count($events) > 1) { $msg = lang('%1 events in iCal file, only first one imported and displayed!', count($events)); $msg_type = 'notice'; // no not hide automatic } // as icaltoegw returns timestamps in server-time, we have to convert them here to user-time $this->bo->db2data($events, 'ts'); $event = array_shift($events); if (($existing_event = $this->bo->read($event['uid']))) { $event = $existing_event; } else { $event['participant_types'] = array(); foreach($event['participants'] as $uid => $status) { $user_type = $user_id = null; calendar_so::split_user($uid, $user_type, $user_id); $event['participant_types'][$user_type][$user_id] = $status; } } //error_log(__METHOD__."(...) parsed as ".array2string($event)); } unset($ical); } elseif (!$cal_id || $cal_id && !($event = $this->bo->read($cal_id))) { if ($cal_id) { if (!$preserv['no_popup']) { Framework::window_close(lang('Permission denied')); } else { $GLOBALS['egw']->framework->render(' \n",null,true); exit(); } } $event =& $this->default_add_event(); } else { $preserv['actual_date'] = $event['start']; // remember the date clicked if ($event['recur_type'] != MCAL_RECUR_NONE) { if (empty($event['whole_day'])) { $date = $_GET['date']; } else { $date = $this->bo->so->startOfDay(new Api\DateTime($_GET['date'], Api\DateTime::$user_timezone)); $date->setUser(); } $event = $this->bo->read($cal_id, $date, true); $preserv['actual_date'] = $event['start']; // remember the date clicked if ($_GET['exception']) { $msg = $this->_create_exception($event,$preserv); } else { $event = $this->bo->read($cal_id, null, true); } } } // set new start and end if given by $_GET if(isset($_GET['start'])) { $event['start'] = Api\DateTime::to($_GET['start'],'ts'); } if(isset($_GET['end'])) { $event['end'] = Api\DateTime::to($_GET['end'],'ts'); } if(isset($_GET['non_blocking'])) { $event['non_blocking'] = (bool)$_GET['non_blocking']; } // check if the event is the whole day $start = $this->bo->date2array($event['start']); $end = $this->bo->date2array($event['end']); $event['whole_day'] = !$start['hour'] && !$start['minute'] && $end['hour'] == 23 && $end['minute'] == 59; $link_to_id = $event['id']; if (!$event['id'] && isset($_REQUEST['link_app']) && isset($_REQUEST['link_id'])) { $link_ids = is_array($_REQUEST['link_id']) ? $_REQUEST['link_id'] : array($_REQUEST['link_id']); foreach(is_array($_REQUEST['link_app']) ? $_REQUEST['link_app'] : array($_REQUEST['link_app']) as $n => $link_app) { $link_id = $link_ids[$n]; if(!preg_match('/^[a-z_0-9-]+:[:a-z_0-9-]+$/i',$link_app.':'.$link_id)) // guard against XSS { continue; } if(!$n) { $event['title'] = Link::title($link_app,$link_id); // ask first linked app via "calendar_set" hook, for further data to set, incl. links if (($set = Api\Hooks::single($event+array('location'=>'calendar_set','entry_id'=>$link_id),$link_app))) { foreach((array)$set['link_app'] as $i => $l_app) { if (($l_id=$set['link_id'][$i])) Link::link('calendar',$event['link_to']['to_id'],$l_app,$l_id); } unset($set['link_app']); unset($set['link_id']); $event = array_merge($event,$set); } } Link::link('calendar',$link_to_id,$link_app,$link_id); } } } // set videoconference from existence of url in cfs if (!isset($event['videoconference']) && !empty($event['##videoconference'])) { $event['videoconference'] = !empty($event['##videoconference']); } $etpl = new Etemplate(); if (!$etpl->read($preserv['template'])) { $etpl->read($preserv['template'] = 'calendar.edit'); } $view = $preserv['view'] = $preserv['view'] || $event['id'] && !$this->bo->check_perms(Acl::EDIT,$event); //echo "view=$view, event="; _debug_array($event); // shared locking of entries to edit if (!$view && ($locktime = $GLOBALS['egw_info']['server']['Lock_Time_Calender']) && $event['id']) { $lock_path = Vfs::app_entry_lock_path('calendar',$event['id']); $lock_owner = 'mailto:'.$GLOBALS['egw_info']['user']['account_email']; $scope = 'shared'; $type = 'write'; if (($preserv['lock_token'] = $event['lock_token'])) // already locked --> refresh the lock { Vfs::lock($lock_path,$preserv['lock_token'],$locktime,$lock_owner,$scope,$type,true,false); } if (($lock = Vfs::checkLock($lock_path)) && $lock['owner'] != $lock_owner) { $msg .= ' '.lang('This entry is currently opened by %1!', (($lock_uid = $GLOBALS['egw']->accounts->name2id(substr($lock['owner'],7),'account_email')) ? Api\Accounts::username($lock_uid) : $lock['owner'])); } elseif($lock) { $preserv['lock_token'] = $lock['token']; } elseif(Vfs::lock($lock_path,$preserv['lock_token'],$locktime,$lock_owner,$scope,$type,false,false)) { //We handle AJAX_REQUEST in client-side for unlocking the locked entry, in case of closing the entry by X button or close button } else { $msg .= ' '.lang("Can't aquire lock!"); // eg. an exclusive lock via CalDAV ... $view = true; } } $content = array_merge($event,array( 'cal_id' => $event['id'], 'link_to' => array( 'to_id' => $link_to_id, 'to_app' => 'calendar', ), 'edit_single' => $preserv['edit_single'], // need to be in content too, as it is used in the template 'tabs' => $preserv['tabs'], 'view' => $view, 'query_delete_exceptions' => (int)($event['recur_type'] && $event['recur_exception']), )); Framework::message($msg, $msg_type); $content['duration'] = $content['end'] - $content['start']; if (isset($this->durations[$content['duration']])) $content['end'] = ''; $readonlys = $content['participants'] = $preserv['participants'] = array(); // preserve some ui elements, if set eg. under error-conditions foreach(array('quantity','resource','role') as $n) { if (isset($event['participants'][$n])) $content['participants'][$n] = $event['participants'][$n]; } $this->setup_participants($event,$content,$sel_options, $readonlys,$preserv,$view); $content['participants']['status_date'] = $preserv['actual_date']; // set notify_externals in participants from cfs if(!empty($event['##notify_externals'])) { $content['participants']['notify_externals'] = $event['##notify_externals']; } else { $content['participants']['notify_externals'] = $this->cal_prefs['notify_externals']; } $preserved = array_merge($preserv, $content); // Don't preserve link_to, it causes problems if user removes a link unset($preserved['link_to']); $event['new_alarm']['options'] = $content['new_alarm']['options']; if($event['alarm']) { // makes keys of the alarm-array starting with 1 $content['alarm'] = array(false); foreach(array_values($event['alarm']) as $id => $alarm) { if(!$alarm['all'] && !$this->bo->check_perms(Acl::READ, 0, $alarm['owner'])) { continue; // no read rights to the calendar of the alarm-owner, dont show the alarm } $alarm['all'] = (int) $alarm['all']; // fix alarm time in case of alread run alarms, where the time will be their keep_time / when they will be cleaned up otherwise $alarm['time'] = $event['start'] - $alarm['offset']; $after = false; if($alarm['offset'] < 0) { $after = true; $alarm['offset'] = -1 * $alarm['offset']; } $days = (int) ($alarm['offset'] / DAY_s); $hours = (int) (($alarm['offset'] % DAY_s) / HOUR_s); $minutes = (int) (($alarm['offset'] % HOUR_s) / 60); $label = array(); if ($days) $label[] = $days.' '.lang('days'); if ($hours) $label[] = $hours.' '.lang('hours'); if ($minutes) $label[] = $minutes.' '.lang('Minutes'); if (!$label) { $alarm['offset'] = lang('at start of the event'); } else { $alarm['offset'] = implode(', ',$label) . ' ' . ($after ? lang('after') : lang('before')); } $content['alarm'][] = $alarm; $readonlys['alarm[delete_alarm]['.$alarm['id'].']'] = !$this->bo->check_perms(Acl::EDIT,$alarm['all'] ? $event : 0,$alarm['owner']); } if (count($content['alarm']) == 1) { $content['alarm'] = false; // no alarms added to content array } } else { $content['alarm'] = false; } $content['msg'] = $msg; if ($view) { $readonlys['__ALL__'] = true; // making everything readonly, but widgets set explicitly to false $readonlys['button[cancel]'] = $readonlys['action'] = $readonlys['before_after'] = $readonlys['button[add_alarm]'] = $readonlys['new_alarm[owner]'] = $readonlys['new_alarm[options]'] = $readonlys['new_alarm[date]'] = false; $content['participants']['no_add'] = true; if(!$event['whole_day']) { $etpl->setElementAttribute('whole_day', 'disabled', true); } // respect category permissions if(!empty($event['category'])) { $content['category'] = $this->categories->check_list(Acl::READ, $event['category']); } } else { $readonlys['recur_exception'] = true; if ($event['recur_type'] != MCAL_RECUR_NONE) { $readonlys['recur_exception'] = empty($content['recur_exception']); // otherwise we get a delete button //$onclick =& $etpl->get_cell_attribute('button[delete]','onclick'); //$onclick = str_replace('Delete this event','Delete this series of recuring events',$onclick); } elseif ($event['reference'] != 0) { $readonlys['recur_type'] = $readonlys['recur_enddate'] = true; $readonlys['recur_interval'] = $readonlys['recur_data'] = true; } } if ($content['category'] && !is_array($content['category'])) { $content['category'] = explode(',', $content['category']); } // disabling the custom fields tab, if there are none $readonlys['tabs'] = array( 'custom' => !count($this->bo->customfields), 'participants' => $this->accountsel->account_selection == 'none', 'history' => !$event['id'], ); if (!isset($GLOBALS['egw_info']['user']['apps']['mail'])) // no mail without mail-app { unset($sel_options['action']['mail']); unset($sel_options['action']['sendmeetingrequest']); } if (!$event['id']) // no ical export for new (not saved) events { $readonlys['action'] = true; } if (!($readonlys['button[exception]'] = !$this->bo->check_perms(Acl::EDIT,$event) || $event['recur_type'] == MCAL_RECUR_NONE || ($event['recur_enddate'] &&$event['start'] > $event['recur_enddate']))) { $content['exception_label'] = lang('Add %1', $this->bo->long_date(max($preserved['actual_date'], $event['start']))); } $readonlys['button[delete]'] = !$event['id'] || $preserved['hide_delete'] || !$this->bo->check_perms(Acl::DELETE, $event); if($readonlys['action']) { // Hide action entirely, not just readonly $content['action_class'] = 'hideme'; } if(!$event['id'] || $this->bo->check_perms(Acl::EDIT, $event)) // new event or edit rights to the event ==> allow to add alarm for all users { $sel_options['owner'][0] = lang('All participants'); } if(isset($event['participant_types']['u'][$this->user]) || isset($event['participant_types'][''][$this->user])) { $sel_options['owner'][$this->user] = $this->bo->participant_name($this->user); } foreach((array) $event['participant_types']['u'] as $uid => $status) { if ($uid != $this->user && $status != 'R' && $this->bo->check_perms(Acl::EDIT,0,$uid)) { $sel_options['owner'][$uid] = $this->bo->participant_name($uid); } } $content['no_add_alarm'] = empty($sel_options['owner']) || !count((array)$sel_options['owner']); // no rights to set any alarm if (!$event['id']) { $etpl->set_cell_attribute('button[new_alarm]','type','checkbox'); } if ($preserved['no_popup']) { // If not a popup, load the normal calendar interface on cancel $etpl->set_cell_attribute('button[cancel]','onclick','app.calendar.linkHandler(\'index.php?menuaction=calendar.calendar_uiviews.index&ajax=true\')'); } // Allow admins to restore deleted events if ($event['deleted']) { $content['deleted'] = $preserved['deleted'] = null; $etpl->set_cell_attribute('button[save]', 'label', 'Recover'); $etpl->set_cell_attribute('button[apply]', 'disabled', true); } // Allow users to prevent notifications? $etpl->set_cell_attribute('no_notifications', 'disabled', !$GLOBALS['egw_info']['server']['calendar_allow_no_notification']); // Setup history tab $this->setup_history($content, $sel_options); $GLOBALS['egw_info']['flags']['app_header'] = lang('calendar') . ' - ' . (!$event['id'] ? lang('Add') : ($view ? ($content['edit_single'] ? lang('View exception') : ($content['recur_type'] ? lang('View series') : lang('View'))) : ($content['edit_single'] ? lang('Create exception') : ($content['recur_type'] ? lang('Edit series') : lang('Edit'))))); $content['cancel_needs_refresh'] = (bool)$_GET['cancel_needs_refresh']; if (!empty($preserved['lock_token'])) $content['lock_token'] = $preserved['lock_token']; //Disable videoconference if the module is not enabled $etpl->disableElement('videoconference', calendar_hooks::isVideoconferenceDisabled()); $content['future_exceptions'] = !empty($content['id']) && !empty($content['recur_type']) && $this->bo->search(['start' => Api\DateTime::to('now', 'ts')], 'cal_reference='.(int)$content['id']); // non_interactive==true from $_GET calls immediate save action without displaying the edit form if(isset($_GET['non_interactive']) && (bool)$_GET['non_interactive'] === true) { unset($_GET['non_interactive']); // prevent process_exec <--> edit loops $content['button']['save'] = true; $this->process_edit(array_merge($content,$preserved)); } else { $etpl->exec('calendar.calendar_uiforms.process_edit',$content,$sel_options,$readonlys,$preserved+[ '##videoconference' => $content['##videoconference'], ],$preserved['no_popup'] ? 0 : 2); } } /** * Apply given data of event-master to future exceptions * * @param array $master * @param ?array $messages on return error-messages * @param ?bool $skip_notifications * @return void */ protected function apply_changes_to_exceptions(array $master, ?array $messages=null, ?bool $skip_notifications=null) { foreach($this->bo->search([ 'start' => Api\DateTime::to('now', 'ts') ], 'cal_reference='.(int)$master['id']) as $event) { $changes = 0; foreach($master as $name => $value) { switch($name) { case 'title'; case 'description': case 'location': case 'cat_id': case 'priority': if ($event[$name] != $value) { $event[$name] = $value; $changes++; } break; case 'participants': // only add new participants, leave status of current participants alone foreach($value as $uid => $status) { if (!isset($event['participants'][$uid])) { $event['participants'][$uid] = $status; $changes++; } } unset($event['participant_status']); break; default: if ($name[0] === '#' && $event[$name] != $value) { $event[$name] = $value; $changes++; } break; } if ($changes) { $this->bo->update($event, true, true, false, true, $messages, $skip_notifications); } } } } /** * Set up the participants for display in edit dialog * * @param array $event * @param array $content * @param array $sel_options * @param array $readonlys * @param array $preserv * @param string $view */ protected function setup_participants(array $event, array &$content, array &$sel_options, array &$readonlys, array &$preserv, $view) { $row = 3; foreach($event['participant_types'] as $type => $participants) { $name = 'accounts'; if (isset($this->bo->resources[$type])) { $name = $this->bo->resources[$type]['app']; } // sort participants (in there group/app) by title uksort($participants, array($this, 'uid_title_cmp')); foreach($participants as $id => $status) { $uid = $type == 'u' ? $id : $type.$id; $quantity = $role = null; calendar_so::split_status($status,$quantity,$role); $preserv['participants'][$row] = $content['participants'][$row] = array( 'app' => $name == 'accounts' ? ($GLOBALS['egw']->accounts->get_type($id) == 'g' ? 'Group' : 'User') : $name, 'uid' => $uid, 'status' => $status, 'old_status' => $status, 'quantity' => $quantity > 1 || $uid[0] == 'r' ? $quantity : '', // only display quantity for resources or if > 1 'role' => $role, ); // replace iCal roles with a nicer label and remove regular REQ-PARTICIPANT if (isset($this->bo->roles[$role])) { $content['participants'][$row]['role_label'] = lang($this->bo->roles[$role]); } // allow third party apps to use categories for roles elseif(substr($role,0,6) == 'X-CAT-') { $content['participants'][$row]['role_label'] = $GLOBALS['egw']->categories->id2name(substr($role,6)); } else { $content['participants'][$row]['role_label'] = lang(str_replace('X-','',$role)); } $content['participants'][$row]['delete_id'] = strpbrk($uid,'"\'<>') !== false ? md5($uid) : $uid; //echo "
$uid ($quantity): $role --> {$content['participants'][$row]['role']}
\n"; if (($no_status = !$this->bo->check_status_perms($uid,$event)) || $view) $readonlys['participants'][$row]['status'] = $no_status; if ($preserv['hide_delete'] || !$this->bo->check_perms(Acl::EDIT,$event)) $readonlys['participants']['delete'][$uid] = true; // todo: make the participants available as links with email as title $content['participants'][$row++]['title'] = $this->get_title($uid); // enumerate group-invitations, so people can accept/reject them if ($name == 'accounts' && $GLOBALS['egw']->accounts->get_type($id) == 'g' && ($members = $GLOBALS['egw']->accounts->members($id,true))) { $sel_options['status']['G'] = lang('Select one'); // sort members by title usort($members, array($this, 'uid_title_cmp')); foreach($members as $member) { if (!isset($participants[$member]) && $this->bo->check_perms(Acl::READ,0,$member)) { $preserv['participants'][$row] = $content['participants'][$row] = array( 'app' => 'Group invitation', 'uid' => $member, 'status' => 'G', ); $readonlys['participants'][$row]['quantity'] = $readonlys['participants']['delete'][$member] = true; // read access is enough to invite participants, but you need edit rights to change status $readonlys['participants'][$row]['status'] = !$this->bo->check_perms(Acl::EDIT,0,$member); $content['participants'][$row++]['title'] = Api\Accounts::username($member); } } } } // resouces / apps we shedule, atm. resources and addressbook $content['participants']['cal_resources'] = ''; foreach($this->bo->resources as $data) { if ($data['app'] == 'email') continue; // make no sense, as we cant search for email $content['participants']['cal_resources'] .= ','.$data['app']; } } } /** * Remove (shared) lock via ajax, when edit popup get's closed * * @param int $id * @param string $token */ function ajax_unlock($id,$token) { $lock_path = Vfs::app_entry_lock_path('calendar',$id); $lock_owner = 'mailto:'.$GLOBALS['egw_info']['user']['account_email']; if (($lock = Vfs::checkLock($lock_path)) && $lock['owner'] == $lock_owner || $lock['token'] == $token) { Vfs::unlock($lock_path,$token,false); } } /** * Get email of participant * * @param string $uid * @return string|null * @throws Exception */ public static function participantEmail($uid) { if (is_numeric($uid)) { $email = Api\Accounts::id2name($uid, 'account_email') ?: null; } elseif ($uid[0] === 'e') { $email = substr($uid, 1); } elseif ($uid[0] === 'c' && ($contact = (new Api\Contacts)->read(substr($uid, 1)))) { $email = $contact['email'] ?? $contact['email_home']; } if (!empty($email) && preg_match('/<([^>]+?)>$/', $email, $matches)) { $email = $matches[1]; } return $email; } /** * Display iCal meeting request for EMail app and allow to accept, tentative or reject it or a reply and allow to apply it * * @todo Handle situation when user is NOT invited, but eg. can view that mail ... * @param array $event = null; special usage if $event is array('event'=>null,'msg'=>'','useSession'=>true) we * are called by new mail-app; and we intend to use the stuff passed on by session * @param string $msg = null */ function meeting(array $event=null, $msg=null) { $user = $GLOBALS['egw_info']['user']['account_id']; $readonlys['button[apply]'] = true; $_usesession=!is_array($event); //special usage if $event is array('event'=>null,'msg'=>'','useSession'=>true) we //are called by new mail-app; and we intend to use the stuff passed on by session if ($event == array('event'=>null,'msg'=>'','useSession'=>true)) { $event=null; // set to null $_usesession=true; // trigger session read } if (!is_array($event)) { $ical_charset = 'utf-8'; $ical_string = $_GET['ical']; if ($ical_string == 'session' || $_usesession) { $session_data = Api\Cache::getSession('calendar', 'ical'); $ical_string = $session_data['attachment']; $ical_charset = $session_data['charset']; $ical_method = $session_data['method']; $ical_sender = $session_data['sender']; unset($session_data); } $ical = new calendar_ical(); if (!($events = $ical->icaltoegw($ical_string, '', $ical_charset)) || count($events) != 1) { error_log(__METHOD__."('$_GET[ical]') error parsing iCal!"); $GLOBALS['egw']->framework->render(Api\Html::fieldset(''.htmlspecialchars($ical_string).'', lang('Error: importing the iCal'))); return; } $event = array_shift($events); // convert event from servertime returned by calendar_ical to user-time $this->bo->server2usertime($event); if (($existing_event = $this->bo->read($event['uid'], $event['recurrence'], false, 'ts', null, true))) // true = read the exception { // check if mail is from extern organizer $from_extern_organizer = false; if (strtolower($ical_method) !== 'reply' && ($extern_organizer = !empty($ical_sender) ? array_filter($existing_event['participants'] ?? [], static function($status, $user) { calendar_so::split_status($status, $quantity, $role); return $role === 'CHAIR' && is_string($user) && in_array($user[0], ['e', 'c']); }, ARRAY_FILTER_USE_BOTH) : []) && !($from_extern_organizer = $ical_sender === strtolower($organizer=self::participantEmail(key($extern_organizer))))) { $event['sender_warning'] = lang('The sender "%1" is NOT the extern organizer "%2", proceed with caution!', $ical_sender, $organizer); } if ($event['recurrence']) { $master = $this->bo->read($event['uid']); } switch(strtolower($ical_method)) { case 'reply': // first participant is the one replying (our iCal parser adds owner first!) $parts = $event['participants']; unset($parts[$existing_event['owner']]); $event['ical_sender_uid'] = key($parts); $event['ical_sender_status'] = current($parts); $quantity = $role = null; calendar_so::split_status($event['ical_sender_status'], $quantity, $role); // let user know, that sender is not the participant if ($ical_sender !== strtolower($participant=self::participantEmail($event['ical_sender_uid']))) { $event['sender_warning'] = lang('The sender "%1" is NOT the participant replying "%2", proceed with caution!', $ical_sender, $participant); } if ($event['ical_sender_uid']) { $existing_status = $existing_event['participants'][$event['ical_sender_uid']]; // check if email matches, in case we have now something like "Name
ft_start=".date('D d.m.Y H:i',$ft_start)."
\n";
echo "event[title]=$event[title]
\n";
echo "event[start]=".date('D d.m.Y H:i',$event['start'])."
\n";
echo "event[end]=".date('D d.m.Y H:i',$event['end'])."
\n";
}
// $events ends before our actual position ==> ignore it
if ($event['end'] < $ft_start)
{
//echo "==> event ends before ft_start ==> continue
\n";
continue;
}
// $events starts before our actual position ==> set start to it's end and go to next event
if ($event['start'] < $ft_start)
{
//echo "==> event starts before ft_start ==> set ft_start to it's end & continue
\n";
$ft_start = $event['end'];
continue;
}
$ft_end = $event['start'];
// only show slots equal or bigger to min_length
if ($ft_end - $ft_start >= $duration)
{
$freetime[++$n] = array(
'start' => $ft_start,
'end' => $ft_end,
);
if ($this->debug > 1) echo "
freetime: ".date('D d.m.Y H:i',$ft_start)." - ".date('D d.m.Y H:i',$ft_end)."
\n"; } $ft_start = $event['end']; } if ($this->debug > 0) $this->bo->debug_message('uiforms::freetime(participants=%1, start=%2, end=%3, duration=%4, cal_id=%5) freetime=%6',true,$participants,$start,$end,$duration,$cal_id,$freetime); return $freetime; } /** * split the freetime in daywise slot, taking into account weekdays, start- and stop-times * * If the duration is bigger then the difference of start- and end_time, the end_time is ignored * * @param array $freetime free time-slots: array with start and end values * @param int $duration min. duration in sec * @param int $weekdays allowed weekdays, bitfield of MCAL_M_... * @param int $_start_time minimum start-hour 0-23 * @param int $_end_time maximum end-hour 0-23, or 0 for none * @param array $sel_options on return options for start-time selectbox * @return array of free time-slots: array with start and end values */ function split_freetime_daywise($freetime, $duration, $weekdays, $_start_time, $_end_time, &$sel_options) { if ($this->debug > 1) $this->bo->debug_message('uiforms::split_freetime_daywise(freetime=%1, duration=%2, start_time=%3, end_time=%4)',true,$freetime,$duration,$_start_time,$_end_time); $freetime_daywise = array(); if (!is_array($sel_options)) $sel_options = array(); $time_format = $this->common_prefs['timeformat'] == 12 ? 'h:i a' : 'H:i'; $start_time = (int) $_start_time; // ignore leading zeros $end_time = (int) $_end_time; // ignore the end_time, if duration would never fit if (($end_time - $start_time)*HOUR_s < $duration) { $end_time = 0; if ($this->debug > 1) $this->bo->debug_message('uiforms::split_freetime_daywise(, duration=%2, start_time=%3,..) end_time set to 0, it never fits durationn otherwise',true,$duration,$start_time); } $n = 0; foreach($freetime as $ft) { $adaybegin = $this->bo->date2array($ft['start']); $adaybegin['hour'] = $adaybegin['minute'] = $adaybegin['second'] = 0; unset($adaybegin['raw']); $daybegin = $this->bo->date2ts($adaybegin); for($t = $daybegin; $t < $ft['end']; $t += DAY_s,$daybegin += DAY_s) { $dow = date('w',$daybegin+DAY_s/2); // 0=Sun, .., 6=Sat $mcal_dow = pow(2,$dow); if (!($weekdays & $mcal_dow)) { //echo "wrong day of week $dow