SimpleExcel.php
[Pman.Core] / SimpleExcel.php
1 <?php
2
3 /**
4  * class to generate excel file from rows of data, and a configuration.
5  *
6  * usage :
7  *   $x = new Pman_Core_SimpleExcel(array())
8  *   $x->send($fn);
9  *
10  * 
11  * cfg:
12  *     formats 
13  *          name : [ Align : left, .... ]
14  *          
15  *     workbook : nameof
16  *
17  *     head  : [
18             [ "a", "b" ]
19             [],
20             [ "A", "B" ]
21             [ "a",  ["test", "left"]  ] << sub array [text, formatname]
22         ],
23  *     merged_ranges : array(
24  *                          array($first_row, $first_col, $last_row, $last_col),
25  * *                        array($first_row, $first_col, $last_row, $last_col),
26  *                      ),
27  *     cols :  array(
28             array(
29                 'header'=> "Thumbnail",
30                 'dataIndex'=> 'id',
31  *              'dataFormat' => 'string' // to force a string..
32                 'width'=>  75,
33                 'renderer' => array($this, 'getThumb'),
34  *              'color' => 'yellow', // set color for the cell which is a header element
35  *              'fillBlank' => 'gray', // set the color for the cell which is a blank area
36             ),
37         
38         // if this is set then it will add a tab foreach one.
39         workbooks = array(
40             workbook ->
41             
42         'leave_open' => false  
43             
44  */
45  
46  
47  
48 require_once 'Pman.php';
49
50
51 class Pman_Core_SimpleExcel extends Pman
52 {
53     
54     var $worksheet_cfg = array();
55     var $start_row = 0;
56     var $formats = array();
57     var $workbook = false;
58     var $worksheet= false;
59     
60     function Pman_Core_SimpleExcel($data,$cfg)
61     {
62       // print_r($cfg);exit;
63         require_once 'Spreadsheet/Excel/Writer.php';
64         // Creating a workbook
65         $outfile2 = $this->tempName('xls');
66        // var_dump($outfile2);
67         $workbook = new Spreadsheet_Excel_Writer($outfile2);
68         //$workbook = new Spreadsheet_Excel_Writer();
69         $workbook->setVersion(8);
70         // sending HTTP headers
71         $this->workbook = $workbook;
72             
73         $formats = array();
74        
75         $cfg['formats'] = isset($cfg['formats']) ? $cfg['formats'] : array();
76         
77         foreach($cfg['formats'] as $f=>$fcfg) {
78             
79             $formats[$f] = & $workbook->addFormat();
80             foreach((array)$fcfg as $k=>$v) {
81                 $formats[$f]->{'set' . $k}($v);
82             }
83              
84         }
85          
86          
87         if (!empty($cfg['workbook'])) {
88             $this->buildPage(   $formats , $data,$cfg);
89         } elseif (!empty($cfg['workbooks'])) {
90             foreach($cfg['workbooks'] as $i =>$wcfg) {
91                 $this->buildPage(   $formats , $data[$i],$wcfg);
92             }
93             
94         }
95         // if workbooks == false - > the user can call buildpage..
96         
97         
98         if (!empty($cfg['leave_open'])) {
99             $this->outfile2 = $outfile2;
100             return;
101         }
102         
103         $workbook->close();
104         $this->outfile2 = $outfile2;
105          
106     }
107     
108     
109     
110     
111     static function date($str)
112     {
113         
114         return (strtotime($str . ' UTC') +  (86400 *  25569)) / 86400;
115         
116     }
117     
118     
119     function buildPage( $formats , $data, $cfg)
120     {
121         $workbook = $this->workbook;
122         //echo '<PRE>';        print_R($cfg);
123       //  print_r($cfg);exit;
124         // Creating a worksheet
125         //print_R($cfg);exit;
126         // copy the config and alias so that book can be written to..
127         $this->worksheet_cfg[$cfg['workbook']] = &$cfg;
128         
129         
130         //$this->formats = (array)$formats;
131         
132         if (isset($cfg['formats']) && empty($formats)) {
133             
134             foreach($cfg['formats'] as $f=>$fcfg) {
135                 
136                 $formats[$f] = & $workbook->addFormat();
137                 foreach((array)$fcfg as $k=>$v) {
138                     $formats[$f]->{'set' . $k}($v);
139                 }
140                  
141             }
142             
143             $this->formats = $formats;
144         }
145         
146         
147         
148         //var_dump($cfg['workbook']);
149
150         $worksheet =  $workbook->addWorksheet($cfg['workbook']);
151         if (is_a($worksheet, 'PEAR_Error')) {
152             die($worksheet->toString());
153         }
154         //print_R($worksheet);
155         $worksheet->setInputEncoding('UTF-8'); 
156          
157         
158         
159         $this->worksheet = $worksheet;
160          
161         $start_row = 0;
162         
163         if (!empty($cfg['head'])) {
164             foreach($cfg['head'] as $row) { 
165                 foreach($row as $c => $col) {
166                     if (is_array($col)) {
167                         $format = isset($formats[$col[1]] ) ? $formats[$col[1]] : false;
168                         $worksheet->write($start_row, $c, $col[0], $format);
169                         continue;
170                     }
171                     
172                     $worksheet->write($start_row, $c, $col);
173                     
174                 }
175                 $start_row++;
176             }
177             // add a spacer..
178             if(!isset($cfg['nonspacer'])){ $start_row++; }
179         }
180             
181                
182         foreach($cfg['cols'] as $c=>$col_cfg) {
183             if (is_string($col_cfg)) {
184                 $cfg['cols'][$c] = array(
185                     'header' => $col_cfg,
186                     'dataIndex' => $col_cfg,
187                     'width' => 50,
188                 );
189             }
190         }
191          
192          
193         foreach($cfg['cols'] as $c=>$col_cfg) {
194             $format = isset($col_cfg['color']) ? $formats[$col_cfg['color']] : false;
195             $worksheet->write($start_row, $c, $col_cfg['header'],$format);
196             $worksheet->setColumn ( $c, $c, $col_cfg['width'] / 5);
197         }
198         $start_row++;
199         $this->start_row = &$start_row;
200         
201         
202         $hasRender  = false;
203          
204         if (empty($data)) {
205             return;
206         }
207         
208         
209         foreach($data as $r=>$clo) {
210             $hasRenderRow = $this->addLine($cfg['workbook'], $clo);
211             $hasRender = ($hasRender  || $hasRenderRow) ? true : false;
212              
213         }
214         /// call user render on any that are defined..
215         if ($hasRender) {
216             foreach($data as $r=>$cl) {
217             
218                 foreach($cfg['cols']   as $c=>$col_cfg) {
219                     $v = isset($cl[$col_cfg['dataIndex']]) ? $cl[$col_cfg['dataIndex']] : '';
220                     if (empty($cl[$col_cfg['dataIndex']])) {
221                         continue;
222                     }
223                     if (isset($col_cfg['renderer'])) {
224                         // not sure if row is correct here...!!!?
225                         call_user_func($col_cfg['renderer'], $cl[$col_cfg['dataIndex']], $worksheet, $r+1, $c, $cl);
226                         
227                     }
228                   //  echo "<PRE>WRITE: ". htmlspecialchars(print_r(array($r+1, $c, $cl[$col_cfg['dataIndex']]), true));
229              
230                 }
231             }
232         }
233         $start_row += count($data);
234         
235         if (!empty($cfg['foot'])) {
236             foreach($cfg['foot'] as $row) { 
237                 foreach($row as $c => $col) {
238                     // if it's an array? - formated ???
239                     if (is_array($col)) {
240                         $format = isset($formats[$col[1]] ) ? $formats[$col[1]] : false;
241                         $worksheet->write($start_row, $c, $col[0], $format);
242                         continue;
243                     }
244                     $worksheet->write($start_row, $c, $col);
245                     
246                 }
247                 $start_row++;
248             }
249             // add a spacer..
250             $start_row++;
251         }
252         
253         if(!empty($cfg['merged_ranges'])){ // merge cell
254             $worksheet->_merged_ranges = $cfg['merged_ranges'];
255         }
256     }
257     
258     function addLine($worksheet_name, $clo)
259     {
260         $cfg        = $this->worksheet_cfg[$worksheet_name];
261         $start_row  = $this->start_row;
262         $formats    = (array)$this->formats;
263         $worksheet  = $this->worksheet;
264         
265         $hasRender   = false;
266         $r = 0;
267        
268         $cl = $clo;
269         if (is_object($clo)) {
270             $cl = (array)$clo; // lossless converstion..
271         }
272         
273         if (isset($cfg['row_height'])) {
274             $worksheet->setRow($start_row +$r, $cfg['row_height']);
275         }
276         
277         foreach($cfg['cols']  as $c=>$col_cfg) {
278             
279             if(isset($cl[$col_cfg['dataIndex']])){
280                 $v = $cl[$col_cfg['dataIndex']];
281             }else{
282                 if(isset($col_cfg['fillBlank'])){
283                     $worksheet->write($start_row+$r, $c, '', $formats[$col_cfg['fillBlank']]);
284                 }
285                 continue;
286             }
287             
288             if (!isset($cl[$col_cfg['dataIndex']])) {
289                 continue;
290             }
291             if (isset($col_cfg['txtrenderer'])) {
292                 $v = call_user_func($col_cfg['txtrenderer'], 
293                         $cl[$col_cfg['dataIndex']], $worksheet, $r+1, $c, $clo);
294                 if ($v === false) {
295                     continue;
296                 }
297               //  var_dump($v);
298             }
299             if (isset($col_cfg['renderer'])) {
300                 $hasRender = true;
301                 continue;
302             }
303             
304             $v = @iconv('UTF-8', 'UTF-8//IGNORE', $v);
305             
306             $dataFormat = empty($col_cfg['dataFormat']) ? '' : $col_cfg['dataFormat'];
307              ;
308             
309             
310             $format = isset($col_cfg['format'])  && isset($formats[$col_cfg['format']] )   ? $formats[$col_cfg['format']] : false;
311           //  print_R(array($start_row+$r, $c, $v, $format));exit;
312           // handle 0 prefixes..
313             if ( (is_numeric($v) &&  strlen($v) > 1 && substr($v,0,1) == '0' && substr($v,1,1) != '.') 
314                     || 
315                     $dataFormat == 'string' ) {
316                 $worksheet->writeString($start_row+$r, $c, $v, $format);
317             } else {
318           
319                 $worksheet->write($start_row+$r, $c, $v, $format);
320             }
321         }
322         $this->start_row++;
323         
324         return $hasRender;
325     }
326      
327     
328     function send($fname)
329     {
330         if (!empty($this->workbook)) {
331             $this->workbook->close();
332             $this->workbook = false;
333         }
334         
335         require_once 'File/Convert.php';
336         $fc=  new File_Convert($this->outfile2, "application/vnd.ms-excel");
337         $fn = $fc->convert("application/vnd.ms-excel"); 
338         $fc->serve('attachment',$fname); // can fix IE Mess
339     }
340      
341     
342 }