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