]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/MVC/Controller/SugarController.php
Release 6.2.3
[Github/sugarcrm.git] / include / MVC / Controller / SugarController.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 require_once('include/MVC/View/SugarView.php');
38
39
40 class SugarController{
41         /**
42          * remap actions in here
43          * e.g. make all detail views go to edit views
44          * $action_remap = array('detailview'=>'editview');
45          */
46         protected $action_remap = array('index'=>'listview');
47         /**
48          * The name of the current module.
49          */
50         public $module = 'Home';
51         /**
52          * The name of the target module.
53          */
54         public $target_module = null;
55         /**
56          * The name of the current action.
57          */
58         public $action = 'index';
59         /**
60          * The id of the current record.
61          */
62         public $record = '';
63         /**
64          * The name of the return module.
65          */
66         public $return_module = null;
67         /**
68          * The name of the return action.
69          */
70         public $return_action = null;
71         /**
72          * The id of the return record.
73          */
74         public $return_id = null;
75         /**
76          * If the action was remapped it will be set to do_action and then we will just
77          * use do_action for the actual action to perform.
78          */
79         protected $do_action = 'index';
80         /**
81          * If a bean is present that set it.
82          */
83         public $bean = null;
84         /**
85          * url to redirect to
86          */
87         public $redirect_url = '';
88         /**
89          * any subcontroller can modify this to change the view
90          */
91         public $view = 'classic';
92         /**
93          * this array will hold the mappings between a key and an object for use within the view.
94          */
95         public $view_object_map = array();
96
97         /**
98          * This array holds the methods that handleAction() will invoke, in sequence.
99          */
100         protected $tasks = array(
101                                            'pre_action',
102                                            'do_action',
103                                            'post_action'
104                                            );
105         /**
106          * List of options to run through within the process() method.
107          * This list is meant to easily allow additions for new functionality as well as
108          * the ability to add a controller's own handling.
109          */
110         public $process_tasks = array(
111                                                 'blockFileAccess',
112                                                 'handleEntryPoint',
113                                                 'callLegacyCode',
114                                                 'remapAction',
115                                                 'handle_action',
116                                                 'handleActionMaps',
117                                         );
118         /**
119          * Whether or not the action has been handled by $process_tasks
120          *
121          * @var bool
122          */
123         protected $_processed = false;
124         /**
125          * Map an action directly to a file
126          */
127         /**
128          * Map an action directly to a file. This will be loaded from action_file_map.php
129          */
130         protected $action_file_map = array();
131         /**
132          * Map an action directly to a view
133          */
134         /**
135          * Map an action directly to a view. This will be loaded from action_view_map.php
136          */
137         protected $action_view_map = array();
138
139         /**
140          * This can be set from the application to tell us whether we have authorization to
141          * process the action. If this is set we will default to the noaccess view.
142          */
143         public $hasAccess = true;
144
145         /**
146          * Map case sensitive filenames to action.  This is used for linux/unix systems
147          * where filenames are case sensitive
148          */
149         public static $action_case_file = array(
150                                                                                 'editview'=>'EditView',
151                                                                                 'detailview'=>'DetailView',
152                                                                                 'listview'=>'ListView'
153                                                                           );
154
155         /**
156          * Constructor. This ie meant tot load up the module, action, record as well
157          * as the mapping arrays.
158          */
159         function SugarController(){
160         }
161
162         /**
163          * Called from SugarApplication and is meant to perform the setup operations
164          * on the controller.
165          *
166          */
167         public function setup($module = ''){
168                 if(empty($module) && !empty($_REQUEST['module']))
169                         $module = $_REQUEST['module'];
170                 //set the module
171                 if(!empty($module))
172                         $this->setModule($module);
173
174                 if(!empty($_REQUEST['target_module']) && $_REQUEST['target_module'] != 'undefined') {
175                         $this->target_module = $_REQUEST['target_module'];
176                 }
177                 //set properties on the controller from the $_REQUEST
178                 $this->loadPropertiesFromRequest();
179                 //load the mapping files
180                 $this->loadMappings();
181         }
182         /**
183          * Set the module on the Controller
184          *
185          * @param object $module
186          */
187         public function setModule($module){
188                 $this->module = $module;
189         }
190
191         /**
192          * Set properties on the Controller from the $_REQUEST
193          *
194          */
195         private function loadPropertiesFromRequest(){
196                 if(!empty($_REQUEST['action']))
197                         $this->action = $_REQUEST['action'];
198                 if(!empty($_REQUEST['record']))
199                         $this->record = $_REQUEST['record'];
200                 if(!empty($_REQUEST['view']))
201                         $this->view = $_REQUEST['view'];
202                 if(!empty($_REQUEST['return_module']))
203                         $this->return_module = $_REQUEST['return_module'];
204                 if(!empty($_REQUEST['return_action']))
205                         $this->return_action = $_REQUEST['return_action'];
206                 if(!empty($_REQUEST['return_id']))
207                         $this->return_id = $_REQUEST['return_id'];
208         }
209
210         /**
211          * Load map files for use within the Controller
212          *
213          */
214         private function loadMappings(){
215                 $this->loadMapping('action_view_map');
216                 $this->loadMapping('action_file_map');
217                 $this->loadMapping('action_remap', true);
218         }
219
220         /**
221          * Given a record id load the bean. This bean is accessible from any sub controllers.
222          */
223         public function loadBean()
224         {
225                 if(!empty($GLOBALS['beanList'][$this->module])){
226                         $class = $GLOBALS['beanList'][$this->module];
227                         if(!empty($GLOBALS['beanFiles'][$class])){
228                                 require_once($GLOBALS['beanFiles'][$class]);
229                                 $this->bean = new $class();
230                                 if(!empty($this->record)){
231                                         $this->bean->retrieve($this->record);
232                                         if($this->bean)
233                                                 $GLOBALS['FOCUS'] = $this->bean;
234                                 }
235                         }
236                 }
237         }
238
239         /**
240          * Generic load method to load mapping arrays.
241          */
242         private function loadMapping($var, $merge = false){
243                 $$var = sugar_cache_retrieve("CONTROLLER_". $var . "_".$this->module);
244                 if(!$$var){
245                         if($merge && !empty($this->$var)){
246                                 $$var = $this->$var;
247                         }else{
248                                 $$var = array();
249                         }
250                         if(file_exists('include/MVC/Controller/'. $var . '.php')){
251                                 require('include/MVC/Controller/'. $var . '.php');
252                         }
253                         if(file_exists('modules/'.$this->module.'/'. $var . '.php')){
254                                 require('modules/'.$this->module.'/'. $var . '.php');
255                         }
256                         if(file_exists('custom/modules/'.$this->module.'/'. $var . '.php')){
257                                 require('custom/modules/'.$this->module.'/'. $var . '.php');
258                         }
259                         if(file_exists('custom/include/MVC/Controller/'. $var . '.php')){
260                                 require('custom/include/MVC/Controller/'. $var . '.php');
261                         }
262
263                         sugar_cache_put("CONTROLLER_". $var . "_".$this->module, $$var);
264                 }
265                 $this->$var = $$var;
266         }
267
268         /**
269          * This method is called from SugarApplication->execute and it will bootstrap the entire controller process
270          */
271         final public function execute(){
272                 $this->process();
273                 if(!empty($this->view)){
274                         $this->processView();
275                 }elseif(!empty($this->redirect_url)){
276                         $this->redirect();
277                 }
278         }
279
280         /**
281          * Display the appropriate view.
282          */
283         private function processView(){
284                 $view = ViewFactory::loadView($this->view, $this->module, $this->bean, $this->view_object_map, $this->target_module);
285                 $GLOBALS['current_view'] = $view;
286                 if(!empty($this->bean) && !$this->bean->ACLAccess($view->type) && $view->type != 'list'){
287                         ACLController::displayNoAccess(true);
288                         sugar_cleanup(true);
289                 }
290                 if(isset($this->errors)){
291                   $view->errors = $this->errors;
292                 }
293                 $view->process();
294         }
295
296         /**
297          * Meant to be overridden by a subclass and allows for specific functionality to be
298          * injected prior to the process() method being called.
299          */
300         public function preProcess()
301         {}
302
303         /**
304          * if we have a function to support the action use it otherwise use the default action
305          *
306          * 1) check for file
307          * 2) check for action
308          */
309         public function process(){
310                 $GLOBALS['action'] = $this->action;
311                 $GLOBALS['module'] = $this->module;
312
313                 //check to ensure we have access to the module.
314                 if($this->hasAccess){
315                         $this->do_action = $this->action;
316
317                         $file = self::getActionFilename($this->do_action);
318
319                         $this->loadBean();
320
321                         $processed = false;
322                         foreach($this->process_tasks as $process){
323                                 $this->$process();
324                                 if($this->_processed)
325                                         break;
326                         }
327
328                         $this->redirect();
329                 }else{
330                         $this->no_access();
331                 }
332         }
333
334         /**
335          * This method is called from the process method. I could also be called within an action_* method.
336          * It allows a developer to override any one of these methods contained within,
337          * or if the developer so chooses they can override the entire action_* method.
338          *
339          * @return true if any one of the pre_, do_, or post_ methods have been defined,
340          * false otherwise.  This is important b/c if none of these methods exists, then we will run the
341          * action_default() method.
342          */
343         protected function handle_action(){
344                 $processed = false;
345                 foreach($this->tasks as $task){
346                         $processed = ($this->$task() || $processed);
347                 }
348                 $this->_processed = $processed;
349         }
350
351         /**
352          * Perform an action prior to the specified action.
353          * This can be overridde in a sub-class
354          */
355         private function pre_action(){
356                 $function = 'pre_' . $this->action;
357                 if($this->hasFunction($function)){
358                         $GLOBALS['log']->debug('Performing pre_action');
359                         $this->$function();
360                         return true;
361                 }
362                 return false;
363         }
364
365         /**
366          * Perform the specified action.
367          * This can be overridde in a sub-class
368          */
369         private function do_action(){
370                 $function =  'action_'. strtolower($this->do_action);
371                 if($this->hasFunction($function)){
372                         $GLOBALS['log']->debug('Performing action: '.$function.' MODULE: '.$this->module);
373                         $this->$function();
374                         return true;
375                 }
376                 return false;
377         }
378
379         /**
380          * Perform an action after to the specified action has occurred.
381          * This can be overridde in a sub-class
382          */
383         private function post_action(){
384                 $function = 'post_' . $this->action;
385                 if($this->hasFunction($function)){
386                         $GLOBALS['log']->debug('Performing post_action');
387                         $this->$function();
388                         return true;
389                 }
390                 return false;
391         }
392
393         /**
394          * If there is no action found then display an error to the user.
395          */
396         protected function no_action(){
397                 sugar_die($GLOBALS['app_strings']['LBL_NO_ACTION']);
398         }
399
400         /**
401          * The default action handler for instances where we do not have access to process.
402          */
403         protected function no_access(){
404                 $this->view = 'noaccess';
405         }
406
407         ///////////////////////////////////////////////
408         /////// HELPER FUNCTIONS
409         ///////////////////////////////////////////////
410
411         /**
412          * Determine if a given function exists on the objects
413          * @param function - the function to check
414          * @return true if the method exists on the object, false otherwise
415          */
416         protected function hasFunction($function){
417                 return method_exists($this, $function);
418         }
419
420
421         /**
422          * Set the url to which we will want to redirect
423          *
424          * @param string url - the url to which we will want to redirect
425          */
426         protected function set_redirect($url){
427                 $this->redirect_url = $url;
428         }
429
430         /**
431          * Perform redirection based on the redirect_url
432          *
433          */
434         protected function redirect(){
435
436                 if(!empty($this->redirect_url))
437                         SugarApplication::redirect($this->redirect_url);
438         }
439
440         ////////////////////////////////////////////////////////
441         ////// DEFAULT ACTIONS
442         ///////////////////////////////////////////////////////
443
444         /*
445          * Save a bean
446          */
447
448         /**
449          * Do some processing before saving the bean to the database.
450          */
451         public function pre_save(){
452                 if(!empty($_POST['assigned_user_id']) && $_POST['assigned_user_id'] != $this->bean->assigned_user_id && $_POST['assigned_user_id'] != $GLOBALS['current_user']->id && empty($GLOBALS['sugar_config']['exclude_notifications'][$this->bean->module_dir])){
453                         $this->bean->notify_on_save = true;
454                 }
455                 $GLOBALS['log']->debug("SugarController:: performing pre_save.");
456         require_once('include/SugarFields/SugarFieldHandler.php');
457         $sfh = new SugarFieldHandler();
458                 foreach($this->bean->field_defs as $field => $properties) {
459                         $type = !empty($properties['custom_type']) ? $properties['custom_type'] : $properties['type'];
460                     $sf = $sfh->getSugarField(ucfirst($type), true);
461                         if(isset($_POST[$field])) {
462                                 if(is_array($_POST[$field]) && !empty($properties['isMultiSelect'])) {
463                                         if(empty($_POST[$field][0])) {
464                                                 unset($_POST[$field][0]);
465                                         }
466                                         $_POST[$field] = encodeMultienumValue($_POST[$field]);
467                                 }
468                                 $this->bean->$field = $_POST[$field];
469                         } else if(!empty($properties['isMultiSelect']) && !isset($_POST[$field]) && isset($_POST[$field . '_multiselect'])) {
470                                 $this->bean->$field = '';
471                         }
472             if($sf != null){
473                 $sf->save($this->bean, $_POST, $field, $properties);
474             }
475                 }
476
477                 foreach($this->bean->relationship_fields as $field=>$link){
478                         if(!empty($_POST[$field])){
479                                 $this->bean->$field = $_POST[$field];
480                         }
481                 }
482                 if(!$this->bean->ACLAccess('save')){
483                         ACLController::displayNoAccess(true);
484                         sugar_cleanup(true);
485                 }
486                 $this->bean->unformat_all_fields();
487         }
488
489         /**
490          * Perform the actual save
491          */
492         public function action_save(){
493                 $this->bean->save(!empty($this->bean->notify_on_save));
494         }
495
496         /**
497          * Specify what happens after the save has occurred.
498          */
499         protected function post_save(){
500                 $module = (!empty($this->return_module) ? $this->return_module : $this->module);
501                 $action = (!empty($this->return_action) ? $this->return_action : 'DetailView');
502                 $id = (!empty($this->return_id) ? $this->return_id : $this->bean->id);
503
504                 $url = "index.php?module=".$module."&action=".$action."&record=".$id;
505                 $this->set_redirect($url);
506         }
507
508         /*
509          * Delete a bean
510          */
511
512         /**
513          * Perform the actual deletion.
514          */
515         protected function action_delete(){
516                 //do any pre delete processing
517                 //if there is some custom logic for deletion.
518                 if(!empty($_REQUEST['record'])){
519                         if(!$this->bean->ACLAccess('Delete')){
520                                 ACLController::displayNoAccess(true);
521                                 sugar_cleanup(true);
522                         }
523                         $this->bean->mark_deleted($_REQUEST['record']);
524                 }else{
525                         sugar_die("A record number must be specified to delete");
526                 }
527         }
528
529         /**
530          * Specify what happens after the deletion has occurred.
531          */
532         protected function post_delete(){
533                 $return_module = isset($_REQUEST['return_module']) ?
534                         $_REQUEST['return_module'] :
535                         $GLOBALS['sugar_config']['default_module'];
536                 $return_action = isset($_REQUEST['return_action']) ?
537                         $_REQUEST['return_action'] :
538                         $GLOBALS['sugar_config']['default_action'];
539                 $return_id = isset($_REQUEST['return_id']) ?
540                         $_REQUEST['return_id'] :
541                         '';
542                 $url = "index.php?module=".$return_module."&action=".$return_action."&record=".$return_id;
543                 
544                 //eggsurplus Bug 23816: maintain VCR after an edit/save. If it is a duplicate then don't worry about it. The offset is now worthless.
545                 if(isset($_REQUEST['offset']) && empty($_REQUEST['duplicateSave'])) {
546                     $url .= "&offset=".$_REQUEST['offset'];
547                 }
548                 
549                 $this->set_redirect($url);
550         }
551         /**
552          * Perform the actual massupdate.
553          */
554         protected function action_massupdate(){
555                 if(!empty($_REQUEST['massupdate']) && $_REQUEST['massupdate'] == 'true' && (!empty($_REQUEST['uid']) || !empty($_REQUEST['entire']))){
556                         if(!empty($_REQUEST['Delete']) && $_REQUEST['Delete']=='true' && !$this->bean->ACLAccess('delete')
557                 || (empty($_REQUEST['Delete']) || $_REQUEST['Delete']!='true') && !$this->bean->ACLAccess('save')){
558                                 ACLController::displayNoAccess(true);
559                                 sugar_cleanup(true);
560                         }
561
562             set_time_limit(0);//I'm wondering if we will set it never goes timeout here.
563             // until we have more efficient way of handling MU, we have to disable the limit
564             $GLOBALS['db']->setQueryLimit(0);
565             require_once("include/MassUpdate.php");
566             require_once('modules/MySettings/StoreQuery.php');
567             $seed = loadBean($_REQUEST['module']);
568             $mass = new MassUpdate();
569             $mass->setSugarBean($seed);
570             if(isset($_REQUEST['entire']) && empty($_POST['mass'])) {
571                 $mass->generateSearchWhere($_REQUEST['module'], $_REQUEST['current_query_by_page']);
572             }
573             $mass->handleMassUpdate();
574             $storeQuery = new StoreQuery();//restore the current search. to solve bug 24722 for multi tabs massupdate.
575             $temp_req = array('current_query_by_page' => $_REQUEST['current_query_by_page'], 'return_module' => $_REQUEST['return_module'], 'return_action' => $_REQUEST['return_action']);
576             if($_REQUEST['return_module'] == 'Emails') {
577                 if(!empty($_REQUEST['type']) && !empty($_REQUEST['ie_assigned_user_id'])) {
578                     $this->req_for_email = array('type' => $_REQUEST['type'], 'ie_assigned_user_id' => $_REQUEST['ie_assigned_user_id']); //specificly for My Achieves
579                 }
580             }
581             $_REQUEST = array();
582             $_REQUEST = unserialize(base64_decode($temp_req['current_query_by_page']));
583             unset($_REQUEST[$seed->module_dir.'2_'.strtoupper($seed->object_name).'_offset']);//after massupdate, the page should redirect to no offset page
584             $storeQuery->saveFromRequest($_REQUEST['module']);
585             $_REQUEST = array('return_module' => $temp_req['return_module'], 'return_action' => $temp_req['return_action']);//for post_massupdate, to go back to original page.
586                 }else{
587                         sugar_die("You must massupdate at least one record");
588                 }
589         }
590         /**
591          * Specify what happens after the massupdate has occurred.
592          */
593         protected function post_massupdate(){
594                 $return_module = isset($_REQUEST['return_module']) ?
595                         $_REQUEST['return_module'] :
596                         $GLOBALS['sugar_config']['default_module'];
597                 $return_action = isset($_REQUEST['return_action']) ?
598                         $_REQUEST['return_action'] :
599                         $GLOBALS['sugar_config']['default_action'];
600                 $url = "index.php?module=".$return_module."&action=".$return_action;
601                 if($return_module == 'Emails'){//specificly for My Achieves
602                         if(!empty($this->req_for_email['type']) && !empty($this->req_for_email['ie_assigned_user_id'])) {
603                                 $url = $url . "&type=".$this->req_for_email['type']."&assigned_user_id=".$this->req_for_email['ie_assigned_user_id'];
604                         }
605                 }
606                 $this->set_redirect($url);
607         }
608         /**
609          * Perform the listview action
610          */
611         protected function action_listview(){
612                 $this->view_object_map['bean'] = $this->bean;
613                 $this->view = 'list';
614         }
615
616 /*
617
618         //THIS IS HANDLED IN ACTION_REMAP WHERE INDEX IS SET TO LISTVIEW
619         function action_index(){
620         }
621 */
622
623         /**
624          * Action to handle when using a file as was done in previous versions of Sugar.
625          */
626         protected function action_default(){
627                 $this->view = 'classic';
628         }
629
630         /**
631          * this method id used within a Dashlet when performing an ajax call
632          */
633         protected function action_callmethoddashlet(){
634                 if(!empty($_REQUEST['id'])) {
635                     $id = $_REQUEST['id'];
636                     $requestedMethod = $_REQUEST['method'];
637                     $dashletDefs = $GLOBALS['current_user']->getPreference('dashlets', 'Home'); // load user's dashlets config
638                     if(!empty($dashletDefs[$id])) {
639                         require_once($dashletDefs[$id]['fileLocation']);
640
641                         $dashlet = new $dashletDefs[$id]['className']($id, (isset($dashletDefs[$id]['options']) ? $dashletDefs[$id]['options'] : array()));
642
643                         if(method_exists($dashlet, $requestedMethod) || method_exists($dashlet, '__call')) {
644                             echo $dashlet->$requestedMethod();
645                         }
646                         else {
647                             echo 'no method';
648                         }
649                     }
650                 }
651         }
652
653         /**
654          * this method is used within a Dashlet when the options configuration is posted
655          */
656         protected function action_configuredashlet(){
657                 global $current_user, $mod_strings;
658
659                 if(!empty($_REQUEST['id'])) {
660                     $id = $_REQUEST['id'];
661                     $dashletDefs = $current_user->getPreference('dashlets', $_REQUEST['module']); // load user's dashlets config
662                     require_once($dashletDefs[$id]['fileLocation']);
663
664                     $dashlet = new $dashletDefs[$id]['className']($id, (isset($dashletDefs[$id]['options']) ? $dashletDefs[$id]['options'] : array()));
665                     if(!empty($_REQUEST['configure']) && $_REQUEST['configure']) { // save settings
666                         $dashletDefs[$id]['options'] = $dashlet->saveOptions($_REQUEST);
667                         $current_user->setPreference('dashlets', $dashletDefs, 0, $_REQUEST['module']);
668                     }
669                     else { // display options
670                         $json = getJSONobj();
671                         return 'result = ' . $json->encode((array('header' => $dashlet->title . ' : ' . $mod_strings['LBL_OPTIONS'],
672                                                                  'body'  => $dashlet->displayOptions())));
673
674                     }
675                 }
676                 else {
677                     return '0';
678                 }
679         }
680
681         /**
682          * getActionFilename
683          */
684         public static function getActionFilename($action) {
685            if(isset(self::$action_case_file[$action])) {
686                   return self::$action_case_file[$action];
687            }
688            return $action;
689         }
690
691         /********************************************************************/
692         //                              PROCESS TASKS
693         /********************************************************************/
694
695         /**
696          * Given the module and action, determine whether the super/admin has prevented access
697          * to this url. In addition if any links specified for this module, load the links into
698          * GLOBALS
699          *
700          * @return true if we want to stop processing, false if processing should continue
701          */
702         private function blockFileAccess(){
703                 //check if the we have enabled file_access_control and if so then check the mappings on the request;
704                 if(!empty($GLOBALS['sugar_config']['admin_access_control']) && $GLOBALS['sugar_config']['admin_access_control']){
705                         $this->loadMapping('file_access_control_map');
706                         //since we have this turned on, check the mapping file
707                         $module = strtolower($this->module);
708                         $action = strtolower($this->do_action);
709                         if(!empty($this->file_access_control_map['modules'][$module]['links'])){
710                                 $GLOBALS['admin_access_control_links'] = $this->file_access_control_map['modules'][$module]['links'];
711                         }
712
713                         if(!empty($this->file_access_control_map['modules'][$module]['actions']) && (in_array($action, $this->file_access_control_map['modules'][$module]['actions']) || !empty($this->file_access_control_map['modules'][$module]['actions'][$action]))){
714                                 //check params
715                                 if(!empty($this->file_access_control_map['modules'][$module]['actions'][$action]['params'])){
716                                         $block = true;
717                                         $params = $this->file_access_control_map['modules'][$module]['actions'][$action]['params'];
718                                         foreach($params as $param => $paramVals){
719                                                 if(!empty($_REQUEST[$param])){
720                                                         if(!in_array($_REQUEST[$param], $paramVals)){
721                                                                 $block = false;
722                                                                 break;
723                                                         }
724                                                 }
725                                         }
726                                         if($block){
727                                                 $this->_processed = true;
728                                                 $this->no_access();
729                                         }
730                                 }else{
731                                         $this->_processed = true;
732                                         $this->no_access();
733                                 }
734                         }
735                 }else
736                         $this->_processed = false;
737         }
738
739         /**
740          * This code is part of the entry points reworking. We have consolidated all
741          * entry points to go through index.php. Now in order to bring up an entry point
742          * it will follow the format:
743          * 'index.php?entryPoint=download'
744          * the download entry point is mapped in the following file: entry_point_registry.php
745          *
746          */
747         private function handleEntryPoint(){
748                 if(!empty($_REQUEST['entryPoint'])){
749                         $this->loadMapping('entry_point_registry');
750                         $entryPoint = $_REQUEST['entryPoint'];
751
752                         if(!empty($this->entry_point_registry[$entryPoint])){
753                                 require_once($this->entry_point_registry[$entryPoint]['file']);
754                                 $this->_processed = true;
755                                 $this->view = '';
756                         }
757                 }
758         }
759
760     /**
761      * Checks to see if the requested entry point requires auth
762      *
763      * @param  $entrypoint string name of the entrypoint
764      * @return bool true if auth is required, false if not
765      */
766     public function checkEntryPointRequiresAuth($entryPoint)
767     {
768         $this->loadMapping('entry_point_registry');
769
770         if ( isset($this->entry_point_registry[$entryPoint]['auth'])
771                 && !$this->entry_point_registry[$entryPoint]['auth'] )
772             return false;
773         return true;
774     }
775
776         /**
777          * Meant to handle old views e.g. DetailView.php.
778          *
779          */
780         protected function callLegacyCode()
781         {
782                 $file = self::getActionFilename($this->do_action);
783                 if ( isset($this->action_view_map[strtolower($this->do_action)]) ) {
784                 $action = $this->action_view_map[strtolower($this->do_action)];
785             }
786             else {
787                 $action = $this->do_action;
788             }
789             // index actions actually maps to the view.list.php view
790             if ( $action == 'index' ) {
791                 $action = 'list';
792             }
793
794                 if ((file_exists('modules/' . $this->module . '/'. $file . '.php')
795                 && !file_exists('modules/' . $this->module . '/views/view.'. $action . '.php'))
796             || (file_exists('custom/modules/' . $this->module . '/'. $file . '.php')
797                 && !file_exists('custom/modules/' . $this->module . '/views/view.'. $action . '.php'))
798             ) {
799                         // A 'classic' module, using the old pre-MVC display files
800                         // We should now discard the bean we just obtained for tracking as the pre-MVC module will instantiate its own
801                         unset($GLOBALS['FOCUS']);
802                         $GLOBALS['log']->debug('Module:' . $this->module . ' using file: '. $file);
803                         $this->action_default();
804                         $this->_processed = true;
805                 }
806         }
807
808         /**
809          * If the action has been remapped to a different action as defined in
810          * action_file_map.php or action_view_map.php load those maps here.
811          *
812          */
813         private function handleActionMaps(){
814                 if(!empty($this->action_file_map[strtolower($this->do_action)])){
815                         $this->view = '';
816                         $GLOBALS['log']->debug('Using Action File Map:' . $this->action_file_map[strtolower($this->do_action)]);
817                         require_once($this->action_file_map[strtolower($this->do_action)]);
818                         $this->_processed = true;
819                 }elseif(!empty($this->action_view_map[strtolower($this->do_action)])){
820                         $GLOBALS['log']->debug('Using Action View Map:' . $this->action_view_map[strtolower($this->do_action)]);
821                         $this->view = $this->action_view_map[strtolower($this->do_action)];
822                         $this->_processed = true;
823                 }else
824                         $this->no_action();
825         }
826
827         /**
828          * Actually remap the action if required.
829          *
830          */
831         protected function remapAction(){
832                 if(!empty($this->action_remap[$this->do_action])){
833                         $this->action = $this->action_remap[$this->do_action];
834                         $this->do_action = $this->action;
835                 }
836         }
837
838 }
839 ?>