PageRenderTime 25ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/modules/UpgradeWizard/silentUpgrade.php

https://github.com/jacknicole/sugarcrm_dev
PHP | 106 lines | 59 code | 10 blank | 37 comment | 23 complexity | a41bbf9eeead4b0cd6fe3ea9a219cc9e MD5 | raw file
  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. function build_argument_string($arguments=array()) {
  37. if(!is_array($arguments)) {
  38. return '';
  39. }
  40. $argument_string = '';
  41. $count = 0;
  42. foreach($arguments as $arg) {
  43. if($count != 0)
  44. {
  45. //If current directory or parent directory is specified, substitute with full path
  46. if($arg == '.')
  47. {
  48. $arg = getcwd();
  49. } else if ($arg == '..') {
  50. $dir = getcwd();
  51. $arg = substr($dir, 0, strrpos($dir, DIRECTORY_SEPARATOR));
  52. }
  53. $argument_string .= ' ' . escapeshellarg($arg);
  54. }
  55. $count++;
  56. }
  57. return $argument_string;
  58. }
  59. $php_path = '';
  60. $run_dce_upgrade = false;
  61. if(isset($argv[3]) && is_dir($argv[3]) && file_exists($argv[3]."/ini_setup.php")) {
  62. //this is a dce call, set the dce flag
  63. chdir($argv[3]);
  64. $run_dce_upgrade = true;
  65. //set the php path if found
  66. if(is_file($argv[7].'dce_config.php')){
  67. include($argv[7].'dce_config.php');
  68. $php_path = $dce_config['client_php_path'].'/';
  69. }
  70. }
  71. $php_file = $argv[0];
  72. $p_info = pathinfo($php_file);
  73. $php_dir = (isset($p_info['dirname']) && $p_info['dirname'] != '.') ? $p_info['dirname'] . '/' : '';
  74. $step1 = $php_path."php -f {$php_dir}silentUpgrade_step1.php " . build_argument_string($argv);
  75. passthru($step1, $output);
  76. $has_error = $output == 0 ? false : true;
  77. if(!$has_error) {
  78. if($run_dce_upgrade) {
  79. $step2 = $php_path."php -f {$php_dir}silentUpgrade_dce_step1.php " . build_argument_string($argv);
  80. passthru($step2, $output);
  81. } else {
  82. $step2 = "php -f {$php_dir}silentUpgrade_step2.php " . build_argument_string($argv);
  83. passthru($step2, $output);
  84. }
  85. }
  86. if($run_dce_upgrade) {
  87. $has_error = $output == 0 ? false : true;
  88. if(!$has_error) {
  89. $step3 = $php_path."php -f {$php_dir}silentUpgrade_dce_step2.php " . build_argument_string($argv);
  90. passthru($step3, $output);
  91. }
  92. }
  93. if($output != 0) {
  94. echo "*************** silentupgrade failed ***************\n";
  95. }
  96. ?>