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