]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/UpgradeWizard/silentUpgrade.php
Release 6.5.9
[Github/sugarcrm.git] / modules / UpgradeWizard / silentUpgrade.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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 function build_argument_string($arguments=array()) {
38    if(!is_array($arguments)) {
39           return '';
40    }
41
42    $argument_string = '';
43    $count = 0;
44    foreach($arguments as $arg) {
45            if($count != 0)
46            {
47                   //If current directory or parent directory is specified, substitute with full path
48                   if($arg == '.')
49                   {
50                          $arg = getcwd();
51                   } else if ($arg == '..') {
52                          $dir = getcwd();
53                          $arg = substr($dir, 0, strrpos($dir, DIRECTORY_SEPARATOR));
54                   }
55           $argument_string .= ' ' . escapeshellarg($arg);
56            }
57            $count++;
58    }
59
60    return $argument_string;
61 }
62
63 //Bug 52872. Dies if the request does not come from CLI.
64 $sapi_type = php_sapi_name();
65 if (substr($sapi_type, 0, 3) != 'cli') {
66     die("This is command-line only script");
67 }
68 //End of #52872
69
70 $php_path = '';
71 $run_dce_upgrade = false;
72 if(isset($argv[3]) && is_dir($argv[3]) && file_exists($argv[3]."/ini_setup.php")) {
73                 //this is a dce call, set the dce flag
74                 chdir($argv[3]);
75                 $run_dce_upgrade = true;
76                 //set the php path if found
77                 if(is_file($argv[7].'dce_config.php')){
78                    include($argv[7].'dce_config.php');
79                    $php_path = $dce_config['client_php_path'].'/';
80                 }
81 }
82
83 $php_file = $argv[0];
84 $p_info = pathinfo($php_file);
85 $php_dir = (isset($p_info['dirname']) && $p_info['dirname'] != '.') ?  $p_info['dirname'] . '/' : '';
86
87 $step1 = $php_path."php -f {$php_dir}silentUpgrade_step1.php " . build_argument_string($argv);
88 passthru($step1, $output);
89 if($output != 0) {
90     echo "***************         step1 failed         ***************: $output\n";
91 }
92 $has_error = $output == 0 ? false : true;
93
94 if(!$has_error) {
95         if($run_dce_upgrade) {
96                 $step2 = $php_path."php -f {$php_dir}silentUpgrade_dce_step1.php " . build_argument_string($argv);
97                 passthru($step2, $output);
98         } else {
99                 $step2 = "php -f {$php_dir}silentUpgrade_step2.php " . build_argument_string($argv);
100                 passthru($step2, $output);
101         }
102 }
103
104 if($run_dce_upgrade) {
105         $has_error = $output == 0 ? false : true;
106         if(!$has_error) {
107            $step3 = $php_path."php -f {$php_dir}silentUpgrade_dce_step2.php " . build_argument_string($argv);
108            passthru($step3, $output);
109         }
110 }
111
112 if($output != 0) {
113    echo "***************         silentupgrade failed         ***************: $output\n";
114 }
115 exit($output);
116 ?>