]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Administration/UpgradeWizard.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Administration / UpgradeWizard.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-2011 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 if(!is_admin($GLOBALS['current_user'])){
41         sugar_die($GLOBALS['app_strings']['ERR_NOT_ADMIN']);
42 }
43 require_once('modules/Administration/UpgradeWizardCommon.php');
44 require_once('ModuleInstall/PackageManager/PackageManagerDisplay.php');
45 require_once('ModuleInstall/ModuleScanner.php');
46 global $mod_strings;
47 $uh = new UpgradeHistory();
48
49 function unlinkTempFiles() {
50         global $sugar_config;
51         @unlink($_FILES['upgrade_zip']['tmp_name']);
52         @unlink("upload://".$_FILES['upgrade_zip']['name']);
53 }
54
55 $base_upgrade_dir       = "upload://upgrades";
56 $base_tmp_upgrade_dir   = sugar_cached('upgrades/temp');
57
58 // make sure dirs exist
59 foreach( $GLOBALS['subdirs'] as $subdir ){
60     if(!file_exists("$base_upgrade_dir/$subdir")) {
61         sugar_mkdir("$base_upgrade_dir/$subdir", 0770, true);
62     }
63 }
64
65 // get labels and text that are specific to either Module Loader or Upgrade Wizard
66 if( $view == "module") {
67         $uploaddLabel = $mod_strings['LBL_UW_UPLOAD_MODULE'];
68         $descItemsQueued = $mod_strings['LBL_UW_DESC_MODULES_QUEUED'];
69         $descItemsInstalled = $mod_strings['LBL_UW_DESC_MODULES_INSTALLED'];
70 }
71 else {
72
73         $uploaddLabel = $mod_strings['LBL_UPLOAD_UPGRADE'];
74         $descItemsQueued = $mod_strings['DESC_FILES_QUEUED'];
75         $descItemsInstalled = $mod_strings['DESC_FILES_INSTALLED'];
76 }
77
78 //
79 // check that the upload limit is set to 6M or greater
80 //
81
82 define('SUGARCRM_MIN_UPLOAD_MAX_FILESIZE_BYTES', 6 * 1024 * 1024);  // 6 Megabytes
83
84 $upload_max_filesize = ini_get('upload_max_filesize');
85 $upload_max_filesize_bytes = return_bytes($upload_max_filesize);
86 if($upload_max_filesize_bytes < constant('SUGARCRM_MIN_UPLOAD_MAX_FILESIZE_BYTES'))
87 {
88         $GLOBALS['log']->debug("detected upload_max_filesize: $upload_max_filesize");
89         print('<p class="error">' . $mod_strings['MSG_INCREASE_UPLOAD_MAX_FILESIZE'] . ' '
90                 . get_cfg_var('cfg_file_path') . "</p>\n");
91 }
92
93 //
94 // process "run" commands
95 //
96
97 if( isset( $_REQUEST['run'] ) && ($_REQUEST['run'] != "") ){
98     $run = $_REQUEST['run'];
99
100     if( $run == "upload" ){
101         $perform = false;
102         if(isset($_REQUEST['release_id']) && $_REQUEST['release_id'] != ""){
103             require_once('ModuleInstall/PackageManager.php');
104             $pm = new PackageManager();
105             $tempFile = $pm->download('','',$_REQUEST['release_id']);
106             $perform = true;
107             $base_filename = urldecode($tempFile);
108         } elseif(!empty($_REQUEST['load_module_from_dir'])) {
109                 //copy file to proper location then call performSetup
110                 copy($_REQUEST['load_module_from_dir'].'/'.$_REQUEST['upgrade_zip_escaped'], "upload://".$_REQUEST['upgrade_zip_escaped']);
111
112                 $perform = true;
113             $base_filename = urldecode( $_REQUEST['upgrade_zip_escaped'] );
114         } else {
115             if( empty( $_FILES['upgrade_zip']['tmp_name'] ) ){
116                 echo $mod_strings['ERR_UW_NO_UPLOAD_FILE'];
117             } else{
118                 $upload = new UploadFile('upgrade_zip');
119                 if(!$upload->confirm_upload() ||
120                     strtolower(pathinfo($upload->get_stored_file_name(), PATHINFO_EXTENSION)) != 'zip' ||
121                     !$upload->final_move($upload->get_stored_file_name())
122                     ) {
123                             unlinkTempFiles();
124                     sugar_die("Invalid Package");
125                 } else {
126                              $tempFile = "upload://".$upload->get_stored_file_name();
127                      $perform = true;
128                      $base_filename = urldecode( $_REQUEST['upgrade_zip_escaped'] );
129                     }
130             }
131         }
132         if($perform) {
133             $manifest_file = extractManifest( $tempFile );
134                         if(is_file($manifest_file))
135                         {
136                         //SCAN THE MANIFEST FILE TO MAKE SURE NO COPIES OR ANYTHING ARE HAPPENING IN IT
137                         $ms = new ModuleScanner();
138                         $fileIssues = $ms->scanFile($manifest_file);
139                         if(!empty($fileIssues)){
140                                 echo '<h2>' . $mod_strings['ML_MANIFEST_ISSUE'] . '</h2><br>';
141                                 $ms->displayIssues();
142                                 die();
143                         }
144                 require_once( $manifest_file );
145                         validate_manifest( $manifest );
146
147                             $upgrade_zip_type = $manifest['type'];
148
149                         // exclude the bad permutations
150                         if( $view == "module" ) {
151                                 if ($upgrade_zip_type != "module" && $upgrade_zip_type != "theme" && $upgrade_zip_type != "langpack") {
152                                         unlinkTempFiles();
153                                          die($mod_strings['ERR_UW_NOT_ACCEPTIBLE_TYPE']);
154                                 }
155                         } elseif( $view == "default" ) {
156                                 if($upgrade_zip_type != "patch" ) {
157                                         unlinkTempFiles();
158                                         die($mod_strings['ERR_UW_ONLY_PATCHES']);
159                                 }
160                         }
161
162                         $base_filename = pathinfo($tempFile, PATHINFO_BASENAME);
163
164                         mkdir_recursive( "$base_upgrade_dir/$upgrade_zip_type" );
165                         $target_path = "$base_upgrade_dir/$upgrade_zip_type/$base_filename";
166                             $target_manifest = remove_file_extension( $target_path ) . "-manifest.php";
167
168                         if( isset($manifest['icon']) && $manifest['icon'] != "" ){
169                                  $icon_location = extractFile( $tempFile ,$manifest['icon'] );
170                                  copy($icon_location, remove_file_extension( $target_path )."-icon.".pathinfo($icon_location, PATHINFO_EXTENSION));
171                         }
172
173                                 if(rename( $tempFile , $target_path )) {
174                                          copy( $manifest_file, $target_manifest );
175                                         $GLOBALS['ML_STATUS_MESSAGE'] = $base_filename.$mod_strings['LBL_UW_UPLOAD_SUCCESS'];
176                 } else{
177                                          $GLOBALS['ML_STATUS_MESSAGE'] = $mod_strings['ERR_UW_UPLOAD_ERROR'];
178                                 }
179                         } else {
180                                 unlinkTempFiles();
181                                 die($mod_strings['ERR_UW_NO_MANIFEST']);
182                         }
183         }
184     } else if( $run == $mod_strings['LBL_UW_BTN_DELETE_PACKAGE'] ){
185         if(!empty ($_REQUEST['install_file']) ){
186             die($mod_strings['ERR_UW_NO_UPLOAD_FILE']);
187         }
188
189         $delete_me = hashToFile($delete_me);
190
191         $checkFile = strtolower($delete_me);
192
193         if(substr($delete_me, -4) != ".zip" || substr($delete_me, 0, 9) != "upload://" ||
194         strpos($checkFile, "..") !== false || !file_exists($checkFile)) {
195             die("<span class='error'>File is not a zipped archive.</span>");
196         }
197                 if(unlink($delete_me)) { // successful deletion?
198                         echo "Package $delete_me has been removed.<br>";
199                 } else {
200                         die("Problem removing package $delete_me.");
201                 }
202     }
203 }
204
205 if( $view == "module") {
206         print( getClassicModuleTitle($mod_strings['LBL_MODULE_NAME'], array($mod_strings['LBL_MODULE_LOADER_TITLE']), false) );
207 }
208 else {
209         print( getClassicModuleTitle($mod_strings['LBL_MODULE_NAME'], array($mod_strings['LBL_MODULE_NAME'],$mod_strings['LBL_UPGRADE_WIZARD_TITLE']), false) );
210 }
211
212 // upload link
213 if(!empty($GLOBALS['sugar_config']['use_common_ml_dir']) && $GLOBALS['sugar_config']['use_common_ml_dir'] && !empty($GLOBALS['sugar_config']['common_ml_dir'])){
214         //rrs
215         $form = '<form name="move_form" action="index.php?module=Administration&view=module&action=UpgradeWizard" method="post"  ><input type=hidden name="run" value="upload" /><input type=hidden name="load_module_from_dir" id="load_module_from_dir" value="'.$GLOBALS['sugar_config']['common_ml_dir'].'" /><input type=hidden name="upgrade_zip_escaped" value="" />';
216         $form .= '<br>'.$mod_strings['LBL_MODULE_UPLOAD_DISABLE_HELP_TEXT'].'</br>';
217         $form .='<table width="100%" class="edit view"><tr><th align="left">'.$mod_strings['LBL_ML_NAME'].'</th><th align="left">'.$mod_strings['LBL_ML_ACTION'].'</th></tr>';
218         if ($handle = opendir($GLOBALS['sugar_config']['common_ml_dir'])) {
219                 while (false !== ($filename = readdir($handle))) {
220                 if($filename == '.' || $filename == '..' || !preg_match("#.*\.zip\$#", $filename)) {
221                 continue;
222             }
223                 $form .= '<tr><td>'.$filename.'</td><td><input type=button class="button" value="'.$mod_strings['LBL_UW_BTN_UPLOAD'].'" onClick="document.move_form.upgrade_zip_escaped.value = escape( \''.$filename.'\');document.move_form.submit();" /></td></tr>';
224             }
225         }
226         $form .= '</table></form>';
227 //rrs
228
229 }else{
230     $form =<<<eoq
231 <form name="the_form" enctype="multipart/form-data" action="{$form_action}" method="post"  >
232 <table width="100%" border="0" cellspacing="0" cellpadding="0" class="edit view">
233 <tr><td>
234 <table width="450" border="0" cellspacing="0" cellpadding="0">
235 <tr><td style="white-space:nowrap; padding-right: 10px !important;">
236 {$uploaddLabel}
237 <input type="file" name="upgrade_zip" size="40" />
238 </td>
239 <td>
240 <input type=button class="button" value="{$mod_strings['LBL_UW_BTN_UPLOAD']}" onClick="document.the_form.upgrade_zip_escaped.value = escape( document.the_form.upgrade_zip.value );document.the_form.submit();" />
241 <input type=hidden name="run" value="upload" />
242 <input type=hidden name="upgrade_zip_escaped" value="" />
243 </td>
244 </tr>
245 </table></td></tr></table>
246 </form>
247 eoq;
248 }
249
250 $hidden_fields = "<input type=hidden name=\"run\" value=\"upload\" />";
251 $hidden_fields .= "<input type=hidden name=\"mode\"/>";
252
253 $form2 = PackageManagerDisplay::buildPackageDisplay($form, $hidden_fields, $form_action, array('module'));
254 $form3 =<<<eoq3
255
256
257 eoq3;
258
259 echo $form2.$form3;
260
261 // scan for new files (that are not installed)
262 /*print( "$descItemsQueued<br>\n");
263 print( "<ul>\n" );
264 $upgrade_contents = findAllFiles( "$base_upgrade_dir", array() );
265 $upgrades_available = 0;
266
267 print( "<table>\n" );
268 print( "<tr><th></th><th align=left>{$mod_strings['LBL_ML_NAME']}</th><th>{$mod_strings['LBL_ML_TYPE']}</th><th>{$mod_strings['LBL_ML_VERSION']}</th><th>{$mod_strings['LBL_ML_PUBLISHED']}</th><th>{$mod_strings['LBL_ML_UNINSTALLABLE']}</th><th>{$mod_strings['LBL_ML_DESCRIPTION']}</th></tr>\n" );
269 foreach($upgrade_contents as $upgrade_content)
270 {
271         if(!preg_match("#.*\.zip\$#", $upgrade_content))
272         {
273                 continue;
274         }
275
276         $upgrade_content = clean_path($upgrade_content);
277         $the_base = basename($upgrade_content);
278         $the_md5 = md5_file($upgrade_content);
279         $md5_matches = $uh->findByMd5($the_md5);
280
281         if(0 == sizeof($md5_matches))
282         {
283                 $target_manifest = remove_file_extension( $upgrade_content ) . '-manifest.php';
284                 require_once($target_manifest);
285
286                 $name = empty($manifest['name']) ? $upgrade_content : $manifest['name'];
287                 $version = empty($manifest['version']) ? '' : $manifest['version'];
288                 $published_date = empty($manifest['published_date']) ? '' : $manifest['published_date'];
289                 $icon = '';
290                 $description = empty($manifest['description']) ? 'None' : $manifest['description'];
291                 $uninstallable = empty($manifest['is_uninstallable']) ? 'No' : 'Yes';
292                 $type = getUITextForType( $manifest['type'] );
293                 $manifest_type = $manifest['type'];
294
295                 if($view == 'default' && $manifest_type != 'patch')
296                 {
297                         continue;
298                 }
299
300                 if($view == 'module'
301                         && $manifest_type != 'module' && $manifest_type != 'theme' && $manifest_type != 'langpack')
302                 {
303                         continue;
304                 }
305
306                 if(empty($manifest['icon']))
307                 {
308                         $icon = getImageForType( $manifest['type'] );
309                 }
310                 else
311                 {
312                         $path_parts = pathinfo( $manifest['icon'] );
313                         $icon = "<!--not_in_theme!--><img src=\"" . remove_file_extension( $upgrade_content ) . "-icon." . $path_parts['extension'] . "\" alt =''>";
314                 }
315
316                 $upgrades_available++;
317                 print( "<tr><td>$icon</td><td>$name</td><td>$type</td><td>$version</td><td>$published_date</td><td>$uninstallable</td><td>$description</td>\n" );
318
319                 $upgrade_content = urlencode($upgrade_content);
320
321                 $form2 =<<<eoq
322             <form action="{$form_action}_prepare" method="post">
323             <td><input type=submit name="btn_mode" onclick="this.form.mode.value='Install';this.form.submit();" value="{$mod_strings['LBL_UW_BTN_INSTALL']}" /></td>
324             <input type=hidden name="install_file" value="{$upgrade_content}" />
325                         <input type=hidden name="mode"/>
326             </form>
327
328             <form action="{$form_action}" method="post">
329             <td><input type=submit name="run" value="{$mod_strings['LBL_UW_BTN_DELETE_PACKAGE']}" /></td>
330             <input type=hidden name="install_file" value="{$upgrade_content}" />
331             </form>
332             </tr>
333 eoq;
334                 echo $form2;
335     }
336 }
337 print( "</table>\n" );
338
339 if( $upgrades_available == 0 ){
340     print($mod_strings['LBL_UW_NONE']);
341 }
342 print( "</ul>\n" );
343
344 ?>
345 */
346
347 $GLOBALS['log']->info( "Upgrade Wizard view");
348 ?>
349 </td>
350 </tr>
351 </table></td></tr></table>