RooGetTrait.php
[Pman.Core] / RooGetTrait.php
1 <?php
2
3 trait Pman_Core_RooGetTrait {
4     /**
5      * GET method   Roo/TABLENAME.php
6      *
7      * Generally for SELECT or Single SELECT
8      *
9      * Single SELECT:
10      *    _id=value          single fetch based on primary id.
11      *                       can be '0' if you want to fetch a set of defaults
12      *                       Use in conjuntion with toRooSingleArray()
13      *                      
14      *    lookup[key]=value  single fetch based on a single key value lookup.
15      *                       multiple key/value can be used. eg. ontable+onid..
16      *    _columns           what to return.
17      *
18      *    
19      * JOINS:
20      *  - all tables are always autojoined.
21      * 
22      * Search SELECT
23      *    COLUMNS to fetch
24      *      _columns=a,b,c,d     comma seperated list of columns.
25      *      _columns_exclude=a,b,c,d   comma seperated list of columns.
26      *      _distinct=name        a distinct column lookup. you also have to use _columns with this.
27      *
28      *    WHERE (searches)
29      *       colname = ...              => colname = ....
30      *       !colname=....                 => colname != ....
31      *       !colname[0]=... !colname[1]=... => colname NOT IN (.....) ** only supports main table at present..
32      *       colname[0]=... colname[1]=... => colname IN (.....) ** only supports main table at present..
33      *
34      *    ORDER BY
35      *       sort=name          what to sort.
36      *       sort=a,b,d         can support multiple columns
37      *       dir=ASC            what direction
38      *       _multisort ={...}  JSON encoded { sort : { row : direction }, order : [ row, row, row ] }
39      *
40      *    LIMIT
41      *      start=0         limit start
42      *      limit=25        limit number 
43      * 
44      * 
45      *    Simple CSV support
46      *      csvCols[0] csvCols[1]....    = .... column titles for CSV output
47      *      csvTitles[0], csvTitles[1] ....  = columns to use for CSV output
48      *
49      *  Depricated  
50      *      _toggleActive !:!:!:! - this hsould not really be here..
51      *      query[add_blank] - add a line in with an empty option...  - not really needed???
52      *      _delete    = delete a list of ids element. (depricated.. this will be removed...)
53      * 
54      * DEBUGGING
55      *  _post   =1    = simulate a post with debuggin on.
56      *  _debug_post << This is prefered, as _post may overlap with accouting posts..
57      *  
58      *  _debug     = turn on DB_dataobject deubbing, must be admin at present..
59      *
60      *
61      * CALLS methods on dataobjects if they exist
62      *
63      * 
64      *   checkPerm('S' , $authuser)
65      *                      - can we list the stuff
66      *                      - return false to disallow...
67      *   applySort($au, $sortcol, $direction, $array_of_columns, $multisort)
68      *                     -- does not support multisort at present..
69      *   applyFilters($_REQUEST, $authUser, $roo)
70      *                     -- apply any query filters on data. and hide stuff not to be seen.
71      *                     -- can exit by calling $roo->jerr()
72      *   postListExtra($_REQUEST) : array(extra_name => data)
73      *                     - add extra column data on the results (like new messages etc.)
74      *   postListFilter($data, $authUser, $request) return $data
75      *                      - add extra data to an object
76      * 
77      *   
78      *   toRooSingleArray($authUser, $request) : array
79      *                       - called on single fetch only, add or maniuplate returned array data.
80      *                       - is also called when _id=0 is used (for fetching a default set.)
81      *   toRooArray($request) : array
82      *                      - called if singleArray is unavailable on single fetch.
83      *                      - always tried for mutiple results.
84      *   toArray()          - the default method if none of the others are found. 
85      *   
86      *   autoJoin($request) 
87      *                      - standard DataObject feature - causes all results to show all
88      *                        referenced data.
89      *
90      * PROPERTIES:
91      *    _extra_cols  -- if set, then filtering by column etc. will use them.
92      *
93      
94      */
95     function get($tab)
96     {
97         print_R('run????');exit;
98          //  $this->jerr("Not authenticated", array('authFailure' => true));
99        //echo '<PRE>';print_R($_GET);
100       //DB_DataObject::debuglevel(1);
101         
102         $this->init(); // from pman.
103         //DB_DataObject::debuglevel(1);
104         HTML_FlexyFramework::get()->generateDataobjectsCache($this->isDev);
105         
106    
107         
108         // debugging...
109         
110         
111         
112         if ( $this->checkDebugPost()) {
113                     
114             
115             
116             $_POST  = $_GET;
117             //DB_DAtaObject::debuglevel(1);
118             return $this->post($tab);
119         }
120         
121         $this->checkDebug();
122         
123         PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError'));
124    
125         $tab = array_shift(explode('/', $tab));
126         $x = $this->dataObject($tab);
127         
128         $_columns = !empty($_REQUEST['_columns']) ? explode(',', $_REQUEST['_columns']) : false;
129         
130         if (isset( $_REQUEST['lookup'] ) && is_array($_REQUEST['lookup'] )) { // single fetch based on key/value pairs
131              $this->selectSingle($x, $_REQUEST['lookup'],$_REQUEST);
132              // actually exits.
133         }
134         
135         
136         // single fetch (use '0' to fetch an empty object..)
137         if (isset($_REQUEST['_id']) && is_numeric($_REQUEST['_id'])) {
138              
139              $this->selectSingle($x, $_REQUEST['_id'],$_REQUEST);
140              // actually exits.
141         }
142         
143         // Depricated...
144
145        
146         if (isset($_REQUEST['_delete'])) {
147             $this->jerr("DELETE by GET has been removed - update the code to use POST");
148             /*
149             
150             $keys = $x->keys();
151             if (empty($keys) ) {
152                 $this->jerr('no key');
153             }
154             
155             $this->key = $keys[0];
156             
157             
158             // do we really delete stuff!?!?!?
159             return $this->delete($x,$_REQUEST);
160             */
161         } 
162         
163         
164         // Depricated...
165         
166         if (isset($_REQUEST['_toggleActive'])) {
167             // do we really delete stuff!?!?!?
168             if (!$this->hasPerm("Core.Staff", 'E'))  {
169                 $this->jerr("PERMISSION DENIED (ta)");
170             }
171             $clean = create_function('$v', 'return (int)$v;');
172             $bits = array_map($clean, explode(',', $_REQUEST['_toggleActive']));
173             if (in_array($this->authUser->id, $bits) && $this->authUser->active) {
174                 $this->jerr("you can not disable yourself");
175             }
176             $x->query('UPDATE Person SET active = !active WHERE id IN (' .implode(',', $bits).')');
177             $this->addEvent("USERTOGGLE", false, implode(',', $bits));
178             $this->jok("Updated");
179             
180         }
181        //DB_DataObject::debugLevel(1);
182        
183         
184         // sets map and countWhat
185         $this->loadMap($x, array(
186                     'columns' => $_columns,
187                     'distinct' => empty($_REQUEST['_distinct']) ? false:  $_REQUEST['_distinct'],
188                     'exclude' => empty($_REQUEST['_exclude_columns']) ? false:  explode(',', $_REQUEST['_exclude_columns'])
189             ));
190         
191         
192         $this->setFilters($x,$_REQUEST);
193         
194         if (!$this->checkPerm($x,'S', $_REQUEST))  {
195             $this->jerr("PERMISSION DENIED (g)");
196         }
197         
198          //print_r($x);
199         // build join if req.
200           //DB_DataObject::debugLevel(1);
201        //   var_dump($this->countWhat);
202         $total = $x->count($this->countWhat);
203         // sorting..
204       //   
205         //var_dump($total);exit;
206         $this->applySort($x);
207         
208         $fake_limit = false;
209         
210         if (!empty($_REQUEST['_distinct']) && $total < 400) {
211             $fake_limit  = true;
212         }
213         
214         if (!$fake_limit) {
215  
216             $x->limit(
217                 empty($_REQUEST['start']) ? 0 : (int)$_REQUEST['start'],
218                 min(empty($_REQUEST['limit']) ? 25 : (int)$_REQUEST['limit'], 10000)
219             );
220         } 
221         $queryObj = clone($x);
222         //DB_DataObject::debuglevel(1);
223         
224         $this->sessionState(0);
225         $res = $x->find();
226         $this->sessionState(1);
227         
228         if (false === $res) {
229             $this->jerr($x->_lastError->toString());
230             
231         }
232         
233         
234         
235         $ret = array();
236         
237         // ---------------- THESE ARE DEPRICATED.. they should be moved to the model...
238         
239         
240         if (!empty($_REQUEST['query']['add_blank'])) {
241             $ret[] = array( 'id' => 0, 'name' => '----');
242             $total+=1;
243         }
244          
245         $rooar = method_exists($x, 'toRooArray');
246         $_columnsf = $_columns  ? array_flip($_columns) : false;
247         while ($x->fetch()) {
248             //print_R($x);exit;
249             $add = $rooar  ? $x->toRooArray($_REQUEST) : $x->toArray();
250             if ($add === false) {
251                 continue;
252             }
253             $ret[] =  !$_columns ? $add : array_intersect_key($add, $_columnsf);
254         }
255         
256         if ($fake_limit) {
257             $ret = array_slice($ret,
258                    empty($_REQUEST['start']) ? 0 : (int)$_REQUEST['start'],
259                     min(empty($_REQUEST['limit']) ? 25 : (int)$_REQUEST['limit'], 10000)
260             );
261             
262         }
263         
264         
265         $extra = false;
266         if (method_exists($queryObj ,'postListExtra')) {
267             $extra = $queryObj->postListExtra($_REQUEST, $this);
268         }
269         
270         
271         // filter results, and add any data that is needed...
272         if (method_exists($x,'postListFilter')) {
273             $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST);
274         }
275         
276         
277         
278         if (!empty($_REQUEST['csvCols']) && !empty($_REQUEST['csvTitles']) ) {
279             
280             
281             $this->toCsv($ret, $_REQUEST['csvCols'], $_REQUEST['csvTitles'],
282                         empty($_REQUEST['csvFilename']) ? '' : $_REQUEST['csvFilename']
283                          );
284             
285             
286         
287         }
288         //die("DONE?");
289       
290         //if ($x->tableName() == 'Documents_Tracking') {
291         //    $ret = $this->replaceSubject(&$ret, 'doc_id_subject');
292        // }
293         
294         
295         
296         if (!empty($_REQUEST['_requestMeta']) &&  count($ret)) {
297             $meta = $this->meta($x, $ret);
298             if ($meta) {
299                 $extra['metaData'] = $meta;
300             }
301         }
302         // this make take some time...
303         $this->sessionState(0);
304        // echo "<PRE>"; print_r($ret);
305         $this->jdata($ret, max(count($ret), $total), $extra );
306
307     
308     }
309 }