| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @file mod/cal.php | 
					
						
							|  |  |  |  * @brief The calendar module | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  |  * 	This calendar is for profile visitors and contains only the events | 
					
						
							|  |  |  |  * 	of the profile owner | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-01-25 02:08:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-30 04:07:00 +00:00
										 |  |  | use Friendica\App; | 
					
						
							| 
									
										
										
										
											2017-12-04 14:04:36 +00:00
										 |  |  | use Friendica\Content\Feature; | 
					
						
							| 
									
										
										
										
											2018-01-15 19:51:56 +00:00
										 |  |  | use Friendica\Content\Nav; | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | use Friendica\Content\Widget; | 
					
						
							| 
									
										
										
										
											2017-11-07 02:22:52 +00:00
										 |  |  | use Friendica\Core\Config; | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | use Friendica\Core\L10n; | 
					
						
							| 
									
										
										
										
											2017-08-26 06:04:21 +00:00
										 |  |  | use Friendica\Core\System; | 
					
						
							| 
									
										
										
										
											2018-07-20 12:19:26 +00:00
										 |  |  | use Friendica\Database\DBA; | 
					
						
							| 
									
										
										
										
											2017-12-07 14:04:24 +00:00
										 |  |  | use Friendica\Model\Contact; | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | use Friendica\Model\Event; | 
					
						
							| 
									
										
										
										
											2017-12-17 00:21:56 +00:00
										 |  |  | use Friendica\Model\Group; | 
					
						
							| 
									
										
										
										
											2018-01-15 02:22:39 +00:00
										 |  |  | use Friendica\Model\Profile; | 
					
						
							| 
									
										
										
										
											2018-01-13 14:40:34 +00:00
										 |  |  | use Friendica\Protocol\DFRN; | 
					
						
							| 
									
										
										
										
											2018-01-27 02:38:34 +00:00
										 |  |  | use Friendica\Util\DateTimeFormat; | 
					
						
							| 
									
										
										
										
											2018-02-03 17:25:58 +00:00
										 |  |  | use Friendica\Util\Temporal; | 
					
						
							| 
									
										
										
										
											2017-04-30 04:07:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | function cal_init(App $a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if ($a->argc > 1) { | 
					
						
							| 
									
										
										
										
											2018-01-13 14:40:34 +00:00
										 |  |  | 		DFRN::autoRedir($a, $a->argv[1]); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	if (Config::get('system', 'block_public') && !local_user() && !remote_user()) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	if ($a->argc < 2) { | 
					
						
							|  |  |  | 		System::httpExit(403, ["title" => L10n::t('Access denied.')]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-15 19:51:56 +00:00
										 |  |  | 	Nav::setSelected('events'); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$nick = $a->argv[1]; | 
					
						
							|  |  |  | 	$user = DBA::selectFirst('user', [], ['nickname' => $nick, 'blocked' => false]); | 
					
						
							|  |  |  | 	if (!DBA::isResult($user)) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$a->data['user'] = $user; | 
					
						
							|  |  |  | 	$a->profile_uid = $user['uid']; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	// if it's a json request abort here becaus we don't
 | 
					
						
							|  |  |  | 	// need the widget data
 | 
					
						
							|  |  |  | 	if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$profile = Profile::getByNickname($nick, $a->profile_uid); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$account_type = Contact::getAccountType($profile); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$tpl = get_markup_template("vcard-widget.tpl"); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$vcard_widget = replace_macros($tpl, [ | 
					
						
							|  |  |  | 		'$name' => $profile['name'], | 
					
						
							|  |  |  | 		'$photo' => $profile['photo'], | 
					
						
							|  |  |  | 		'$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""), | 
					
						
							|  |  |  | 		'$account_type' => $account_type, | 
					
						
							|  |  |  | 		'$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""), | 
					
						
							|  |  |  | 	]); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$cal_widget = Widget\CalendarExport::getHTML(); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	if (!x($a->page, 'aside')) { | 
					
						
							|  |  |  | 		$a->page['aside'] = ''; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$a->page['aside'] .= $vcard_widget; | 
					
						
							|  |  |  | 	$a->page['aside'] .= $cal_widget; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | function cal_content(App $a) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-15 19:51:56 +00:00
										 |  |  | 	Nav::setSelected('events'); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get the translation strings for the callendar
 | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 	$i18n = Event::getStrings(); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$htpl = get_markup_template('event_head.tpl'); | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 	$a->page['htmlhead'] .= replace_macros($htpl, [ | 
					
						
							| 
									
										
										
										
											2017-08-26 07:32:10 +00:00
										 |  |  | 		'$baseurl' => System::baseUrl(), | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		'$module_url' => '/cal/' . $a->data['user']['nickname'], | 
					
						
							|  |  |  | 		'$modparams' => 2, | 
					
						
							|  |  |  | 		'$i18n' => $i18n, | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 	]); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$etpl = get_markup_template('event_end.tpl'); | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 	$a->page['end'] .= replace_macros($etpl, [ | 
					
						
							| 
									
										
										
										
											2017-08-26 07:32:10 +00:00
										 |  |  | 		'$baseurl' => System::baseUrl(), | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 	]); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$mode = 'view'; | 
					
						
							|  |  |  | 	$y = 0; | 
					
						
							|  |  |  | 	$m = 0; | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	$ignored = (x($_REQUEST, 'ignored') ? intval($_REQUEST['ignored']) : 0); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	$format = 'ical'; | 
					
						
							|  |  |  | 	if ($a->argc == 4 && $a->argv[2] == 'export') { | 
					
						
							|  |  |  | 		$mode = 'export'; | 
					
						
							|  |  |  | 		$format = $a->argv[3]; | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 	// Setup permissions structures
 | 
					
						
							|  |  |  | 	$remote_contact = false; | 
					
						
							|  |  |  | 	$contact_id = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	$owner_uid = $a->data['user']['uid']; | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 	$nick = $a->data['user']['nickname']; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) { | 
					
						
							|  |  |  | 		foreach ($_SESSION['remote'] as $v) { | 
					
						
							|  |  |  | 			if ($v['uid'] == $a->profile['profile_uid']) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 				$contact_id = $v['cid']; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	$groups = []; | 
					
						
							|  |  |  | 	if ($contact_id) { | 
					
						
							| 
									
										
										
										
											2017-12-17 00:21:56 +00:00
										 |  |  | 		$groups = Group::getIdsByContactId($contact_id); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", | 
					
						
							|  |  |  | 			intval($contact_id), | 
					
						
							|  |  |  | 			intval($a->profile['profile_uid']) | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2018-07-21 12:46:04 +00:00
										 |  |  | 		if (DBA::isResult($r)) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$remote_contact = true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	$is_owner = local_user() == $a->profile['profile_uid']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 	if ($a->profile['hidewall'] && !$is_owner && !$remote_contact) { | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 		notice(L10n::t('Access to this profile has been restricted.') . EOL); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 22:39:52 +00:00
										 |  |  | 	// get the permissions
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	$sql_perms = item_permissions_sql($owner_uid, $remote_contact, $groups); | 
					
						
							| 
									
										
										
										
											2016-06-21 22:39:52 +00:00
										 |  |  | 	// we only want to have the events of the profile owner
 | 
					
						
							| 
									
										
										
										
											2016-06-22 13:06:14 +00:00
										 |  |  | 	$sql_extra = " AND `event`.`cid` = 0 " . $sql_perms; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get the tab navigation bar
 | 
					
						
							| 
									
										
										
										
											2018-01-15 02:22:39 +00:00
										 |  |  | 	$tabs = Profile::getTabs($a, false, $a->data['user']['nickname']); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// The view mode part is similiar to /mod/events.php
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	if ($mode == 'view') { | 
					
						
							| 
									
										
										
										
											2018-01-27 02:38:34 +00:00
										 |  |  | 		$thisyear = DateTimeFormat::localNow('Y'); | 
					
						
							|  |  |  | 		$thismonth = DateTimeFormat::localNow('m'); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if (!$y) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$y = intval($thisyear); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!$m) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$m = intval($thismonth); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
 | 
					
						
							|  |  |  | 		// An upper limit was chosen to keep search engines from exploring links millions of years in the future.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if ($y < 1901) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$y = 1900; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ($y > 2099) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$y = 2100; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		$nextyear = $y; | 
					
						
							|  |  |  | 		$nextmonth = $m + 1; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if ($nextmonth > 12) { | 
					
						
							|  |  |  | 			$nextmonth = 1; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$nextyear ++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$prevyear = $y; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if ($m > 1) { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$prevmonth = $m - 1; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			$prevmonth = 12; | 
					
						
							|  |  |  | 			$prevyear --; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-03 17:25:58 +00:00
										 |  |  | 		$dim = Temporal::getDaysInMonth($y, $m); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		$start = sprintf('%d-%d-%d %d:%d:%d', $y, $m, 1, 0, 0, 0); | 
					
						
							|  |  |  | 		$finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-29 06:08:02 +00:00
										 |  |  | 		if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) { | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			if (x($_GET, 'start')) { | 
					
						
							|  |  |  | 				$start = $_GET['start']; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (x($_GET, 'end')) { | 
					
						
							|  |  |  | 				$finish = $_GET['end']; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 02:38:34 +00:00
										 |  |  | 		$start = DateTimeFormat::utc($start); | 
					
						
							|  |  |  | 		$finish = DateTimeFormat::utc($finish); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 02:38:34 +00:00
										 |  |  | 		$adjust_start = DateTimeFormat::local($start); | 
					
						
							|  |  |  | 		$adjust_finish = DateTimeFormat::local($finish); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// put the event parametes in an array so we can better transmit them
 | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 		$event_params = [ | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 			'event_id'      => intval(defaults($_GET, 'id', 0)), | 
					
						
							|  |  |  | 			'start'         => $start, | 
					
						
							|  |  |  | 			'finish'        => $finish, | 
					
						
							|  |  |  | 			'adjust_start'  => $adjust_start, | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			'adjust_finish' => $adjust_finish, | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 			'ignore'        => $ignored, | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 		]; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// get events by id or by date
 | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 		if ($event_params['event_id']) { | 
					
						
							|  |  |  | 			$r = Event::getListById($owner_uid, $event_params['event-id'], $sql_extra); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 			$r = Event::getListByDate($owner_uid, $event_params, $sql_extra); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 		$links = []; | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-21 12:46:04 +00:00
										 |  |  | 		if (DBA::isResult($r)) { | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 			$r = Event::sortByDate($r); | 
					
						
							| 
									
										
										
										
											2016-12-20 20:15:53 +00:00
										 |  |  | 			foreach ($r as $rr) { | 
					
						
							| 
									
										
										
										
											2018-01-27 02:38:34 +00:00
										 |  |  | 				$j = $rr['adjust'] ? DateTimeFormat::local($rr['start'], 'j') : DateTimeFormat::utc($rr['start'], 'j'); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 				if (!x($links, $j)) { | 
					
						
							| 
									
										
										
										
											2017-08-26 07:32:10 +00:00
										 |  |  | 					$links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j; | 
					
						
							| 
									
										
										
										
											2016-12-20 09:35:28 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// transform the event in a usable array
 | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 		$events = Event::prepareListForTemplate($r); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-29 06:08:02 +00:00
										 |  |  | 		if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) { | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			echo json_encode($events); | 
					
						
							|  |  |  | 			killme(); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// links: array('href', 'text', 'extra css classes', 'title')
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if (x($_GET, 'id')) { | 
					
						
							|  |  |  | 			$tpl = get_markup_template("event.tpl"); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-11-07 02:22:52 +00:00
										 |  |  | //			if (Config::get('experimentals','new_calendar')==1){
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			$tpl = get_markup_template("events_js.tpl"); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | //			} else {
 | 
					
						
							|  |  |  | //				$tpl = get_markup_template("events.tpl");
 | 
					
						
							|  |  |  | //			}
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Get rid of dashes in key names, Smarty3 can't handle them
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		foreach ($events as $key => $event) { | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 			$event_item = []; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			foreach ($event['item'] as $k => $v) { | 
					
						
							|  |  |  | 				$k = str_replace('-', '_', $k); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 				$event_item[$k] = $v; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			$events[$key]['item'] = $event_item; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 		$o = replace_macros($tpl, [ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			'$baseurl' => System::baseUrl(), | 
					
						
							|  |  |  | 			'$tabs' => $tabs, | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 			'$title' => L10n::t('Events'), | 
					
						
							|  |  |  | 			'$view' => L10n::t('View'), | 
					
						
							|  |  |  | 			'$previous' => [System::baseUrl() . "/events/$prevyear/$prevmonth", L10n::t('Previous'), '', ''], | 
					
						
							|  |  |  | 			'$next' => [System::baseUrl() . "/events/$nextyear/$nextmonth", L10n::t('Next'), '', ''], | 
					
						
							| 
									
										
										
										
											2018-02-03 17:25:58 +00:00
										 |  |  | 			'$calendar' => Temporal::getCalendarTable($y, $m, $links, ' eventcal'), | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			'$events' => $events, | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 			"today" => L10n::t("today"), | 
					
						
							|  |  |  | 			"month" => L10n::t("month"), | 
					
						
							|  |  |  | 			"week" => L10n::t("week"), | 
					
						
							|  |  |  | 			"day" => L10n::t("day"), | 
					
						
							|  |  |  | 			"list" => L10n::t("list"), | 
					
						
							| 
									
										
										
										
											2018-01-15 13:05:12 +00:00
										 |  |  | 		]); | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 		if (x($_GET, 'id')) { | 
					
						
							|  |  |  | 			echo $o; | 
					
						
							|  |  |  | 			killme(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return $o; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 	if ($mode == 'export') { | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 		if (!intval($owner_uid)) { | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 			notice(L10n::t('User not found')); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-22 11:50:47 +00:00
										 |  |  | 		// Test permissions
 | 
					
						
							| 
									
										
										
										
											2016-06-23 08:07:13 +00:00
										 |  |  | 		// Respect the export feature setting for all other /cal pages if it's not the own profile
 | 
					
						
							| 
									
										
										
										
											2018-08-01 05:29:58 +00:00
										 |  |  | 		if ((local_user() !== intval($owner_uid)) && !Feature::isEnabled($owner_uid, "export_calendar")) { | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 			notice(L10n::t('Permission denied.') . EOL); | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 			goaway('cal/' . $nick); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Get the export data by uid
 | 
					
						
							| 
									
										
										
										
											2018-03-17 01:45:02 +00:00
										 |  |  | 		$evexport = Event::exportListByUserId($owner_uid, $format); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 		if (!$evexport["success"]) { | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			if ($evexport["content"]) { | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 				notice(L10n::t('This calendar format is not supported')); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 				notice(L10n::t('No exportable data found')); | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 			// If it the own calendar return to the events page
 | 
					
						
							|  |  |  | 			// otherwise to the profile calendar page
 | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			if (local_user() === intval($owner_uid)) { | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 				$return_path = "events"; | 
					
						
							| 
									
										
										
										
											2018-01-05 00:42:48 +00:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				$return_path = "cal/" . $nick; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			goaway($return_path); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// If nothing went wrong we can echo the export content
 | 
					
						
							| 
									
										
										
										
											2016-08-13 11:59:55 +00:00
										 |  |  | 		if ($evexport["success"]) { | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 			header('Content-type: text/calendar'); | 
					
						
							| 
									
										
										
										
											2018-01-21 18:33:59 +00:00
										 |  |  | 			header('content-disposition: attachment; filename="' . L10n::t('calendar') . '-' . $nick . '.' . $evexport["extension"] . '"'); | 
					
						
							| 
									
										
										
										
											2016-06-20 21:31:49 +00:00
										 |  |  | 			echo $evexport["content"]; | 
					
						
							|  |  |  | 			killme(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-19 20:04:34 +00:00
										 |  |  | } |