]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/entryPoint.php
Release 6.5.16
[Github/sugarcrm.git] / include / entryPoint.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. All Rights
42  * Reserved. Contributor(s): ______________________________________..
43  * *******************************************************************************/
44
45 /**
46  * Known Entry Points as of 4.5
47  * acceptDecline.php
48  * campaign_tracker.php
49  * campaign_trackerv2.php
50  * cron.php
51  * dictionary.php
52  * download.php
53  * emailmandelivery.php
54  * export_dataset.php
55  * export.php
56  * image.php
57  * index.php
58  * install.php
59  * json.php
60  * json_server.php
61  * leadCapture.php
62  * maintenance.php
63  * metagen.php
64  * pdf.php
65  * phprint.php
66  * process_queue.php
67  * process_workflow.php
68  * removeme.php
69  * schedulers.php
70  * soap.php
71  * su.php
72  * sugar_version.php
73  * TreeData.php
74  * tree_level.php
75  * tree.php
76  * vcal_server.php
77  * vCard.php
78  * zipatcher.php
79  * WebToLeadCapture.php
80  * HandleAjaxCall.php */
81  /*
82   * for 50, added:
83   * minify.php
84   */
85   /*
86   * for 510, added:
87   * dceActionCleanup.php
88   */
89 $GLOBALS['starttTime'] = microtime(true);
90
91 set_include_path(
92     dirname(__FILE__) . '/..' . PATH_SEPARATOR .
93     get_include_path()
94 );
95
96 if (!defined('PHP_VERSION_ID')) {
97     $version_array = explode('.', phpversion());
98     define('PHP_VERSION_ID', ($version_array[0]*10000 + $version_array[1]*100 + $version_array[2]));
99 }
100
101 if(empty($GLOBALS['installing']) && !file_exists('config.php'))
102 {
103         header('Location: install.php');
104         exit ();
105 }
106
107
108 // config|_override.php
109 if(is_file('config.php')) {
110         require_once('config.php'); // provides $sugar_config
111 }
112
113 // load up the config_override.php file.  This is used to provide default user settings
114 if(is_file('config_override.php')) {
115         require_once('config_override.php');
116 }
117 if(empty($GLOBALS['installing']) &&empty($sugar_config['dbconfig']['db_name']))
118 {
119             header('Location: install.php');
120             exit ();
121 }
122
123 if (!empty($sugar_config['xhprof_config']))
124 {
125     require_once 'include/SugarXHprof/SugarXHprof.php';
126     SugarXHprof::getInstance()->start();
127 }
128
129 // make sure SugarConfig object is available
130 require_once 'include/SugarObjects/SugarConfig.php';
131
132 ///////////////////////////////////////////////////////////////////////////////
133 ////    DATA SECURITY MEASURES
134 require_once('include/utils.php');
135 require_once('include/clean.php');
136 clean_special_arguments();
137 clean_incoming_data();
138 ////    END DATA SECURITY MEASURES
139 ///////////////////////////////////////////////////////////////////////////////
140
141 // cn: set php.ini settings at entry points
142 setPhpIniSettings();
143
144 require_once('sugar_version.php'); // provides $sugar_version, $sugar_db_version, $sugar_flavor
145 require_once('include/database/DBManagerFactory.php');
146 require_once('include/dir_inc.php');
147
148 require_once('include/Localization/Localization.php');
149 require_once('include/javascript/jsAlerts.php');
150 require_once('include/TimeDate.php');
151 require_once('include/modules.php'); // provides $moduleList, $beanList, $beanFiles, $modInvisList, $adminOnlyList, $modInvisListActivities
152
153 require('include/utils/autoloader.php');
154 spl_autoload_register(array('SugarAutoLoader', 'autoload'));
155 require_once('data/SugarBean.php');
156 require_once('include/utils/mvc_utils.php');
157 require('include/SugarObjects/LanguageManager.php');
158 require('include/SugarObjects/VardefManager.php');
159
160 require('modules/DynamicFields/templates/Fields/TemplateText.php');
161
162 require_once('include/utils/file_utils.php');
163 require_once('include/SugarEmailAddress/SugarEmailAddress.php');
164 require_once('include/SugarLogger/LoggerManager.php');
165 require_once('modules/Trackers/BreadCrumbStack.php');
166 require_once('modules/Trackers/Tracker.php');
167 require_once('modules/Trackers/TrackerManager.php');
168 require_once('modules/ACL/ACLController.php');
169 require_once('modules/Administration/Administration.php');
170 require_once('modules/Administration/updater_utils.php');
171 require_once('modules/Users/User.php');
172 require_once('modules/Users/authentication/AuthenticationController.php');
173 require_once('include/utils/LogicHook.php');
174 require_once('include/SugarTheme/SugarTheme.php');
175 require_once('include/MVC/SugarModule.php');
176 require_once('include/SugarCache/SugarCache.php');
177 require('modules/Currencies/Currency.php');
178 require_once('include/MVC/SugarApplication.php');
179
180 require_once('include/upload_file.php');
181 UploadStream::register();
182 //
183 //SugarApplication::startSession();
184
185 ///////////////////////////////////////////////////////////////////////////////
186 ////    Handle loading and instantiation of various Sugar* class
187 if (!defined('SUGAR_PATH')) {
188     define('SUGAR_PATH', realpath(dirname(__FILE__) . '/..'));
189 }
190 require_once 'include/SugarObjects/SugarRegistry.php';
191
192 if(empty($GLOBALS['installing'])){
193 ///////////////////////////////////////////////////////////////////////////////
194 ////    SETTING DEFAULT VAR VALUES
195 $GLOBALS['log'] = LoggerManager::getLogger('SugarCRM');
196 $error_notice = '';
197 $use_current_user_login = false;
198
199 // Allow for the session information to be passed via the URL for printing.
200 if(isset($_GET['PHPSESSID'])){
201     if(!empty($_COOKIE['PHPSESSID']) && strcmp($_GET['PHPSESSID'],$_COOKIE['PHPSESSID']) == 0) {
202         session_id($_REQUEST['PHPSESSID']);
203     }else{
204         unset($_GET['PHPSESSID']);
205     }
206 }
207
208 if(!empty($sugar_config['session_dir'])) {
209         session_save_path($sugar_config['session_dir']);
210 }
211
212 SugarApplication::preLoadLanguages();
213
214 $timedate = TimeDate::getInstance();
215
216 $GLOBALS['sugar_version'] = $sugar_version;
217 $GLOBALS['sugar_flavor'] = $sugar_flavor;
218 $GLOBALS['timedate'] = $timedate;
219 $GLOBALS['js_version_key'] = md5($GLOBALS['sugar_config']['unique_key'].$GLOBALS['sugar_version'].$GLOBALS['sugar_flavor']);
220
221 $db = DBManagerFactory::getInstance();
222 $db->resetQueryCount();
223 $locale = new Localization();
224
225 // Emails uses the REQUEST_URI later to construct dynamic URLs.
226 // IIS does not pass this field to prevent an error, if it is not set, we will assign it to ''.
227 if (!isset ($_SERVER['REQUEST_URI'])) {
228         $_SERVER['REQUEST_URI'] = '';
229 }
230
231 $current_user = new User();
232 $current_entity = null;
233 $system_config = new Administration();
234 $system_config->retrieveSettings();
235
236 LogicHook::initialize()->call_custom_logic('', 'after_entry_point');
237 }
238
239
240 ////    END SETTING DEFAULT VAR VALUES
241 ///////////////////////////////////////////////////////////////////////////////
242
243 ?>