]> git.mxchange.org Git - friendica.git/blobdiff - mod/events.php
Merge branch 'rewrites/dbm_is_result' of github.com:Quix0r/friendica into rewrites...
[friendica.git] / mod / events.php
index e9e1af05d8044bd26b86ddfd99a50f736fddbdca..a5380c8369fc4d4b4410c983b255b3720af5a415 100644 (file)
@@ -1,10 +1,34 @@
 <?php
-
+/**
+ * @fiel mod/events.php
+ * @brief The events module
+ */
 require_once('include/bbcode.php');
 require_once('include/datetime.php');
 require_once('include/event.php');
 require_once('include/items.php');
 
+function events_init(&$a) {
+       if(! local_user())
+               return;
+
+       if($a->argc == 1) {
+               // if it's a json request abort here becaus we don't
+               // need the widget data
+               if($a->argv[1] === 'json')
+                       return;
+
+               $cal_widget = widget_events();
+
+               if(! x($a->page,'aside'))
+                       $a->page['aside'] = '';
+
+               $a->page['aside'] .= $cal_widget;
+       }
+
+       return;
+}
+
 function events_post(&$a) {
 
        logger('post: ' . print_r($_REQUEST,true));
@@ -67,9 +91,9 @@ function events_post(&$a) {
        $action = ($event_id == '') ? 'new' : "event/" . $event_id;
        $onerror_url = $a->get_baseurl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish";
 
-        if(strcmp($finish,$start) < 0 && !$nofinish) {
+       if(strcmp($finish,$start) < 0 && !$nofinish) {
                notice( t('Event can not end before it has started.') . EOL);
-                if(intval($_REQUEST['preview'])) {
+               if(intval($_REQUEST['preview'])) {
                        echo( t('Event can not end before it has started.'));
                        killme();
                }
@@ -124,6 +148,7 @@ function events_post(&$a) {
 
 
        $datarray = array();
+       $datarray['guid'] = get_guid(32);
        $datarray['start'] = $start;
        $datarray['finish'] = $finish;
        $datarray['summary'] = $summary;
@@ -152,8 +177,9 @@ function events_post(&$a) {
        $item_id = event_store($datarray);
 
        if(! $cid)
-               proc_run('php',"include/notifier.php","event","$item_id");
+               proc_run(PRIORITY_HIGH, "include/notifier.php", "event", $item_id);
 
+       goaway($_SESSION['return_url']);
 }
 
 
@@ -165,6 +191,9 @@ function events_content(&$a) {
                return;
        }
 
+       if($a->argc == 1)
+               $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
+
        if(($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) {
                $r = q("update event set ignore = 1 where id = %d and uid = %d",
                        intval($a->argv[2]),
@@ -179,14 +208,24 @@ function events_content(&$a) {
                );
        }
 
+       if ($a->theme_events_in_profile)
+               nav_set_selected('home');
+       else
+               nav_set_selected('events');
 
        $editselect = 'none';
        if( feature_enabled(local_user(), 'richtext') )
                $editselect = 'textareas';
 
+       // get the translation strings for the callendar
+       $i18n = get_event_strings();
+
        $htpl = get_markup_template('event_head.tpl');
        $a->page['htmlhead'] .= replace_macros($htpl,array(
                '$baseurl' => $a->get_baseurl(),
+               '$module_url' => '/events',
+               '$modparams' => 1,
+               '$i18n' => $i18n,
                '$editselect' => $editselect
        ));
 
@@ -198,7 +237,8 @@ function events_content(&$a) {
 
        $o ="";
        // tabs
-       $tabs = profile_tabs($a, True);
+       if ($a->theme_events_in_profile)
+               $tabs = profile_tabs($a, True);
 
 
 
@@ -223,6 +263,7 @@ function events_content(&$a) {
                }
        }
 
+       // The view mode part is similiar to /mod/cal.php
        if($mode == 'view') {
 
 
@@ -234,7 +275,7 @@ function events_content(&$a) {
                        $m = intval($thismonth);
 
                // 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. 
+               // An upper limit was chosen to keep search engines from exploring links millions of years in the future.
 
                if($y < 1901)
                        $y = 1900;
@@ -262,8 +303,8 @@ function events_content(&$a) {
 
 
                if ($a->argv[1] === 'json'){
-                       if (x($_GET,'start'))   $start = date("Y-m-d h:i:s", $_GET['start']);
-                       if (x($_GET,'end'))     $finish = date("Y-m-d h:i:s", $_GET['end']);
+                       if (x($_GET,'start'))   $start = $_GET['start'];
+                       if (x($_GET,'end'))     $finish = $_GET['end'];
                }
 
                $start  = datetime_convert('UTC','UTC',$start);
@@ -272,36 +313,26 @@ function events_content(&$a) {
                $adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
                $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
 
+               // put the event parametes in an array so we can better transmit them
+               $event_params = array(
+                       'event_id' => (x($_GET,'id') ? $_GET["id"] : 0),
+                       'start' => $start,
+                       'finish' => $finish,
+                       'adjust_start' => $adjust_start,
+                       'adjust_finish' => $adjust_finish,
+                       'ignored' => $ignored,
+               );
 
+               // get events by id or by date
                if (x($_GET,'id')){
-                       $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
-                               `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event`
-                               LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
-                               WHERE `event`.`uid` = %d AND `event`.`id` = %d",
-                               intval(local_user()),
-                               intval($_GET['id'])
-                       );
+                       $r = event_by_id(local_user(), $event_params);
                } else {
-                       $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
-                               `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event`
-                               LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
-                               WHERE `event`.`uid` = %d and event.ignore = %d
-                               AND ((`adjust` = 0 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s')
-                               OR  (`adjust` = 1 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s')) ",
-                               intval(local_user()),
-                               intval($ignored),
-                               dbesc($start),
-                               dbesc($start),
-                               dbesc($finish),
-                               dbesc($adjust_start),
-                               dbesc($adjust_start),
-                               dbesc($adjust_finish)
-                       );
+                       $r = events_by_date(local_user(), $event_params);
                }
 
                $links = array();
 
-               if(count($r)) {
+               if(dbm::is_result($r)) {
                        $r = sort_by_date($r);
                        foreach($r as $rr) {
                                $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
@@ -310,59 +341,12 @@ function events_content(&$a) {
                        }
                }
 
-
                $events=array();
 
-               $last_date = '';
-               $fmt = t('l, F j');
-
-               if(count($r)) {
+               // transform the event in a usable array
+               if(dbm::is_result($r)) {
                        $r = sort_by_date($r);
-                       foreach($r as $rr) {
-
-
-                               $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
-                               $d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt));
-                               $d = day_translate($d);
-
-                               $start = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'c') : datetime_convert('UTC','UTC',$rr['start'],'c'));
-                               if ($rr['nofinish']){
-                                       $end = null;
-                               } else {
-                                       $end = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['finish'], 'c') : datetime_convert('UTC','UTC',$rr['finish'],'c'));
-                               }
-
-
-                               $is_first = ($d !== $last_date);
-
-                               $last_date = $d;
-                               $edit = ((! $rr['cid']) ? array($a->get_baseurl().'/events/event/'.$rr['id'],t('Edit event'),'','') : null);
-                               $title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8'));
-                               if(! $title) {
-                                       list($title, $_trash) = explode("<br",bbcode($rr['desc']),2);
-                                       $title = strip_tags(html_entity_decode($title,ENT_QUOTES,'UTF-8'));
-                               }
-                               $html = format_event_html($rr);
-                               $rr['desc'] = bbcode($rr['desc']);
-                               $rr['location'] = bbcode($rr['location']);
-                               $events[] = array(
-                                       'id'=>$rr['id'],
-                                       'start'=> $start,
-                                       'end' => $end,
-                                       'allDay' => false,
-                                       'title' => $title,
-
-                                       'j' => $j,
-                                       'd' => $d,
-                                       'edit' => $edit,
-                                       'is_first'=>$is_first,
-                                       'item'=>$rr,
-                                       'html'=>$html,
-                                       'plink' => array($rr['plink'],t('link to source'),'',''),
-                               );
-
-
-                       }
+                       $events = process_events($r);
                }
 
                if ($a->argv[1] === 'json'){
@@ -374,7 +358,7 @@ function events_content(&$a) {
                        $tpl =  get_markup_template("event.tpl");
                } else {
 //                     if (get_config('experimentals','new_calendar')==1){
-                               $tpl = get_markup_template("events-js.tpl");
+                               $tpl = get_markup_template("events_js.tpl");
 //                     } else {
 //                             $tpl = get_markup_template("events.tpl");
 //                     }
@@ -394,14 +378,19 @@ function events_content(&$a) {
                        '$baseurl'      => $a->get_baseurl(),
                        '$tabs'         => $tabs,
                        '$title'        => t('Events'),
-                       '$new_event'=> array($a->get_baseurl().'/events/new',t('Create New Event'),'',''),
+                       '$view'         => t('View'),
+                       '$new_event'    => array($a->get_baseurl().'/events/new',t('Create New Event'),'',''),
                        '$previus'      => array($a->get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''),
                        '$next'         => array($a->get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''),
-                       '$calendar' => cal($y,$m,$links, ' eventcal'),
+                       '$calendar'     => cal($y,$m,$links, ' eventcal'),
 
                        '$events'       => $events,
 
-
+                       "today" => t("today"),
+                       "month" => t("month"),
+                       "week" => t("week"),
+                       "day" => t("day"),
+                       "list" => t("list"),
                ));
 
                if (x($_GET,'id')){ echo $o; killme(); }
@@ -415,7 +404,7 @@ function events_content(&$a) {
                        intval($event_id),
                        intval(local_user())
                );
-               if(count($r))
+               if(dbm::is_result($r))
                        $orig_event = $r[0];
        }
 
@@ -449,7 +438,7 @@ function events_content(&$a) {
                else
                        $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' );
 
-               if($cid)
+               if($cid OR ($mode !== 'new'))
                        $sh_checked .= ' disabled="disabled" ';
 
 
@@ -480,6 +469,9 @@ function events_content(&$a) {
 
                require_once('include/acl_selectors.php');
 
+               if ($mode === 'new')
+                       $acl = (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user)));
+
                $tpl = get_markup_template('event_form.tpl');
 
                $o .= replace_macros($tpl,array(
@@ -491,11 +483,11 @@ function events_content(&$a) {
                        '$title' => t('Event details'),
                        '$desc' => t('Starting date and Title are required.'),
                        '$s_text' => t('Event Starts:') . ' <span class="required" title="' . t('Required') . '">*</span>',
-                       '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text',true,true,'','',true),
+                       '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),t('Event Starts:'),'start_text',true,true,'','',true),
                        '$n_text' => t('Finish date/time is not known or not relevant'),
                        '$n_checked' => $n_checked,
                        '$f_text' => t('Event Finishes:'),
-                       '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'),
+                       '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),t('Event Finishes:'),'finish_text',true,true,'start_text'),
                        '$a_text' => t('Adjust for viewer timezone'),
                        '$a_checked' => $a_checked,
                        '$d_text' => t('Description:'),
@@ -504,11 +496,18 @@ function events_content(&$a) {
                        '$l_orig' => $l_orig,
                        '$t_text' => t('Title:') . ' <span class="required" title="' . t('Required') . '">*</span>',
                        '$t_orig' => $t_orig,
+                       '$summary' => array('summary', t('Title:'), $t_orig, '', '*'),
                        '$sh_text' => t('Share this event'),
+                       '$share' => array('share', t('Share this event'), $sh_checked, ''),
                        '$sh_checked' => $sh_checked,
+                       '$nofinish' => array('nofinish', t('Finish date/time is not known or not relevant'), $n_checked),
+                       '$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
                        '$preview' => t('Preview'),
-                       '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)),
-                       '$submit' => t('Submit')
+                       '$acl' => $acl,
+                       '$submit' => t('Submit'),
+                       '$basic' => t("Basic"),
+                       '$advanced' => t("Advanced"),
+                       '$permissions' => t('Permissions'),
 
                ));