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