]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/UpgradeWizard/silentUpgrade.php
Release 6.4.0
[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-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 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 $php_path = '';
64 $run_dce_upgrade = false;
65 if(isset($argv[3]) && is_dir($argv[3]) && file_exists($argv[3]."/ini_setup.php")) {
66                 //this is a dce call, set the dce flag
67                 chdir($argv[3]);
68                 $run_dce_upgrade = true;
69                 //set the php path if found
70                 if(is_file($argv[7].'dce_config.php')){
71                    include($argv[7].'dce_config.php');
72                    $php_path = $dce_config['client_php_path'].'/';
73                 }
74 }
75
76 $php_file = $argv[0];
77 $p_info = pathinfo($php_file);
78 $php_dir = (isset($p_info['dirname']) && $p_info['dirname'] != '.') ?  $p_info['dirname'] . '/' : '';
79
80 $step1 = $php_path."php -f {$php_dir}silentUpgrade_step1.php " . build_argument_string($argv);
81 passthru($step1, $output);
82 if($output != 0) {
83     echo "***************         step1 failed         ***************: $output\n";
84 }
85 $has_error = $output == 0 ? false : true;
86
87 if(!$has_error) {
88         if($run_dce_upgrade) {
89                 $step2 = $php_path."php -f {$php_dir}silentUpgrade_dce_step1.php " . build_argument_string($argv);
90                 passthru($step2, $output);
91         } else {
92                 $step2 = "php -f {$php_dir}silentUpgrade_step2.php " . build_argument_string($argv);
93                 passthru($step2, $output);
94         }
95 }
96
97 if($run_dce_upgrade) {
98         $has_error = $output == 0 ? false : true;
99         if(!$has_error) {
100            $step3 = $php_path."php -f {$php_dir}silentUpgrade_dce_step2.php " . build_argument_string($argv);
101            passthru($step3, $output);
102         }
103 }
104
105 if($output != 0) {
106    echo "***************         silentupgrade failed         ***************: $output\n";
107 }
108 ?>