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