4 * @brief The calendar module
5 * This calendar is for profile visitors and contains only the events
9 require_once('include/event.php');
10 require_once('include/redir.php');
12 function cal_init(App &$a) {
14 auto_redir($a, $a->argv[1]);
16 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
20 nav_set_selected('events');
26 $user = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
33 $a->data['user'] = $user[0];
34 $a->profile_uid = $user[0]['uid'];
36 // if it's a json request abort here becaus we don't
37 // need the widget data
38 if ($a->argv[2] === 'json')
41 $profile = get_profiledata_by_nick($nick, $a->profile_uid);
43 $account_type = account_type($profile);
45 $tpl = get_markup_template("vcard-widget.tpl");
47 $vcard_widget .= replace_macros($tpl, array(
48 '$name' => $profile['name'],
49 '$photo' => $profile['photo'],
50 '$addr' => (($profile['addr'] != "") ? $profile['addr'] : ""),
51 '$account_type' => $account_type,
52 '$pdesc' => (($profile['pdesc'] != "") ? $profile['pdesc'] : ""),
55 $cal_widget = widget_events();
57 if(! x($a->page,'aside'))
58 $a->page['aside'] = '';
60 $a->page['aside'] .= $vcard_widget;
61 $a->page['aside'] .= $cal_widget;
67 function cal_content(App &$a) {
68 nav_set_selected('events');
71 if( feature_enabled(local_user(), 'richtext') )
72 $editselect = 'textareas';
74 // First day of the week (0 = Sunday)
75 $firstDay = get_pconfig(local_user(),'system','first_day_of_week');
76 if ($firstDay === false) $firstDay=0;
78 // get the translation strings for the callendar
79 $i18n = get_event_strings();
81 $htpl = get_markup_template('event_head.tpl');
82 $a->page['htmlhead'] .= replace_macros($htpl,array(
83 '$baseurl' => App::get_baseurl(),
84 '$module_url' => '/cal/' . $a->data['user']['nickname'],
87 '$editselect' => $editselect
90 $etpl = get_markup_template('event_end.tpl');
91 $a->page['end'] .= replace_macros($etpl,array(
92 '$baseurl' => App::get_baseurl(),
93 '$editselect' => $editselect
101 $ignored = ((x($_REQUEST,'ignored')) ? intval($_REQUEST['ignored']) : 0);
104 if($a->argv[2] == 'export') {
106 $format = $a->argv[3];
111 // Setup permissions structures
115 $remote_contact = false;
118 $owner_uid = $a->data['user']['uid'];
119 $nick = $a->data['user']['nickname'];
121 if(is_array($_SESSION['remote'])) {
122 foreach($_SESSION['remote'] as $v) {
123 if($v['uid'] == $a->profile['profile_uid']) {
124 $contact_id = $v['cid'];
130 $groups = init_groups_visitor($contact_id);
131 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
133 intval($a->profile['profile_uid'])
135 if (dbm::is_result($r)) {
137 $remote_contact = true;
140 if(! $remote_contact) {
142 $contact_id = $_SESSION['cid'];
143 $contact = $a->contact;
146 $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
148 if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
149 notice( t('Access to this profile has been restricted.') . EOL);
153 // get the permissions
154 $sql_perms = item_permissions_sql($owner_uid,$remote_contact,$groups);
155 // we only want to have the events of the profile owner
156 $sql_extra = " AND `event`.`cid` = 0 " . $sql_perms;
158 // get the tab navigation bar
159 $tabs .= profile_tabs($a,false, $a->data['user']['nickname']);
161 // The view mode part is similiar to /mod/events.php
162 if($mode == 'view') {
165 $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y');
166 $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m');
168 $y = intval($thisyear);
170 $m = intval($thismonth);
172 // Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
173 // An upper limit was chosen to keep search engines from exploring links millions of years in the future.
182 if($nextmonth > 12) {
195 $dim = get_dim($y,$m);
196 $start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
197 $finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
200 if ($a->argv[2] === 'json'){
201 if (x($_GET,'start')) $start = $_GET['start'];
202 if (x($_GET,'end')) $finish = $_GET['end'];
205 $start = datetime_convert('UTC','UTC',$start);
206 $finish = datetime_convert('UTC','UTC',$finish);
208 $adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
209 $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
211 // put the event parametes in an array so we can better transmit them
212 $event_params = array(
213 'event_id' => (x($_GET,'id') ? $_GET["id"] : 0),
216 'adjust_start' => $adjust_start,
217 'adjust_finish' => $adjust_finish,
218 'ignored' => $ignored,
221 // get events by id or by date
223 $r = event_by_id($owner_uid, $event_params, $sql_extra);
225 $r = events_by_date($owner_uid, $event_params, $sql_extra);
230 if (dbm::is_result($r)) {
231 $r = sort_by_date($r);
232 foreach ($r as $rr) {
233 $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
234 if (! x($links,$j)) {
235 $links[$j] = App::get_baseurl() . '/' . $a->cmd . '#link-' . $j;
243 // transform the event in a usable array
244 if (dbm::is_result($r))
245 $r = sort_by_date($r);
246 $events = process_events($r);
248 if ($a->argv[2] === 'json'){
249 echo json_encode($events); killme();
252 // links: array('href', 'text', 'extra css classes', 'title')
254 $tpl = get_markup_template("event.tpl");
256 // if (get_config('experimentals','new_calendar')==1){
257 $tpl = get_markup_template("events_js.tpl");
259 // $tpl = get_markup_template("events.tpl");
263 // Get rid of dashes in key names, Smarty3 can't handle them
264 foreach($events as $key => $event) {
265 $event_item = array();
266 foreach($event['item'] as $k => $v) {
267 $k = str_replace('-','_',$k);
268 $event_item[$k] = $v;
270 $events[$key]['item'] = $event_item;
273 $o = replace_macros($tpl, array(
274 '$baseurl' => App::get_baseurl(),
276 '$title' => t('Events'),
277 '$view' => t('View'),
278 '$previus' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''),
279 '$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''),
280 '$calendar' => cal($y,$m,$links, ' eventcal'),
282 '$events' => $events,
284 "today" => t("today"),
285 "month" => t("month"),
291 if (x($_GET,'id')){ echo $o; killme(); }
296 if($mode == 'export') {
297 if(! (intval($owner_uid))) {
298 notice( t('User not found'));
303 // Respect the export feature setting for all other /cal pages if it's not the own profile
304 if( ((local_user() !== intval($owner_uid))) && ! feature_enabled($owner_uid, "export_calendar")) {
305 notice( t('Permission denied.') . EOL);
306 goaway('cal/' . $nick);
309 // Get the export data by uid
310 $evexport = event_export($owner_uid, $format);
312 if (!$evexport["success"]) {
313 if($evexport["content"])
314 notice( t('This calendar format is not supported') );
316 notice( t('No exportable data found'));
318 // If it the own calendar return to the events page
319 // otherwise to the profile calendar page
320 if (local_user() === intval($owner_uid))
321 $return_path = "events";
323 $returnpath = "cal/".$nick;
325 goaway($return_path);
328 // If nothing went wrong we can echo the export content
329 if ($evexport["success"]) {
330 header('Content-type: text/calendar');
331 header('content-disposition: attachment; filename="' . t('calendar') . '-' . $nick . '.' . $evexport["extension"] . '"' );
332 echo $evexport["content"];