Added new iCal notification feature for all appointments that are scheduled.
[eq/.git] / inc / class.eq.inc.php
index 06c61e0c683ea333e549a240cbb4accf37c4c0d6..acd33b51b5bc68d70f937f5aba4ca0473eeffe0c 100644 (file)
@@ -22,9 +22,10 @@ class eq
   var $default_ht_num_months;
   var $default_ppi_num_months;
   var $default_ppi_num_years;
-  var $default_int_num_months;
+  var $default_int_num_quarters;
   var $default_int_num_years;
-  var $default_att_num_months;
+  var $default_vis_num_years;
+  var $default_att_num_quarters;
   var $current_year;
   var $current_month;
   var $upload_target_path;
@@ -52,7 +53,9 @@ class eq
      'dir_view'   => True,
      'org_view'   => True,
      'schedule'   => True,
-     'admin'      => True
+     'admin'      => True,
+     'email_appt' => True,
+     'send_ical_appt' => True
      );
  
   function eq()
@@ -61,10 +64,9 @@ class eq
       $this->default_ppi_num_months = 3;
       $this->default_ppi_num_years = 0;
       $this->default_int_num_quarters = 1;
-      $this->default_int_num_months = 3;
       $this->default_int_num_years = 0;
-      $this->default_att_num_quarters = 3;
-      $this->default_att_num_months = 3;
+      $this->default_att_num_quarters = 1;
+      $this->default_vis_num_years = 1;
       $this->upload_target_path = "/home/users/eqpres/eq_data/";
       $this->script_path = "/usr/share/phpgroupware/eq/";
       
@@ -917,6 +919,9 @@ class eq
                              " elder='" . $elder . "'" .
                              " WHERE appointment=" . $appointment,__LINE__,__FILE__);
 
+            // Email the appointment
+            $this->email_appt($appointment);
+
           }
          
          // Save any changes made to the ppi notes table
@@ -1203,6 +1208,8 @@ class eq
                              " elder='" . $elder . "'" .
                              " WHERE appointment=" . $appointment,__LINE__,__FILE__);
 
+            // Email the appointment
+            $this->email_appt($appointment);
           }
          
          // Save any changes made to the int notes table
@@ -1535,12 +1542,14 @@ class eq
           {
             $family = $entry['family'];
             $appointment = $entry['appointment'];
-
+            
             // Perform database save actions here
             $this->db->query("UPDATE eq_appointment set " .
                              " family='" . $family . "'" .
                              " WHERE appointment=" . $appointment,__LINE__,__FILE__);
 
+            // Email the appointment
+            $this->email_appt($appointment);
           }
          
          // Save any changes made to the visit notes table
@@ -2378,9 +2387,19 @@ class eq
       
       $this->t->set_var('schedule_vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched'));
       $this->t->set_var('schedule_vis_link_title','Schedule Yearly Visits');
+
+      $this->t->set_var('linkurl',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_view'));
+      $num_years = get_var('num_years',array('GET','POST'));
+      if($num_years == '') { $num_years = $this->default_vis_num_years; }
+      $this->t->set_var('num_years',$num_years);
+      if($num_years == 1) { $this->t->set_var('lang_num_years','Year of History'); }
+      else {  $this->t->set_var('lang_num_years','Years of History'); }
+      $this->t->set_var('lang_filter','Filter');
       
+      $year = date('Y') - $num_years + 1;
+      $year_start = $year - 1 . "-12-31"; $year_end = $year + 1 . "-01-01";
       
-      $sql = "SELECT * FROM eq_visit WHERE companionship=0 ORDER BY date DESC";
+      $sql = "SELECT * FROM eq_visit WHERE companionship=0 and date > '$year_start' ORDER BY date DESC";
       $this->db->query($sql,__LINE__,__FILE__);
       $total_records = $this->db->num_rows();
 
@@ -2573,13 +2592,20 @@ class eq
       $this->t->set_block('att_view_t','elder_list','list3');
       
       $this->t->set_var('linkurl',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.att_view'));
-      $num_months = get_var('num_months',array('GET','POST'));
-      if($num_months == '') { $num_months = $this->default_att_num_months; }
-      $this->t->set_var('num_months',$num_months);
+      $num_quarters = get_var('num_quarters',array('GET','POST'));
+      if($num_quarters == '') { $num_quarters = $this->default_att_num_quarters; }
+      $this->t->set_var('num_quarters',$num_quarters);
       $this->t->set_var('lang_filter','Filter');
-      if($num_months == 1) { $this->t->set_var('lang_num_months','Month of History'); }
-      else {  $this->t->set_var('lang_num_months','Months of History'); }
-         
+      if($num_quarters == 1) { $this->t->set_var('lang_num_quarters','Quarter of History'); }
+      else { $this->t->set_var('lang_num_quarters','Quarters of History'); }
+
+      $num_months = $num_quarters * 3;
+      $current_month = $this->current_month;
+      if($current_month >= 1 && $current_month <= 3) { $current_month=3; }
+      else if($current_month >= 4 && $current_month <= 6) { $current_month=6; }
+      else if($current_month >= 7 && $current_month <= 9) { $current_month=9; }
+      else if($current_month >= 10 && $current_month <= 12) { $current_month=12; }
+      
       $sql = "SELECT * FROM eq_elder where valid=1";
       $this->db->query($sql,__LINE__,__FILE__);
       $i=0;
@@ -2590,13 +2616,12 @@ class eq
          $i++;
        }
       array_multisort($elder_name, $elder_id);
-
       
       // Create a list of sunday dates for a window of 3 months back and current month
       $i=0; 
       $last_time = 0; 
       $found_sunday = 0;
-      $sunday_list[0]['date'] = date("Y-m-d", mktime(0, 0, 0, date("m")-$num_months, 1, date("y")));
+      $sunday_list[0]['date'] = date("Y-m-d", mktime(0, 0, 0, $current_month-$num_months, 1, date("y")));
       $last_date = explode("-",$sunday_list[0]['date']);
       $last_time = mktime(0, 0, 0, $last_date[1], $last_date[2], $last_date[0]);
       $time_limit = mktime(0, 0, 0, date("m"), date("t"), date("y"));
@@ -2604,7 +2629,7 @@ class eq
       {
         $day = date("w",$last_time);
         if(date("w",$last_time) == 0) {
-         $sunday_list[$i]['date'] = date("Y-m-d", $last_time); 
+         $sunday_list[$i]['date'] = date("Y-m-d", $last_time);
          $last_date = explode("-",$sunday_list[$i]['date']);
          $last_time = mktime(0, 0, 0, $last_date[1], $last_date[2], $last_date[0]);
          $sunday_list[$i]['day'] = $last_date[2];
@@ -2779,6 +2804,7 @@ class eq
        {
          $elder_name[$i] = $this->db->f('name');
          $elder_id[$i] = $this->db->f('elder');
+         $elder_attending[$elder_id[$i]] = $this->db->f('attending');
          $i++;
        }
       array_multisort($elder_name, $elder_id);
@@ -2856,6 +2882,8 @@ class eq
          $value = $elder_id[$i] . "-" . $sunday_list[$j]['date'];
          if($this->db->next_record()) {
            $att_table .= '<td align=center><input type="checkbox" name="elders_attended[]" value="'.$value.'" checked></td>';
+         } else if($elder_attending[$elder_id[$i]] == 1) {
+           $att_table .= '<td align=center><input type="checkbox" name="elders_attended[]" value="'.$value.'" checked></td>';
          } else {
            $att_table .= '<td align=center><input type="checkbox" name="elders_attended[]" value="'.$value.'"></td>';
          }
@@ -3021,6 +3049,7 @@ class eq
                 $family = $entry['family'];
                 if($pm) { $hour = $hour + 12; }
                 $time = $hour.':'.$minute.':'.'00';
+                $uid = 0;
 
                 // Update an existing appointment
                 if($appointment != 0)
@@ -3032,7 +3061,8 @@ class eq
                              " ,time='" . $time . "'" .
                              " WHERE appointment=" . $appointment,__LINE__,__FILE__);
 
-                    //print "updating entry: appt=$appointment date: $date time: $time elder: $elder family: $family<br>";                  
+                    // Email the appointment
+                    $this->email_appt($appointment);
                   }
                 
                 // Add a new appointment
@@ -3040,7 +3070,7 @@ class eq
                   {
                     $this->db->query("INSERT INTO eq_appointment (appointment,presidency,family,elder,date,time) "
                           . "VALUES ('" . $appointment . "','" . $presidency . "','" . $family . "','"
-                          . $elder . "','" . $date . "','" . $time  ."')",__LINE__,__FILE__);
+                          . $elder . "','" . $date . "','" . $time  . "','" . $uid ."')",__LINE__,__FILE__);
                     
                     //print "adding entry: appt=$appointment date: $date time: $time elder: $elder family: $family<br>";                    
                   }
@@ -3365,7 +3395,171 @@ class eq
       
       $this->save_sessiondata();   
     }
-  
+
+  function email_appt($appointment)
+    {
+      //print "Emailing notification of appointment: $appointment <br>";
+
+      $sql = "SELECT * FROM eq_appointment where appointment='$appointment'";
+      $this->db->query($sql,__LINE__,__FILE__);
+       
+      while ($this->db->next_record())
+       {
+         $appointment = $this->db->f('appointment');
+         $presidency = $this->db->f('presidency');
+         $interviewer = "";
+         $email = "";
+         $elder = $this->db->f('elder');
+         $elder_name = "";
+         $family = $this->db->f('family');
+         $family_name = "";
+         $appt_name = "";
+         $phone = "";
+         $location = "";
+         $uid = $this->db->f('uid');
+                   
+         // Extract the year, month, day, hours, minutes, seconds from the appointment time
+         $appt_date = $this->db->f('date');
+         $date_array = explode("-",$appt_date);
+         $year = $date_array[0]; $month = $date_array[1]; $day = $date_array[2];
+         $appt_time = $this->db->f('time');
+         $time_array = explode(":",$appt_time);
+         $hour = $time_array[0]; $minute = $time_array[1]; $seconds = $time_array[2];
+
+         // Format the appointment time into an iCal UTC equivalent
+         $dtstamp = gmdate("Ymd"."\T"."His"."\Z");
+         $dtstart = gmdate("Ymd"."\T"."His"."\Z", mktime($hour,$minute,$seconds,$month,$day,$year));
+         
+         // Set the email address of the person making the appointment
+         $from = $GLOBALS['phpgw_info']['user']['fullname'] . "<" .
+                 $GLOBALS['phpgw_info']['user']['preferences']['email']['address'] . ">";
+         
+         $sql = "SELECT * FROM eq_presidency where presidency='$presidency'";
+         $this->db2->query($sql,__LINE__,__FILE__);
+         if($this->db2->next_record()) {
+           $email = $this->db2->f('email');
+           $interviewer = $this->db2->f('name');
+         }
+
+         if($elder > 0) { 
+           $sql = "SELECT * FROM eq_elder where elder='$elder'";
+           $this->db2->query($sql,__LINE__,__FILE__);
+           if($this->db2->next_record()) {
+             $elder_name = $this->db2->f('name');
+             $phone = $this->db2->f('phone');
+             $appt_name = $elder_name . " Interview";
+             $location = "$interviewer"."'s home";
+             $duration = 1800; // 30 minutes
+           }
+         }
+
+         if($family > 0) { 
+           $sql = "SELECT * FROM eq_family where family='$family'";
+           $this->db2->query($sql,__LINE__,__FILE__);
+           if($this->db2->next_record()) {
+             $family_name = $this->db2->f('name');
+             $phone = $this->db2->f('phone');
+             $elder_id = $this->db2->f('elder_id');
+             $appt_name = $family_name . " Family Visit";
+             $sql = "SELECT * FROM eq_elder where elder='$elder_id'";
+             $this->db3->query($sql,__LINE__,__FILE__);
+             if($this->db3->next_record()) {
+               $phone = $this->db3->f('phone');
+             }
+             $location="";
+             $duration = 2700; // 45 minutes
+           }
+         }
+
+         $dtend = gmdate("Ymd"."\T"."His"."\Z", mktime($hour,$minute,$seconds+$duration,$month,$day,$year));
+         $description = "$appt_name : $phone";
+         
+         if(($uid == 0) && ($appt_name != "")) { 
+           // Create a new calendar item for this appointment, since this must be the first time we
+           // are sending it out.
+           print "Sent new appointment to " . $interviewer . " at " . $email . " for " . $appt_name . "<br>";
+           $uid = rand() . rand(); // Generate a random identifier for this appointment
+           $subject = "Created: $appt_name";
+           
+           $this->db->query("UPDATE eq_appointment set" .
+                            " uid=" . $uid . 
+                            " WHERE appointment=" . $appointment,__LINE__,__FILE__);
+
+           $action = "PUBLISH";
+           $this->send_ical_appt($action, $email, $from, $subject, $dtstamp, $dtstart,
+                                 $dtend, $location, $appt_name, $description, $uid);
+           
+         } else if(($uid != 0) && ($appt_name == "")) {
+           // Remove the calendar item for this appointment since it has already been sent
+           // and there is no name we have changed it to.
+           print "Sent deleted appointment to " . $interviewer . " at " . $email . " for " . $appt_date . " " . $appt_time . "<br>";
+           $subject = "Canceled: $appt_date $appt_time";
+           
+           $this->db->query("UPDATE eq_appointment set" .
+                            " uid=0" . 
+                            " WHERE appointment=" . $appointment,__LINE__,__FILE__);
+           
+           $action = "CANCEL";
+           $this->send_ical_appt($action, $email, $from, $subject, $dtstamp, $dtstart,
+                                 $dtend, $location, $appt_name, $description, $uid);
+           
+         } else if($uid != 0) {
+           // Update the existing appointment since we have changed it
+           print "Sent updated appointment to " . $interviewer . " at " . $email . " for " . $appt_name . "<br>";
+
+           $subject = "Canceled: $appt_date $appt_time";
+           $action = "CANCEL";
+           $this->send_ical_appt($action, $email, $from, $subject, $dtstamp, $dtstart,
+                                 $dtend, $location, $appt_name, $description, $uid);
+           
+           $uid = rand() . rand(); // Generate a random identifier for this appointment
+           $this->db->query("UPDATE eq_appointment set" .
+                            " uid=" . $uid .
+                            " WHERE appointment=" . $appointment,__LINE__,__FILE__);
+           
+           $subject = "Updated: $appt_name";       
+           $action = "PUBLISH";
+           $this->send_ical_appt($action, $email, $from, $subject, $dtstamp, $dtstart,
+                                 $dtend, $location, $appt_name, $description, $uid);
+         }
+         
+       }
+         
+      return true;
+    }
+
+  function send_ical_appt($action, $to, $from, $subject, $dtstamp, $dtstart, $dtend, $location, $summary, $description, $uid)
+    {
+      $headers = 'From: ' . "$from" . "\n" .
+        'Reply-To: ' . "$from" . "\n" .
+        'X-Mailer: PHP/' . phpversion() . "\n" .
+        'Content-Type: text/calendar;' . "\n" .
+        'Content-Transfer-Encoding: 7bit' . "\n";
+      
+      //$message = "phone: $phone date: $date time: $time";
+      $message ="";
+      $message.="BEGIN:VCALENDAR" . "\n";
+      $message.="VERSION:2.0" . "\n";
+      $message.="PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN" . "\n";
+      $message.="METHOD:$action" . "\n";
+      $message.="BEGIN:VEVENT" . "\n";
+      $message.="ORGANIZER:MAILTO:$from". "\n";
+      $message.="DTSTAMP:$dtstamp" . "\n";
+      $message.="DTSTART:$dtstart" . "\n";
+      $message.="DTEND:$dtend" . "\n";
+      $message.="SUMMARY:$summary" . "\n";
+      $message.="DESCRIPTION:$description" . "\n";
+      $message.="LOCATION:$location" . "\n";
+      $message.="UID:$uid" ."\n";
+      $message.="TRANSP:OPAQUE" . "\n";
+      $message.="SEQUENCE:0" . "\n";
+      $message.="CLASS:PUBLIC" . "\n";
+      $message.="END:VEVENT" . "\n";
+      $message.="END:VCALENDAR" . "\n";
+      
+      mail($to, $subject, $message, $headers);
+      
+    }
 }
 
 ?>