DataObjects/core.sql
[Pman.Core] / DataObjects / Events.php
index ed74db9..2cec333 100644 (file)
@@ -24,7 +24,7 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
     public $on_table;                        // string(64)  
     public $person_id;                       // int(11)  
     public $remarks;                         // blob(65535)  blob
-
+    public $person_table;                    // string(64)
     
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
@@ -36,6 +36,27 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
     function applyFilters($q, $au ,$roo)
     {
         $tn = $this->tableName();
+        // if not empty on_table
+        if(!empty($q['person_table'])){
+            $jt = DB_DataObject::factory($q['person_table']);
+        
+            $this->_join = "LEFT JOIN {$jt->tableName()} AS join_person_id_id ON (join_person_id_id.id=Events.person_id)";
+            $this->selectAdd();
+            $this->selectAs();
+            
+            $this->selectAs($jt, 'person_id_%s', 'join_person_id_id');
+        
+        } else {
+            $jt = DB_DataObject::factory('Person');
+            $this->whereAdd("
+                    person_table  = '{$jt->tableName()}'
+                    OR
+                    person_table = ''
+                    OR person_table IS NULL"
+            ); // default to  our standard.. - unless otherwise requested..
+        }
+        
+        
         if (!empty($q['query']['from'])) {
             $dt = date('Y-m-d' , strtotime($q['query']['from']));
             $this->whereAdd(" {$tn}.event_when >=  '$dt' ");
@@ -75,6 +96,7 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
         }
         
         
+        
         if (isset($q['query']['person_sum'])) {
             //DB_DataObject::debugLevel(1);
             $this->_extra_cols = array('qty' );
@@ -199,73 +221,14 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
         }
         // since roo does not support autojoin yet..
         if (!isset($q['_distinct'])) {
-            $this->autoJoinExtra();
+            //$this->autoJoinExtra();
         }
         
         
         
             
     }
-     
-    function autoJoinExtra()
-    {
-        //$ret = parent::autoJoin();
-        // DB_DataObject::debugLevel(1);
-        
-        // now try and magically join person_table to the right table..
-        return;
-        // this does not work on postgres.. 
-        $tn = $this->tableName();
-        $pt = DB_DataObject::Factory($this->tableName());
-        $pt->selectAdD();
-        $pt->selectAdD('distinct(person_table) as person_table');
-        $pt->whereAdd('person_table IS NOT NULL AND LENGTH(person_table) > 0');
-        $tbls = $pt->fetchAll('person_table');
-        $pers = DB_DataObject::Factory('Person');
-        $ptbl = $pers->tableName();
-        if (!in_array($ptbl,$tbls)) {
-            $tbls[] = $ptbl;
-            
-        }
-        foreach($tbls as $tbl) {
-            
-            // find all the columns from the joined table..
-            $st = DB_DataObject::Factory($tbl);
-            $tcols = array_keys($st->table());
-            
-            $cond = "{$tn}.person_table = '{$tbl}'";
-            if ($tbl == $ptbl) {
-                $cond = "( $cond OR {$tn}.person_table  = '')";
-            }
-            
-            foreach($tcols as $col) {
-                if ($col == 'passwd') {
-                    continue;
-                }
-                $cols[$col]  = isset($cols[$col] ) ? $cols[$col]  : array();
-                $cols[$col][] = "WHEN $cond  THEN join_person_table_{$tbl}.{$col}";
-            }
-            // id's are hard coded...
-            
-            $this->_join .= "
-                LEFT JOIN {$tbl} AS  join_person_table_{$tbl}
-                    ON {$tn}.person_id = join_person_table_{$tbl}.id
-                        AND $cond
-            ";
-        }
-        foreach($cols as $col=>$whens) {
-            
-            $this->selectAdd("
-                    CASE
-                        ". implode("\n", $whens) ." 
-                        ELSE ''
-                    END
-                    as person_table_{$col}"
-            );
-        }
-        //return $ret;
-         
-    }
+      
     
     
     /**
@@ -394,37 +357,7 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
     
     function onInsert($request,$roo)
     {
-        $ff  = HTML_FlexyFramework::get();
-        if (empty($ff->Pman['event_log_dir'])) {
-            return false;
-        }
-        
-        // add user (eg. www-data or local user if not..)
-        if (function_exists('posix_getpwuid')) {
-            $uinfo = posix_getpwuid( posix_getuid () ); 
-         
-            $user = $uinfo['name'];
-        } else {
-            $user = getenv('USERNAME'); // windows.
-        }
-        //print_r($this);
-        $file = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/'). $this->id . ".json";
-        if (!file_exists(dirname($file))) {
-            mkdir(dirname($file),0700,true);
-        }
-        // Remove all the password from logs...
-        $p =  empty($_POST) ? array() : $_POST;
-        foreach(array('passwd', 'password', 'passwd2', 'password2') as $rm) {
-            if (isset($p[$rm])) {
-                $p['passwd'] = '******';
-            }
-        }
-         
-        file_put_contents($file, json_encode(array(
-            'REQUEST_URI' => empty($_SERVER['REQUEST_URI']) ? 'cli' : $_SERVER['REQUEST_URI'],
-            'GET' => empty($_GET) ? array() : $_GET,
-            'POST' =>$p,
-        )));
+        $this->writeEventLog();
     }
     
     function writeEventLog()
@@ -447,19 +380,43 @@ class Pman_Core_DataObjects_Events extends DB_DataObject
         if (!file_exists(dirname($file))) {
             mkdir(dirname($file),0700,true);
         }
+        
         // Remove all the password from logs...
         $p =  empty($_POST) ? array() : $_POST;
         foreach(array('passwd', 'password', 'passwd2', 'password2') as $rm) {
             if (isset($p[$rm])) {
-                $p['passwd'] = '******';
+                $p[$rm] = '******';
             }
         }
+        
+        
+        $i=0;
+        $files = array();
          
+        $i = 0;
+        foreach ($_FILES as $k=>$f){
+            // does not handle any other file[] arrary very well..
+            if (empty($f['tmp_name']) || !file_exists($f['tmp_name'])) {
+                continue;
+            }
+            $i++;
+            $files[$k] = $f;
+            
+             
+            $files[$k]['tmp_name'] =  $this->id . '-'. $i;
+            $nf = $ff->Pman['event_log_dir']. '/'. $user. date('/Y/m/d/').   $files[$k]['tmp_name']; 
+            if (!copy($f['tmp_name'], $nf)) {
+                print_r("failed to copy {$f['tmp_name']}...\n");
+            }
+        }
+        
         file_put_contents($file, json_encode(array(
             'REQUEST_URI' => empty($_SERVER['REQUEST_URI']) ? 'cli' : $_SERVER['REQUEST_URI'],
             'GET' => empty($_GET) ? array() : $_GET,
             'POST' =>$p,
+            'FILES' => $files,
         )));
+        
     }