]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - install/install_utils.php
Release 6.1.4
[Github/sugarcrm.git] / install / install_utils.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  * $Description: TODO: To be written. Portions created by SugarCRM are Copyright
41  * (C) SugarCRM, Inc. All Rights Reserved. Contributor(s):
42  * ______________________________________..
43  * *******************************************************************************/
44
45 require_once('include/utils/zip_utils.php');
46
47 require_once('include/upload_file.php');
48
49
50
51 ///////////////////////////////////////////////////////////////////////////////
52 ////    FROM welcome.php
53 /**
54  * returns lowercase lang encoding
55  * @return string   encoding or blank on false
56  */
57 function parseAcceptLanguage() {
58     $lang = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
59     if(strpos($lang, ';')) {
60         $exLang = explode(';', $lang);
61         return strtolower(str_replace('-','_',$exLang[0]));
62     } else {
63         $match = array();
64         if(preg_match("#\w{2}\-?\_?\w{2}#", $lang, $match)) {
65             return strtolower(str_replace('-','_',$match[0]));
66         }
67     }
68     return '';
69 }
70
71
72 ///////////////////////////////////////////////////////////////////////////////
73 ////    FROM localization.php
74 /**
75  * copies the temporary unzip'd files to their final destination
76  * removes unzip'd files from system if $uninstall=true
77  * @param bool uninstall true if uninstalling a language pack
78  * @return array sugar_config
79  */
80 function commitLanguagePack($uninstall=false) {
81     global $sugar_config;
82     global $mod_strings;
83     global $base_upgrade_dir;
84     global $base_tmp_upgrade_dir;
85
86     $errors         = array();
87     $manifest       = urldecode($_REQUEST['manifest']);
88     $zipFile        = urldecode($_REQUEST['zipFile']);
89     $version        = "";
90     $show_files     = true;
91     $unzip_dir      = mk_temp_dir( $base_tmp_upgrade_dir );
92     $zip_from_dir   = ".";
93     $zip_to_dir     = ".";
94     $zip_force_copy = array();
95
96     if($uninstall == false && isset($_SESSION['INSTALLED_LANG_PACKS']) && in_array($zipFile, $_SESSION['INSTALLED_LANG_PACKS'])) {
97         return;
98     }
99
100     // unzip lang pack to temp dir
101     if(isset($zipFile) && !empty($zipFile)) {
102         if(is_file($zipFile)) {
103             unzip( $zipFile, $unzip_dir );
104         } else {
105             echo $mod_strings['ERR_LANG_MISSING_FILE'].$zipFile;
106             die(); // no point going any further
107         }
108     }
109
110     // filter for special to/from dir conditions (langpacks generally don't have them)
111     if(isset($manifest) && !empty($manifest)) {
112         if(is_file($manifest)) {
113             include($manifest);
114             if( isset( $manifest['copy_files']['from_dir'] ) && $manifest['copy_files']['from_dir'] != "" ){
115                 $zip_from_dir   = $manifest['copy_files']['from_dir'];
116             }
117             if( isset( $manifest['copy_files']['to_dir'] ) && $manifest['copy_files']['to_dir'] != "" ){
118                 $zip_to_dir     = $manifest['copy_files']['to_dir'];
119             }
120             if( isset( $manifest['copy_files']['force_copy'] ) && $manifest['copy_files']['force_copy'] != "" ){
121                 $zip_force_copy     = $manifest['copy_files']['force_copy'];
122             }
123             if( isset( $manifest['version'] ) ){
124                 $version    = $manifest['version'];
125             }
126         } else {
127             $errors[] = $mod_strings['ERR_LANG_MISSING_FILE'].$manifest;
128         }
129     }
130
131
132     // find name of language pack: find single file in include/language/xx_xx.lang.php
133     $d = dir( "$unzip_dir/$zip_from_dir/include/language" );
134     while( $f = $d->read() ){
135         if( $f == "." || $f == ".." ){
136             continue;
137         }
138         else if( preg_match("/(.*)\.lang\.php\$/", $f, $match) ){
139             $new_lang_name = $match[1];
140         }
141     }
142     if( $new_lang_name == "" ){
143         die( $mod_strings['ERR_LANG_NO_LANG_FILE'].$zipFile );
144     }
145     $new_lang_desc = getLanguagePackName( "$unzip_dir/$zip_from_dir/include/language/$new_lang_name.lang.php" );
146     if( $new_lang_desc == "" ){
147         die( "No language pack description found at include/language/$new_lang_name.lang.php inside $install_file." );
148     }
149     // add language to available languages
150     $sugar_config['languages'][$new_lang_name] = ($new_lang_desc);
151
152     // get an array of all files to be moved
153     $filesFrom = array();
154     $filesFrom = findAllFiles($unzip_dir, $filesFrom);
155
156
157
158     ///////////////////////////////////////////////////////////////////////////
159     ////    FINALIZE
160     if($uninstall) {
161         // unlink all pack files
162         foreach($filesFrom as $fileFrom) {
163             //echo "deleting: ".getcwd().substr($fileFrom, strlen($unzip_dir), strlen($fileFrom))."<br>";
164             @unlink(getcwd().substr($fileFrom, strlen($unzip_dir), strlen($fileFrom)));
165         }
166
167         // remove session entry
168         if(isset($_SESSION['INSTALLED_LANG_PACKS']) && is_array($_SESSION['INSTALLED_LANG_PACKS'])) {
169             foreach($_SESSION['INSTALLED_LANG_PACKS'] as $k => $langPack) {
170                 if($langPack == $zipFile) {
171                     unset($_SESSION['INSTALLED_LANG_PACKS'][$k]);
172                     unset($_SESSION['INSTALLED_LANG_PACKS_VERSION'][$k]);
173                     unset($_SESSION['INSTALLED_LANG_PACKS_MANIFEST'][$k]);
174                     $removedLang = $k;
175                 }
176             }
177
178             // remove language from config
179             $new_langs = array();
180             $old_langs = $sugar_config['languages'];
181             foreach( $old_langs as $key => $value ){
182                 if( $key != $removedLang ){
183                     $new_langs += array( $key => $value );
184                 }
185             }
186             $sugar_config['languages'] = $new_langs;
187         }
188     } else {
189         // copy filesFrom to filesTo
190         foreach($filesFrom as $fileFrom) {
191             @copy($fileFrom, getcwd().substr($fileFrom, strlen($unzip_dir), strlen($fileFrom)));
192         }
193
194         $_SESSION['INSTALLED_LANG_PACKS'][$new_lang_name] = $zipFile;
195         $_SESSION['INSTALLED_LANG_PACKS_VERSION'][$new_lang_name] = $version;
196         $serial_manifest = array();
197         $serial_manifest['manifest'] = (isset($manifest) ? $manifest : '');
198         $serial_manifest['installdefs'] = (isset($installdefs) ? $installdefs : '');
199         $serial_manifest['upgrade_manifest'] = (isset($upgrade_manifest) ? $upgrade_manifest : '');
200         $_SESSION['INSTALLED_LANG_PACKS_MANIFEST'][$new_lang_name] = base64_encode(serialize($serial_manifest));
201     }
202
203     writeSugarConfig($sugar_config);
204
205     return $sugar_config;
206 }
207
208 function commitPatch($unlink = false, $type = 'patch'){
209     require_once('ModuleInstall/ModuleInstaller.php');
210     require_once('include/entryPoint.php');
211     
212
213     global $mod_strings;
214     global $base_upgrade_dir;
215     global $base_tmp_upgrade_dir;
216     global $db;
217     $GLOBALS['db'] = $db;
218     $errors = array();
219     $files = array();
220      global $current_user;
221     $current_user = new User();
222     $current_user->is_admin = '1';
223     $old_mod_strings = $mod_strings;
224     if(is_dir(getcwd()."/cache/upload/upgrades")) {
225             $files = findAllFiles(getcwd()."/cache/upload/upgrades/$type", $files);
226             $mi = new ModuleInstaller();
227             $mi->silent = true;
228             $mod_strings = return_module_language('en', "Administration");
229
230             foreach($files as $file) {
231                 if(!preg_match("#.*\.zip\$#", $file)) {
232                     continue;
233                 }
234                 // handle manifest.php
235                 $target_manifest = remove_file_extension( $file ) . '-manifest.php';
236
237                 include($target_manifest);
238
239                 $unzip_dir = mk_temp_dir( $base_tmp_upgrade_dir );
240                 unzip($file, $unzip_dir );
241                 if(file_exists("$unzip_dir/scripts/pre_install.php")){
242                     require_once("$unzip_dir/scripts/pre_install.php");
243                     pre_install();
244                 }
245                 if( isset( $manifest['copy_files']['from_dir'] ) && $manifest['copy_files']['from_dir'] != "" ){
246                     $zip_from_dir   = $manifest['copy_files']['from_dir'];
247                 }
248                 $source = "$unzip_dir/$zip_from_dir";
249                 $dest = getcwd();
250                 copy_recursive($source, $dest);
251
252                 if(file_exists("$unzip_dir/scripts/post_install.php")){
253                     require_once("$unzip_dir/scripts/post_install.php");
254                     post_install();
255                 }
256                 $new_upgrade = new UpgradeHistory();
257                 $new_upgrade->filename      = $file;
258                 $new_upgrade->md5sum        = md5_file($file);
259                 $new_upgrade->type          = $manifest['type'];
260                 $new_upgrade->version       = $manifest['version'];
261                 $new_upgrade->status        = "installed";
262                 //$new_upgrade->author        = $manifest['author'];
263                 $new_upgrade->name          = $manifest['name'];
264                 $new_upgrade->description   = $manifest['description'];
265                 $serial_manifest = array();
266                 $serial_manifest['manifest'] = (isset($manifest) ? $manifest : '');
267                 $serial_manifest['installdefs'] = (isset($installdefs) ? $installdefs : '');
268                 $serial_manifest['upgrade_manifest'] = (isset($upgrade_manifest) ? $upgrade_manifest : '');
269                 $new_upgrade->manifest   = base64_encode(serialize($serial_manifest));
270                 $new_upgrade->save();
271                 unlink($file);
272             }//rof
273     }//fi
274     $mod_strings = $old_mod_strings;
275 }
276
277 function commitModules($unlink = false, $type = 'module'){
278     require_once('ModuleInstall/ModuleInstaller.php');
279     require_once('include/entryPoint.php');
280     
281
282     global $mod_strings;
283     global $base_upgrade_dir;
284     global $base_tmp_upgrade_dir;
285     global $db;
286     $GLOBALS['db'] = $db;
287     $errors = array();
288     $files = array();
289      global $current_user;
290     $current_user = new User();
291     $current_user->is_admin = '1';
292     $old_mod_strings = $mod_strings;
293     if(is_dir(getcwd()."/cache/upload/upgrades")) {
294             $files = findAllFiles(getcwd()."/cache/upload/upgrades/$type", $files);
295             $mi = new ModuleInstaller();
296             $mi->silent = true;
297             $mod_strings = return_module_language('en', "Administration");
298
299             foreach($files as $file) {
300                 if(!preg_match("#.*\.zip\$#", $file)) {
301                     continue;
302                 }
303                 $lic_name = 'accept_lic_'.str_replace('.', '_', urlencode(basename($file)));
304
305                 $can_install = true;
306                 if(isset($_REQUEST[$lic_name])){
307                     if($_REQUEST[$lic_name] == 'yes'){
308                         $can_install = true;
309                     }else{
310                         $can_install = false;
311                     }
312                 }
313                 if($can_install){
314                     // handle manifest.php
315                     $target_manifest = remove_file_extension( $file ) . '-manifest.php';
316                     if($type == 'langpack'){
317                         $_REQUEST['manifest'] = $target_manifest;
318                         $_REQUEST['zipFile'] = $file;
319                         commitLanguagePack();
320                         continue;
321                     }
322                     include($target_manifest);
323
324                     $unzip_dir = mk_temp_dir( $base_tmp_upgrade_dir );
325                     unzip($file, $unzip_dir );
326                     $_REQUEST['install_file'] = $file;
327                     $mi->install($unzip_dir);
328                     $new_upgrade = new UpgradeHistory();
329                     $new_upgrade->filename      = $file;
330                     $new_upgrade->md5sum        = md5_file($file);
331                     $new_upgrade->type          = $manifest['type'];
332                     $new_upgrade->version       = $manifest['version'];
333                     $new_upgrade->status        = "installed";
334                    // $new_upgrade->author        = $manifest['author'];
335                     $new_upgrade->name          = $manifest['name'];
336                     $new_upgrade->description   = $manifest['description'];
337                     $new_upgrade->id_name       = (isset($installdefs['id_name'])) ? $installdefs['id_name'] : '';
338                     $serial_manifest = array();
339                     $serial_manifest['manifest'] = (isset($manifest) ? $manifest : '');
340                     $serial_manifest['installdefs'] = (isset($installdefs) ? $installdefs : '');
341                     $serial_manifest['upgrade_manifest'] = (isset($upgrade_manifest) ? $upgrade_manifest : '');
342                     $new_upgrade->manifest   = base64_encode(serialize($serial_manifest));
343                     $new_upgrade->save();
344                     //unlink($file);
345                 }//fi
346             }//rof
347     }//fi
348     $mod_strings = $old_mod_strings;
349 }
350
351 /**
352  * creates UpgradeHistory entries
353  * @param mode string Install or Uninstall
354  */
355 function updateUpgradeHistory() {
356     if(isset($_SESSION['INSTALLED_LANG_PACKS']) && count($_SESSION['INSTALLED_LANG_PACKS']) > 0) {
357         foreach($_SESSION['INSTALLED_LANG_PACKS'] as $k => $zipFile) {
358             $new_upgrade = new UpgradeHistory();
359             $new_upgrade->filename      = $zipFile;
360             $new_upgrade->md5sum        = md5_file($zipFile);
361             $new_upgrade->type          = 'langpack';
362             $new_upgrade->version       = $_SESSION['INSTALLED_LANG_PACKS_VERSION'][$k];
363             $new_upgrade->status        = "installed";
364             $new_upgrade->manifest      = $_SESSION['INSTALLED_LANG_PACKS_MANIFEST'][$k];
365             $new_upgrade->save();
366         }
367     }
368 }
369
370
371 /**
372  * removes the installed language pack, but the zip is still in the cache dir
373  */
374 function removeLanguagePack() {
375     global $mod_strings;
376     global $sugar_config;
377
378     $errors = array();
379     $manifest = urldecode($_REQUEST['manifest']);
380     $zipFile = urldecode($_REQUEST['zipFile']);
381
382     if(isset($manifest) && !empty($manifest)) {
383         if(is_file($manifest)) {
384             if(!unlink($manifest)) {
385                 $errors[] = $mod_strings['ERR_LANG_CANNOT_DELETE_FILE'].$manifest;
386             }
387         } else {
388             $errors[] = $mod_strings['ERR_LANG_MISSING_FILE'].$manifest;
389         }
390         unset($_SESSION['packages_to_install'][$manifest]);
391     }
392     if(isset($zipFile) && !empty($zipFile)) {
393         if(is_file($zipFile)) {
394             if(!unlink($zipFile)) {
395                 $errors[] = $mod_strings['ERR_LANG_CANNOT_DELETE_FILE'].$zipFile;
396             }
397         } else {
398             $errors[] = $mod_strings['ERR_LANG_MISSING_FILE'].$zipFile;
399         }
400     }
401     if(count($errors > 0)) {
402         echo "<p class='error'>";
403         foreach($errors as $error) {
404             echo "{$error}<br>";
405         }
406         echo "</p>";
407     }
408
409     unlinkTempFiles($manifest, $zipFile);
410 }
411
412
413
414 /**
415  * takes the current value of $sugar_config and writes it out to config.php (sorta the same as the final step)
416  * @param array sugar_config
417  */
418 function writeSugarConfig($sugar_config) {
419     ksort($sugar_config);
420     $sugar_config_string = "<?php\n" .
421         '// created: ' . date('Y-m-d H:i:s') . "\n" .
422         '$sugar_config = ' .
423         var_export($sugar_config, true) .
424         ";\n?>\n";
425     if(is_writable('config.php') && write_array_to_file( "sugar_config", $sugar_config, "config.php")) {
426     }
427 }
428
429
430 /**
431  * uninstalls the Language pack
432  */
433 function uninstallLangPack() {
434     global $sugar_config;
435
436     // remove language from config
437     $new_langs = array();
438     $old_langs = $sugar_config['languages'];
439     foreach( $old_langs as $key => $value ){
440         if( $key != $_REQUEST['new_lang_name'] ){
441             $new_langs += array( $key => $value );
442         }
443     }
444     $sugar_config['languages'] = $new_langs;
445
446     writeSugarConfig($sugar_config);
447 }
448
449 /**
450  * retrieves the name of the language
451  */
452 if ( !function_exists('getLanguagePackName') ) {
453 function getLanguagePackName($the_file) {
454     require_once( "$the_file" );
455     if( isset( $app_list_strings["language_pack_name"] ) ){
456         return( $app_list_strings["language_pack_name"] );
457     }
458     return( "" );
459 }
460 }
461
462 function getInstalledLangPacks($showButtons=true) {
463     global $mod_strings;
464     global $next_step;
465
466     $ret  = "<tr><td colspan=7 align=left>{$mod_strings['LBL_LANG_PACK_INSTALLED']}</td></tr>";
467     //$ret .="<table width='100%' cellpadding='0' cellspacing='0' border='0'>";
468     $ret .= "<tr>
469                 <td width='15%' ><b>{$mod_strings['LBL_ML_NAME']}</b></td>
470                 <td width='15%' ><b>{$mod_strings['LBL_ML_VERSION']}</b></td>
471                 <td width='15%' ><b>{$mod_strings['LBL_ML_PUBLISHED']}</b></td>
472                 <td width='15%' ><b>{$mod_strings['LBL_ML_UNINSTALLABLE']}</b></td>
473                 <td width='15%' ><b>{$mod_strings['LBL_ML_DESCRIPTION']}</b></td>
474                 <td width='15%' ></td>
475                 <td width='15%' ></td>
476             </tr>\n";
477     $files = array();
478     $files = findAllFiles(getcwd()."/cache/upload/upgrades", $files);
479
480     if(isset($_SESSION['INSTALLED_LANG_PACKS']) && !empty($_SESSION['INSTALLED_LANG_PACKS'])){
481         if(count($_SESSION['INSTALLED_LANG_PACKS'] > 0)) {
482             foreach($_SESSION['INSTALLED_LANG_PACKS'] as $file) {
483                 // handle manifest.php
484                 $target_manifest = remove_file_extension( $file ) . '-manifest.php';
485                 include($target_manifest);
486
487                 $name = empty($manifest['name']) ? $file : $manifest['name'];
488                 $version = empty($manifest['version']) ? '' : $manifest['version'];
489                 $published_date = empty($manifest['published_date']) ? '' : $manifest['published_date'];
490                 $icon = '';
491                 $description = empty($manifest['description']) ? 'None' : $manifest['description'];
492                 $uninstallable = empty($manifest['is_uninstallable']) ? 'No' : 'Yes';
493                 $manifest_type = $manifest['type'];
494
495                 $deletePackage = getPackButton('uninstall', $target_manifest, $file, $next_step, $uninstallable, $showButtons);
496                 //$ret .="<table width='100%' cellpadding='0' cellspacing='0' border='0'>";
497                 $ret .= "<tr>";
498                 $ret .= "<td width='15%' >".$name."</td>";
499                 $ret .= "<td width='15%' >".$version."</td>";
500                 $ret .= "<td width='15%' >".$published_date."</td>";
501                 $ret .= "<td width='15%' >".$uninstallable."</td>";
502                 $ret .= "<td width='15%' >".$description."</td>";
503                 $ret .= "<td width='15%' ></td>";
504                 $ret .= "<td width='15%' >{$deletePackage}</td>";
505                 $ret .= "</tr>";
506             }
507         } else {
508             $ret .= "</tr><td colspan=7><i>{$mod_strings['LBL_LANG_NO_PACKS']}</i></td></tr>";
509         }
510     } else {
511         $ret .= "</tr><td colspan=7><i>{$mod_strings['LBL_LANG_NO_PACKS']}</i></td></tr>";
512     }
513     return $ret;
514 }
515
516
517 function uninstallLanguagePack() {
518     return commitLanguagePack(true);
519 }
520
521
522 function getSugarConfigLanguageArray($langZip) {
523     global $sugar_config;
524
525     include(remove_file_extension($langZip)."-manifest.php");
526     $ret = '';
527     if(isset($installdefs['id']) && isset($manifest['name'])) {
528         $ret = $installdefs['id']."::".$manifest['name']."::".$manifest['version'];
529     }
530
531     return $ret;
532 }
533
534
535
536 ///////////////////////////////////////////////////////////////////////////////
537 ////    FROM performSetup.php
538 /**
539  * creates the Sugar DB user (if not admin)
540  */
541 function handleDbCreateSugarUser() {
542     global $mod_strings;
543     global $setup_db_database_name;
544     global $setup_db_host_name;
545     global $setup_db_host_instance;
546     global $setup_db_admin_user_name;
547     global $setup_db_admin_password;
548     global $sugar_config;
549     global $setup_db_sugarsales_user;
550     global $setup_site_host_name;
551     global $setup_db_sugarsales_password;
552
553     echo $mod_strings['LBL_PERFORM_CREATE_DB_USER'];
554     $errno = '';
555     switch($_SESSION['setup_db_type']) {
556         case "mysql":
557             if(isset($_SESSION['mysql_type'])){
558                 $host_name = getHostPortFromString($setup_db_host_name);
559                 if(empty($host_name)){
560                     $link = @mysqli_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
561                 }else{
562                     $link = @mysqli_connect($host_name[0], $setup_db_admin_user_name, $setup_db_admin_password,null,$host_name[1]);
563                 }
564                 $query  = "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, INDEX
565                             ON `{$setup_db_database_name}`.*
566                             TO \"{$setup_db_sugarsales_user}\"@\"{$setup_site_host_name}\"
567                             IDENTIFIED BY '{$setup_db_sugarsales_password}';";
568
569                 if(!@mysqli_query($link, $query)) {
570                     $errno = mysqli_errno($link);
571                     $error = mysqli_error($link);
572                 }
573
574                 $query  = "SET PASSWORD FOR \"{$setup_db_sugarsales_user}\"@\"{$setup_site_host_name}\" = old_password('{$setup_db_sugarsales_password}');";
575
576                 if(!@mysqli_query($link, $query)) {
577                      $errno = mysqli_errno($link);
578                      $error = mysqli_error($link);
579                 }
580
581                 if($setup_site_host_name != 'localhost') {
582                     echo $mod_strings['LBL_PERFORM_CREATE_LOCALHOST'];
583
584                     $host_name = getHostPortFromString($setup_db_host_name);
585                     if(empty($host_name)){
586                         $link   = @mysqli_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
587                     }else{
588                         $link   = @mysqli_connect($host_name[0], $setup_db_admin_user_name, $setup_db_admin_password,null,$host_name[1]);
589                     }
590
591                     $query  = "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, INDEX
592                                 ON `{$setup_db_database_name}`.*
593                                 TO \"{$setup_db_sugarsales_user}\"@\"localhost\"
594                                 IDENTIFIED BY '{$setup_db_sugarsales_password}';";
595                     if(!@mysqli_query($link, $query)) {
596                         $errno = mysqli_errno($link);
597                         $error = mysqli_error($link);
598                     }
599
600                     $query = "SET PASSWORD FOR \"{$setup_db_sugarsales_user}\"@\"localhost\"\ = old_password('{$setup_db_sugarsales_password}');";
601
602                     if(!@mysqli_query($link, $query)) {
603                         $errno = mysqli_errno($link);
604                         $error = mysqli_error($link);
605                     }
606                 } // end LOCALHOST
607
608                 mysqli_close($link);
609
610             }else{
611                 $link   = @mysql_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
612                 $query  = "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, INDEX
613                             ON `{$setup_db_database_name}`.*
614                             TO \"{$setup_db_sugarsales_user}\"@\"{$setup_site_host_name}\"
615                             IDENTIFIED BY '{$setup_db_sugarsales_password}';";
616
617                 if(!@mysql_query($query, $link)) {
618                     $errno = mysql_errno();
619                     $error = mysql_error();
620                 }
621
622                 $query  = "SET PASSWORD FOR \"{$setup_db_sugarsales_user}\"@\"{$setup_site_host_name}\" = old_password('{$setup_db_sugarsales_password}');";
623
624                 if(!@mysql_query($query, $link)) {
625                      $errno = mysql_errno();
626                      $error = mysql_error();
627                 }
628
629                 if($setup_site_host_name != 'localhost') {
630                     echo $mod_strings['LBL_PERFORM_CREATE_LOCALHOST'];
631
632                     $link   = @mysql_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
633                     $query  = "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, INDEX
634                                 ON `{$setup_db_database_name}`.*
635                                 TO \"{$setup_db_sugarsales_user}\"@\"localhost\"
636                                 IDENTIFIED BY '{$setup_db_sugarsales_password}';";
637                     if(!@mysql_query($query, $link)) {
638                         $errno = mysql_errno();
639                         $error = mysql_error();
640                     }
641
642                     $query = "SET PASSWORD FOR \"{$setup_db_sugarsales_user}\"@\"localhost\"\ = old_password('{$setup_db_sugarsales_password}');";
643
644                     if(!@mysql_query($query, $link)) {
645                         $errno = mysql_errno();
646                         $error = mysql_error();
647                     }
648                 } // end LOCALHOST
649
650                 mysql_close($link);
651
652             }
653         break;
654
655         case 'mssql':
656         $setup_db_host_instance = trim($setup_db_host_instance);
657
658         $connect_host = "";
659         if (empty($setup_db_host_instance)){
660             $connect_host = $setup_db_host_name ;
661         }else{
662             $connect_host = $setup_db_host_name . "\\" . $setup_db_host_instance;
663         }
664         if(isset($_SESSION['mssql_type'])){
665             $link = sqlsrv_connect($connect_host , array( 'UID' => $setup_db_admin_user_name, 'PWD' => $setup_db_admin_password));
666             $query = "USE " . $setup_db_database_name . ";";
667             @sqlsrv_query($link,$query);
668
669             $query = "CREATE LOGIN $setup_db_sugarsales_user WITH PASSWORD = '$setup_db_sugarsales_password'";
670             if(!sqlsrv_query($link,$query)) {
671                 $errno = 9999;
672                 displayMssqlErrors('mssqlsrv', $query);
673                 break;
674             }
675
676             $query = "CREATE USER $setup_db_sugarsales_user  FOR LOGIN $setup_db_sugarsales_user ";
677             if(!sqlsrv_query($link,$query)) {
678                 $errno = 9999;
679                 displayMssqlErrors('mssqlsrv', $query);
680                 break;
681             }
682
683             $query = "EXEC sp_addRoleMember 'db_ddladmin ', '$setup_db_sugarsales_user'";
684             if(!sqlsrv_query($link,$query)) {
685                 $errno = 9999;
686                 displayMssqlErrors('mssqlsrv', $query);
687                 break;
688             }
689
690             $query = "EXEC sp_addRoleMember 'db_datareader','$setup_db_sugarsales_user'";
691             if(!sqlsrv_query($link,$query)) {
692                 $errno = 9999;
693                 displayMssqlErrors('mssqlsrv', $query);
694                 break;
695             }
696
697             $query = "EXEC sp_addRoleMember 'db_datawriter','$setup_db_sugarsales_user'";
698             if(!sqlsrv_query($link,$query)) {
699                 $errno = 9999;
700                 displayMssqlErrors('mssqlsrv', $query);
701                 break;
702             }
703         }
704         else {
705             $link = mssql_connect($connect_host , $setup_db_admin_user_name, $setup_db_admin_password);
706             $query = "USE " . $setup_db_database_name . ";";
707             @mssql_query($query);
708
709             $query = "CREATE LOGIN $setup_db_sugarsales_user WITH PASSWORD = '$setup_db_sugarsales_password'";
710             if(!@mssql_query($query)) {
711                 $errno = 9999;
712                 $error = "Error Adding Login. SQL Query: $query";
713                                 displayMssqlErrors('mssql', $query);
714                                 break;
715             }
716
717             $query = "CREATE USER $setup_db_sugarsales_user  FOR LOGIN $setup_db_sugarsales_user ";
718             if(!@mssql_query($query)) {
719                 $errno = 9999;
720                 $error = "Error Granting Access. SQL Query: $query";
721                                 displayMssqlErrors('mssql', $query);
722                                 break;
723             }
724
725             $query = "EXEC sp_addRoleMember 'db_ddladmin ', '$setup_db_sugarsales_user'";
726             if(!@mssql_query($query)) {
727                 $errno = 9999;
728                 $error = "Error Adding Role db_owner. SQL Query: $query";
729                                 displayMssqlErrors('mssql', $query);
730                                 break;
731             }
732
733             $query = "EXEC sp_addRoleMember 'db_datareader','$setup_db_sugarsales_user'";
734             if(!@mssql_query($query)) {
735                 $errno = 9999;
736                 $error = "Error Adding Role db_datareader. SQL Query: $query";
737                                 displayMssqlErrors('mssql', $query);
738                                 break;
739             }
740
741             $query = "EXEC sp_addRoleMember 'db_datawriter','$setup_db_sugarsales_user'";
742             if(!@mssql_query($query)) {
743                 $errno = 9999;
744                 $error = "Error Adding Role db_datawriter. SQL Query: $query";
745                                 displayMssqlErrors('mssql', $query);
746                                 break;
747             }
748         }
749         break;
750     } // end switch()
751     if($errno == '')
752     echo $mod_strings['LBL_PERFORM_DONE'];
753 }
754
755 function displayMssqlErrors($driver_type, $query) {
756     global $sugar_config;
757     if($driver_type =='mssqlsrv' && ($errors = sqlsrv_errors(SQLSRV_ERR_ALL) ) != null)
758     {         
759        foreach( $errors as $error)
760        {
761         
762           echo "<div style='color:red;'>";
763           echo "An error occured when performing the folloing query:<br>";
764           echo "$query<br>";
765           echo "</div>";    
766           installLog("An error occured when performing the query:".$query." SQLSTATE: ".$error[ 'SQLSTATE']." message: ".$error[ 'message']);    
767        }
768     }
769         if($driver_type =='mssql')
770     {         
771           echo "<div style='color:red;'>";
772           echo "An error occured when performing the folloing query:<br>";
773           echo "$query<br>";
774           echo "</div>";    
775           installLog("An error occured when performing the query:".$query." message: ".mssql_get_last_message());    
776     }
777 }
778 /**
779  * ensures that the charset and collation for a given database is set
780  * MYSQL ONLY
781  */
782 function handleDbCharsetCollation() {
783     global $mod_strings;
784     global $setup_db_database_name;
785     global $setup_db_host_name;
786     global $setup_db_admin_user_name;
787     global $setup_db_admin_password;
788     global $sugar_config;
789
790     if($_SESSION['setup_db_type'] == 'mysql') {
791         if(isset($_SESSION['mysql_type'])){
792            $host_name = getHostPortFromString($setup_db_host_name);
793             if(empty($host_name)){
794                 $link = @mysqli_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
795                     
796             }else{
797                     $link   = @mysqli_connect($host_name[0], $setup_db_admin_user_name, $setup_db_admin_password,null,$host_name[1]);
798             }
799                 
800             $q1 = "ALTER DATABASE `{$setup_db_database_name}` DEFAULT CHARACTER SET utf8";
801             $q2 = "ALTER DATABASE `{$setup_db_database_name}` DEFAULT COLLATE utf8_general_ci";
802             @mysqli_query($link, $q1);
803             @mysqli_query($link, $q2);
804
805         }else{
806             $link = @mysql_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
807             $q1 = "ALTER DATABASE `{$setup_db_database_name}` DEFAULT CHARACTER SET utf8";
808             $q2 = "ALTER DATABASE `{$setup_db_database_name}` DEFAULT COLLATE utf8_general_ci";
809             @mysql_query($q1, $link);
810             @mysql_query($q2, $link);
811         }
812     }
813 }
814
815
816 /**
817  * creates the new database
818  */
819 function handleDbCreateDatabase() {
820     global $mod_strings;
821     global $setup_db_database_name;
822     global $setup_db_host_name;
823     global $setup_db_host_instance;
824     global $setup_db_admin_user_name;
825     global $setup_db_admin_password;
826     global $sugar_config;
827
828     echo "{$mod_strings['LBL_PERFORM_CREATE_DB_1']} {$setup_db_database_name} {$mod_strings['LBL_PERFORM_CREATE_DB_2']} {$setup_db_host_name}...";
829
830     switch($_SESSION['setup_db_type']) {
831         case 'mysql':
832             if(isset($_SESSION['mysql_type'])){
833                 $host_name = getHostPortFromString($setup_db_host_name);
834                 if(empty($host_name)){
835                     $link = @mysqli_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
836                 }else{                
837                     $link   = @mysqli_connect($host_name[0], $setup_db_admin_user_name, $setup_db_admin_password,null,$host_name[1]);                    
838                 }
839                 $drop = 'DROP DATABASE IF EXISTS '.$setup_db_database_name;
840                 @mysqli_query($link, $drop);
841
842                 $query = 'CREATE DATABASE `' . $setup_db_database_name . '` CHARACTER SET utf8 COLLATE utf8_general_ci';
843                 @mysqli_query($link, $query);
844                 mysqli_close($link);
845
846             }else{
847                 $link = @mysql_connect($setup_db_host_name, $setup_db_admin_user_name, $setup_db_admin_password);
848                 $drop = 'DROP DATABASE IF EXISTS '.$setup_db_database_name;
849                 @mysql_query($drop, $link);
850
851                 $query = 'CREATE DATABASE `' . $setup_db_database_name . '` CHARACTER SET utf8 COLLATE utf8_general_ci';
852                 @mysql_query($query, $link);
853                 mysql_close($link);
854
855             }
856         break;
857
858         case 'mssql':
859         $connect_host = "";
860         $setup_db_host_instance = trim($setup_db_host_instance);
861         if (empty($setup_db_host_instance)){
862             $connect_host = $setup_db_host_name ;
863         }else{
864             $connect_host = $setup_db_host_name . "\\" . $setup_db_host_instance;
865         }
866         if(isset($_SESSION['mssql_type'])){
867             $link = sqlsrv_connect($connect_host , array( 'UID' => $setup_db_admin_user_name, 'PWD' => $setup_db_admin_password));
868             $setup_db_database_name = str_replace(' ', '_', $setup_db_database_name);  // remove space
869
870             //create check to see if this is existing db
871             $check = "SELECT count(name) num FROM master..sysdatabases WHERE name = N'".$setup_db_database_name."'";
872             $tableCntRes = sqlsrv_query($link,$check);
873             $tableCnt= sqlsrv_fetch_array($tableCntRes);
874
875             //if this db already exists, then drop it
876             if($tableCnt[0]>0){
877                 $drop = "DROP DATABASE $setup_db_database_name";
878                @ sqlsrv_query($link,$drop);
879             }
880
881             //create db
882             $query = 'create database '.$setup_db_database_name;
883             @sqlsrv_query($link,$query);
884             @sqlsrv_close($link);
885         }
886         else {
887             $link = @mssql_connect($connect_host, $setup_db_admin_user_name, $setup_db_admin_password);
888             $setup_db_database_name = str_replace(' ', '_', $setup_db_database_name);  // remove space
889
890             //create check to see if this is existing db
891             $check = "SELECT count(name) num FROM master..sysdatabases WHERE name = N'".$setup_db_database_name."'";
892             $tableCntRes = mssql_query($check);
893             $tableCnt= mssql_fetch_row($tableCntRes);
894
895             //if this db already exists, then drop it
896             if($tableCnt[0]>0){
897                 $drop = "DROP DATABASE $setup_db_database_name";
898                @ mssql_query($drop);
899             }
900
901             //create db
902             $query = 'create database '.$setup_db_database_name;
903             @mssql_query($query);
904             @mssql_close($link);
905         }
906         break;
907
908     }
909     echo $mod_strings['LBL_PERFORM_DONE'];
910 }
911
912
913 /**
914  * handles creation of Log4PHP properties file
915  * This function has been deprecated.  Use SugarLogger.
916  */
917 function handleLog4Php() {
918     return;
919 /*    global $setup_site_log_dir;
920     global $setup_site_log_file;
921
922     if(is_writable("log4php.properties") && ($fh = @ sugar_fopen("log4php.properties", "r+"))) {
923         $props = fread($fh, filesize("log4php.properties"));
924         $props = preg_replace('/(log4php.appender.A2.File=).*\n/', "$1" . $setup_site_log_dir . "/" . $setup_site_log_file . "\n", $props);
925         rewind( $fh );
926         fwrite( $fh, $props );
927         ftruncate( $fh, ftell($fh) );
928         fclose( $fh );
929     }
930     */
931 }
932
933 function installLog($entry) {
934     global $mod_strings;
935     $nl = '
936 '.gmdate("Y-m-d H:i:s").'...';
937     $log = clean_path(getcwd().'/install.log');
938
939     // create if not exists
940     if(!file_exists($log)) {
941         $fp = @sugar_fopen($log, 'w+'); // attempts to create file
942         if(!is_resource($fp)) {
943             $GLOBALS['log']->fatal('could not create the install.log file');
944         }
945     } else {
946         $fp = @sugar_fopen($log, 'a+'); // write pointer at end of file
947         if(!is_resource($fp)) {
948             $GLOBALS['log']->fatal('could not open/lock install.log file');
949         }
950     }
951
952
953
954     if(@fwrite($fp, $nl.$entry) === false) {
955         $GLOBALS['log']->fatal('could not write to install.log: '.$entry);
956     }
957
958     if(is_resource($fp)) {
959         fclose($fp);
960     }
961 }
962
963
964
965 /**
966  * takes session vars and creates config.php
967  * @return array bottle collection of error messages
968  */
969 function handleSugarConfig() {
970     global $bottle;
971     global $cache_dir;
972     global $mod_strings;
973     global $setup_db_host_name;
974     global $setup_db_host_instance;
975     global $setup_db_sugarsales_user;
976     global $setup_db_sugarsales_password;
977     global $setup_db_database_name;
978     global $setup_site_host_name;
979     global $setup_site_log_dir;
980     global $setup_site_log_file;
981     global $setup_site_session_path;
982     global $setup_site_guid;
983     global $setup_site_url;
984     global $setup_sugar_version;
985     global $sugar_config;
986     global $setup_site_log_level;
987
988     echo "<b>{$mod_strings['LBL_PERFORM_CONFIG_PHP']} (config.php)</b><br>";
989     ///////////////////////////////////////////////////////////////////////////////
990     ////    $sugar_config SETTINGS
991     if( is_file('config.php') ){
992         $is_writable = is_writable('config.php');
993         // require is needed here (config.php is sometimes require'd from install.php)
994         require('config.php');
995     } else {
996         $is_writable = is_writable('.');
997     }
998
999     // build default sugar_config and merge with new values
1000     $sugar_config = sugarArrayMerge(get_sugar_config_defaults(), $sugar_config);
1001     // always lock the installer
1002     $sugar_config['installer_locked'] = true;
1003     // we're setting these since the user was given a fair chance to change them
1004     $sugar_config['dbconfig']['db_host_name']       = $setup_db_host_name;
1005     if($_SESSION['setup_db_type'] == 'mssql') {
1006     $sugar_config['dbconfig']['db_host_instance']   = $setup_db_host_instance;
1007     }
1008     $sugar_config['dbconfig']['db_user_name']       = $setup_db_sugarsales_user;
1009     $sugar_config['dbconfig']['db_password']        = $setup_db_sugarsales_password;
1010     $sugar_config['dbconfig']['db_name']            = $setup_db_database_name;
1011     $sugar_config['dbconfig']['db_type']            = $_SESSION['setup_db_type'];
1012     if(isset($_SESSION['setup_db_port_num'])){
1013         $sugar_config['dbconfig']['db_port'] = $_SESSION['setup_db_port_num'];
1014     }
1015     $sugar_config['cache_dir']                      = $cache_dir;
1016     $sugar_config['default_charset']                = $mod_strings['DEFAULT_CHARSET'];
1017     $sugar_config['default_email_client']           = 'sugar';
1018     $sugar_config['default_email_editor']           = 'html';
1019     $sugar_config['host_name']                      = $setup_site_host_name;
1020     $sugar_config['import_dir']                 = $cache_dir.'import/';
1021     $sugar_config['js_custom_version']              = '';
1022     $sugar_config['use_real_names']                 = true;
1023     $sugar_config['log_dir']                        = $setup_site_log_dir;
1024     $sugar_config['log_file']                       = $setup_site_log_file;
1025
1026         /*nsingh(bug 22402): Consolidate logger settings under $config['logger'] as liked by the new logger! If log4pphp exists,
1027                 these settings will be overwritten by those in log4php.properties when the user access admin->system settings.*/
1028     $sugar_config['logger']     =
1029         array ('level'=>$setup_site_log_level,
1030          'file' => array(
1031                         'ext' => '.log',
1032                         'name' => 'sugarcrm',
1033                         'dateFormat' => '%c',
1034                         'maxSize' => '10MB',
1035                         'maxLogs' => 10,
1036                         'suffix' => '%m_%Y'),
1037         );
1038     $sugar_config['session_dir']                    = $setup_site_session_path;
1039     $sugar_config['site_url']                       = $setup_site_url;
1040     $sugar_config['sugar_version']                  = $setup_sugar_version;
1041     $sugar_config['tmp_dir']                        = $cache_dir.'xml/';
1042     $sugar_config['upload_dir']                 = $cache_dir.'upload/';
1043     $sugar_config['use_php_code_json']              = returnPhpJsonStatus(); // true on error
1044     if( isset($_SESSION['setup_site_sugarbeet_anonymous_stats']) ){
1045         $sugar_config['sugarbeet']      = $_SESSION['setup_site_sugarbeet_anonymous_stats'];
1046     }
1047     $sugar_config['demoData'] = $_SESSION['demoData'];
1048     if( isset( $setup_site_guid ) ){
1049         $sugar_config['unique_key'] = $setup_site_guid;
1050     }
1051     if(empty($sugar_config['unique_key'])){
1052         $sugar_config['unique_key'] = md5( create_guid() );
1053     }
1054     // add installed langs to config
1055     // entry in upgrade_history comes AFTER table creation
1056     if(isset($_SESSION['INSTALLED_LANG_PACKS']) && is_array($_SESSION['INSTALLED_LANG_PACKS']) && !empty($_SESSION['INSTALLED_LANG_PACKS'])) {
1057         foreach($_SESSION['INSTALLED_LANG_PACKS'] as $langZip) {
1058             $lang = getSugarConfigLanguageArray($langZip);
1059             if(!empty($lang)) {
1060                 $exLang = explode('::', $lang);
1061                 if(is_array($exLang) && count($exLang) == 3) {
1062                     $sugar_config['languages'][$exLang[0]] = $exLang[1];
1063                 }
1064             }
1065         }
1066     }
1067     if(file_exists('install/lang.config.php')){
1068         include('install/lang.config.php');
1069         if(!empty($config['languages'])){
1070                 foreach($config['languages'] as $lang=>$label){
1071                         $sugar_config['languages'][$lang] = $label;     
1072                 }
1073         }
1074     }
1075
1076     ksort($sugar_config);
1077     $sugar_config_string = "<?php\n" .
1078         '// created: ' . date('Y-m-d H:i:s') . "\n" .
1079         '$sugar_config = ' .
1080         var_export($sugar_config, true) .
1081         ";\n?>\n";
1082     if($is_writable && write_array_to_file( "sugar_config", $sugar_config, "config.php")) {
1083         // was 'Done'
1084     } else {
1085         echo 'failed<br>';
1086         echo "<p>{$mod_strings['ERR_PERFORM_CONFIG_PHP_1']}</p>\n";
1087         echo "<p>{$mod_strings['ERR_PERFORM_CONFIG_PHP_2']}</p>\n";
1088         echo "<TEXTAREA  rows=\"15\" cols=\"80\">".$sugar_config_string."</TEXTAREA>";
1089         echo "<p>{$mod_strings['ERR_PERFORM_CONFIG_PHP_3']}</p>";
1090
1091         $bottle[] = $mod_strings['ERR_PERFORM_CONFIG_PHP_4'];
1092     }
1093
1094     ////    END $sugar_config
1095     ///////////////////////////////////////////////////////////////////////////////
1096     return $bottle;
1097 }
1098 /**
1099  * (re)write the .htaccess file to prevent browser access to the log file
1100  */
1101 function handleHtaccess(){
1102 global $mod_strings;
1103 $ignoreCase = (substr_count(strtolower($_SERVER['SERVER_SOFTWARE']), 'apache/2') > 0)?'(?i)':'';
1104 $htaccess_file   = getcwd() . "/.htaccess";     
1105 $contents = '';
1106 $restrict_str = <<<EOQ
1107
1108 # BEGIN SUGARCRM RESTRICTIONS   
1109 RedirectMatch 403 {$ignoreCase}.*\.log$
1110 RedirectMatch 403 {$ignoreCase}/+not_imported_.*\.txt
1111 RedirectMatch 403 {$ignoreCase}/+(soap|cache|xtemplate|data|examples|include|log4php|metadata|modules)/+.*\.(php|tpl)
1112 RedirectMatch 403 {$ignoreCase}/+emailmandelivery\.php
1113 RedirectMatch 403 {$ignoreCase}/+cache/+upload
1114 RedirectMatch 403 {$ignoreCase}/+files\.md5$
1115 # END SUGARCRM RESTRICTIONS
1116 EOQ;
1117         if(file_exists($htaccess_file)){
1118                 $fp = fopen($htaccess_file, 'r');
1119                 $skip = false;
1120                 while($line = fgets($fp)){
1121
1122                         if(preg_match("/\s*#\s*BEGIN\s*SUGARCRM\s*RESTRICTIONS/i", $line))$skip = true;
1123                         if(!$skip)$contents .= $line;
1124                         if(preg_match("/\s*#\s*END\s*SUGARCRM\s*RESTRICTIONS/i", $line))$skip = false;
1125                 }
1126         }
1127         $status =  file_put_contents($htaccess_file, $contents . $restrict_str);        
1128     if( !$status ) {
1129         echo "<p>{$mod_strings['ERR_PERFORM_HTACCESS_1']}<span class=stop>{$htaccess_file}</span> {$mod_strings['ERR_PERFORM_HTACCESS_2']}</p>\n";
1130         echo "<p>{$mod_strings['ERR_PERFORM_HTACCESS_3']}</p>\n";
1131         echo $restrict_str;
1132     }
1133     return $status;
1134 }
1135
1136 /**
1137  * (re)write the web.config file to prevent browser access to the log file
1138  */
1139 function handleWebConfig() {
1140         global $setup_site_log_dir;
1141     global $setup_site_log_file;
1142     global $sugar_config;
1143     
1144     // Bug 36968 - Fallback to using $sugar_config values when we are not calling this from the installer
1145     if (empty($setup_site_log_file)) {
1146         $setup_site_log_file = $sugar_config['log_file'];
1147         if ( empty($sugar_config['log_file']) ) {
1148             $setup_site_log_file = 'sugarcrm.log';
1149         }
1150     }
1151     if (empty($setup_site_log_dir)) {
1152         $setup_site_log_dir = $sugar_config['log_dir'];
1153         if ( empty($sugar_config['log_dir']) ) {
1154             $setup_site_log_dir = '.';
1155         }
1156     }
1157     
1158     $prefix = $setup_site_log_dir.empty($setup_site_log_dir)?'':'/';
1159     
1160     
1161     $config_array = array(
1162     array('1'=> $prefix.str_replace('.','\\.',$setup_site_log_file).'\\.*' ,'2'=>'log_file_restricted.html'),
1163     array('1'=> $prefix.'install.log' ,'2'=>'log_file_restricted.html'),
1164     array('1'=> $prefix.'upgradeWizard.log' ,'2'=>'log_file_restricted.html'),
1165     array('1'=> $prefix.'emailman.log' ,'2'=>'log_file_restricted.html'),
1166     array('1'=>'not_imported_.*.txt' ,'2'=>'log_file_restricted.html'),
1167     array('1'=>'XTemplate/(.*)/(.*).php' ,'2'=>'index.php'),
1168     array('1'=>'data/(.*).php' ,'2'=>'index.php'),
1169     array('1'=>'examples/(.*).php' ,'2'=>'index.php'),
1170     array('1'=>'include/(.*).php' ,'2'=>'index.php'),
1171     array('1'=>'include/(.*)/(.*).php' ,'2'=>'index.php'),
1172     array('1'=>'log4php/(.*).php' ,'2'=>'index.php'),
1173     array('1'=>'log4php/(.*)/(.*)' ,'2'=>'index.php'),
1174     array('1'=>'metadata/(.*)/(.*).php' ,'2'=>'index.php'),
1175     array('1'=>'modules/(.*)/(.*).php' ,'2'=>'index.php'),
1176     array('1'=>'soap/(.*).php' ,'2'=>'index.php'),
1177     array('1'=>'emailmandelivery.php' ,'2'=>'index.php'),
1178     array('1'=>'cron.php' ,'2'=>'index.php'),
1179     array('1'=> $sugar_config['upload_dir'].'.*' ,'2'=>'index.php'),
1180     );      
1181     
1182         
1183     $xmldoc = new XMLWriter();
1184     $xmldoc->openURI('web.config');
1185     $xmldoc->setIndent(true);
1186     $xmldoc->setIndentString(' ');
1187     $xmldoc->startDocument('1.0','UTF-8');
1188     $xmldoc->startElement('configuration');
1189     $xmldoc->startElement('system.webServer');
1190     $xmldoc->startElement('rewrite');
1191     $xmldoc->startElement('rules');
1192     for ($i = 0; $i < count($config_array); $i++) {
1193         $xmldoc->startElement('rule');
1194         $xmldoc->writeAttribute('name', "redirect$i");
1195         $xmldoc->writeAttribute('stopProcessing', 'true');
1196         $xmldoc->startElement('match');
1197         $xmldoc->writeAttribute('url', $config_array[$i]['1']); 
1198         $xmldoc->endElement();
1199         $xmldoc->startElement('action');
1200         $xmldoc->writeAttribute('type', 'Redirect');
1201         $xmldoc->writeAttribute('url', $config_array[$i]['2']);
1202         $xmldoc->writeAttribute('redirectType', 'Found');
1203         $xmldoc->endElement();
1204         $xmldoc->endElement();
1205     }
1206     $xmldoc->endElement();
1207     $xmldoc->endElement();
1208     $xmldoc->endElement();
1209     $xmldoc->endElement();
1210     $xmldoc->endDocument();
1211     $xmldoc->flush();
1212 }
1213
1214 /**
1215  * Drop old tables if table exists and told to drop it
1216  */
1217 function drop_table_install( &$focus ){
1218     global $db;
1219     global $dictionary;
1220
1221     $result = $db->tableExists($focus->table_name);
1222
1223     if( $result ){
1224         $focus->drop_tables();
1225         $GLOBALS['log']->info("Dropped old ".$focus->table_name." table.");
1226         return 1;
1227     }
1228     else {
1229         $GLOBALS['log']->info("Did not need to drop old ".$focus->table_name." table.  It doesn't exist.");
1230         return 0;
1231     }
1232 }
1233
1234 // Creating new tables if they don't exist.
1235 function create_table_if_not_exist( &$focus ){
1236     global  $db;
1237     $table_created = false;
1238
1239     // normal code follows
1240     $result = $db->tableExists($focus->table_name);
1241     if($result){
1242         $GLOBALS['log']->info("Table ".$focus->table_name." already exists.");
1243     } else {
1244         $focus->create_tables();
1245         $GLOBALS['log']->info("Created ".$focus->table_name." table.");
1246         $table_created = true;
1247     }
1248     return $table_created;
1249 }
1250
1251
1252
1253 function create_default_users(){
1254     global $db;
1255     global $setup_site_admin_password;
1256     global $setup_site_admin_user_name;
1257     global $create_default_user;
1258     global $sugar_config;
1259
1260     //Create default admin user
1261     $user = new User();
1262     $user->id = 1;
1263     $user->new_with_id = true;
1264     $user->last_name = 'Administrator';
1265     //$user->user_name = 'admin';
1266     $user->user_name = $setup_site_admin_user_name;
1267     $user->title = "Administrator";
1268     $user->status = 'Active';
1269     $user->is_admin = true;
1270         $user->employee_status = 'Active';
1271     //$user->user_password = $user->encrypt_password($setup_site_admin_password);
1272     $user->user_hash = strtolower(md5($setup_site_admin_password));
1273     $user->email = '';
1274     $user->save();
1275     
1276     // echo 'Creating RSS Feeds';
1277     //$feed = new Feed();
1278     //$feed->createRSSHomePage($user->id);
1279
1280
1281     // We need to change the admin user to a fixed id of 1.
1282     // $query = "update users set id='1' where user_name='$user->user_name'";
1283     // $result = $db->query($query, true, "Error updating admin user ID: ");
1284
1285     $GLOBALS['log']->info("Created ".$user->table_name." table. for user $user->id");
1286
1287     if( $create_default_user ){
1288         $default_user = new User();
1289         $default_user->last_name = $sugar_config['default_user_name'];
1290         $default_user->user_name = $sugar_config['default_user_name'];
1291         $default_user->status = 'Active';
1292         if( isset($sugar_config['default_user_is_admin']) && $sugar_config['default_user_is_admin'] ){
1293             $default_user->is_admin = true;
1294         }
1295         //$default_user->user_password = $default_user->encrypt_password($sugar_config['default_password']);
1296         $default_user->user_hash = strtolower(md5($sugar_config['default_password']));
1297         $default_user->save();
1298         //$feed->createRSSHomePage($user->id);
1299     }
1300 }
1301
1302 function set_admin_password( $password ) {
1303     global $db;
1304
1305     $user = new User();
1306     $encrypted_password = $user->encrypt_password($password);
1307     $user_hash = strtolower(md5($password));
1308
1309     //$query = "update users set user_password='$encrypted_password', user_hash='$user_hash' where id='1'";
1310     $query = "update users set user_hash='$user_hash' where id='1'";
1311
1312     $db->query($query);
1313 }
1314
1315 function insert_default_settings(){
1316     global $db;
1317     global $setup_sugar_version;
1318     global $sugar_db_version;
1319
1320
1321     $db->query("INSERT INTO config (category, name, value) VALUES ('notify', 'fromaddress', 'do_not_reply@example.com')");
1322     $db->query("INSERT INTO config (category, name, value) VALUES ('notify', 'fromname', 'SugarCRM')");
1323     $db->query("INSERT INTO config (category, name, value) VALUES ('notify', 'send_by_default', '1')");
1324     $db->query("INSERT INTO config (category, name, value) VALUES ('notify', 'on', '1')");
1325     $db->query("INSERT INTO config (category, name, value) VALUES ('notify', 'send_from_assigning_user', '0')");
1326     /* cn: moved to OutboundEmail class
1327     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'smtpserver', 'localhost')");
1328     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'smtpport', '25')");
1329     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'sendtype', 'smtp')");
1330     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'smtpuser', '')");
1331     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'smtppass', '')");
1332     $db->query("INSERT INTO config (category, name, value) VALUES ('mail', 'smtpauth_req', '0')");
1333     */
1334     $db->query("INSERT INTO config (category, name, value) VALUES ('info', 'sugar_version', '" . $sugar_db_version . "')");
1335     $db->query("INSERT INTO config (category, name, value) VALUES ('MySettings', 'tab', '')");
1336     $db->query("INSERT INTO config (category, name, value) VALUES ('portal', 'on', '0')");
1337
1338
1339     
1340     //insert default tracker settings    
1341     $db->query("INSERT INTO config (category, name, value) VALUES ('tracker', 'Tracker', '1')");
1342     
1343
1344     
1345     $db->query( "INSERT INTO config (category, name, value) VALUES ( 'system', 'skypeout_on', '1')" );
1346
1347 }
1348
1349
1350
1351
1352
1353
1354
1355
1356 // Returns true if the given file/dir has been made writable (or is already
1357 // writable).
1358 function make_writable($file)
1359 {
1360
1361     $ret_val = false;
1362     if(is_file($file) || is_dir($file))
1363     {
1364         if(is_writable($file))
1365         {
1366             $ret_val = true;
1367         }
1368         else
1369         {
1370             $original_fileperms = fileperms($file);
1371
1372             // add user writable permission
1373             $new_fileperms = $original_fileperms | 0x0080;
1374             @sugar_chmod($file, $new_fileperms);
1375
1376             if(is_writable($file))
1377             {
1378                 $ret_val = true;
1379             }
1380             else
1381             {
1382                 // add group writable permission
1383                 $new_fileperms = $original_fileperms | 0x0010;
1384                 @chmod($file, $new_fileperms);
1385
1386                 if(is_writable($file))
1387                 {
1388                     $ret_val = true;
1389                 }
1390                 else
1391                 {
1392                     // add world writable permission
1393                     $new_fileperms = $original_fileperms | 0x0002;
1394                     @chmod($file, $new_fileperms);
1395
1396                     if(is_writable($file))
1397                     {
1398                         $ret_val = true;
1399                     }
1400                 }
1401             }
1402         }
1403     }
1404
1405     return $ret_val;
1406 }
1407
1408 function recursive_make_writable($start_file)
1409     {
1410     $ret_val = make_writable($start_file);
1411
1412     if($ret_val && is_dir($start_file))
1413     {
1414         // PHP 4 alternative to scandir()
1415         $files = array();
1416         $dh = opendir($start_file);
1417         $filename = readdir($dh);
1418         while(!empty($filename))
1419         {
1420             if($filename != '.' && $filename != '..' && $filename != '.svn')
1421             {
1422                 $files[] = $filename;
1423             }
1424
1425             $filename = readdir($dh);
1426         }
1427
1428         foreach($files as $file)
1429         {
1430             $ret_val = recursive_make_writable($start_file . '/' . $file);
1431
1432             if(!$ret_val)
1433             {
1434                 $_SESSION['unwriteable_module_files'][dirname($file)] = dirname($file);
1435                 $fnl_ret_val = false;
1436                 //break;
1437             }
1438         }
1439     }
1440             if(!$ret_val)
1441             {
1442                 $unwriteable_directory = is_dir($start_file) ? $start_file : dirname($start_file);
1443                 if($unwriteable_directory[0] == '.'){$unwriteable_directory = substr($unwriteable_directory,1);}
1444                 $_SESSION['unwriteable_module_files'][$unwriteable_directory] = $unwriteable_directory;
1445                 $_SESSION['unwriteable_module_files']['failed'] = true;
1446             }
1447
1448     return $ret_val;
1449 }
1450
1451 function recursive_is_writable($start_file)
1452 {
1453     $ret_val = is_writable($start_file);
1454
1455     if($ret_val && is_dir($start_file))
1456     {
1457         // PHP 4 alternative to scandir()
1458         $files = array();
1459         $dh = opendir($start_file);
1460         $filename = readdir($dh);
1461         while(!empty($filename))
1462         {
1463             if($filename != '.' && $filename != '..' && $filename != '.svn')
1464             {
1465                 $files[] = $filename;
1466             }
1467
1468             $filename = readdir($dh);
1469         }
1470
1471         foreach($files as $file)
1472         {
1473             $ret_val = recursive_is_writable($start_file . '/' . $file);
1474
1475             if(!$ret_val)
1476             {
1477                 break;
1478             }
1479         }
1480     }
1481
1482     return $ret_val;
1483 }
1484
1485
1486
1487
1488 function getMysqlVersion($link) {
1489     if($link) {
1490         if(isset($_SESSION['mysql_type'])){
1491             $version = mysqli_get_server_info($link);
1492         }else{
1493             if(is_resource($link)) {
1494                 $version = mysql_get_server_info($link);
1495             }
1496         }
1497         return preg_replace('/[A-Za-z\-]/','',$version);
1498     }
1499     return 0;
1500 }
1501
1502
1503
1504
1505 // one place for form validation/conversion to boolean
1506 function get_boolean_from_request( $field ){
1507     if( !isset($_REQUEST[$field]) ){
1508         return( false );
1509     }
1510
1511     if( ($_REQUEST[$field] == 'on') || ($_REQUEST[$field] == 'yes') ){
1512         return(true);
1513     }
1514     else {
1515         return(false);
1516     }
1517 }
1518
1519 function stripslashes_checkstrings($value){
1520    if(is_string($value)){
1521       return stripslashes($value);
1522    }
1523    return $value;
1524 }
1525
1526
1527 function print_debug_array( $name, $debug_array ){
1528     ksort( $debug_array );
1529
1530     print( "$name vars:\n" );
1531     print( "(\n" );
1532
1533     foreach( $debug_array as $key => $value ){
1534         if( stristr( $key, "password" ) ){
1535             $value = "WAS SET";
1536         }
1537         print( "    [$key] => $value\n" );
1538     }
1539
1540     print( ")\n" );
1541 }
1542
1543 function print_debug_comment(){
1544     if( !empty($_REQUEST['debug']) ){
1545         $_SESSION['debug'] = $_REQUEST['debug'];
1546     }
1547
1548     if( !empty($_SESSION['debug']) && ($_SESSION['debug'] == 'true') ){
1549         print( "<!-- debug is on (to turn off, hit any page with 'debug=false' as a URL parameter.\n" );
1550
1551         print_debug_array( "Session",   $_SESSION );
1552         print_debug_array( "Request",   $_REQUEST );
1553         print_debug_array( "Post",      $_POST );
1554         print_debug_array( "Get",       $_GET );
1555
1556         print_r( "-->\n" );
1557     }
1558 }
1559
1560 function validate_systemOptions() {
1561     global $mod_strings;
1562     $errors = array();
1563     switch( $_SESSION['setup_db_type'] ){
1564         case "mysql":
1565         case "mssql":
1566         case "oci8":
1567             break;
1568         default:
1569             $errors[] = "<span class='error'>".$mod_strings['ERR_DB_INVALID']."</span>";
1570             break;
1571     }
1572     return $errors;
1573 }
1574
1575
1576 function validate_dbConfig() {
1577     global $mod_strings;
1578     require_once('install/checkDBSettings.php');
1579     return checkDBSettings(true);
1580
1581 }
1582
1583 function validate_siteConfig($type){
1584     global $mod_strings;
1585    $errors = array();
1586
1587    if($type=='a'){
1588        if(empty($_SESSION['setup_system_name'])){
1589             $errors[] = "<span class='error'>".$mod_strings['LBL_REQUIRED_SYSTEM_NAME']."</span>";
1590        }
1591        if($_SESSION['setup_site_url'] == ''){
1592           $errors[] = "<span class='error'>".$mod_strings['ERR_URL_BLANK']."</span>";
1593        }
1594
1595        if($_SESSION['setup_site_admin_user_name'] == '') {
1596           $errors[] = "<span class='error'>".$mod_strings['ERR_ADMIN_USER_NAME_BLANK']."</span>";
1597        }
1598        
1599        if($_SESSION['setup_site_admin_password'] == ''){
1600           $errors[] = "<span class='error'>".$mod_strings['ERR_ADMIN_PASS_BLANK']."</span>";
1601        }
1602
1603        if($_SESSION['setup_site_admin_password'] != $_SESSION['setup_site_admin_password_retype']){
1604           $errors[] = "<span class='error'>".$mod_strings['ERR_PASSWORD_MISMATCH']."</span>";
1605        }
1606    }else{
1607        if(!empty($_SESSION['setup_site_custom_session_path']) && $_SESSION['setup_site_session_path'] == ''){
1608           $errors[] = "<span class='error'>".$mod_strings['ERR_SESSION_PATH']."</span>";
1609        }
1610
1611        if(!empty($_SESSION['setup_site_custom_session_path']) && $_SESSION['setup_site_session_path'] != ''){
1612           if(is_dir($_SESSION['setup_site_session_path'])){
1613              if(!is_writable($_SESSION['setup_site_session_path'])){
1614                 $errors[] = "<span class='error'>".$mod_strings['ERR_SESSION_DIRECTORY']."</span>";
1615              }
1616           }
1617           else {
1618              $errors[] = "<span class='error'>".$mod_strings['ERR_SESSION_DIRECTORY_NOT_EXISTS']."</span>";
1619           }
1620        }
1621
1622        if(!empty($_SESSION['setup_site_custom_log_dir']) && $_SESSION['setup_site_log_dir'] == ''){
1623           $errors[] = "<span class='error'>".$mod_strings['ERR_LOG_DIRECTORY_NOT_EXISTS']."</span>";
1624        }
1625
1626        if(!empty($_SESSION['setup_site_custom_log_dir']) && $_SESSION['setup_site_log_dir'] != ''){
1627           if(is_dir($_SESSION['setup_site_log_dir'])){
1628              if(!is_writable($_SESSION['setup_site_log_dir'])) {
1629                 $errors[] = "<span class='error'>".$mod_strings['ERR_LOG_DIRECTORY_NOT_WRITABLE']."</span>";
1630              }
1631           }
1632           else {
1633              $errors[] = "<span class='error'>".$mod_strings['ERR_LOG_DIRECTORY_NOT_EXISTS']."</span>";
1634           }
1635        }
1636
1637        if(!empty($_SESSION['setup_site_specify_guid']) && $_SESSION['setup_site_guid'] == ''){
1638           $errors[] = "<span class='error'>".$mod_strings['ERR_SITE_GUID']."</span>";
1639        }
1640    }
1641
1642    return $errors;
1643 }
1644
1645
1646 function pullSilentInstallVarsIntoSession() {
1647     global $mod_strings;
1648     global $sugar_config;
1649
1650     
1651     if( file_exists('config_si.php') ){
1652         require_once('config_si.php');
1653     }
1654     else if( empty($sugar_config_si) ){
1655         die( $mod_strings['ERR_SI_NO_CONFIG'] );
1656     }
1657
1658     $config_subset = array (
1659         'setup_site_url'                => isset($sugar_config['site_url']) ? $sugar_config['site_url'] : '',
1660         'setup_db_host_name'            => isset($sugar_config['dbconfig']['db_host_name']) ? $sugar_config['dbconfig']['db_host_name'] : '',
1661         'setup_db_sugarsales_user'      => isset($sugar_config['dbconfig']['db_user_name']) ? $sugar_config['dbconfig']['db_user_name'] : '',
1662         'setup_db_sugarsales_password'  => isset($sugar_config['dbconfig']['db_password']) ? $sugar_config['dbconfig']['db_password'] : '',
1663         'setup_db_database_name'        => isset($sugar_config['dbconfig']['db_name']) ? $sugar_config['dbconfig']['db_name'] : '',
1664         'setup_db_type'                 => isset($sugar_config['dbconfig']['db_type']) ? $sugar_config['dbconfig']['db_type'] : '',
1665     );
1666     // third array of values derived from above values
1667     $derived = array (
1668         'setup_site_admin_password_retype'      => $sugar_config_si['setup_site_admin_password'],
1669         'setup_db_sugarsales_password_retype'   => $config_subset['setup_db_sugarsales_password'],
1670     );
1671
1672     $needles = array('setup_license_key_users','setup_license_key_expire_date','setup_license_key', 'setup_num_lic_oc',
1673                      'default_currency_iso4217', 'default_currency_name', 'default_currency_significant_digits',
1674                      'default_currency_symbol',  'default_date_format', 'default_time_format', 'default_decimal_seperator',
1675                      'default_export_charset', 'default_language', 'default_locale_name_format', 'default_number_grouping_seperator',
1676                      'export_delimiter');
1677     copyFromArray($sugar_config_si, $needles, $derived);
1678     $all_config_vars = array_merge( $config_subset, $sugar_config_si, $derived );
1679
1680     // bug 16860 tyoung -  trim leading and trailing whitespace from license_key
1681     if (isset($all_config_vars['setup_license_key'])) {
1682         $all_config_vars['setup_license_key'] = trim($all_config_vars['setup_license_key']);
1683     }
1684
1685     foreach( $all_config_vars as $key => $value ){
1686         $_SESSION[$key] = $value;
1687     }
1688 }
1689
1690 /**
1691  * given an array it will check to determine if the key exists in the array, if so
1692  * it will addd to the return array
1693  *
1694  * @param intput_array haystack to check
1695  * @param needles list of needles to search for
1696  * @param output_array the array to add the keys to
1697  */
1698 function copyFromArray($input_array, $needles, $output_array){
1699     foreach($needles as $needle){
1700          if(isset($input_array[$needle])){
1701             $output_array[$needle]  = $input_array[$needle];
1702          }
1703     }
1704 }
1705
1706
1707
1708 /**
1709  * handles language pack uploads - code based off of upload_file->final_move()
1710  * puts it into the cache/upload dir to be handed off to langPackUnpack();
1711  *
1712  * @param object file UploadFile object
1713  * @return bool true if successful
1714  */
1715 function langPackFinalMove($file) {
1716     global $sugar_config;
1717     //."upgrades/langpack/"
1718     $destination = $sugar_config['upload_dir'].$file->stored_file_name;
1719     if(!move_uploaded_file($_FILES[$file->field_name]['tmp_name'], $destination)) {
1720         die ("ERROR: can't move_uploaded_file to $destination. You should try making the directory writable by the webserver");
1721     }
1722     return true;
1723 }
1724
1725 function getLicenseDisplay($type, $manifest, $zipFile, $next_step, $license_file, $clean_file) {
1726     return PackageManagerDisplay::getLicenseDisplay($license_file, 'install.php', $next_step, $zipFile, $type, $manifest, $clean_file);
1727 }
1728
1729
1730 /**
1731  * creates the remove/delete form for langpack page
1732  * @param string type commit/remove
1733  * @param string manifest path to manifest file
1734  * @param string zipFile path to uploaded zip file
1735  * @param int nextstep current step
1736  * @return string ret <form> for this package
1737  */
1738 function getPackButton($type, $manifest, $zipFile, $next_step, $uninstallable='Yes', $showButtons=true) {
1739     global $mod_strings;
1740
1741     $button = $mod_strings['LBL_LANG_BUTTON_COMMIT'];
1742     if($type == 'remove') {
1743         $button = $mod_strings['LBL_LANG_BUTTON_REMOVE'];
1744     } elseif($type == 'uninstall') {
1745         $button = $mod_strings['LBL_LANG_BUTTON_UNINSTALL'];
1746     }
1747
1748     $disabled = ($uninstallable == 'Yes') ? false : true;
1749
1750     $ret = "<form name='delete{$zipFile}' action='install.php' method='POST'>
1751                 <input type='hidden' name='current_step' value='{$next_step}'>
1752                 <input type='hidden' name='goto' value='{$mod_strings['LBL_CHECKSYS_RECHECK']}'>
1753                 <input type='hidden' name='languagePackAction' value='{$type}'>
1754                 <input type='hidden' name='manifest' value='".urlencode($manifest)."'>
1755                 <input type='hidden' name='zipFile' value='".urlencode($zipFile)."'>
1756                 <input type='hidden' name='install_type' value='custom'>";
1757     if(!$disabled && $showButtons) {
1758         $ret .= "<input type='submit' value='{$button}' class='button'>";
1759     }
1760     $ret .= "</form>";
1761     return $ret;
1762 }
1763
1764 /**
1765  * finds all installed languages and returns an array with the names
1766  * @return array langs array of installed languages
1767  */
1768 function getInstalledLanguages() {
1769     $langDir = 'include/language/';
1770     $dh = opendir($langDir);
1771
1772     $langs = array();
1773     while($file = readdir($dh)) {
1774         if(substr($file, -3) == 'php') {
1775
1776         }
1777     }
1778 }
1779
1780
1781
1782 /**
1783  * searches upgrade dir for lang pack files.
1784  *
1785  * @return string HTML of available lang packs
1786  */
1787 function getLangPacks($display_commit = true, $types = array('langpack'), $notice_text = '') {
1788     global $mod_strings;
1789     global $next_step;
1790     global $base_upgrade_dir;
1791
1792     if(empty($notice_text)){
1793         $notice_text =  $mod_strings['LBL_LANG_PACK_READY'];
1794     }
1795         $ret = "<tr><td colspan=7 align=left>{$notice_text}</td></tr>";
1796     //$ret .="<table width='100%' cellpadding='0' cellspacing='0' border='0'>";
1797     $ret .= "<tr>
1798                 <td width='20%' ><b>{$mod_strings['LBL_ML_NAME']}</b></td>
1799                 <td width='15%' ><b>{$mod_strings['LBL_ML_VERSION']}</b></td>
1800                 <td width='15%' ><b>{$mod_strings['LBL_ML_PUBLISHED']}</b></td>
1801                 <td width='15%' ><b>{$mod_strings['LBL_ML_UNINSTALLABLE']}</b></td>
1802                 <td width='20%' ><b>{$mod_strings['LBL_ML_DESCRIPTION']}</b></td>
1803                 <td width='7%' ></td>
1804                 <td width='1%' ></td>
1805                 <td width='7%' ></td>
1806             </tr>\n";
1807     $files = array();
1808
1809     // duh, new installs won't have the upgrade folders
1810    if(!is_dir(getcwd()."/cache/upload/upgrades")) {
1811             mkdir_recursive( "$base_upgrade_dir");
1812         }
1813         $subdirs = array('full', 'langpack', 'module', 'patch', 'theme', 'temp');
1814         foreach( $subdirs as $subdir ){
1815                 mkdir_recursive( "$base_upgrade_dir/$subdir" );
1816         }
1817
1818     $files = findAllFiles(getcwd()."/cache/upload/upgrades", $files);
1819     $hidden_input = '';
1820     unset($_SESSION['hidden_input']);
1821
1822     foreach($files as $file) {
1823         if(!preg_match("#.*\.zip\$#", $file)) {
1824             continue;
1825         }
1826
1827         // skip installed lang packs
1828         if(isset($_SESSION['INSTALLED_LANG_PACKS']) && in_array($file, $_SESSION['INSTALLED_LANG_PACKS'])) {
1829             continue;
1830         }
1831
1832         // handle manifest.php
1833         $target_manifest = remove_file_extension( $file ) . '-manifest.php';
1834         $license_file = remove_file_extension( $file ) . '-license.txt';
1835         include($target_manifest);
1836
1837         if(!empty($types)){
1838             if(!in_array(strtolower($manifest['type']), $types))
1839                 continue;
1840         }
1841
1842         $md5_matches = array();
1843         if($manifest['type'] == 'module'){
1844             $uh = new UpgradeHistory();
1845             $upgrade_content = clean_path($file);
1846             $the_base = basename($upgrade_content);
1847             $the_md5 = md5_file($upgrade_content);
1848             $md5_matches = $uh->findByMd5($the_md5);
1849         }
1850
1851         if($manifest['type']!= 'module' || 0 == sizeof($md5_matches)){
1852             $name = empty($manifest['name']) ? $file : $manifest['name'];
1853             $version = empty($manifest['version']) ? '' : $manifest['version'];
1854             $published_date = empty($manifest['published_date']) ? '' : $manifest['published_date'];
1855             $icon = '';
1856             $description = empty($manifest['description']) ? 'None' : $manifest['description'];
1857             $uninstallable = empty($manifest['is_uninstallable']) ? 'No' : 'Yes';
1858             $manifest_type = $manifest['type'];
1859             $commitPackage = getPackButton('commit', $target_manifest, $file, $next_step);
1860             $deletePackage = getPackButton('remove', $target_manifest, $file, $next_step);
1861             //$ret .="<table width='100%' cellpadding='0' cellspacing='0' border='0'>";
1862             $ret .= "<tr>";
1863             $ret .= "<td width='20%' >".$name."</td>";
1864             $ret .= "<td width='15%' >".$version."</td>";
1865             $ret .= "<td width='15%' >".$published_date."</td>";
1866             $ret .= "<td width='15%' >".$uninstallable."</td>";
1867             $ret .= "<td width='20%' >".$description."</td>";
1868
1869             if($display_commit)
1870                 $ret .= "<td width='7%'>{$commitPackage}</td>";
1871             $ret .= "<td width='1%'></td>";
1872             $ret .= "<td width='7%'>{$deletePackage}</td>";
1873             $ret .= "</td></tr>";
1874
1875             $clean_field_name = "accept_lic_".str_replace('.', '_', urlencode(basename($file)));
1876
1877             if(is_file($license_file)){
1878                 //rrs
1879                 $ret .= "<tr><td colspan=6>";
1880                 $ret .= getLicenseDisplay('commit', $target_manifest, $file, $next_step, $license_file, $clean_field_name);
1881                 $ret .= "</td></tr>";
1882                 $hidden_input .= "<input type='hidden' name='$clean_field_name' id='$clean_field_name' value='no'>";
1883             }else{
1884                 $hidden_input .= "<input type='hidden' name='$clean_field_name' id='$clean_field_name' value='yes'>";
1885             }
1886         }//fi
1887     }//rof
1888     $_SESSION['hidden_input'] = $hidden_input;
1889
1890     if(count($files) > 0 ) {
1891         $ret .= "</tr><td colspan=7>";
1892         $ret .= "<form name='commit' action='install.php' method='POST'>
1893                     <input type='hidden' name='current_step' value='{$next_step}'>
1894                     <input type='hidden' name='goto' value='Re-check'>
1895                     <input type='hidden' name='languagePackAction' value='commit'>
1896                     <input type='hidden' name='install_type' value='custom'>
1897                  </form>
1898                 ";
1899         $ret .= "</td></tr>";
1900     } else {
1901         $ret .= "</tr><td colspan=7><i>{$mod_strings['LBL_LANG_NO_PACKS']}</i></td></tr>";
1902     }
1903     return $ret;
1904 }
1905
1906 if ( !function_exists('extractFile') ) {
1907 function extractFile( $zip_file, $file_in_zip, $base_tmp_upgrade_dir){
1908     $my_zip_dir = mk_temp_dir( $base_tmp_upgrade_dir );
1909     unzip_file( $zip_file, $file_in_zip, $my_zip_dir );
1910     return( "$my_zip_dir/$file_in_zip" );
1911 }
1912 }
1913
1914 if ( !function_exists('extractManifest') ) {
1915 function extractManifest( $zip_file,$base_tmp_upgrade_dir ) {
1916     return( extractFile( $zip_file, "manifest.php",$base_tmp_upgrade_dir ) );
1917 }
1918 }
1919
1920 if ( !function_exists('unlinkTempFiles') ) {
1921 function unlinkTempFiles($manifest, $zipFile) {
1922     global $sugar_config;
1923
1924     @unlink($_FILES['language_pack']['tmp_name']);
1925     if(!empty($manifest))
1926         @unlink($manifest);
1927     if(!empty($zipFile)) {
1928         //@unlink($zipFile);
1929         $tmpZipFile = substr($zipFile, strpos($zipFile, 'langpack/') + 9, strlen($zipFile));
1930         @unlink(getcwd()."/".$sugar_config['upload_dir'].$tmpZipFile);
1931     }
1932
1933     rmdir_recursive(getcwd()."/".$sugar_config['upload_dir']."upgrades/temp");
1934     sugar_mkdir(getcwd()."/".$sugar_config['upload_dir']."upgrades/temp");
1935 }
1936 }
1937
1938 function langPackUnpack($unpack_type = 'langpack', $full_file = '') {
1939     global $sugar_config;
1940     global $base_upgrade_dir;
1941     global $base_tmp_upgrade_dir;
1942
1943     $manifest = array();
1944     if(!empty($full_file)){
1945         $tempFile = $full_file;
1946         $base_filename = urldecode($tempFile);
1947         $base_filename = preg_replace( "#\\\\#", "/", $base_filename );
1948         $base_filename = basename( $base_filename );
1949     }else{
1950         $tempFile = getcwd().'/'.$sugar_config['upload_dir'].$_FILES['language_pack']['name'];
1951         $base_filename = $_FILES['language_pack']['name'];
1952     }
1953     $manifest_file = extractManifest($tempFile, $base_tmp_upgrade_dir);
1954     if($unpack_type == 'module')
1955         $license_file = extractFile($tempFile, 'LICENSE.txt', $base_tmp_upgrade_dir);
1956
1957     if(is_file($manifest_file)) {
1958
1959         if($unpack_type == 'module' && is_file($license_file)){
1960             copy($license_file, getcwd().'/'.$sugar_config['upload_dir'].'upgrades/'.$unpack_type.'/'.remove_file_extension($base_filename)."-license.txt");
1961         }
1962         copy($manifest_file, getcwd().'/'.$sugar_config['upload_dir'].'upgrades/'.$unpack_type.'/'.remove_file_extension($base_filename)."-manifest.php");
1963
1964         require_once( $manifest_file );
1965         validate_manifest( $manifest );
1966         $upgrade_zip_type = $manifest['type'];
1967
1968         // exclude the bad permutations
1969         /*if($upgrade_zip_type != "langpack") {
1970             unlinkTempFiles($manifest_file, $tempFile);
1971             die( "You can only upload module packs, theme packs, and language packs on this page." );
1972         }*/
1973
1974         //$base_filename = urldecode( $_REQUEST['language_pack_escaped'] );
1975         $base_filename = preg_replace( "#\\\\#", "/", $base_filename );
1976         $base_filename = basename( $base_filename );
1977
1978         mkdir_recursive( "$base_upgrade_dir/$upgrade_zip_type" );
1979         $target_path = getcwd()."/$base_upgrade_dir/$upgrade_zip_type/$base_filename";
1980         $target_manifest = remove_file_extension( $target_path ) . "-manifest.php";
1981
1982         if( isset($manifest['icon']) && $manifest['icon'] != "" ) {
1983             $icon_location = extractFile( $tempFile, $manifest['icon'], $base_tmp_upgrade_dir );
1984             $path_parts = pathinfo( $icon_location );
1985             copy( $icon_location, remove_file_extension( $target_path ) . "-icon." . $path_parts['extension'] );
1986         }
1987
1988         // move file from cache/upload to cache/upload/langpack
1989         if( copy( $tempFile , $target_path ) ){
1990             copy( $manifest_file, $target_manifest );
1991             unlink($tempFile); // remove tempFile
1992             return "The file $base_filename has been uploaded.<br>\n";
1993         } else {
1994             unlinkTempFiles($manifest_file, $tempFile);
1995             return "There was an error uploading the file, please try again!<br>\n";
1996         }
1997     } else {
1998         die("The zip file is missing a manifest.php file.  Cannot proceed.");
1999     }
2000     unlinkTempFiles($manifest_file, '');
2001 }
2002
2003 if ( !function_exists('validate_manifest') ) {
2004 function validate_manifest( $manifest ){
2005     // takes a manifest.php manifest array and validates contents
2006     global $subdirs;
2007     global $sugar_version;
2008     global $sugar_flavor;
2009     global $mod_strings;
2010
2011     if( !isset($manifest['type']) ){
2012         die($mod_strings['ERROR_MANIFEST_TYPE']);
2013     }
2014     $type = $manifest['type'];
2015     if( getInstallType( "/$type/" ) == "" ){
2016         die($mod_strings['ERROR_PACKAGE_TYPE']. ": '" . $type . "'." );
2017     }
2018
2019     return true; // making this a bit more relaxed since we updated the language extraction and merge capabilities
2020
2021     /*
2022     if( isset($manifest['acceptable_sugar_versions']) ){
2023         $version_ok = false;
2024         $matches_empty = true;
2025         if( isset($manifest['acceptable_sugar_versions']['exact_matches']) ){
2026             $matches_empty = false;
2027             foreach( $manifest['acceptable_sugar_versions']['exact_matches'] as $match ){
2028                 if( $match == $sugar_version ){
2029                     $version_ok = true;
2030                 }
2031             }
2032         }
2033         if( !$version_ok && isset($manifest['acceptable_sugar_versions']['regex_matches']) ){
2034             $matches_empty = false;
2035             foreach( $manifest['acceptable_sugar_versions']['regex_matches'] as $match ){
2036                 if( preg_match( "/$match/", $sugar_version ) ){
2037                     $version_ok = true;
2038                 }
2039             }
2040         }
2041
2042         if( !$matches_empty && !$version_ok ){
2043             die( $mod_strings['ERROR_VERSION_INCOMPATIBLE'] . $sugar_version );
2044         }
2045     }
2046
2047     if( isset($manifest['acceptable_sugar_flavors']) && sizeof($manifest['acceptable_sugar_flavors']) > 0 ){
2048         $flavor_ok = false;
2049         foreach( $manifest['acceptable_sugar_flavors'] as $match ){
2050             if( $match == $sugar_flavor ){
2051                 $flavor_ok = true;
2052             }
2053         }
2054         if( !$flavor_ok ){
2055             //die( $mod_strings['ERROR_FLAVOR_INCOMPATIBLE'] . $sugar_flavor );
2056         }
2057     }*/
2058 }
2059 }
2060
2061 if ( !function_exists('getInstallType') ) {
2062 function getInstallType( $type_string ){
2063     // detect file type
2064     $subdirs = array('full', 'langpack', 'module', 'patch', 'theme', 'temp');
2065     foreach( $subdirs as $subdir ){
2066         if( preg_match( "#/$subdir/#", $type_string ) ){
2067             return( $subdir );
2068         }
2069     }
2070     // return empty if no match
2071     return( "" );
2072 }
2073 }
2074
2075
2076
2077 //mysqli connector has a separate parameter for port.. We need to separate it out from the host name
2078 function getHostPortFromString($hostname=''){
2079
2080     $pos=strpos($hostname,':');
2081     if($pos === false){
2082         //no need to process as string is empty or does not contain ':' delimiter
2083         return '';   
2084     }
2085
2086     $hostArr = explode(':', $hostname);
2087
2088     return $hostArr;
2089     
2090 }
2091
2092 function getLicenseContents($filename)
2093 {
2094         $license_file = '';
2095     if(file_exists($filename) && filesize($filename) >0){
2096             $fh = sugar_fopen( $filename, 'r' ) or die( "License file not found!" );
2097             $license_file = fread( $fh, filesize( $filename ) );
2098             fclose( $fh );
2099     }
2100     return $license_file;
2101 }
2102
2103
2104
2105
2106
2107
2108
2109
2110 ///////////////////////////////////////////////////////////////////////////////
2111 ////    FROM POPULATE SEED DATA
2112 $seed = array(
2113     'qa',       'dev',          'beans',
2114     'info',     'sales',        'support',
2115     'kid',      'the',          'section',
2116     'sugar',    'hr',           'im',
2117     'kid',      'vegan',        'phone',
2118 );
2119 $tlds = array(
2120     ".com", ".org", ".net", ".tv", ".cn", ".co.jp", ".us",
2121     ".edu", ".tw", ".de", ".it", ".co.uk", ".info", ".biz",
2122     ".name",
2123 );
2124
2125 /**
2126  * creates a random, DNS-clean webaddress
2127  */
2128 function createWebAddress() {
2129     global $seed;
2130     global $tlds;
2131
2132     $one = $seed[rand(0, count($seed)-1)];
2133     $two = $seed[rand(0, count($seed)-1)];
2134     $tld = $tlds[rand(0, count($tlds)-1)];
2135
2136     return "www.{$one}{$two}{$tld}";
2137 }
2138
2139 /**
2140  * creates a random email address
2141  * @return string
2142  */
2143 function createEmailAddress() {
2144     global $seed;
2145     global $tlds;
2146
2147     $part[0] = $seed[rand(0, count($seed)-1)];
2148     $part[1] = $seed[rand(0, count($seed)-1)];
2149     $part[2] = $seed[rand(0, count($seed)-1)];
2150
2151     $tld = $tlds[rand(0, count($tlds)-1)];
2152
2153     $len = rand(1,3);
2154
2155     $ret = '';
2156     for($i=0; $i<$len; $i++) {
2157         $ret .= (empty($ret)) ? '' : '.';
2158         $ret .= $part[$i];
2159     }
2160
2161     if($len == 1) {
2162         $ret .= rand(10, 99);
2163     }
2164
2165     return "{$ret}@example{$tld}";
2166 }
2167
2168
2169 function add_digits($quantity, &$string, $min = 0, $max = 9) {
2170     for($i=0; $i < $quantity; $i++) {
2171         $string .= mt_rand($min,$max);
2172     }
2173 }
2174
2175 function create_phone_number() {
2176     $phone = "(";
2177     add_digits(3, $phone);
2178     $phone .= ") ";
2179     add_digits(3, $phone);
2180     $phone .= "-";
2181     add_digits(4, $phone);
2182
2183     return $phone;
2184 }
2185
2186 function create_date($year=null,$mnth=null,$day=null) {
2187     global $timedate;
2188
2189     if ($mnth ==null) $mnth=date("m");
2190     if ($day==null) $day=date("d")+mt_rand(0,365);
2191     if ($year==null) $year=date("Y");
2192
2193     $date = date($timedate->get_db_date_format(), mktime(0, 0, 0, $mnth, $day, $year));
2194     return $date;
2195 }
2196
2197 function create_current_date_time() {
2198     global $timedate;
2199
2200     $time=date($timedate->get_db_date_format() . ' ' . $timedate->get_db_date_format(),mktime());
2201     return $time;
2202 }
2203
2204 function create_time($hr=null,$min=null,$sec=null) {
2205     global $timedate;
2206     if ($hr==null) $hr=mt_rand(6,19);
2207     if ($min==null) $min=(mt_rand(0,3)*15);
2208     if ($sec==null) $sec=0;
2209
2210     $time=date($timedate->get_db_time_format(),mktime($hr, $min, $sec, 7, 10, 2007));
2211     return $time;
2212 }
2213
2214 function create_past_date() {
2215     global $timedate;
2216
2217     $date = date($timedate->get_date_format(), mktime(0, 0, 0, date("m"), date("d")+mt_rand(-365,-1), date("Y")));
2218     return $date;
2219 }
2220
2221 /**
2222 *   This method will look for a file modules_post_install.php in the root directory and based on the
2223 *   contents of this file, it will silently install any modules as specified in this array.
2224 */
2225 function post_install_modules(){
2226     if(is_file('modules_post_install.php')){
2227         global $current_user, $mod_strings;
2228         $current_user = new User();
2229         $current_user->is_admin = '1';
2230         require_once('ModuleInstall/PackageManager/PackageManager.php');
2231         require_once('modules_post_install.php');
2232         //we now have the $modules_to_install array in memory
2233         $pm = new PackageManager();
2234         $old_mod_strings = $mod_strings;
2235         foreach($modules_to_install as $module_to_install){
2236             if(is_file($module_to_install)){
2237                 $pm->performSetup($module_to_install, 'module', false);
2238                 $file_to_install = 'cache/upload/upgrades/module/'.basename($module_to_install);
2239                 $_REQUEST['install_file'] = $file_to_install;
2240                 $pm->performInstall($file_to_install);
2241             }
2242         }
2243         $mod_strings = $old_mod_strings;
2244     }
2245 }
2246
2247 function get_help_button_url(){
2248     $help_url = 'http://www.sugarcrm.com/docs/Administration_Guides/CommunityEdition_Admin_Guide_5.0/toc.html';
2249
2250     return $help_url;
2251 }
2252
2253 function create_db_user_creds($numChars=10){
2254 $numChars = 7; // number of chars in the password
2255 //chars to select from
2256 $charBKT = "abcdefghijklmnpqrstuvwxyz123456789ABCDEFGHIJKLMNPQRSTUVWXYZ";
2257 // seed the random number generator
2258 srand((double)microtime()*1000000);
2259 $password="";
2260 for ($i=0;$i<$numChars;$i++)  // loop and create password
2261             $password = $password . substr ($charBKT, rand() % strlen($charBKT), 1);
2262
2263 return $password;
2264
2265 }
2266
2267 function addDefaultRoles($defaultRoles = array()) {
2268         global $db;
2269     
2270     
2271         foreach($defaultRoles as $roleName=>$role){
2272             $ACLField = new ACLField();
2273         $role1= new ACLRole();
2274         $role1->name = $roleName;
2275         $role1->description = $roleName." Role";
2276         $role1_id=$role1->save();
2277         foreach($role as $category=>$actions){
2278             foreach($actions as $name=>$access_override){
2279                 if($name=='fields'){
2280                     foreach($access_override as $field_id=>$access){
2281                         $ACLField->setAccessControl($category, $role1_id, $field_id, $access);
2282                     }
2283                 }else{
2284                     $queryACL="SELECT id FROM acl_actions where category='$category' and name='$name'";
2285                     $result = $db->query($queryACL);
2286                     $actionId=$db->fetchByAssoc($result);
2287                     if (isset($actionId['id']) && !empty($actionId['id'])){
2288                         $role1->setAction($role1_id, $actionId['id'], $access_override);
2289                     }
2290                 }
2291             }
2292         }
2293         }
2294 }
2295
2296 /**
2297  * Fully enable SugarFeeds, enabling the user feed and all available modules that have SugarFeed data.
2298  */
2299 function enableSugarFeeds()
2300 {
2301     $admin = new Administration();
2302     $admin->saveSetting('sugarfeed','enabled','1');
2303     
2304     foreach ( SugarFeed::getAllFeedModules() as $module )
2305         SugarFeed::activateModuleFeed($module);
2306 }