X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=RooGetTrait.php;h=162ebce1d0e998dc6863e32dbb7e31b2835e16de;hp=fd48b80fbd3464da3985eb93676572736a654b05;hb=refs%2Fheads%2Fwip_edward_T5851_download_old_offer_sheet;hpb=559ccba6c8a2458b1d5c2efc3b260b44cd267294 diff --git a/RooGetTrait.php b/RooGetTrait.php index fd48b80f..162ebce1 100644 --- a/RooGetTrait.php +++ b/RooGetTrait.php @@ -107,7 +107,8 @@ trait Pman_Core_RooGetTrait { PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array($this, 'onPearError')); - $tab = array_shift(explode('/', $tab)); + $explode_tab = explode('/', $tab); + $tab = array_shift($explode_tab); $x = $this->dataObject($tab); @@ -131,19 +132,6 @@ trait Pman_Core_RooGetTrait { if (isset($_REQUEST['_delete'])) { $this->jerr("DELETE by GET has been removed - update the code to use POST"); - /* - - $keys = $x->keys(); - if (empty($keys) ) { - $this->jerr('no key'); - } - - $this->key = $keys[0]; - - - // do we really delete stuff!?!?!? - return $this->delete($x,$_REQUEST); - */ } @@ -169,10 +157,10 @@ trait Pman_Core_RooGetTrait { // sets map and countWhat $this->loadMap($x, array( - 'columns' => $_columns, - 'distinct' => empty($_REQUEST['_distinct']) ? false: $_REQUEST['_distinct'], - 'exclude' => empty($_REQUEST['_exclude_columns']) ? false: explode(',', $_REQUEST['_exclude_columns']) - )); + 'columns' => $_columns, + 'distinct' => empty($_REQUEST['_distinct']) ? false: $_REQUEST['_distinct'], + 'exclude' => empty($_REQUEST['_exclude_columns']) ? false: explode(',', $_REQUEST['_exclude_columns']) + )); $this->setFilters($x,$_REQUEST); @@ -181,10 +169,6 @@ trait Pman_Core_RooGetTrait { $this->jerr("PERMISSION DENIED (g)"); } - //print_r($x); - // build join if req. - //DB_DataObject::debugLevel(1); - // var_dump($this->countWhat); $total = $x->count($this->countWhat); // sorting.. // @@ -213,11 +197,8 @@ trait Pman_Core_RooGetTrait { if (false === $res) { $this->jerr($x->_lastError->toString()); - } - - $ret = array(); // ---------------- THESE ARE DEPRICATED.. they should be moved to the model... @@ -271,13 +252,6 @@ trait Pman_Core_RooGetTrait { } - //die("DONE?"); - - //if ($x->tableName() == 'Documents_Tracking') { - // $ret = $this->replaceSubject(&$ret, 'doc_id_subject'); - // } - - if (!empty($_REQUEST['_requestMeta']) && count($ret)) { $meta = $this->meta($x, $ret); @@ -302,63 +276,229 @@ trait Pman_Core_RooGetTrait { } - function selectSingle($x, $id, $req=false) + function applySort($x, $sort = '', $dir ='') { - $_columns = !empty($req['_columns']) ? explode(',', $req['_columns']) : false; - - if (!is_array($id) && empty($id)) { + $sort = empty($_REQUEST['sort']) ? $sort : $_REQUEST['sort']; + $dir = empty($_REQUEST['dir']) ? $dir : $_REQUEST['dir']; + $dir = $dir == 'ASC' ? 'ASC' : 'DESC'; + + $ms = empty($_REQUEST['_multisort']) ? false : $_REQUEST['_multisort']; + //var_Dump($ms);exit; + $sorted = false; + if (method_exists($x, 'applySort')) { + $sorted = $x->applySort( + $this->authUser, + $sort, + $dir, + array_keys($this->cols), + $ms ? json_decode($ms) : false + ); + } + if ($ms !== false) { + return $this->multiSort($x); + } + + if ($sorted === false) { - if (method_exists($x, 'toRooSingleArray')) { - $this->jok($x->toRooSingleArray($this->getAuthUser(), $req)); - } + $cols = $x->table(); + $excols = array_keys($this->cols); + //print_R($excols); - if (method_exists($x, 'toRooArray')) { - $this->jok($x->toRooArray($req)); + if (isset($x->_extra_cols)) { + $excols = array_merge($excols, $x->_extra_cols); + } + $sort_ar = explode(',', $sort); + $sort_str = array(); + + foreach($sort_ar as $sort) { + + if (strlen($sort) && isset($cols[$sort]) ) { + $sort_str[] = $x->tableName() .'.'.$sort . ' ' . $dir ; + + } else if (in_array($sort, $excols)) { + $sort_str[] = $sort . ' ' . $dir ; + } + } + + if ($sort_str) { + $x->orderBy(implode(', ', $sort_str )); } - - $this->jok($x->toArray()); } - + } + + function toCsv($data, $cols, $titles, $filename, $addDate = true) + { + $this->sessionState(0); // turn off sessions - no locking.. + + require_once 'Pman/Core/SimpleExcel.php'; - $this->loadMap($x, array( - 'columns' => $_columns, + $fn = (empty($filename) ? 'list-export-' : urlencode($filename)) . (($addDate) ? date('Y-m-d') : '') ; + + + $se_config= array( + 'workbook' => substr($fn, 0, 31), + 'cols' => array(), + 'leave_open' => true + ); + + + $se = false; + if (is_object($data)) { + $rooar = method_exists($data, 'toRooArray'); + while($data->fetch()) { + $x = $rooar ? $data->toRooArray($q) : $data->toArray(); + + + if ($cols == '*') { /// did we get cols sent to us? + $cols = array_keys($x); + } + if ($titles== '*') { + $titles= array_keys($x); + } + if ($titles !== false) { + + foreach($cols as $i=>$col) { + $se_config['cols'][] = array( + 'header'=> isset($titles[$i]) ? $titles[$i] : $col, + 'dataIndex'=> $col, + 'width'=> 100 + ); + $se = new Pman_Core_SimpleExcel(array(), $se_config); + + + } + + + //fputcsv($fh, $titles); + $titles = false; + } + - )); + $se->addLine($se_config['workbook'], $x); + + + } + if(!$se){ + + $this->jerr('no data found', false, 'text/plain'); + } + $se->send($fn .'.xls'); + exit; + + } - if ($req !== false) { - $this->setFilters($x, $req); - } - if (is_array($id)) { - // lookup... - $x->setFrom($req['lookup'] ); - $x->limit(1); - if (!$x->find(true)) { - if (!empty($id['_id'])) { - // standardize this? - $this->jok($x->toArray()); + foreach($data as $x) { + //echo "
"; print_r(array($_REQUEST['csvCols'], $x->toArray())); exit;
+            $line = array();
+            if ($titles== '*') {
+                $titles= array_keys($x);
+            }
+            if ($cols== '*') {
+                $cols= array_keys($x);
+            }
+            if ($titles !== false) {
+                foreach($cols as $i=>$col) {
+                    $se_config['cols'][] = array(
+                        'header'=> isset($titles[$i]) ? $titles[$i] : $col,
+                        'dataIndex'=> $col,
+                        'width'=>  100,
+                       //     'renderer' => array($this, 'getThumb'),
+                         //   'color' => 'yellow', // set color for the cell which is a header element
+                          // 'fillBlank' => 'gray', // set 
+                    );
+                    $se = new Pman_Core_SimpleExcel(array(),$se_config);
+   
+                    
                 }
-                $this->jok(false);
+                
+                
+                //fputcsv($fh, $titles);
+                $titles = false;
             }
             
-        } else if (!$x->get($id)) {
-            $this->jerr("selectSingle: no such record ($id)");
+            
+            
+            $se->addLine($se_config['workbook'], $x);
         }
-        
-        // ignore perms if comming from update/insert - as it's already done...
-        if ($req !== false && !$this->checkPerm($x,'S'))  {
-            $this->jerr("PERMISSION DENIED - si");
+        if(!$se){
+            $this->jerr('no data found');
         }
-        // different symantics on all these calls??
-        if (method_exists($x, 'toRooSingleArray')) {
-            $this->jok($x->toRooSingleArray($this->authUser, $req));
+        $se->send($fn .'.xls');
+        exit;
+        
+    }
+    
+    function meta($x, $data)
+    {
+        $lost = 0;
+        $cols  = array_keys($data[0]);
+     
+        $options = &PEAR::getStaticProperty('DB_DataObject','options');
+        $reader = $options["ini_{$x->databaseNickname()}"] .'.reader';
+        if (!file_exists( $reader )) {
+            return;
         }
-        if (method_exists($x, 'toRooArray')) {
-            $this->jok($x->toRooArray($req));
+        
+        $rdata = unserialize(file_get_contents($reader));
+        
+        $keys = $x->keys();
+        $key = empty($keys) ? 'id' : $keys[0];
+        
+        
+        $meta = array();
+        foreach($cols as $c ) {
+            if (!isset($this->cols[$c]) || !isset($rdata[$this->cols[$c]]) || !is_array($rdata[$this->cols[$c]])) {
+                $meta[] = $c;
+                continue;    
+            }
+            $add = $rdata[$this->cols[$c]];
+            $add['name'] = $c;
+            $meta[] = $add;
         }
+        return array(
+            'totalProperty' =>  'total',
+            'successProperty' => 'success',
+            'root' => 'data',
+            'id' => $key, // was 'id'...
+            'fields' => $meta
+        );
+         
         
-        $this->jok($x->toArray());
+    }
+    
+    function multiSort($x)
+    {
+        $ms = json_decode($_REQUEST['_multisort']);
+        if (!isset($ms->order) || !is_array($ms->order)) {
+            return;
+        }
+        $sort_str = array();
         
+        $cols = $x->table();
         
+        foreach($ms->order  as $col) {
+            if (!isset($ms->sort->{$col})) {
+                continue; // no direction..
+            }
+            $ms->sort->{$col} = $ms->sort->{$col}  == 'ASC' ? 'ASC' : 'DESC';
+            
+            if (strlen($col) && isset($cols[$col]) ) {
+                $sort_str[] =  $x->tableName() .'.'.$col . ' ' .  $ms->sort->{$col};
+                continue;
+            }
+            
+            if (in_array($col, array_keys($this->cols))) {
+                $sort_str[] = $col. ' ' . $ms->sort->{$col};
+                continue;
+            }
+            if (isset($x->_extra_cols) && in_array($col, $x->_extra_cols)) {
+                $sort_str[] = $col. ' ' . $ms->sort->{$col};
+            }
+        }
+         
+        if ($sort_str) {
+            $x->orderBy(implode(', ', $sort_str ));
+        }
     }
 }