X-Git-Url: http://git.roojs.org/?p=Pman.Base;a=blobdiff_plain;f=Pman%2FRoo.php;h=e6559441cf9afdeb77a5e7409ebebade50327585;hp=261b1f881c2e4db022ad8ae6311ca1a685879753;hb=HEAD;hpb=c9c170700e23d9ed90915f9db1c45cba9c2f1b75 diff --git a/Pman/Roo.php b/Pman/Roo.php index 261b1f8..ee0e571 100644 --- a/Pman/Roo.php +++ b/Pman/Roo.php @@ -13,7 +13,7 @@ require_once 'Pman.php'; * * - applySort($au, $sortcol, $direction, $array_of_columns, $multisort) -- does not support multisort at present.. * - applyFilters($_REQUEST, $authUser, $roo) -- apply any query filters on data. and hide stuff not to be seen. (RETURN false to prevent default filters.) - * - postListExtra($_REQUEST) : array(extra_name => data) - add extra column data on the results (like new messages etc.) + * - postListExtra($_REQUEST, $roo, $array_data) : array(extra_name => data) - add extra column data on the results (like new messages etc.) * - postListFilter($data, $authUser, $request) return $data - add extra data to an object * * - toRooSingleArray($authUser, $request) // single fetch, add data.. @@ -25,7 +25,7 @@ require_once 'Pman.php'; * ... call $roo->jerr() on failure... * * BEFORE - * - beforeDelete($dependants_array, $roo) Argument is an array of un-find/fetched dependant items. + * - beforeDelete($dependants_array, $roo, $request) Argument is an array of un-find/fetched dependant items. * - jerr() will stop insert.. (Prefered) * - return false for fail and set DO->err; * - beforeUpdate($old, $request,$roo) - after update - jerr() will stop insert.. @@ -36,15 +36,20 @@ require_once 'Pman.php'; * - onInsert($request,$roo, $event) - after insert * - onDelete($req, $roo) - after delete * - onUpload($roo) - * - - * + * * - toEventString (for logging - this is generically prefixed to all database operations.) */ class Pman_Roo extends Pman { - /** + + /* EVENTUALLY - move this stuff here.. + * use Pman_Core_RooTrait, + Pman_Core_RooGetTrait, + Pman_Core_RooPostTrait, + Pman_Core_RooJsonOutputTrait; + */ + /** * if set to an array (when extending this, then you can restrict which tables are available */ var $validTables = false; @@ -58,16 +63,21 @@ class Pman_Roo extends Pman var $do = false; // the dataobject being worked on.. + + var $countWhat; // set in loadMap + var $colsJname; + var $old; + function getAuth() { parent::getAuth(); // load company! $au = $this->getAuthUser(); if (!$au) { - $this->jerr("Not authenticated", array('authFailure' => true)); + $this->jerror("LOGIN-NOAUTH", "Not authenticated", array('authFailure' => true)); } if (!$au->pid() ) { // not set up yet.. - $this->jerr("Not authenticated", array('authFailure' => true)); + $this->jerror("LOGIN-NOAUTH", "Not authenticated", array('authFailure' => true)); } @@ -87,6 +97,9 @@ class Pman_Roo extends Pman * lookup[key]=value single fetch based on a single key value lookup. * multiple key/value can be used. eg. ontable+onid.. * _columns what to return. + * + * _no_count skip the default count query. + * use the number of records in the query result as the total * * * JOINS: @@ -142,10 +155,10 @@ class Pman_Roo extends Pman * applyFilters($_REQUEST, $authUser, $roo) * -- apply any query filters on data. and hide stuff not to be seen. * -- can exit by calling $roo->jerr() - * postListExtra($_REQUEST) : array(extra_name => data) - * - add extra column data on the results (like new messages etc.) + * postListExtra($_REQUEST, $roo, $array_data) : array(extra_name => data) + * - add extra column to the jdata return key/value info. * postListFilter($data, $authUser, $request) return $data - * - add extra data to an object + * - modify the returned array of data (either add stuff to the data, or remove lines etc) * * * toRooSingleArray($authUser, $request) : array @@ -175,13 +188,9 @@ class Pman_Roo extends Pman $this->init(); // from pman. //DB_DataObject::debuglevel(1); HTML_FlexyFramework::get()->generateDataobjectsCache($this->isDev && !empty($_REQUEST['isDev'])); - - - + // debugging... - - - + if ( $this->checkDebugPost()) { @@ -198,7 +207,8 @@ class Pman_Roo extends Pman $tab = array_shift($tt); $x = $this->dataObject($tab); - $_columns = !empty($_REQUEST['_columns']) ? explode(',', $_REQUEST['_columns']) : false; + $_columns = !empty($_REQUEST['_columns']) && is_string($_REQUEST['_columns']) ? explode(',', $_REQUEST['_columns']) : false; + if (isset( $_REQUEST['lookup'] ) && is_array($_REQUEST['lookup'] )) { // single fetch based on key/value pairs $this->selectSingle($x, $_REQUEST['lookup'],$_REQUEST); @@ -243,31 +253,46 @@ class Pman_Roo extends Pman // sets map and countWhat $this->loadMap($x, array( - 'columns' => $_columns, - 'distinct' => empty($_REQUEST['_distinct']) ? false: $_REQUEST['_distinct'], - 'exclude' => empty($_REQUEST['_exclude_columns']) ? false: explode(',', $_REQUEST['_exclude_columns']) - )); + 'columns' => $_columns, + 'distinct' => empty($_REQUEST['_distinct']) ? false: $_REQUEST['_distinct'], + 'exclude' => empty($_REQUEST['_exclude_columns']) ? false: explode(',', $_REQUEST['_exclude_columns']) + )); $this->setFilters($x,$_REQUEST); if (!$this->checkPerm($x,'S', $_REQUEST)) { - $this->jerr("PERMISSION DENIED (g)"); + $this->jerror("NOTICE-NOPERM", "PERMISSION DENIED (g)"); } //print_r($x); // build join if req. //DB_DataObject::debugLevel(1); - // var_dump($this->countWhat); - $total = $x->count($this->countWhat); + // count with multiple joins and no conditions can be quite slow - so if there are no conditions - just remove the joins from the count. + $xx = clone($x); + $old_where = $x->whereAdd(); + if (empty($old_where )) { + $xx->_join = ''; + } else { + $x->whereAdd($old_where); + $xx=clone($x); + + } + $total = false; + if (!isset($_REQUEST['_no_count'])) { + $total = $xx->count($this->countWhat); + } + if (isset($xx->_real_total)) { // this is used when we subquery the search. + $total = $xx->_real_total; + } // sorting.. // - //var_dump($total);exit; + // var_dump($total);exit; $this->applySort($x); $fake_limit = false; - if (!empty($_REQUEST['_distinct']) && $total < 400) { + if (!empty($_REQUEST['_distinct']) && $total !== false && $total < 400) { $fake_limit = true; } @@ -299,7 +324,7 @@ class Pman_Roo extends Pman if (!empty($_REQUEST['query']['add_blank'])) { $ret[] = array( 'id' => 0, 'name' => '----'); - $total+=1; + $total === false ? false : $total+1; } $rooar = method_exists($x, 'toRooArray'); @@ -324,13 +349,13 @@ class Pman_Roo extends Pman $extra = false; if (method_exists($queryObj ,'postListExtra')) { - $extra = $queryObj->postListExtra($_REQUEST, $this); + $extra = $queryObj->postListExtra($_REQUEST, $this, $ret); } // filter results, and add any data that is needed... if (method_exists($x,'postListFilter')) { - $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST); + $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST, $this); } @@ -344,24 +369,19 @@ class Pman_Roo extends Pman } - //die("DONE?"); - - //if ($x->tableName() == 'Documents_Tracking') { - // $ret = $this->replaceSubject(&$ret, 'doc_id_subject'); - // } - if (!empty($_REQUEST['_requestMeta']) && count($ret)) { $meta = $this->meta($x, $ret); if ($meta) { + $extra = $extra ? $extra: array(); $extra['metaData'] = $meta; } } // this make take some time... $this->sessionState(0); // echo "
"; print_r($ret);
-        $this->jdata($ret, max(count($ret), $total), $extra );
+        $this->jdata($ret, max(count($ret), $total === false ? 0 : $total), $extra );
 
     
     }
@@ -536,7 +556,7 @@ class Pman_Roo extends Pman
                           // 'fillBlank' => 'gray', // set 
                     );
                     //die('here');
-                    if (method_exists($this->do, 'toSimpleExcelColumn')) {
+                    if (!empty($this->do) && method_exists($this->do, 'toSimpleExcelColumn')) {
                         $add = $this->do->toSimpleExcelColumn($add);
                     } 
                     
@@ -635,7 +655,7 @@ class Pman_Roo extends Pman
      *                      - return false for fail and set DO->err;
      *                      
      *      beforeUpdate($old, $request,$roo)
-     *                      - after update - jerr() will stop insert..
+     *                      - before update - jerr() will stop insert..
      *      beforeInsert($request,$roo)
      *                      - before insert - jerr() will stop insert..
      *
@@ -743,11 +763,11 @@ class Pman_Roo extends Pman
     {
         
         // Db_DataObject::debugLevel(1);
-        $sort = empty($_REQUEST['sort']) ? $sort : $_REQUEST['sort'];
-        $dir = empty($_REQUEST['dir']) ? $dir : $_REQUEST['dir'];
+        $sort = empty($_REQUEST['sort']) || !is_string($_REQUEST['sort']) ? $sort : $_REQUEST['sort'];
+        $dir = empty($_REQUEST['dir']) || !is_string($_REQUEST['dir']) ? $dir : $_REQUEST['dir'];
         $dir = $dir == 'ASC' ? 'ASC' : 'DESC';
          
-        $ms = empty($_REQUEST['_multisort']) ? false : $_REQUEST['_multisort'];
+        $ms = empty($_REQUEST['_multisort']) || !is_string($_REQUEST['_multisort']) ? false : $_REQUEST['_multisort'];
         //var_Dump($ms);exit;
         $sorted = false;
         if (method_exists($x, 'applySort')) {
@@ -759,12 +779,12 @@ class Pman_Roo extends Pman
                     $ms ? json_decode($ms) : false
             );
         }
+        
         if ($ms !== false) {
             return $this->multiSort($x);
         }
-        
+ 
         if ($sorted === false) {
-            
             $cols = $x->tableColumns();
             $excols = array_keys($this->cols);
             
@@ -906,7 +926,6 @@ class Pman_Roo extends Pman
         if (method_exists($x, 'toRooArray')) {
             $this->jok($x->toRooArray($req));
         }
-        
         $this->jok($x->toArray());
         
         
@@ -914,17 +933,17 @@ class Pman_Roo extends Pman
     
     function insert($x, $req, $with_perm_check = true)
     {
-        if (method_exists($x, 'setFromRoo')) {
+         if (method_exists($x, 'setFromRoo')) {
             $res = $x->setFromRoo($req, $this);
             if (is_string($res)) {
-                $this->jerr($res);
+                $this->jerror("NOTICE-INSERT", $res);
             }
         } else {
             $x->setFrom($req);
         }
-        
+
         if ( $with_perm_check &&  !$this->checkPerm($x,'A', $req))  {
-            $this->jerr("PERMISSION DENIED (i)");
+            $this->jerr("PERMISSION DENIED {$x->tableName()}:checkPerm(A)");
         }
         $cols = $x->tableColumns();
      
@@ -969,13 +988,14 @@ class Pman_Roo extends Pman
         }
         $ev = $this->addEvent("ADD", $x);
         if (method_exists($x, 'onInsert')) {
+                    
             $x->onInsert($_REQUEST, $this, $ev);
         }
         
         if ($ev) { 
             $ev->audit($x);
         }
-        
+      
         // note setFrom might handle this before hand...!??!
         if (!empty($_FILES) && method_exists($x, 'onUpload')) {
             $x->onUpload($this, $_REQUEST);
@@ -1191,7 +1211,7 @@ class Pman_Roo extends Pman
         
         $x->whereAdd($this->key .'  IN ('. implode(',', $bits) .')');
         if (!$x->find()) {
-            $this->jerr("Nothing found to delete");
+            $this->jerror("NOTICE-DELETE","Nothing found to delete");
         }
         $errs = array();
         while ($x->fetch()) {
@@ -1235,7 +1255,7 @@ class Pman_Roo extends Pman
             $match_total = 0;
             
             if ( $has_beforeDelete ) {
-                if ($xx->beforeDelete($match_ar, $this) === false) {
+                if ($xx->beforeDelete($match_ar, $this, $_REQUEST) === false) {
                     $errs[] = "Delete failed ({$xx->id})\n".
                         (isset($xx->err) ? $xx->err : '');
                     continue;
@@ -1270,7 +1290,7 @@ class Pman_Roo extends Pman
                 if (method_exists($chk, 'toEventString')) {
                     $desc .=  ' : ' . $o[0]->toEventString();
                 }
-                $this->jerr("Delete Dependant records ($match_total  found),  " .
+                $this->jerror("NOTICE-DELETE-DEP", "Delete Dependant records ($match_total  found),  " .
                              "first is ( $desc )");
           
             }
@@ -1319,8 +1339,7 @@ class Pman_Roo extends Pman
     
     function loadMap($do, $cfg =array()) //$onlycolumns=false, $distinct = false) 
     {
-       
-        //DB_DataObject::debugLevel(5);
+         //DB_DataObject::debugLevel(5);
         $onlycolumns    = !empty($cfg['columns']) ? $cfg['columns'] : false;
         $distinct       = !empty($cfg['distinct']) ? $cfg['distinct'] : false;
         $excludecolumns = !empty($cfg['exclude']) ? $cfg['exclude'] : array();
@@ -1499,7 +1518,7 @@ class Pman_Roo extends Pman
                         $x->whereAdd("(on_id = $oid  OR 
                                 on_id IN ( SELECT distinct(id) FROM Documents WHERE original = $o ) 
                             )");
-                        continue;
+                        continue 2;
                                 
                     }
                     $x->on_id = $val;
@@ -1517,7 +1536,7 @@ class Pman_Roo extends Pman
                         
                         // the aobve rule for !strlen non-joined cols should apply to joined ones.
                         if (!strlen($val)) {
-                            continue;
+                            continue 2;
                         }
                         
                         
@@ -1530,7 +1549,7 @@ class Pman_Roo extends Pman
                     }
                     
                     
-                    continue;
+                    continue 2;
             }
         }
         if (!empty($q_filtered)) {
@@ -1576,7 +1595,8 @@ class Pman_Roo extends Pman
         }
         $tab = str_replace('/', '',$tab); // basic protection??
         
-        $pm = HTML_FlexyFramework::get()->Pman;
+        $ff = HTML_FlexyFramework::get();
+        $pm = isset($ff->Pman) ? $ff->Pman : array();
         
         if (isset($pm['roo_alias'])) {
             $map = array_flip($pm['roo_alias']);