]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/TemplateHandler/TemplateHandler.php
Release 6.4.0
[Github/sugarcrm.git] / include / TemplateHandler / TemplateHandler.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37
38
39 /**
40  * TemplateHandler builds templates using SugarFields and a generic view.
41  * Currently it handles EditViews and DetailViews. It creates a smarty template cached in
42  * cache/modules/moduleName/view
43  * @api
44  */
45 class TemplateHandler {
46     var $cacheDir;
47     var $templateDir = 'modules/';
48     var $ss;
49     function TemplateHandler() {
50       $this->cacheDir = sugar_cached('');
51     }
52
53     function loadSmarty(){
54         if(empty($this->ss)){
55             $this->ss = new Sugar_Smarty();
56         }
57     }
58
59
60     /**
61      * clearAll
62      * Helper function to remove all .tpl files in the cache directory
63      *
64      */
65     function clearAll() {
66         global $beanList;
67                 foreach($beanList as $module_dir =>$object_name){
68                 TemplateHandler::clearCache($module_dir);
69                 }
70     }
71
72
73     /**
74      * clearCache
75      * Helper function to remove cached .tpl files for a particular module
76      *
77      * @param String $module The module directory to clear
78      * @param String $view Optional view value (DetailView, EditView, etc.)
79      */
80     function clearCache($module, $view=''){
81         $cacheDir = create_cache_directory('modules/'. $module . '/');
82         $d = dir($cacheDir);
83         while($e = $d->read()){
84             if(!empty($view) && $e != $view )continue;
85             $end =strlen($e) - 4;
86             if(is_file($cacheDir . $e) && $end > 1 && substr($e, $end) == '.tpl'){
87                 unlink($cacheDir . $e);
88             }
89         }
90     }
91
92     /**
93      * Builds a template
94      * This is a private function that should be called only from checkTemplate method
95      *
96      * @param module string module name
97      * @param view string view need (eg DetailView, EditView, etc)
98      * @param tpl string generic tpl to use
99      * @param ajaxSave boolean parameter indicating whether or not this is coming from an Ajax call
100      * @param metaDataDefs metadata definition as Array
101      **/
102     function buildTemplate($module, $view, $tpl, $ajaxSave, $metaDataDefs) {
103         $this->loadSmarty();
104
105         $cacheDir = create_cache_directory($this->templateDir. $module . '/');
106         $file = $cacheDir . $view . '.tpl';
107         $string = '{* Create Date: ' . date('Y-m-d H:i:s') . "*}\n";
108         $this->ss->left_delimiter = '{{';
109         $this->ss->right_delimiter = '}}';
110         $this->ss->assign('module', $module);
111         $this->ss->assign('built_in_buttons', array('CANCEL', 'DELETE', 'DUPLICATE', 'EDIT', 'FIND_DUPLICATES', 'SAVE', 'CONNECTOR'));
112         $contents = $this->ss->fetch($tpl);
113         //Insert validation and quicksearch stuff here
114         if($view == 'EditView' || strpos($view,'QuickCreate') || $ajaxSave || $view == "ConvertLead") {
115
116             global $dictionary, $beanList, $app_strings, $mod_strings;
117             $mod = $beanList[$module];
118
119             if($mod == 'aCase') {
120                 $mod = 'Case';
121             }
122
123             $defs = $dictionary[$mod]['fields'];
124             $defs2 = array();
125             //Retrieve all panel field definitions with displayParams Array field set
126             $panelFields = array();
127
128             foreach($metaDataDefs['panels'] as $panel) {
129                     foreach($panel as $row) {
130                             foreach($row as $entry) {
131                                     if(empty($entry)) {
132                                        continue;
133                                     }
134
135                                     if(is_array($entry) &&
136                                        isset($entry['name']) &&
137                                        isset($entry['displayParams']) &&
138                                        isset($entry['displayParams']['required']) &&
139                                        $entry['displayParams']['required']) {
140                                        $panelFields[$entry['name']] = $entry;
141                                     }
142
143                                     if(is_array($entry)) {
144                                       $defs2[$entry['name']] = $entry;
145                                     } else {
146                                       $defs2[$entry] = array('name' => $entry);
147                                     }
148                             } //foreach
149                     } //foreach
150             } //foreach
151
152             foreach($panelFields as $field=>$value) {
153                       $nameList = array();
154                       if(!is_array($value['displayParams']['required'])) {
155                          $nameList[] = $field;
156                       } else {
157                          foreach($value['displayParams']['required'] as $groupedField) {
158                                  $nameList[] = $groupedField;
159                          }
160                       }
161
162                       foreach($nameList as $x) {
163                          if(isset($defs[$x]) &&
164                             isset($defs[$x]['type']) &&
165                             !isset($defs[$x]['required'])) {
166                             $defs[$x]['required'] = true;
167                          }
168                       }
169             } //foreach
170
171             //Create a base class with field_name_map property
172             $sugarbean = new stdClass;
173             $sugarbean->field_name_map = $defs;
174             $sugarbean->module_dir = $module;
175
176             $javascript = new javascript();
177             $view = $view == 'QuickCreate' ? "QuickCreate_{$module}" : $view;
178             $javascript->setFormName($view);
179
180             $javascript->setSugarBean($sugarbean);
181             if ($view != "ConvertLead")
182                 $javascript->addAllFields('', null,true);
183
184             $validatedFields = array();
185             $javascript->addToValidateBinaryDependency('assigned_user_name', 'alpha', $javascript->buildStringToTranslateInSmarty('ERR_SQS_NO_MATCH_FIELD').': '.$javascript->buildStringToTranslateInSmarty('LBL_ASSIGNED_TO'), 'false', '', 'assigned_user_id');
186             $validatedFields[] = 'assigned_user_name';
187             //Add remaining validation dependency for related fields
188             //1) a relate type as defined in vardefs
189             //2) set in metadata layout
190             //3) not have validateDepedency set to false in metadata
191             //4) have id_name in vardef entry
192             //5) not already been added to Array
193             foreach($sugarbean->field_name_map as $name=>$def) {
194
195                if($def['type']=='relate' &&
196                   isset($defs2[$name]) &&
197                   (!isset($defs2[$name]['validateDependency']) || $defs2[$name]['validateDependency'] === true) &&
198                   isset($def['id_name']) &&
199                   !in_array($name, $validatedFields)) {
200
201                   if(isset($mod_strings[$def['vname']])
202                         || isset($app_strings[$def['vname']])
203                         || translate($def['vname'],$sugarbean->module_dir) != $def['vname']) {
204                      $vname = $def['vname'];
205                   }
206                   else{
207                      $vname = "undefined";
208                   }
209                   $javascript->addToValidateBinaryDependency($name, 'alpha', $javascript->buildStringToTranslateInSmarty('ERR_SQS_NO_MATCH_FIELD').': '.$javascript->buildStringToTranslateInSmarty($vname), (!empty($def['required']) ? 'true' : 'false'), '', $def['id_name']);
210                   $validatedFields[] = $name;
211                }
212             } //foreach
213
214             $contents .= "{literal}\n";
215             $contents .= $javascript->getScript();
216             $contents .= $this->createQuickSearchCode($defs, $defs2, $view, $module);
217             $contents .= "{/literal}\n";
218         }else if(preg_match('/^SearchForm_.+/', $view)){
219             global $dictionary, $beanList, $app_strings, $mod_strings;
220             $mod = $beanList[$module];
221
222             if($mod == 'aCase') {
223                 $mod = 'Case';
224             }
225
226             $defs = $dictionary[$mod]['fields'];
227             $contents .= '{literal}';
228             $contents .= $this->createQuickSearchCode($defs, array(), $view);
229             $contents .= '{/literal}';
230         }//if
231
232         //Remove all the copyright comments
233         $contents = preg_replace('/\{\*[^\}]*?\*\}/', '', $contents);
234
235         if($fh = @sugar_fopen($file, 'w')) {
236             fputs($fh, $contents);
237             fclose($fh);
238         }
239
240
241         $this->ss->left_delimiter = '{';
242         $this->ss->right_delimiter = '}';
243     }
244
245     /**
246      * Checks if a template exists
247      *
248      * @param module string module name
249      * @param view string view need (eg DetailView, EditView, etc)
250      */
251     function checkTemplate($module, $view, $checkFormName = false, $formName='') {
252         if(!empty($GLOBALS['sugar_config']['developerMode']) || !empty($_SESSION['developerMode'])){
253             return false;
254         }
255         $view = $checkFormName ? $formName : $view;
256         return file_exists($this->cacheDir . $this->templateDir . $module . '/' .$view . '.tpl');
257     }
258
259     /**
260      * Retreives and displays a template
261      *
262      * @param module string module name
263      * @param view string view need (eg DetailView, EditView, etc)
264      * @param tpl string generic tpl to use
265      * @param ajaxSave boolean parameter indicating whether or not this is from an Ajax operation
266      * @param metaData Optional metadata definition Array
267      */
268     function displayTemplate($module, $view, $tpl, $ajaxSave = false, $metaDataDefs = null) {
269         $this->loadSmarty();
270         if(!$this->checkTemplate($module, $view)) {
271             $this->buildTemplate($module, $view, $tpl, $ajaxSave, $metaDataDefs);
272         }
273         $file = $this->cacheDir . $this->templateDir . $module . '/' . $view . '.tpl';
274         if(file_exists($file)) {
275            return $this->ss->fetch($file);
276         } else {
277            global $app_strings;
278            $GLOBALS['log']->fatal($app_strings['ERR_NO_SUCH_FILE'] .": $file");
279            return $app_strings['ERR_NO_SUCH_FILE'] .": $file";
280         }
281     }
282
283     /**
284      * Deletes an existing template
285      *
286      * @param module string module name
287      * @param view string view need (eg DetailView, EditView, etc)
288      */
289     function deleteTemplate($module, $view) {
290         if(is_file($this->cacheDir . $this->templateDir . $module . '/' .$view . '.tpl')) {
291             return unlink($this->cacheDir . $this->templateDir . $module . '/' .$view . '.tpl');
292         }
293         return false;
294     }
295
296
297     /**
298      * createQuickSearchCode
299      * This function creates the $sqs_objects array that will be used by the quicksearch Javascript
300      * code.  The $sqs_objects array is wrapped in a $json->encode call.
301      *
302      * @param $def The vardefs.php definitions
303      * @param $defs2 The Meta-Data file definitions
304      *
305      */
306     function createQuickSearchCode($defs, $defs2, $view = '', $module='') {
307         $sqs_objects = array();
308         require_once('include/QuickSearchDefaults.php');
309         $qsd = new QuickSearchDefaults();
310         $qsd->setFormName($view);
311         if(preg_match('/^SearchForm_.+/', $view)){
312                 if(strpos($view, 'popup_query_form')){
313                         $qsd->setFormName('popup_query_form');
314                 $parsedView = 'advanced';
315                 }else{
316                         $qsd->setFormName('search_form');
317                 $parsedView = preg_replace("/^SearchForm_/", "", $view);
318                 }
319             //Loop through the Meta-Data fields to see which ones need quick search support
320             foreach($defs as $f) {
321                 $field = $f;
322                 $name = $qsd->form_name . '_' . $field['name'];
323
324                 if($field['type'] == 'relate' && isset($field['module']) && preg_match('/_name$|_c$/si',$name)) {
325                     if(preg_match('/^(Campaigns|Teams|Users|Contacts|Accounts)$/si', $field['module'], $matches)) {
326
327                         if($matches[0] == 'Campaigns') {
328                             $sqs_objects[$name.'_'.$parsedView] = $qsd->loadQSObject('Campaigns', 'Campaign', $field['name'], $field['id_name'], $field['id_name']);
329                         } else if($matches[0] == 'Users'){
330
331                             if(!empty($f['name']) && !empty($f['id_name'])) {
332                                 $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSUser($f['name'],$f['id_name']);
333                             }
334                             else {
335                                 $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSUser();
336                             }
337                         } else if($matches[0] == 'Campaigns') {
338                             $sqs_objects[$name.'_'.$parsedView] = $qsd->loadQSObject('Campaigns', 'Campaign', $field['name'], $field['id_name'], $field['id_name']);
339                         } else if($matches[0] == 'Accounts') {
340                             $nameKey = $name;
341                             $idKey = isset($field['id_name']) ? $field['id_name'] : 'account_id';
342
343                             //There are billingKey, shippingKey and additionalFields entries you can define in editviewdefs.php
344                             //entry to allow quick search to autocomplete fields with a suffix value of the
345                             //billing/shippingKey value (i.e. 'billingKey' => 'primary' in Contacts will populate
346                             //primary_XXX fields with the Account's billing address values).
347                             //addtionalFields are key/value pair of fields to fill from Accounts(key) to Contacts(value)
348                             $billingKey = isset($f['displayParams']['billingKey']) ? $f['displayParams']['billingKey'] : null;
349                             $shippingKey = isset($f['displayParams']['shippingKey']) ? $f['displayParams']['shippingKey'] : null;
350                             $additionalFields = isset($f['displayParams']['additionalFields']) ? $f['displayParams']['additionalFields'] : null;
351                             $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSAccount($nameKey, $idKey, $billingKey, $shippingKey, $additionalFields);
352                         } else if($matches[0] == 'Contacts'){
353                             $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSContact($field['name'], $field['id_name']);
354                         }
355                     } else {
356                          $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSParent($field['module']);
357                          if(!isset($field['field_list']) && !isset($field['populate_list'])) {
358                              $sqs_objects[$name.'_'.$parsedView]['populate_list'] = array($field['name'], $field['id_name']);
359                              $sqs_objects[$name.'_'.$parsedView]['field_list'] = array('name', 'id');
360                          } else {
361                              $sqs_objects[$name.'_'.$parsedView]['populate_list'] = $field['field_list'];
362                              $sqs_objects[$name.'_'.$parsedView]['field_list'] = $field['populate_list'];
363                          }
364                     }
365                 } else if($field['type'] == 'parent') {
366                     $sqs_objects[$name.'_'.$parsedView] = $qsd->getQSParent();
367                 } //if-else
368             } //foreach
369
370             foreach ( $sqs_objects as $name => $field )
371                foreach ( $field['populate_list'] as $key => $fieldname )
372                     $sqs_objects[$name]['populate_list'][$key] = $sqs_objects[$name]['populate_list'][$key] . '_'.$parsedView;
373         }else{
374             //Loop through the Meta-Data fields to see which ones need quick search support
375             foreach($defs2 as $f) {
376                 if(!isset($defs[$f['name']])) continue;
377
378                 $field = $defs[$f['name']];
379                 if ($view == "ConvertLead")
380                 {
381                     $field['name'] = $module . $field['name'];
382                                         if (!empty($field['id_name']))
383                                            $field['id_name'] = $field['name'] . "_" . $field['id_name'];
384                 }
385                                 $name = $qsd->form_name . '_' . $field['name'];
386
387
388
389                 if($field['type'] == 'relate' && isset($field['module']) && (preg_match('/_name$|_c$/si',$name) || !empty($field['quicksearch']))) {
390                     if(!preg_match('/_c$/si',$name) && preg_match('/^(Campaigns|Teams|Users|Contacts|Accounts)$/si', $field['module'], $matches)) {
391
392                         if($matches[0] == 'Campaigns') {
393                             $sqs_objects[$name] = $qsd->loadQSObject('Campaigns', 'Campaign', $field['name'], $field['id_name'], $field['id_name']);
394                         } else if($matches[0] == 'Users'){
395                             if($field['name'] == 'reports_to_name')
396                                 $sqs_objects[$name] = $qsd->getQSUser('reports_to_name','reports_to_id');
397                             else {
398                                 if ($view == "ConvertLead")
399                                                                     $sqs_objects[$name] = $qsd->getQSUser($field['name'], $field['id_name']);
400                                                                 else
401                                                                     $sqs_objects[$name] = $qsd->getQSUser();
402                                                         }
403                         } else if($matches[0] == 'Campaigns') {
404                             $sqs_objects[$name] = $qsd->loadQSObject('Campaigns', 'Campaign', $field['name'], $field['id_name'], $field['id_name']);
405                         } else if($matches[0] == 'Accounts') {
406                             $nameKey = $name;
407                             $idKey = isset($field['id_name']) ? $field['id_name'] : 'account_id';
408
409                             //There are billingKey, shippingKey and additionalFields entries you can define in editviewdefs.php
410                             //entry to allow quick search to autocomplete fields with a suffix value of the
411                             //billing/shippingKey value (i.e. 'billingKey' => 'primary' in Contacts will populate
412                             //primary_XXX fields with the Account's billing address values).
413                             //addtionalFields are key/value pair of fields to fill from Accounts(key) to Contacts(value)
414                             $billingKey = SugarArray::staticGet($f, 'displayParams.billingKey');
415                             $shippingKey = SugarArray::staticGet($f, 'displayParams.shippingKey');
416                             $additionalFields = SugarArray::staticGet($f, 'displayParams.additionalFields');
417                             $sqs_objects[$name] = $qsd->getQSAccount($nameKey, $idKey, $billingKey, $shippingKey, $additionalFields);
418                         } else if($matches[0] == 'Contacts'){
419                             $sqs_objects[$name] = $qsd->getQSContact($field['name'], $field['id_name']);
420                             if(preg_match('/_c$/si',$name) || !empty($field['quicksearch'])){
421                                 $sqs_objects[$name]['field_list'] = array('salutation', 'first_name', 'last_name', 'id');
422                             }
423                         }
424                     } else {
425                         $sqs_objects[$name] = $qsd->getQSParent($field['module']);
426                         if(!isset($field['field_list']) && !isset($field['populate_list'])) {
427                             $sqs_objects[$name]['populate_list'] = array($field['name'], $field['id_name']);
428                             // now handle quicksearches where the column to match is not 'name' but rather specified in 'rname'
429                             if (!isset($field['rname']))
430                                 $sqs_objects[$name]['field_list'] = array('name', 'id');
431                             else
432                             {
433                                 $sqs_objects[$name]['field_list'] = array($field['rname'], 'id');
434                                 $sqs_objects[$name]['order'] = $field['rname'];
435                                 $sqs_objects[$name]['conditions'] = array(array('name'=>$field['rname'],'op'=>'like_custom','end'=>'%','value'=>''));
436                             }
437                         } else {
438                             $sqs_objects[$name]['populate_list'] = $field['field_list'];
439                             $sqs_objects[$name]['field_list'] = $field['populate_list'];
440                         }
441                     }
442                 } else if($field['type'] == 'parent') {
443                     $sqs_objects[$name] = $qsd->getQSParent();
444                 } //if-else
445             } //foreach
446         }
447
448        //Implement QuickSearch for the field
449        if(!empty($sqs_objects) && count($sqs_objects) > 0) {
450            $quicksearch_js = '<script language="javascript">';
451            $quicksearch_js.= 'if(typeof sqs_objects == \'undefined\'){var sqs_objects = new Array;}';
452            $json = getJSONobj();
453            foreach($sqs_objects as $sqsfield=>$sqsfieldArray){
454                $quicksearch_js .= "sqs_objects['$sqsfield']={$json->encode($sqsfieldArray)};";
455            }
456            return $quicksearch_js . '</script>';
457        }
458        return '';
459     }
460
461 }
462 ?>