performance with counts
[Pman.Base] / Pman / Roo.php
1 <?php
2
3
4 require_once 'Pman.php';
5 /**
6  * 
7  * 
8   * 
9  * 
10  * Uses these methods of the dataobjects:
11  * 
12  * - checkPerm('L'/'E'/'A', $authuser) - can we list the stuff
13  * 
14  * - applySort($au, $sortcol, $direction, $array_of_columns, $multisort) -- does not support multisort at present..
15  * - applyFilters($_REQUEST, $authUser, $roo) -- apply any query filters on data. and hide stuff not to be seen. (RETURN false to prevent default filters.)
16  * - postListExtra($_REQUEST) : array(extra_name => data) - add extra column data on the results (like new messages etc.)
17  * - postListFilter($data, $authUser, $request) return $data - add extra data to an object
18  * 
19  * - toRooSingleArray($authUser, $request) // single fetch, add data..
20  * - toRooArray($request) /// toArray if you need to return different data.. for a list fetch.
21  *
22  * 
23  *  CRUD - before/after handlers..
24  * - setFromRoo($ar, $roo) - values from post (deal with dates etc.) - return true|error string.
25  *      ... call $roo->jerr() on failure...
26  *
27  *  BEFORE
28  * - beforeDelete($dependants_array, $roo) Argument is an array of un-find/fetched dependant items.
29  *                      - jerr() will stop insert.. (Prefered)
30  *                      - return false for fail and set DO->err;
31  * - beforeUpdate($old, $request,$roo) - after update - jerr() will stop insert..
32  * - beforeInsert($request,$roo) - before insert - jerr() will stop insert..
33  *
34  *  AFTER
35  * - onUpdate($old, $request,$roo, $event) - after update // return value ignored
36  * - onInsert($request,$roo, $event) - after insert
37  * - onDelete($req, $roo) - after delete
38  * - onUpload($roo)
39  * 
40  
41  * 
42  * - toEventString (for logging - this is generically prefixed to all database operations.)
43  */
44
45 class Pman_Roo extends Pman
46 {
47     /**
48      * if set to an array (when extending this, then you can restrict which tables are available
49      */
50     var $validTables = false; 
51     
52     var $key; // used by update currenly to store primary key.
53     
54      
55     var $max_limit = 10000;
56     
57     var $debugEnabled = true; // disable this for public versions of this code.
58     
59     var $do = false; // the dataobject being worked on..
60     
61     function getAuth()
62     {
63         parent::getAuth(); // load company!
64         $au = $this->getAuthUser();
65        
66         if (!$au) {  
67             $this->jerr("Not authenticated", array('authFailure' => true));
68         }
69         if (!$au->pid()   ) { // not set up yet..
70             $this->jerr("Not authenticated", array('authFailure' => true));
71         }
72         
73         
74         $this->authUser = $au;
75         return true;
76     }
77     /**
78      * GET method   Roo/TABLENAME
79      *
80      * Generally for SELECT or Single SELECT
81      *
82      * Single SELECT:
83      *    _id=value          single fetch based on primary id.
84      *                       can be '0' if you want to fetch a set of defaults
85      *                       Use in conjuntion with toRooSingleArray()
86      *                      
87      *    lookup[key]=value  single fetch based on a single key value lookup.
88      *                       multiple key/value can be used. eg. ontable+onid..
89      *    _columns           what to return.
90      *
91      *    
92      * JOINS:
93      *  - all tables are always autojoined.
94      * 
95      * Search SELECT
96      *    COLUMNS to fetch
97      *      _columns=a,b,c,d     comma seperated list of columns.
98      *      _exclude_columns=a,b,c,d   comma seperated list of columns.
99      *      _distinct=name        a distinct column lookup. you also have to use _columns with this.
100      *
101      *    WHERE (searches)
102      *       colname = ...              => colname = ....
103      *       !colname=....                 => colname != ....
104      *       !colname[0]=... !colname[1]=... => colname NOT IN (.....) ** only supports main table at present..
105      *       colname[0]=... colname[1]=... => colname IN (.....) ** only supports main table at present..
106      *
107      *    ORDER BY
108      *       sort=name          what to sort.
109      *       sort=a,b,d         can support multiple columns
110      *       dir=ASC            what direction
111      *       _multisort ={...}  JSON encoded { sort : { row : direction }, order : [ row, row, row ] }
112      *
113      *    LIMIT
114      *      start=0         limit start
115      *      limit=25        limit number 
116      * 
117      * 
118      *    Simple CSV support
119      *      csvCols[0] csvCols[1]....    = .... column titles for CSV output
120      *      csvTitles[0], csvTitles[1] ....  = columns to use for CSV output
121      *
122      *  Depricated  
123      *      _toggleActive !:!:!:! - this hsould not really be here..
124      *      query[add_blank] - add a line in with an empty option...  - not really needed???
125      *      _delete    = delete a list of ids element. (depricated.. this will be removed...)
126      * 
127      * DEBUGGING
128      *  _post   =1    = simulate a post with debuggin on.
129      *  _debug_post << This is prefered, as _post may overlap with accouting posts..
130      *  
131      *  _debug     = turn on DB_dataobject deubbing, must be admin at present..
132      *
133      *
134      * CALLS methods on dataobjects if they exist
135      *
136      * 
137      *   checkPerm('S' , $authuser)
138      *                      - can we list the stuff
139      *                      - return false to disallow...
140      *   applySort($au, $sortcol, $direction, $array_of_columns, $multisort)
141      *                     -- does not support multisort at present..
142      *   applyFilters($_REQUEST, $authUser, $roo)
143      *                     -- apply any query filters on data. and hide stuff not to be seen.
144      *                     -- can exit by calling $roo->jerr()
145      *   postListExtra($_REQUEST) : array(extra_name => data)
146      *                     - add extra column data on the results (like new messages etc.)
147      *   postListFilter($data, $authUser, $request) return $data
148      *                      - add extra data to an object
149      * 
150      *   
151      *   toRooSingleArray($authUser, $request) : array
152      *                       - called on single fetch only, add or maniuplate returned array data.
153      *                       - is also called when _id=0 is used (for fetching a default set.)
154      *   toRooArray($request) : array
155      *                      - called if singleArray is unavailable on single fetch.
156      *                      - always tried for mutiple results.
157      *   toArray()          - the default method if none of the others are found.
158      *   toSimpleExcelColumn($col) - see toCSV - this enables special columns to be created for exported data.
159      *   
160      *   autoJoin($request) 
161      *                      - standard DataObject feature - causes all results to show all
162      *                        referenced data.
163      *
164      * PROPERTIES:
165      *    _extra_cols  -- if set, then filtering by column etc. will use them.
166      *
167      
168      */
169     function get($tab, $opts = Array())
170     {
171          //  $this->jerr("Not authenticated", array('authFailure' => true));
172        //echo '<PRE>';print_R($_GET);
173       //DB_DataObject::debuglevel(1);
174         
175         $this->init(); // from pman.
176         //DB_DataObject::debuglevel(1);
177         HTML_FlexyFramework::get()->generateDataobjectsCache($this->isDev && !empty($_REQUEST['isDev']));
178         
179    
180         
181         // debugging...
182         
183         
184         
185         if ( $this->checkDebugPost()) {
186                     
187             
188             
189             $_POST  = $_GET;
190             //DB_DAtaObject::debuglevel(1);
191             return $this->post($tab);
192         }
193         
194         $this->checkDebug();
195         $this->initErrorHandling();
196    
197         $tt = explode('/', $tab);
198         $tab = array_shift($tt);
199         $x = $this->dataObject($tab);
200         
201         $_columns = !empty($_REQUEST['_columns']) ? explode(',', $_REQUEST['_columns']) : false;
202         
203         if (isset( $_REQUEST['lookup'] ) && is_array($_REQUEST['lookup'] )) { // single fetch based on key/value pairs
204              $this->selectSingle($x, $_REQUEST['lookup'],$_REQUEST);
205              // actually exits.
206         }
207         
208         
209         // single fetch (use '0' to fetch an empty object..)
210         if (isset($_REQUEST['_id']) && is_numeric($_REQUEST['_id'])) {
211              
212              $this->selectSingle($x, $_REQUEST['_id'],$_REQUEST);
213              // actually exits.
214         }
215         
216         // Depricated...
217
218        
219         if (isset($_REQUEST['_delete'])) {
220             $this->jerr("DELETE by GET has been removed - update the code to use POST");
221            
222         } 
223         
224         
225         // Depricated...
226         
227         if (isset($_REQUEST['_toggleActive'])) {
228             // do we really delete stuff!?!?!?
229             if (!$this->hasPerm("Core.Staff", 'E'))  {
230                 $this->jerr("PERMISSION DENIED (ta)");
231             }
232             $clean = create_function('$v', 'return (int)$v;');
233             $bits = array_map($clean, explode(',', $_REQUEST['_toggleActive']));
234             if (in_array($this->authUser->id, $bits) && $this->authUser->active) {
235                 $this->jerr("you can not disable yourself");
236             }
237             $x->query('UPDATE core_person SET active = !active WHERE id IN (' .implode(',', $bits).')');
238             $this->addEvent("USERTOGGLE", false, implode(',', $bits));
239             $this->jok("Updated");
240             
241         }
242        //DB_DataObject::debugLevel(1);
243        
244         // sets map and countWhat
245         $this->loadMap($x, array(
246             'columns' => $_columns,
247             'distinct' => empty($_REQUEST['_distinct']) ? false:  $_REQUEST['_distinct'],
248             'exclude' => empty($_REQUEST['_exclude_columns']) ? false:  explode(',', $_REQUEST['_exclude_columns'])
249         ));
250          
251         $this->setFilters($x,$_REQUEST);
252         
253         if (!$this->checkPerm($x,'S', $_REQUEST))  {
254             $this->jerr("PERMISSION DENIED (g)");
255         }
256         
257          //print_r($x);
258         // build join if req.
259           //DB_DataObject::debugLevel(1);
260         // count with multiple joins and no conditions can be quite slow - so if there are no conditions - just remove the joins from the count.
261         $xx = clone($x);
262         if (empty($xx->_query['condition']) && !empty($xx->_join)) {
263             $xx->_join = '';
264         }
265        
266         $total = $xx->count($this->countWhat);
267         // sorting..
268       //   
269         //var_dump($total);exit;
270         $this->applySort($x);
271         
272         $fake_limit = false;
273         
274         if (!empty($_REQUEST['_distinct']) && $total < 400) {
275             $fake_limit  = true;
276         }
277         
278         if (!$fake_limit) {
279  
280             $x->limit(
281                 empty($_REQUEST['start']) ? 0 : (int)$_REQUEST['start'],
282                 min(empty($_REQUEST['limit']) ? 25 : (int)$_REQUEST['limit'], $this->max_limit)
283             );
284         } 
285         $queryObj = clone($x);
286         //DB_DataObject::debuglevel(1);
287         
288         $this->sessionState(0);
289         $res = $x->find();
290         $this->sessionState(1);
291                 
292         if (false === $res) {
293             $this->jerr($x->_lastError->toString());
294             
295         }
296         
297         
298         
299         $ret = array();
300         
301         // ---------------- THESE ARE DEPRICATED.. they should be moved to the model...
302         
303         
304         if (!empty($_REQUEST['query']['add_blank'])) {
305             $ret[] = array( 'id' => 0, 'name' => '----');
306             $total+=1;
307         }
308          
309         $rooar = method_exists($x, 'toRooArray');
310         $_columnsf = $_columns  ? array_flip($_columns) : false;
311         while ($x->fetch()) {
312             //print_R($x);exit;
313             $add = $rooar  ? $x->toRooArray($_REQUEST) : $x->toArray();
314             if ($add === false) {
315                 continue;
316             }
317             $ret[] =  !$_columns ? $add : array_intersect_key($add, $_columnsf);
318         }
319         
320         if ($fake_limit) {
321             $ret = array_slice($ret,
322                    empty($_REQUEST['start']) ? 0 : (int)$_REQUEST['start'],
323                     min(empty($_REQUEST['limit']) ? 25 : (int)$_REQUEST['limit'], 10000)
324             );
325             
326         }
327         
328         
329         $extra = false;
330         if (method_exists($queryObj ,'postListExtra')) {
331             $extra = $queryObj->postListExtra($_REQUEST, $this);
332         }
333         
334         
335         // filter results, and add any data that is needed...
336         if (method_exists($x,'postListFilter')) {
337             $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST);
338         }
339         
340         
341         
342         if (!empty($_REQUEST['csvCols']) && !empty($_REQUEST['csvTitles']) ) {
343             
344             
345             $this->toCsv($ret, $_REQUEST['csvCols'], $_REQUEST['csvTitles'],
346                         empty($_REQUEST['csvFilename']) ? '' : $_REQUEST['csvFilename'] );
347             
348             
349         
350         }
351         //die("DONE?");
352       
353         //if ($x->tableName() == 'Documents_Tracking') {
354         //    $ret = $this->replaceSubject(&$ret, 'doc_id_subject');
355        // }
356         
357         
358         
359         if (!empty($_REQUEST['_requestMeta']) &&  count($ret)) {
360             $meta = $this->meta($x, $ret);
361             if ($meta) {
362                 $extra['metaData'] = $meta;
363             }
364         }
365         // this make take some time...
366         $this->sessionState(0);
367        // echo "<PRE>"; print_r($ret);
368         $this->jdata($ret, max(count($ret), $total), $extra );
369
370     
371     }
372     function checkDebug($req = false)
373     {
374         $req =  $req === false  ? $_REQUEST : $req;
375         
376         if (empty($req['_debug'])) {
377             return false;
378         }
379         
380         if (!empty($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] == 'localhost') {
381             DB_DAtaObject::debuglevel((int)$req['_debug']);
382             return;
383         }
384         
385         if ($this->authUser
386                 &&
387                 (
388                     (
389                         method_exists($this->authUser,'canDebug')
390                         &&
391                         $this->authUser->canDebug()
392                     )
393                 ||
394                     (  
395                     
396                         method_exists($this->authUser,'groups') 
397                         &&
398                         is_a($this->authUser, 'Pman_Core_DataObjects_Core_person')
399                         &&
400                         in_array('Administrators', $this->authUser->groups('name'))
401                     )
402                 )
403                 
404             ){
405             DB_DAtaObject::debuglevel((int)$req['_debug']);
406         }
407         
408     }
409     
410     function checkDebugPost()
411     {
412         if (empty($_GET['_post']) && empty($_GET['_debug_post'])) {
413             return false;
414         }
415         // localhost can do anything...
416         if (!empty($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] == 'localhost') {
417             return true;
418         }
419         return $this->authUser && 
420                     method_exists($this->authUser,'groups') &&
421                     in_array('Administrators', $this->authUser->groups('name')); 
422         
423     }
424     
425     function checkPerm($obj, $lvl, $req= null)
426     {
427         if (!method_exists($obj, 'checkPerm')) {
428             return true;
429         }
430         if ($obj->checkPerm($lvl, $this->authUser, $req))  {
431             return true;
432         }
433         return false;
434     }
435     
436     function toCsv($data, $cols, $titles, $filename, $addDate = true)
437     {
438          // die('here');
439         $this->sessionState(0); // turn off sessions  - no locking..
440
441         require_once 'Pman/Core/SimpleExcel.php';
442         
443         $fn = (empty($filename) ? 'list-export-' : urlencode($filename)) . (($addDate) ? date('Y-m-d') : '') ;
444         
445         
446         $se_config=  array(
447             'workbook' => substr($fn, 0, 31),
448             'cols' => array(),
449             'leave_open' => true
450         );
451         
452         
453         $se = false;
454         if (is_object($data)) {
455             $rooar = method_exists($data, 'toRooArray');
456             while($data->fetch()) {
457                 $x = $rooar  ? $data->toRooArray($q) : $data->toArray();
458                  
459                 if ($cols == '*') {  /// did we get cols sent to us?
460                     $cols = array_keys($x);
461                 }
462                 
463                 if(!is_array($cols)) {
464                     $cols = explode(',', $cols);
465                 }
466                
467                 if ($titles !== false) {
468                     if ($titles== '*') {
469                         $titles= array_keys($x);
470                     }
471                     if(!is_array($titles)) {
472                         $titles = explode(',', $titles);
473                     }
474                     foreach($cols as $i=>$col) {
475                         $add = array(
476                             'header'=> isset($titles[$i]) ? $titles[$i] : $col,
477                             'dataIndex'=> $col,
478                             'width'=>  100,
479                            //     'renderer' => array($this, 'getThumb'),
480                              //   'color' => 'yellow', // set color for the cell which is a header element
481                               // 'fillBlank' => 'gray', // set 
482                         );
483                         //die('here');
484                         if (method_exists($data, 'toSimpleExcelColumn')) {
485                             $add = $data->toSimpleExcelColumn($add);
486                         } 
487                         
488                         $se_config['cols'][] = $add;
489                         
490        
491                         
492                     }
493                     $se = new Pman_Core_SimpleExcel(array(), $se_config);
494                      
495                     $titles = false;
496                 }
497                 
498
499                 $se->addLine($se_config['workbook'], $x);
500                     
501                 
502             }
503             if(!$se){
504                 
505                 $this->jerr('no data found', false, 'text/plain');
506             }
507             $se->send($fn .'.xls');
508             exit;
509             
510         } 
511         
512          foreach($data as $x) {
513             //echo "<PRE>"; print_r(array($_REQUEST['csvCols'], $x->toArray())); exit;
514             $line = array();
515             
516             if ($cols== '*') {
517                 $cols= array_keys($x);
518             }
519             
520             if(!is_array($cols)) {
521                 $cols = explode(',', $cols);
522             }
523
524             if ($titles !== false) {
525                 if ($titles== '*') {
526                     $titles= array_keys($x);
527                 }
528
529                 if(!is_array($titles)) {
530                     $titles = explode(',', $titles);
531                 }
532
533                 foreach($cols as $i=>$col) {
534                     $add = array(
535                         'header'=> isset($titles[$i]) ? $titles[$i] : $col,
536                         'dataIndex'=> $col,
537                         'width'=>  100,
538                        //     'renderer' => array($this, 'getThumb'),
539                          //   'color' => 'yellow', // set color for the cell which is a header element
540                           // 'fillBlank' => 'gray', // set 
541                     );
542                     //die('here');
543                     if (method_exists($this->do, 'toSimpleExcelColumn')) {
544                         $add = $this->do->toSimpleExcelColumn($add);
545                     } 
546                     
547                     $se_config['cols'][] = $add;
548                     
549    
550                     
551                 }
552                 $se = new Pman_Core_SimpleExcel(array(),$se_config);
553                
554                 
555                 //fputcsv($fh, $titles);
556                 $titles = false;
557             }
558             
559             $se->addLine($se_config['workbook'], $x);
560         }
561         
562         if(!$se){
563             $this->jerr('no data found');
564         }
565         
566         $se->send($fn .'.xls');
567         exit;
568         
569     }
570     
571     
572      /**
573      * POST method   Roo/TABLENAME  
574      * -- creates, updates, or deletes data.
575      *
576      * INSERT
577      *    if the primary key is empty, this happens
578      *    will automatically set these to current date and authUser->id
579      *        created, created_by, created_dt
580      *        updated, update_by, updated_dt
581      *        modified, modified_by, modified_dt
582      *        
583      *   will return a GET request SINGLE SELECT (and accepts same)
584      *    
585      * DELETE
586      *    _delete=1,2,3     delete a set of data.
587      * UPDATE
588      *    if the primary key value is set, then update occurs.
589      *    will automatically set these to current date and authUser->id
590      *        updated, update_by, updated_dt
591      *        modified, modified_by, modified_dt
592      *        
593      *
594      * Params:
595      *   _delete=1,2,3   causes a delete to occur.
596      *   _ids=1,2,3,4    causes update to occur on all primary ids.
597      *  
598      *  RETURNS
599      *     = same as single SELECT GET request..
600      *
601      *
602      *
603      * DEBUGGING
604      *   _debug=1    forces debug
605      *   _get=1 - causes a get request to occur when doing a POST..
606      *
607      *
608      * CALLS
609      *   these methods on dataobjects if they exist
610      * 
611      *   checkPerm('E' / 'D' , $authuser)
612      *                      - can we list the stuff
613      *                      - return false to disallow...
614    
615      *   toRooSingleArray($authUser, $request) : array
616      *                       - called on single fetch only, add or maniuplate returned array data.
617      *   toRooArray($request) : array
618      *                      - Called if toSingleArray does not exist.
619      *                      - if you need to return different data than toArray..
620      *
621      *   toEventString()
622      *                  (for logging - this is generically prefixed to all database operations.)
623      *
624      *  
625      *   onUpload($roo)
626      *                  called when $_FILES is not empty
627      *
628      *                  
629      *   setFromRoo($ar, $roo)
630      *                      - alternative to setFrom() which is called if this method does not exist
631      *                      - values from post (deal with dates etc.) - return true|error string.
632      *                      - call $roo->jerr() on failure...
633      *
634      * CALLS BEFORE change occurs:
635      *  
636      *      beforeDelete($dependants_array, $roo)
637      *                      Argument is an array of un-find/fetched dependant items.
638      *                      - jerr() will stop insert.. (Prefered)
639      *                      - return false for fail and set DO->err;
640      *                      
641      *      beforeUpdate($old, $request,$roo)
642      *                      - before update - jerr() will stop insert..
643      *      beforeInsert($request,$roo)
644      *                      - before insert - jerr() will stop insert..
645      *
646      *
647      * CALLS AFTER change occured
648      * 
649      *      onUpdate($old, $request,$roo)
650      *               - after update // return value ignored
651      *
652      *      onInsert($request,$roo)
653      *                  - after insert
654      * 
655      *      onDelete($request, $roo) - after delete
656      * 
657      */                     
658      
659     function post($tab) // update / insert (?? delete??)
660     {
661         // -- why was this put in? - Roo is not related to Core.All ?
662         //if (!$this->hasPerm("Core.All", 'E'))  {
663         //        $this->jerr("PERMISSION DENIED (e)");
664         //}
665         $this->initErrorHandling();
666         
667         // DB_DataObject::debugLevel(1);
668         $this->checkDebug();
669         
670         if (!empty($_REQUEST['_get'])) {
671             return $this->get($tab);
672         }
673         
674         $this->init(); // for pman.
675          
676         $x = $this->dataObject($tab);
677
678         $this->transObj = clone($x);
679         
680         $this->transObj->query('BEGIN');
681         // find the key and use that to get the thing..
682         $keys = $x->keys();
683         if (empty($keys) ) {
684             $this->jerr('no key');
685         }
686         
687         $this->key = $keys[0];
688         
689           // delete should be here...
690         if (isset($_REQUEST['_delete'])) {
691             // do we really delete stuff!?!?!?
692             return $this->delete($x,$_REQUEST);
693         } 
694         
695         
696         
697         
698         $old = false;
699         
700         // not sure if this is a good idea here...
701
702         if (!empty($_REQUEST['_ids'])) {
703             $ids = explode(',',$_REQUEST['_ids']);
704             $x->whereAddIn($this->key, $ids, 'int');
705             $ar = $x->fetchAll();
706             
707             foreach($ar as $x) {
708                 $this->update($x, $_REQUEST);  
709             }
710             // all done..
711             $this->jok("UPDATED");
712             
713             
714         }
715          
716         if (!empty($_REQUEST[$this->key])) { 
717             // it's a create..
718             if (!$x->get($this->key, $_REQUEST[$this->key]))  {
719                 $this->jerr("Invalid request (id does not point to  a record.)");
720             }
721             $this->jok($this->update($x, $_REQUEST));
722         } else {
723             
724             if (empty($_POST)) {
725                 $this->jerr("No data recieved for inserting");
726             }
727
728             $this->jok($this->insert($x, $_REQUEST));
729             
730         }
731         
732         
733         
734     }
735     
736     
737     /**
738      * applySort
739      * 
740      * apply REQUEST[sort] and [dir]
741      * sort may be an array of columsn..
742      * 
743      * @arg   DB_DataObject $x
744      * 
745      */
746     function applySort($x, $sort = '', $dir ='')
747     {
748         
749         // Db_DataObject::debugLevel(1);
750         $sort = empty($_REQUEST['sort']) ? $sort : $_REQUEST['sort'];
751         $dir = empty($_REQUEST['dir']) ? $dir : $_REQUEST['dir'];
752         $dir = $dir == 'ASC' ? 'ASC' : 'DESC';
753          
754         $ms = empty($_REQUEST['_multisort']) ? false : $_REQUEST['_multisort'];
755         //var_Dump($ms);exit;
756         $sorted = false;
757         if (method_exists($x, 'applySort')) {
758             $sorted = $x->applySort(
759                     $this->authUser,
760                     $sort,
761                     $dir,
762                     array_keys($this->cols),
763                     $ms ? json_decode($ms) : false
764             );
765         }
766         if ($ms !== false) {
767             return $this->multiSort($x);
768         }
769         
770         if ($sorted === false) {
771             
772             $cols = $x->tableColumns();
773             $excols = array_keys($this->cols);
774             
775             if (isset($x->_extra_cols)) {
776                 $excols = array_merge($excols, $x->_extra_cols);
777             }
778             $sort_ar = explode(',', $sort);
779             $sort_str = array();
780           
781             foreach($sort_ar as $sort) {
782                 
783                 if (strlen($sort) && isset($cols[$sort]) ) {
784                     $sort_str[] =  $x->tableName() .'.'.$sort . ' ' . $dir ;
785                     
786                 } else if (in_array($sort, $excols)) {
787                     $sort_str[] = $sort . ' ' . $dir ;
788                 }
789             }
790              
791             if ($sort_str) {
792                 $x->orderBy(implode(', ', $sort_str ));
793             }
794         }
795     }
796     /**
797      * Multisort support
798      *
799      * _multisort
800      *
801      *
802      */
803     function multiSort($x)
804     {
805         //DB_DataObject::debugLevel(1);
806         $ms = json_decode($_REQUEST['_multisort']);
807         if (!isset($ms->order) || !is_array($ms->order)) {
808             return;
809         }
810         $sort_str = array();
811         
812         $cols = $x->tableColumns();
813         
814         //print_r($this->cols);exit;
815         // this-><cols contains  colname => aliased name...
816         foreach($ms->order  as $col) {
817             if (!isset($ms->sort->{$col})) {
818                 continue; // no direction..
819             }
820             $ms->sort->{$col} = $ms->sort->{$col}  == 'ASC' ? 'ASC' : 'DESC';
821             
822             if (strlen($col) && isset($cols[$col]) ) {
823                 $sort_str[] =  $x->tableName() .'.'.$col . ' ' .  $ms->sort->{$col};
824                 continue;
825             }
826             //print_r($this->cols);
827             
828             if (in_array($col, array_keys($this->cols))) {
829                 $sort_str[] = $col. ' ' . $ms->sort->{$col};
830                 continue;
831             }
832             if (isset($x->_extra_cols) && in_array($col, $x->_extra_cols)) {
833                 $sort_str[] = $col. ' ' . $ms->sort->{$col};
834             }
835         }
836          
837         if ($sort_str) {
838             $x->orderBy(implode(', ', $sort_str ));
839         }
840           
841         
842     }
843     /**
844      * single select call
845      * - used when _id is set, or after insert or update
846      *
847      * @param DataObject $x the dataobject to use
848      * @param int $id       the pid of the object
849      * @param array $req    the request, or false if it comes from insert/update.
850      *
851      */
852     function selectSingle($x, $id, $req=false)
853     {
854          
855         
856         $_columns = !empty($req['_columns']) ? explode(',', $req['_columns']) : false;
857
858         //var_dump(array(!is_array($id) , empty($id)));
859         if (!is_array($id) && empty($id)) {
860             
861             
862             if (method_exists($x, 'toRooSingleArray')) {
863                 $this->jok($x->toRooSingleArray($this->authUser, $req));
864             }
865             if (method_exists($x, 'toRooArray')) {
866                 $this->jok($x->toRooArray($req));
867             }
868             
869             $this->jok($x->toArray());
870         }
871        
872         
873         $this->loadMap($x, array(
874                     'columns' => $_columns,
875                      
876             ));
877         if ($req !== false) { 
878             $this->setFilters($x, $req);
879         } else if (method_exists($x, 'applyFilters')) {
880             // always call apply filters even after update/insert...
881             // however arguments are not passed.
882             $x->applyFilters(array('_is_update_request' => true), $this->authUser, $this);
883         }
884         
885         // DB_DataObject::DebugLevel(1);
886         if (is_array($id)) {
887             // lookup...
888             $x->setFrom($req['lookup'] );
889             $x->limit(1);
890             if (!$x->find(true)) {
891                 if (!empty($id['_id'])) {
892                     // standardize this?
893                     $this->jok($x->toArray());
894                 }
895                 $this->jok(false);
896             }
897             
898         } else if (!$x->get($id)) {
899             $this->jerr("selectSingle: no such record ($id)");
900         }
901         
902         // ignore perms if comming from update/insert - as it's already done...
903         if ($req !== false && !$this->checkPerm($x,'S'))  {
904             $this->jerr("PERMISSION DENIED - si");
905         }
906         // different symantics on all these calls??
907         if (method_exists($x, 'toRooSingleArray')) {
908             $this->jok($x->toRooSingleArray($this->authUser, $req));
909         }
910         if (method_exists($x, 'toRooArray')) {
911             $this->jok($x->toRooArray($req));
912         }
913         
914         $this->jok($x->toArray());
915         
916         
917     }
918     
919     function insert($x, $req, $with_perm_check = true)
920     {
921         if (method_exists($x, 'setFromRoo')) {
922             $res = $x->setFromRoo($req, $this);
923             if (is_string($res)) {
924                 $this->jerr($res);
925             }
926         } else {
927             $x->setFrom($req);
928         }
929         
930         if ( $with_perm_check &&  !$this->checkPerm($x,'A', $req))  {
931             $this->jerr("PERMISSION DENIED (i)");
932         }
933         $cols = $x->tableColumns();
934      
935         if (isset($cols['created'])) {
936             $x->created = date('Y-m-d H:i:s');
937         }
938         if (isset($cols['created_dt'])) {
939             $x->created_dt = date('Y-m-d H:i:s');
940         }
941         if (isset($cols['created_by'])) {
942             $x->created_by = $this->authUser->id;
943         }
944         
945         if (isset($cols['modified'])) {
946             $x->modified = date('Y-m-d H:i:s');
947         }
948         if (isset($cols['modified_dt'])) {
949             $x->modified_dt = date('Y-m-d H:i:s');
950         }
951         if (isset($cols['modified_by'])) {
952             $x->modified_by = $this->authUser->id;
953         }
954         
955         if (isset($cols['updated'])) {
956             $x->updated = date('Y-m-d H:i:s');
957         }
958         if (isset($cols['updated_dt'])) {
959             $x->updated_dt = date('Y-m-d H:i:s');
960         }
961         if (isset($cols['updated_by'])) {
962             $x->updated_by = $this->authUser->id;
963         }
964         
965         if (method_exists($x, 'beforeInsert')) {
966             $x->beforeInsert($_REQUEST, $this);
967         }
968         
969         $res = $x->insert();
970
971         if ($res === false) {
972             $this->jerr($x->_lastError->toString());
973         }
974         $ev = $this->addEvent("ADD", $x);
975         if (method_exists($x, 'onInsert')) {
976                     
977             $x->onInsert($_REQUEST, $this, $ev);
978         }
979         
980         if ($ev) { 
981             $ev->audit($x);
982         }
983         
984         // note setFrom might handle this before hand...!??!
985         if (!empty($_FILES) && method_exists($x, 'onUpload')) {
986             $x->onUpload($this, $_REQUEST);
987         }
988         
989         return $this->selectSingle(
990             DB_DataObject::factory($x->tableName()),
991             $x->pid()
992         );
993         
994     }
995     
996     function updateLock($x, $req )
997     {
998         Pman::$permitError = true; // allow it to fail without dieing
999         
1000         $lock = DB_DataObjecT::factory('Core_locking');
1001         Pman::$permitError = false; 
1002         if (is_a($lock,'DB_DataObject') && $this->authUser)  {
1003                  
1004             $lock->on_id = $x->{$this->key};
1005             $lock->on_table= strtolower($x->tableName());
1006             if (!empty($_REQUEST['_lock_id'])) {
1007                 $lock->whereAdd('id != ' . ((int)$_REQUEST['_lock_id']));
1008             } else {
1009                 $lock->whereAdd('person_id !=' . $this->authUser->id);
1010             }
1011             
1012             $llc = clone($lock);
1013             $exp = date('Y-m-d', strtotime('NOW - 1 WEEK'));
1014             $llc->whereAdd("created < '$exp'");
1015             if ($llc->count()) {
1016                 $llc->find();
1017                 while($llc->fetch()) {
1018                     $llcd = clone($llc);
1019                     $llcd->delete();
1020                 }
1021             }
1022             
1023             $lock->limit(1);
1024             if ($lock->find(true)) {
1025                 // it's locked by someone else..
1026                $p = $lock->person();
1027                
1028                
1029                $this->jerr( "Record was locked by " . $p->name . " at " .$lock->created.
1030                            " - Please confirm you wish to save" 
1031                            , array('needs_confirm' => true)); 
1032           
1033               
1034             }
1035             // check the users lock.. - no point.. ??? - if there are no other locks and it's not the users, then they can 
1036             // edit it anyways...
1037             
1038             // can we find the user's lock.
1039             $lock = DB_DataObjecT::factory('Core_locking');
1040             $lock->on_id = $x->{$this->key};
1041             $lock->on_table= strtolower($x->tableName());
1042             $lock->person_id = $this->authUser->id;
1043             $lock->orderBy('created DESC');
1044             $lock->limit(1);
1045             
1046             if (
1047                     $lock->find(true) &&
1048                     isset($x->modified_dt) &&
1049                     strtotime($x->modified_dt) > strtotime($lock->created) &&
1050                     empty($req['_submit_confirmed']) &&
1051                $x->modified_by != $this->authUser->id   
1052                 )
1053             {
1054                 $p = DB_DataObject::factory('core_person');
1055                 $p->get($x->modified_by);
1056        $this->jerr($p->name . " saved the record since you started editing,\nDo you really want to update it?", array('needs_confirm' => true)); 
1057                 
1058             }
1059             
1060             
1061             
1062         }
1063         return $lock;
1064         
1065     }
1066     
1067     
1068     function update($x, $req,  $with_perm_check = true)
1069     {
1070         if ( $with_perm_check && !$this->checkPerm($x,'E', $req) )  {
1071             $this->jerr("PERMISSION DENIED - No Edit permissions on this element");
1072         }
1073        
1074         // check any locks..
1075         // only done if we recieve a lock_id.
1076         // we are very trusing here.. that someone has not messed around with locks..
1077         // the object might want to check in their checkPerm - if locking is essential..
1078         $lock = $this->updateLock($x,$req);
1079          
1080         
1081         
1082         
1083        
1084          
1085        
1086         $old = clone($x);
1087         $this->old = $x;
1088         // this lot is generic.. needs moving 
1089         if (method_exists($x, 'setFromRoo')) {
1090             $res = $x->setFromRoo($req, $this);
1091             if (is_string($res)) {
1092                 $this->jerr($res);
1093             }
1094         } else {
1095             $x->setFrom($req);
1096         }
1097       
1098         
1099         
1100         //echo '<PRE>';print_r($old);print_r($x);exit;
1101         //print_r($old);
1102         
1103         $cols = $x->tableColumns();
1104
1105         if (isset($cols['modified'])) {
1106             $x->modified = date('Y-m-d H:i:s');
1107         }
1108         if (isset($cols['modified_dt'])) {
1109             $x->modified_dt = date('Y-m-d H:i:s');
1110         }
1111         if (isset($cols['modified_by']) && $this->authUser) {
1112             $x->modified_by = $this->authUser->id;
1113         }
1114         
1115         if (isset($cols['updated'])) {
1116             $x->updated = date('Y-m-d H:i:s');
1117         }
1118         if (isset($cols['updated_dt'])) {
1119             $x->updated_dt = date('Y-m-d H:i:s');
1120         }
1121         if (isset($cols['updated_by']) && $this->authUser) {
1122             $x->updated_by = $this->authUser->id;
1123         }
1124         
1125         if (method_exists($x, 'beforeUpdate')) {
1126             $x->beforeUpdate($old, $req, $this);
1127         }
1128         
1129         if ($with_perm_check && !empty($_FILES) && method_exists($x, 'onUpload')) {
1130             $x->onUpload($this, $_REQUEST);
1131         }
1132         
1133         //DB_DataObject::DebugLevel(1);
1134         $res = $x->update($old);
1135         if ($res === false) {
1136             $this->jerr($x->_lastError->toString());
1137         }
1138         $ev = $this->addEvent("EDIT", $x);
1139
1140         if (method_exists($x, 'onUpdate')) {
1141             $x->onUpdate($old, $req, $this, $ev);
1142         }
1143         if ($ev) { 
1144             $ev->audit($x, $old);
1145         }
1146         
1147         
1148         return $this->selectSingle(
1149             DB_DataObject::factory($x->tableName()),
1150             $x->{$this->key}
1151         );
1152         
1153     }
1154     /**
1155      * Delete a number of records.
1156      * calls $delete_obj->beforeDelete($array_of_dependant_dataobjects, $this)
1157      *
1158      */
1159     
1160     function delete($x, $req)
1161     { 
1162         // do we really delete stuff!?!?!?
1163         if (empty($req['_delete'])) {
1164             $this->jerr("Delete Requested with no value");
1165         }
1166         
1167         
1168         // build a list of tables to queriy for dependant data..
1169         $map = $x->links();
1170         
1171         $affects  = array();
1172         
1173         $all_links = $x->databaseLinks();
1174         
1175         foreach($all_links as $tbl => $links) {
1176             foreach($links as $col => $totbl_col) {
1177                 $to = explode(':', $totbl_col);
1178                 if ($to[0] != $x->tableName()) {
1179                     continue;
1180                 }
1181                 
1182                 $affects[$tbl .'.' . $col] = true;
1183             }
1184         }
1185         // collect tables
1186
1187        // echo '<PRE>';print_r($affects);exit;
1188        // DB_Dataobject::debugLevel(1);
1189        
1190         
1191         
1192         
1193         $bits = array_map(function($v) { return (int)$v; } , explode(',', $req['_delete']));
1194         
1195         // let's assume it has a key!!!
1196         
1197         $x->whereAdd($this->key .'  IN ('. implode(',', $bits) .')');
1198         if (!$x->find()) {
1199             $this->jerr("Nothing found to delete");
1200         }
1201         $errs = array();
1202         while ($x->fetch()) {
1203             $xx = clone($x);
1204             
1205            
1206             // perms first.
1207             
1208             if (!$this->checkPerm($x,'D') )  {
1209                 $this->jerr("PERMISSION DENIED (d)");
1210             }
1211             
1212             $match_ar = array();
1213             foreach($affects as $k=> $true) {
1214                 $ka = explode('.', $k);
1215                 
1216                 $chk = DB_DataObject::factory($ka[0]);
1217                 if (!is_a($chk,'DB_DataObject') && !is_a($chk,'PDO_DataObject'))  {
1218                     $this->jerr('Unable to load referenced table, check the links config: ' .$ka[0]);
1219                 }
1220                // print_r(array($chk->tablename() , $ka[1] ,  $xx->tablename() , $this->key ));
1221                 $chk->{$ka[1]} =  $xx->{$this->key};
1222                 
1223                 if (count($chk->keys())) {
1224                     $matches = $chk->count();
1225                 } else {
1226                     //DB_DataObject::DebugLevel(1);
1227                     $matches = $chk->count($ka[1]);
1228                 }
1229                 
1230                 if ($matches) {
1231                     $chk->_match_key = $ka[1];
1232                     $match_ar[] = clone($chk);
1233                     continue;
1234                 }          
1235             }
1236             
1237             
1238             $has_beforeDelete = method_exists($xx, 'beforeDelete');
1239             // before delte = allows us to trash dependancies if needed..
1240             $match_total = 0;
1241             
1242             if ( $has_beforeDelete ) {
1243                 if ($xx->beforeDelete($match_ar, $this) === false) {
1244                     $errs[] = "Delete failed ({$xx->id})\n".
1245                         (isset($xx->err) ? $xx->err : '');
1246                     continue;
1247                 }
1248                 // refetch affects..
1249                 
1250                 $match_ar = array();
1251                 foreach($affects as $k=> $true) {
1252                     $ka = explode('.', $k);
1253                     $chk = DB_DataObject::factory($ka[0]);
1254                     if (!is_a($chk,'DB_DataObject') && !is_a($chk,'PDO_DataObject'))  {
1255                         $this->jerr('Unable to load referenced table, check the links config: ' .$ka[0]);
1256                     }
1257                     $chk->{$ka[1]} =  $xx->{$this->key};
1258                     $matches = $chk->count();
1259                     $match_total += $matches;
1260                     if ($matches) {
1261                         $chk->_match_key = $ka[1];
1262                         $match_ar[] = clone($chk);
1263                         continue;
1264                     }          
1265                 }
1266                 
1267             }
1268             
1269             if (!empty($match_ar)) {
1270                 $chk = $match_ar[0];
1271                 $chk->limit(1);
1272                 $o = $chk->fetchAll();
1273                 $key = isset($chk->_match_key) ?$chk->_match_key  : '?unknown column?';
1274                 $desc =  $chk->tableName(). '.' . $key .'='.$xx->{$this->key} ;
1275                 if (method_exists($chk, 'toEventString')) {
1276                     $desc .=  ' : ' . $o[0]->toEventString();
1277                 }
1278                 $this->jerr("Delete Dependant records ($match_total  found),  " .
1279                              "first is ( $desc )");
1280           
1281             }
1282             
1283             // now che 
1284             // finally log it.. 
1285             DB_DataObject::Factory('Events')->logDeletedRecord($x);
1286             
1287             $this->addEvent("DELETE", $x);
1288             
1289             $xx->delete();
1290             
1291             if (method_exists($xx,'onDelete')) {
1292                 $xx->onDelete($req, $this);
1293             }
1294             
1295             
1296         }
1297         if ($errs) {
1298             $this->jerr(implode("\n<BR>", $errs));
1299         }
1300         $this->jok("Deleted");
1301         
1302     }
1303    
1304     
1305     /**
1306      * cols stores the list of columns that are available from the query.
1307      *
1308      *
1309      * This is a dupe of what is in autojoin -- we should move to using autojoin really.
1310      *
1311      *
1312      * // changes:
1313      
1314       countWhat
1315       cols
1316       $this->colsJoinName
1317     
1318      *
1319      */
1320     
1321     var $cols = array();
1322     
1323     
1324     
1325     function loadMap($do, $cfg =array()) //$onlycolumns=false, $distinct = false) 
1326     {
1327        
1328         //DB_DataObject::debugLevel(5);
1329         $onlycolumns    = !empty($cfg['columns']) ? $cfg['columns'] : false;
1330         $distinct       = !empty($cfg['distinct']) ? $cfg['distinct'] : false;
1331         $excludecolumns = !empty($cfg['exclude']) ? $cfg['exclude'] : array();
1332           
1333         $excludecolumns[] = 'passwd'; // we never expose passwords
1334         $excludecolumns[] = 'oath_key';
1335        
1336         $ret = $do->autoJoin(array(
1337             'include' => $onlycolumns,
1338             'exclude' => $excludecolumns,
1339             'distinct' => $distinct
1340         ));
1341         
1342         $this->countWhat = $ret['count'];
1343         $this->cols = $ret['cols'];
1344         $this->colsJname = $ret['join_names'];
1345         
1346         
1347         return;
1348         
1349         
1350         
1351     }
1352     /**
1353      * generate the meta data neede by queries.
1354      * 
1355      */
1356     function meta($x, $data)
1357     {
1358         // this is not going to work on queries where the data does not match the database def..
1359         // for unknown columns we send them as stirngs..
1360         $lost = 0;
1361         $cols  = array_keys($data[0]);
1362      
1363         
1364         
1365         if (class_exists('PDO_DataObject')) {
1366             $options = PDO_DataObject::config();
1367             if (!file_exists($options["schema_location"] . '.reader')) {
1368                 return;
1369             }
1370            
1371             $rdata = unserialize(file_get_contents($options["schema_location"] . '.reader'));
1372           
1373         } else {
1374             //echo '<PRE>';print_r($this->cols); exit;
1375             $options = &PEAR::getStaticProperty('DB_DataObject','options');
1376             $reader = $options["ini_{$x->databaseNickname()}"] .'.reader';
1377             if (!file_exists( $reader )) {
1378                 return;
1379             }
1380             
1381             $rdata = unserialize(file_get_contents($reader));
1382         }
1383         
1384         //echo '<PRE>';print_r($this->cols);exit;
1385         //echo '<PRE>';print_r($rdata);exit;
1386        // echo '<PRE>';print_r($rdata);exit;
1387         
1388         $keys = $x->keys();
1389         $key = empty($keys) ? 'id' : $keys[0];
1390         
1391         
1392         $meta = array();
1393         foreach($cols as $c ) {
1394             if (!isset($this->cols[$c]) || !isset($rdata[$this->cols[$c]]) || !is_array($rdata[$this->cols[$c]])) {
1395                 $meta[] = $c;
1396                 continue;    
1397             }
1398             $add = $rdata[$this->cols[$c]];
1399             $add['name'] = $c;
1400             $meta[] = $add;
1401         }
1402         return array(
1403             'totalProperty' =>  'total',
1404             'successProperty' => 'success',
1405             'root' => 'data',
1406             'id' => $key, // was 'id'...
1407             'fields' => $meta
1408         );
1409          
1410         
1411     }
1412     
1413     function setFilters($x, $q)
1414     {
1415         // if a column is type int, and we get ',' -> the it should be come an inc clause..
1416        // DB_DataObject::debugLevel(1);
1417         if (method_exists($x, 'applyFilters')) {
1418            // DB_DataObject::debugLevel(1);
1419             if (false === $x->applyFilters($q, $this->authUser, $this)) {
1420                 return; 
1421             } 
1422         }
1423         $q_filtered = array();
1424         
1425         $keys = $x->keys();
1426
1427         foreach($q as $key=>$val) {
1428             
1429             if (in_array($key,$keys) && !is_array($val)) {
1430                
1431                 $x->$key  = $val;
1432             }
1433             
1434              // handles name[]=fred&name[]=brian => name in ('fred', 'brian').
1435             // value is an array..
1436             if (is_array($val) ) {
1437                 
1438                 $pref = '';
1439                 
1440                 if ($key[0] == '!') {
1441                     $pref = '!';
1442                     $key = substr($key,1);
1443                 }
1444                 
1445                 if (!in_array( $key,  array_keys($this->cols))) {
1446                     continue;
1447                 }
1448                 
1449                 // support a[0] a[1] ..... => whereAddIn(
1450                 $ar = array();
1451                 $quote = false;
1452                 foreach($val as $k=>$v) {
1453                     if (!is_numeric($k)) {
1454                         $ar = array();
1455                         break;
1456                     }
1457                     // FIXME: note this is not typesafe for anything other than mysql..
1458                     
1459                     if (!is_numeric($v) || !is_long($v)) {
1460                         $quote = true;
1461                     }
1462                     $ar[] = $v;
1463                     
1464                 }
1465                 if (count($ar)) {
1466                     
1467                     
1468                     $x->whereAddIn($pref . (
1469                         isset($this->colsJname[$key]) ? 
1470                             $this->colsJname[$key] :
1471                             ($x->tableName(). '.'.$key)),
1472                         $ar, $quote ? 'string' : 'int');
1473                 }
1474                 
1475                 continue;
1476             }
1477             
1478             
1479             // handles !name=fred => name not equal fred.
1480             if ($key[0] == '!' && in_array(substr($key, 1), array_keys($this->cols))) {
1481                 
1482                 $key  = substr($key, 1) ;
1483                 
1484                 $x->whereAdd(   (
1485                         isset($this->colsJname[$key]) ? 
1486                             $this->colsJname[$key] :
1487                             $x->tableName(). '.'.$key ) . ' != ' .
1488                     (is_numeric($val) ? $val : "'".  $x->escape($val) . "'")
1489                 );
1490                 continue;
1491                 
1492             }
1493             
1494                 
1495             
1496             switch($key) {
1497                     
1498                 // Events and remarks -- fixme - move to events/remarsk...
1499                 case 'on_id':  // where TF is this used...
1500                     if (!empty($q['query']['original'])) {
1501                       //  DB_DataObject::debugLevel(1);
1502                         $o = (int) $q['query']['original'];
1503                         $oid = (int) $val;
1504                         $x->whereAdd("(on_id = $oid  OR 
1505                                 on_id IN ( SELECT distinct(id) FROM Documents WHERE original = $o ) 
1506                             )");
1507                         continue 2;
1508                                 
1509                     }
1510                     $x->on_id = $val;
1511                 
1512                 
1513                 default:
1514                     if (strlen($val) && $key[0] != '_') {
1515                         $q_filtered[$key] = $val;
1516                     }
1517                     
1518                     // subjoined columns = check the values.
1519                     // note this is not typesafe for anything other than mysql..
1520                     
1521                     if (isset($this->colsJname[$key])) {
1522                         
1523                         // the aobve rule for !strlen non-joined cols should apply to joined ones.
1524                         if (!strlen($val)) {
1525                             continue 2;
1526                         }
1527                         
1528                         
1529                         $quote = false;
1530                         if (!is_numeric($val) || !is_long($val)) {
1531                             $quote = true;
1532                         }
1533                         $x->whereAdd( "{$this->colsJname[$key]} = " . ($quote ? "'". $x->escape($val) ."'" : $val));
1534                         
1535                     }
1536                     
1537                     
1538                     continue 2;
1539             }
1540         }
1541         if (!empty($q_filtered)) {
1542             //var_dump($q_filtered);
1543             
1544             
1545             
1546             $x->setFrom($q_filtered);
1547         }
1548         
1549         
1550         
1551        
1552         // nice generic -- let's get rid of it.. where is it used!!!!
1553         // used by: 
1554         // Person / Group / Comapnies.... most of my queries noww...
1555         /*
1556         if (!empty($q['query']['name'])) {
1557             
1558             
1559             if (in_array( 'name',  array_keys($x->table()))) {
1560                 $x->whereAdd($x->tableName().".name LIKE '". $x->escape($q['query']['name']) . "%'");
1561             }
1562         }
1563         */
1564         
1565         // - projectdirectory staff list - persn queuy
1566      
1567         
1568     }
1569     /**
1570      * create the  dataobject from (usually the url)
1571      * This uses $this->validTables
1572      *           $this->validPrefix (later..)
1573      * to determine if class can be created..
1574      *
1575      */
1576      
1577     function dataObject($tab)
1578     {
1579         if (is_array($this->validTables) &&  !in_array($tab,$this->validTables)) {
1580             $this->jerr("Invalid url - not listed in validTables");
1581         }
1582         $tab = str_replace('/', '',$tab); // basic protection??
1583         
1584         $pm = HTML_FlexyFramework::get()->Pman;
1585         
1586         if (isset($pm['roo_alias'])) {
1587             $map = array_flip($pm['roo_alias']);
1588             if (isset($map[$tab])) {
1589                 $tab = $map[$tab];
1590             }
1591         }
1592         
1593         
1594         $x = DB_DataObject::factory($tab);
1595         
1596         if (!is_a($x, 'DB_DataObject') && !is_a($x, 'PDO_DataObject')) {
1597             $this->jerr('invalid url - no dataobject');
1598         }
1599         $this->do = $x;
1600         return $x;
1601         
1602     }
1603     
1604       
1605     
1606     
1607     
1608     
1609 }