]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/updater_utils.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Administration / updater_utils.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-2012 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 ********************************************************************************/
41 require_once('include/utils/encryption_utils.php');
42
43 function getSystemInfo($send_usage_info=true){
44         global $sugar_config;
45         global $db, $administration, $timedate;
46         $info=array();
47         $info = getBaseSystemInfo($send_usage_info);
48     if($send_usage_info){
49                 $info['application_key']=$sugar_config['unique_key'];
50                 $info['php_version']=phpversion();
51                 if(isset($_SERVER['SERVER_SOFTWARE'])) {
52                         $info['server_software'] = $_SERVER['SERVER_SOFTWARE'];
53                 } // if
54
55                 //get user count.
56
57                 $user_list = get_user_array(false, "Active", "", false, null, " AND is_group=0 AND portal_only=0 ", false);
58
59
60
61                 $info['users']=count($user_list);
62                 if(empty($administration)){
63
64                         $administration = new Administration();
65                 }
66                 $administration->retrieveSettings('system');
67                 $info['system_name'] = (!empty($administration->settings['system_name']))?substr($administration->settings['system_name'], 0 ,255):'';
68
69
70                 $result=$db->getOne("select count(*) count from users where status='Active' and deleted=0 and is_admin='1'", false, 'fetching admin count');
71                 if($result !== false) {
72                         $info['admin_users'] = $result;
73                 }
74
75
76                 $result=$db->getOne("select count(*) count from users", false, 'fetching all users count');
77                 if($result !== false) {
78                         $info['registered_users'] = $result;
79                 }
80
81                 $lastMonth = $db->convert("'". $timedate->getNow()->modify("-30 days")->asDb(false) . "'", 'datetime');
82                 if( !$send_usage_info) {
83                         $info['users_active_30_days'] = -1;
84                 } else {
85                         $info['users_active_30_days'] = $db->getOne("SELECT count( DISTINCT users.id ) user_count FROM tracker, users WHERE users.id = tracker.user_id AND  tracker.date_modified >= $lastMonth", false, 'fetching last 30 users count');
86                 }
87
88
89
90
91                 if(!$send_usage_info){
92                         $info['latest_tracker_id'] = -1;
93                 }else{
94                         $id=$db->getOne("select id from tracker order by date_modified desc", false, 'fetching most recent tracker entry');
95                         if ( $id !== false )
96                             $info['latest_tracker_id'] = $id;
97                 }
98
99                 $info['db_type']=$sugar_config['dbconfig']['db_type'];
100                 $info['db_version']=$db->version();
101         }
102         if(file_exists('distro.php')){
103                 include('distro.php');
104                 if(!empty($distro_name))$info['distro_name'] = $distro_name;
105         }
106         $info['os'] = php_uname('s');
107         $info['os_version'] = php_uname('r');
108         $info['timezone_u'] = $GLOBALS['current_user']->getPreference('timezone');
109         $info['timezone'] = date('e');
110         if($info['timezone'] == 'e'){
111                 $info['timezone'] = date('T');
112         }
113         return $info;
114
115 }
116
117 function getBaseSystemInfo($send_usage_info=true){
118     include('sugar_version.php');
119     $info=array();
120
121     if($send_usage_info){
122         $info['sugar_db_version']=$sugar_db_version;
123     }
124     $info['sugar_version']=$sugar_version;
125     $info['sugar_flavor']=$sugar_flavor;
126     $info['auth_level'] = 0;
127
128
129
130     return $info;
131
132
133 }
134
135 function check_now($send_usage_info=true, $get_request_data=false, $response_data = false, $from_install=false ) {
136         global $sugar_config, $timedate;
137         global $db, $license;
138
139
140         $return_array=array();
141     if(!$from_install && empty($license))loadLicense(true);
142
143         if(!$response_data){
144
145         if($from_install){
146                 $info = getBaseSystemInfo(false);
147
148         }else{
149             $info = getSystemInfo($send_usage_info);
150         }
151
152                 require_once('include/nusoap/nusoap.php');
153
154                 $GLOBALS['log']->debug('USING HTTPS TO CONNECT TO HEARTBEAT');
155                 $sclient = new nusoapclient('https://updates.sugarcrm.com/heartbeat/soap.php', false, false, false, false, false, 15, 15);
156                 $ping = $sclient->call('sugarPing', array());
157                 if(empty($ping) || $sclient->getError()){
158                         $sclient = '';
159                 }
160
161                 if(empty($sclient)){
162                         $GLOBALS['log']->debug('USING HTTP TO CONNECT TO HEARTBEAT');
163                         $sclient = new nusoapclient('http://updates.sugarcrm.com/heartbeat/soap.php', false, false, false, false, false, 15, 15);
164                 }
165
166
167
168
169
170
171                         $key = '4829482749329';
172
173
174
175                 $encoded = sugarEncode($key, serialize($info));
176
177                 if($get_request_data){
178                         $request_data = array('key'=>$key, 'data'=>$encoded);
179                         return serialize($request_data);
180                 }
181                 $encodedResult = $sclient->call('sugarHome', array('key'=>$key, 'data'=>$encoded));
182
183         }else{
184                 $encodedResult =        $response_data['data'];
185                 $key = $response_data['key'];
186
187         }
188
189         if($response_data || !$sclient->getError()){
190                 $serializedResultData = sugarDecode($key,$encodedResult);
191                 $resultData = unserialize($serializedResultData);
192                 if($response_data && empty($resultData))
193                 {
194                         $resultData = array();
195                         $resultData['validation'] = 'invalid validation key';
196                 }
197         }else
198         {
199                 $resultData = array();
200                 $resultData['versions'] = array();
201
202         }
203
204         if($response_data || !$sclient->getError() )
205         {
206                 if(!empty($resultData['msg'])){
207                         if(!empty($resultData['msg']['admin'])){
208                                 $license->saveSetting('license', 'msg_admin', base64_encode($resultData['msg']['admin']));
209                         }else{
210                                 $license->saveSetting('license', 'msg_admin','');
211                         }
212                         if(!empty($resultData['msg']['all'])){
213                                 $license->saveSetting('license', 'msg_all', base64_encode($resultData['msg']['all']));
214                         }else{
215                                 $license->saveSetting('license', 'msg_all','');
216                         }
217                 }else{
218                         $license->saveSetting('license', 'msg_admin','');
219                         $license->saveSetting('license', 'msg_all','');
220                 }
221                 $license->saveSetting('license', 'last_validation', 'success');
222                 unset($_SESSION['COULD_NOT_CONNECT']);
223         }
224         else
225         {
226                 $resultData = array();
227                 $resultData['versions'] = array();
228
229                 $license->saveSetting('license', 'last_connection_fail', TimeDate::getInstance()->nowDb());
230                 $license->saveSetting('license', 'last_validation', 'no_connection');
231
232                 if( empty($license->settings['license_last_validation_success']) && empty($license->settings['license_last_validation_fail']) && empty($license->settings['license_vk_end_date'])){
233                         $license->saveSetting('license', 'vk_end_date', TimeDate::getInstance()->nowDb());
234
235                         $license->saveSetting('license', 'validation_key', base64_encode(serialize(array('verified'=>false))));
236                 }
237                 $_SESSION['COULD_NOT_CONNECT'] =TimeDate::getInstance()->nowDb();
238
239         }
240         if(!empty($resultData['versions'])){
241
242                 $license->saveSetting('license', 'latest_versions',base64_encode(serialize($resultData['versions'])));
243         }else{
244                 $resultData['versions'] = array();
245                 $license->saveSetting('license', 'latest_versions','')  ;
246         }
247
248
249
250
251         include('sugar_version.php');
252
253         if(sizeof($resultData) == 1 && !empty($resultData['versions'][0]['version'])
254         && compareVersions($sugar_version, $resultData['versions'][0]['version']))
255         {
256                 $resultData['versions'][0]['version'] = $sugar_version;
257                 $resultData['versions'][0]['description'] = "You have the latest version.";
258         }
259
260
261         return $resultData['versions'];
262 }
263 /*
264  * returns true if $ver1 > $ver2
265  */
266 function compareVersions($ver1, $ver2)
267 {
268     return (version_compare($ver1, $ver2) === 1);
269 }
270 function set_CheckUpdates_config_setting($value) {
271
272
273         $admin=new Administration();
274         $admin->saveSetting('Update','CheckUpdates',$value);
275 }
276 /* return's value for the 'CheckUpdates' config setting
277 * if the setting does not exist one gets created with a default value of automatic.
278 */
279 function get_CheckUpdates_config_setting() {
280
281         $checkupdates='automatic';
282
283
284         $admin=new Administration();
285         $admin=$admin->retrieveSettings('Update',true);
286         if (empty($admin->settings) or empty($admin->settings['Update_CheckUpdates'])) {
287                 $admin->saveSetting('Update','CheckUpdates','automatic');
288         } else {
289                 $checkupdates=$admin->settings['Update_CheckUpdates'];
290         }
291         return $checkupdates;
292 }
293
294 function set_last_check_version_config_setting($value) {
295
296
297         $admin=new Administration();
298         $admin->saveSetting('Update','last_check_version',$value);
299 }
300 function get_last_check_version_config_setting() {
301
302
303
304         $admin=new Administration();
305         $admin=$admin->retrieveSettings('Update');
306         if (empty($admin->settings) or empty($admin->settings['Update_last_check_version'])) {
307                 return null;
308         } else {
309                 return $admin->settings['Update_last_check_version'];
310         }
311 }
312
313
314 function set_last_check_date_config_setting($value) {
315
316
317         $admin=new Administration();
318         $admin->saveSetting('Update','last_check_date',$value);
319 }
320 function get_last_check_date_config_setting() {
321
322
323
324         $admin=new Administration();
325         $admin=$admin->retrieveSettings('Update');
326         if (empty($admin->settings) or empty($admin->settings['Update_last_check_date'])) {
327                 return 0;
328         } else {
329                 return $admin->settings['Update_last_check_date'];
330         }
331 }
332
333 function set_sugarbeat($value) {
334         global $sugar_config;
335         $_SUGARBEAT="sugarbeet";
336         $sugar_config[$_SUGARBEAT] = $value;
337         write_array_to_file( "sugar_config", $sugar_config, "config.php" );
338 }
339 function get_sugarbeat() {
340
341
342         global $sugar_config;
343         $_SUGARBEAT="sugarbeet";
344
345         if (isset($sugar_config[$_SUGARBEAT]) && $sugar_config[$_SUGARBEAT] == false) {
346         return false;
347         }
348         return true;
349
350 }
351
352
353
354 function shouldCheckSugar(){
355         global $license, $timedate;
356         if(
357
358         get_CheckUpdates_config_setting() == 'automatic' ){
359                 return true;
360         }
361
362         return false;
363 }
364
365
366
367 function loadLicense($firstLogin=false){
368
369         $GLOBALS['license']=new Administration();
370         $GLOBALS['license']=$GLOBALS['license']->retrieveSettings('license', $firstLogin);
371
372 }
373
374 function loginLicense(){
375         global $current_user, $license;
376         loadLicense(true);
377
378
379         if (shouldCheckSugar()) {
380
381
382                 $last_check_date=get_last_check_date_config_setting();
383                 $current_date_time=time();
384                 $time_period=3*23*3600 ;
385                 if (($current_date_time - $last_check_date) > $time_period
386                 ) {
387                         $version = check_now(get_sugarbeat());
388
389                         unset($_SESSION['license_seats_needed']);
390                         loadLicense();
391                         set_last_check_date_config_setting("$current_date_time");
392                         include('sugar_version.php');
393
394                         if(!empty($version)&& count($version) == 1 && $version[0]['version'] > $sugar_version  && is_admin($current_user))
395                         {
396                                 //set session variables.
397                                 $_SESSION['available_version']=$version[0]['version'];
398                                 $_SESSION['available_version_description']=$version[0]['description'];
399                                 set_last_check_version_config_setting($version[0]['version']);
400                         }
401                 }
402         }
403
404
405 }
406
407
408
409
410
411
412
413
414 ?>