]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - ModuleInstall/ModuleInstaller.php
Release 6.4.1
[Github/sugarcrm.git] / ModuleInstall / ModuleInstaller.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 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  * ModuleInstaller - takes an installation package from files in the custom/Extension/X directories, and moves them into custom/X to install them.
41  * If a directory has multiple files they are concatenated together.
42  * Relevant directories (X) are Layoutdefs, Vardefs, Include (bean stuff), Language, TableDictionary (relationships)
43  *
44  * Installation steps that involve more than just copying files:
45  * 1. installing custom fields - calls bean->custom_fields->addField
46  * 2. installing relationships - calls createTableParams to build the relationship table, and createRelationshipMeta to add the relationship to the relationship table
47  * 3. rebuilding the relationships - at almost the last step in install(), calls modules/Administration/RebuildRelationship.php
48  * 4. repair indices - uses "modules/Administration/RepairIndex.php";
49  */
50
51
52
53 require_once('include/utils/progress_bar_utils.php');
54
55 require_once('ModuleInstall/ModuleScanner.php');
56 define('DISABLED_PATH', 'Disabled');
57
58 class ModuleInstaller{
59         var $modules = array();
60         var $silent = false;
61         var $base_dir  = '';
62         var $modulesInPackage = array();
63         public $disabled_path = DISABLED_PATH;
64
65         function ModuleInstaller(){
66                 $this->ms = new ModuleScanner();
67                 $this->modules = get_module_dir_list();
68                 $this->db = & DBManagerFactory::getInstance();
69         include("ModuleInstall/extensions.php");
70         $this->extensions = $extensions;
71         }
72
73    /*
74     * ModuleInstaller->install includes the manifest.php from the base directory it has been given. If it has been asked to do an upgrade it checks to see if there is
75     * an upgrade_manifest defined in the manifest; if not it errors. It then adds the bean into the custom/Extension/application/Ext/Include/<module>.php - sets beanList, beanFiles
76     * and moduleList - and then calls ModuleInstaller->merge_files('Ext/Include', 'modules.ext.php', '', true) to merge the individual module files into a combined file
77     * /custom/Extension/application/Ext/Include/modules.ext.php (which now contains a list of all $beanList, $beanFiles and $moduleList for all extension modules) -
78     * this file modules.ext.php is included at the end of modules.php.
79     *
80     * Finally it runs over a list of defined tasks; then install_beans, then install_custom_fields, then clear the Vardefs, run a RepairAndClear, then finally call rebuild_relationships.
81     */
82         function install($base_dir, $is_upgrade = false, $previous_version = ''){
83                 if(defined('TEMPLATE_URL'))SugarTemplateUtilities::disableCache();
84                 if(!empty($GLOBALS['sugar_config']['moduleInstaller']['packageScan'])){
85                         $this->ms->scanPackage($base_dir);
86                         if($this->ms->hasIssues()){
87                                 $this->ms->displayIssues();
88                                 sugar_cleanup(true);
89                         }
90                 }
91
92         // workaround for bug 45812 - refresh vardefs cache before unpacking to avoid partial vardefs in cache
93         global $beanList;
94         foreach ($this->modules as $module_name) {
95             if (!empty($beanList[$module_name])) {
96                 $objectName = BeanFactory::getObjectName($module_name);
97                 VardefManager::loadVardef($module_name, $objectName);
98             }
99         }
100
101                 global $app_strings, $mod_strings;
102                 $this->base_dir = $base_dir;
103                 $total_steps = 5; //minimum number of steps with no tasks
104                 $current_step = 0;
105                 $tasks = array(
106                         'pre_execute',
107                         'install_copy',
108                     'install_extensions',
109                         'install_images',
110                         'install_dcactions',
111                         'install_dashlets',
112                         'install_connectors',
113                         'install_layoutfields',
114                         'install_relationships',
115             'enable_manifest_logichooks',
116                         'post_execute',
117                         'reset_opcodes',
118                 );
119
120                 $total_steps += count($tasks);
121                 if(file_exists($this->base_dir . '/manifest.php')){
122                                 if(!$this->silent){
123                                         $current_step++;
124                                         display_progress_bar('install', $current_step, $total_steps);
125                                         echo '<div id ="displayLoglink" ><a href="#" onclick="document.getElementById(\'displayLog\').style.display=\'\'">'
126                                                 .$app_strings['LBL_DISPLAY_LOG'].'</a> </div><div id="displayLog" style="display:none">';
127                                 }
128
129                                 include($this->base_dir . '/manifest.php');
130                                 if($is_upgrade && !empty($previous_version)){
131                                         //check if the upgrade path exists
132                                         if(!empty($upgrade_manifest)){
133                                                 if(!empty($upgrade_manifest['upgrade_paths'])){
134                                                         if(!empty($upgrade_manifest['upgrade_paths'][$previous_version])){
135                                                                 $installdefs =  $upgrade_manifest['upgrade_paths'][$previous_version];
136                                                         }else{
137                                                                 $errors[] = 'No Upgrade Path Found in manifest.';
138                                                                 $this->abort($errors);
139                                                         }//fi
140                                                 }//fi
141                                         }//fi
142                                 }//fi
143                                 $this->id_name = $installdefs['id'];
144                                 $this->installdefs = $installdefs;
145                                 if(!$this->silent){
146                                         $current_step++;
147                                         update_progress_bar('install', $current_step, $total_steps);
148                                 }
149
150                                 foreach($tasks as $task){
151                                         $this->$task();
152                                         if(!$this->silent){
153                                                 $current_step++;
154                                                 update_progress_bar('install', $current_step, $total_steps);
155                                         }
156                                 }
157                                 $this->install_beans($this->installed_modules);
158                                 if(!$this->silent){
159                                         $current_step++;
160                                         update_progress_bar('install', $total_steps, $total_steps);
161                                 }
162                                 if(isset($installdefs['custom_fields'])){
163                                         $this->log(translate('LBL_MI_IN_CUSTOMFIELD'));
164                                         $this->install_custom_fields($installdefs['custom_fields']);
165                                 }
166                                 if(!$this->silent){
167                                         $current_step++;
168                                         update_progress_bar('install', $current_step, $total_steps);
169                                         echo '</div>';
170                                 }
171                                 if(!$this->silent){
172                                         $current_step++;
173                                         update_progress_bar('install', $current_step, $total_steps);
174                                         echo '</div>';
175                                 }
176                                 $selectedActions = array(
177                         'clearTpls',
178                         'clearJsFiles',
179                         'clearDashlets',
180                         'clearVardefs',
181                         'clearJsLangFiles',
182                         'rebuildAuditTables',
183                         'repairDatabase',
184                 );
185                                 VardefManager::clearVardef();
186                                 global $beanList, $beanFiles, $moduleList;
187                                 if (file_exists('custom/application/Ext/Include/modules.ext.php'))
188                                 {
189                                     include('custom/application/Ext/Include/modules.ext.php');
190                                 }
191                                 require_once("modules/Administration/upgrade_custom_relationships.php");
192                 upgrade_custom_relationships($this->installed_modules);
193                                 $this->rebuild_all(true);
194                                 require_once('modules/Administration/QuickRepairAndRebuild.php');
195                                 $rac = new RepairAndClear();
196                                 $rac->repairAndClearAll($selectedActions, $this->installed_modules,true, false);
197                                 $this->rebuild_relationships();
198                                 UpdateSystemTabs('Add',$this->tab_modules);
199                 //Clear out all the langauge cache files.
200                 clearAllJsAndJsLangFilesWithoutOutput();
201                 $cache_key = 'app_list_strings.'.$GLOBALS['current_language'];
202                 sugar_cache_clear($cache_key );
203                 sugar_cache_reset();
204
205                                 //clear the unified_search_module.php file
206                     require_once('modules/Home/UnifiedSearchAdvanced.php');
207                     UnifiedSearchAdvanced::unlinkUnifiedSearchModulesFile();
208
209                                 $this->log('<br><b>' . translate('LBL_MI_COMPLETE') . '</b>');
210                 }else{
211                         die("No \$installdefs Defined In $this->base_dir/manifest.php");
212                 }
213
214         }
215
216         function install_user_prefs($module, $hide_from_user=false){
217                 UserPreference::updateAllUserPrefs('display_tabs', $module, '', true, !$hide_from_user);
218                 UserPreference::updateAllUserPrefs('hide_tabs', $module, '', true, $hide_from_user);
219                 UserPreference::updateAllUserPrefs('remove_tabs', $module, '', true, $hide_from_user);
220         }
221         function uninstall_user_prefs($module){
222                 UserPreference::updateAllUserPrefs('display_tabs', $module, '', true, true);
223                 UserPreference::updateAllUserPrefs('hide_tabs', $module, '', true, true);
224                 UserPreference::updateAllUserPrefs('remove_tabs', $module, '', true, true);
225         }
226
227         function pre_execute(){
228                 require_once($this->base_dir . '/manifest.php');
229                 if(isset($this->installdefs['pre_execute']) && is_array($this->installdefs['pre_execute'])){
230                         foreach($this->installdefs['pre_execute'] as $includefile){
231                                 require_once(str_replace('<basepath>', $this->base_dir, $includefile));
232                         }
233                 }
234         }
235
236         function post_execute(){
237                 require_once($this->base_dir . '/manifest.php');
238                 if(isset($this->installdefs['post_execute']) && is_array($this->installdefs['post_execute'])){
239                         foreach($this->installdefs['post_execute'] as $includefile){
240                                 require_once(str_replace('<basepath>', $this->base_dir, $includefile));
241                         }
242                 }
243         }
244
245         function pre_uninstall(){
246                 require_once($this->base_dir . '/manifest.php');
247                 if(isset($this->installdefs['pre_uninstall']) && is_array($this->installdefs['pre_uninstall'])){
248                         foreach($this->installdefs['pre_uninstall'] as $includefile){
249                                 require_once(str_replace('<basepath>', $this->base_dir, $includefile));
250                         }
251                 }
252         }
253
254         function post_uninstall(){
255                 require_once($this->base_dir . '/manifest.php');
256                 if(isset($this->installdefs['post_uninstall']) && is_array($this->installdefs['post_uninstall'])){
257                         foreach($this->installdefs['post_uninstall'] as $includefile){
258                                 require_once(str_replace('<basepath>', $this->base_dir, $includefile));
259                         }
260                 }
261         }
262
263         /*
264      * ModuleInstaller->install_copy gets the copy section of installdefs in the manifest and calls copy_path to copy each path (file or directory) to its final location
265      * (specified as from and to in the manifest), replacing <basepath> by the base_dir value passed in to install.
266      */
267         function install_copy(){
268                 if(isset($this->installdefs['copy'])){
269                         /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:11 PM */
270                         $backup_path = clean_path( remove_file_extension(urldecode(hashToFile($_REQUEST['install_file'])))."-restore" );
271                         /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
272                         foreach($this->installdefs['copy'] as $cp){
273                                 $GLOBALS['log']->debug("Copying ..." . $cp['from'].  " to " .$cp['to'] );
274                                 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:11 PM */
275                                 //$this->copy_path($cp['from'], $cp['to']);
276                                 $this->copy_path($cp['from'], $cp['to'], $backup_path);
277                                 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
278                         }
279                         //here we should get the module list again as we could have copied something to the modules dir
280                         $this->modules = get_module_dir_list();
281                 }
282         }
283         function uninstall_copy(){
284                 if(!empty($this->installdefs['copy'])){
285                                         foreach($this->installdefs['copy'] as $cp){
286                                                 $cp['to'] = clean_path(str_replace('<basepath>', $this->base_dir, $cp['to']));
287                                                 $cp['from'] = clean_path(str_replace('<basepath>', $this->base_dir, $cp['from']));
288                                                 $GLOBALS['log']->debug('Unlink ' . $cp['to']);
289                                 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:11 PM */
290                                                 //rmdir_recursive($cp['to']);
291
292                                                 $backup_path = clean_path( remove_file_extension(urldecode(hashToFile($_REQUEST['install_file'])))."-restore/".$cp['to'] );
293                                                 $this->uninstall_new_files($cp, $backup_path);
294                                                 $this->copy_path($backup_path, $cp['to'], $backup_path, true);
295                                 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
296                                         }
297                                         $backup_path = clean_path( remove_file_extension(urldecode(hashToFile($_REQUEST['install_file'])))."-restore");
298                                         if(file_exists($backup_path))
299                                                 rmdir_recursive($backup_path);
300                                 }
301         }
302
303
304         /**
305          * Removes any files that were added by the loaded module. If the files already existed prior to install
306          * it will be handled by copy_path with the uninstall parameter.
307          *
308          */
309         function uninstall_new_files($cp, $backup_path){
310                 $zip_files = $this->dir_get_files($cp['from'],$cp['from']);
311                 $backup_files = $this->dir_get_files($backup_path, $backup_path);
312                 foreach($zip_files as $k=>$v){
313                         //if it's not a backup then it is probably a new file but we'll check that it is not in the md5.files first
314                         if(!isset($backup_files[$k])){
315                                 $to = $cp['to'] . $k;
316                                 //if it's not a sugar file then we remove it otherwise we can't restor it
317                                 if(!$this->ms->sugarFileExists($to)){
318                                         $GLOBALS['log']->debug('ModuleInstaller[uninstall_new_file] deleting file ' . $to);
319                                         if(file_exists($to)) {
320                                             unlink($to);
321                                         }
322                                 }else{
323                                         $GLOBALS['log']->fatal('ModuleInstaller[uninstall_new_file] Could not remove file ' . $to . ' as no backup file was found to restore to');
324                                 }
325                         }
326                 }
327                 //lets check if the directory is empty if it is we will delete it as well
328                 $files_remaining = $this->dir_file_count($cp['to']);
329                 if(file_exists($cp['to']) && $files_remaining == 0){
330                         $GLOBALS['log']->debug('ModuleInstaller[uninstall_new_file] deleting directory ' . $cp['to']);
331                         rmdir_recursive($cp['to']);
332                 }
333
334         }
335
336         /**
337          * Get directory where module's extensions go
338          * @param string $module Module name
339          */
340     public function getExtDir($module)
341     {
342             if($module == 'application') {
343             return "custom/Extension/application/Ext";
344         } else {
345                         return "custom/Extension/modules/$module/Ext";
346         }
347     }
348
349         /**
350          * Install file(s) into Ext/ part
351          * @param string $section Name of the install file section
352          * @param string $extname Name in Ext directory
353          * @param string $module This extension belongs to a specific module
354          */
355         public function installExt($section, $extname, $module = '')
356         {
357         if(isset($this->installdefs[$section])){
358                         $this->log(sprintf(translate("LBL_MI_IN_EXT"), $section));
359                         foreach($this->installdefs[$section] as $item){
360                             if(isset($item['from'])) {
361                                     $from = str_replace('<basepath>', $this->base_dir, $item['from']);
362                             } else {
363                                 $from = '';
364                             }
365                                 if(!empty($module)) {
366                                     $item['to_module'] = $module;
367                                 }
368                                 $GLOBALS['log']->debug("Installing section $section from $from for " .$item['to_module'] );
369                 if($item['to_module'] == 'application') {
370                     $path = "custom/Extension/application/Ext/$extname";
371                 } else {
372                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/$extname";
373                 }
374                                 if(!file_exists($path)){
375                                         mkdir_recursive($path, true);
376                                 }
377                                 if(isset($item["name"])) {
378                                     $target = $item["name"];
379                                 } else if (!empty($from)){
380                     $target = basename($from, ".php");
381                 } else {
382                                     $target = $this->id_name;
383                                 }
384                                 if(!empty($from)) {
385                                     copy_recursive($from , "$path/$target.php");
386                                 }
387                         }
388                 }
389         }
390
391         /**
392          * Uninstall file(s) into Ext/ part
393          * @param string $section Name of the install file section
394          * @param string $extname Name in Ext directory
395          * @param string $module This extension belongs to a specific module
396          */
397         public function uninstallExt($section, $extname, $module = '')
398         {
399         if(isset($this->installdefs[$section])){
400                         $this->log(sprintf(translate("LBL_MI_UN_EXT"), $section));
401                         foreach($this->installdefs[$section] as $item){
402                             if(isset($item['from'])) {
403                                     $from = str_replace('<basepath>', $this->base_dir, $item['from']);
404                             } else {
405                                 $from = '';
406                             }
407                             if(!empty($module)) {
408                                     $item['to_module'] = $module;
409                                 }
410                                 $GLOBALS['log']->debug("Uninstalling section $section from $from for " .$item['to_module'] );
411                 if($item['to_module'] == 'application') {
412                     $path = "custom/Extension/application/Ext/$extname";
413                 } else {
414                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/$extname";
415                 }
416                                 if(isset($item["name"])) {
417                                     $target = $item["name"];
418                                 } else if (!empty($from)){
419                     $target = basename($from, ".php");
420                 } else {
421                                     $target = $this->id_name;
422                                 }
423                                 $disabled_path = $path.'/'.DISABLED_PATH;
424                                 if (file_exists("$path/$target.php")) {
425                                     rmdir_recursive("$path/$target.php");
426                 } else if (file_exists("$disabled_path/$target.php")) {
427                     rmdir_recursive("$disabled_path/$target.php");
428                                 } else if (!empty($from) && file_exists($path . '/'. basename($from))) {
429                                     rmdir_recursive( $path . '/'. basename($from));
430                 } else if (!empty($from) && file_exists($disabled_path . '/'. basename($from))) {
431                                         rmdir_recursive( $disabled_path . '/'. basename($from));
432                                 }
433                     }
434             }
435         }
436
437         /**
438      * Rebuild generic extension
439      * @param string $ext Extension directory
440      * @param string $filename Target filename
441      */
442         public function rebuildExt($ext, $filename)
443         {
444             $this->log(translate('LBL_MI_REBUILDING') . " $ext...");
445                         $this->merge_files("Ext/$ext/", $filename);
446         }
447
448         /**
449          * Disable generic extension
450          * @param string $section Install file section name
451          * @param string $extname Extension directory
452          * @param string $module This extension belongs to a specific module
453          */
454         public function disableExt($section, $extname, $module = '')
455         {
456                 if(isset($this->installdefs[$section])) {
457                         foreach($this->installdefs[$section] as $item) {
458                             if(isset($item['from'])) {
459                                     $from = str_replace('<basepath>', $this->base_dir, $item['from']);
460                             } else {
461                                 $from = '';
462                             }
463                                 if(!empty($module)) {
464                                     $item['to_module'] = $module;
465                                 }
466                                 $GLOBALS['log']->debug("Disabling $extname ... from $from for " .$item['to_module']);
467                 if($item['to_module'] == 'application') {
468                     $path = "custom/Extension/application/Ext/$extname";
469                 } else {
470                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/$extname";
471                 }
472                                 if(isset($item["name"])) {
473                                     $target = $item["name"];
474                                 } else if (!empty($from)){
475                     $target = basename($from, ".php");
476                 }else {
477                                     $target = $this->id_name;
478                                 }
479                                 $disabled_path = $path.'/'.DISABLED_PATH;
480                 if (file_exists("$path/$target.php")) {
481                                         mkdir_recursive($disabled_path, true);
482                                         rename("$path/$target.php", "$disabled_path/$target.php");
483                                 } else if (!empty($from) && file_exists($path . '/'. basename($from))) {
484                                         mkdir_recursive($disabled_path, true);
485                                     rename( $path . '/'. basename($from), $disabled_path.'/'. basename($from));
486                                 }
487                         }
488                 }
489         }
490
491         /**
492          * Enable generic extension
493          * @param string $section Install file section name
494          * @param string $extname Extension directory
495          * @param string $module This extension belongs to a specific module
496          */
497         public function enableExt($section, $extname, $module = '')
498         {
499                 if(isset($this->installdefs[$section])) {
500                         foreach($this->installdefs[$section] as $item) {
501                             if(isset($item['from'])) {
502                                     $from = str_replace('<basepath>', $this->base_dir, $item['from']);
503                             } else {
504                                 $from = '';
505                             }
506                             if(!empty($module)) {
507                                     $item['to_module'] = $module;
508                                 }
509                                 $GLOBALS['log']->debug("Enabling $extname ... from $from for " .$item['to_module']);
510
511                 if($item['to_module'] == 'application') {
512                     $path = "custom/Extension/application/Ext/$extname";
513                 } else {
514                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/$extname";
515                 }
516                                 if(isset($item["name"])) {
517                                     $target = $item["name"];
518                                 } else if (!empty($from)){
519                     $target = basename($from, ".php");
520                 } else {
521                                     $target = $this->id_name;
522                                 }
523                                 if(!file_exists($path)) {
524                                     mkdir_recursive($path, true);
525                                 }
526                 $disabled_path = $path.'/'.DISABLED_PATH;
527                                 if (file_exists("$disabled_path/$target.php")) {
528                                         rename("$disabled_path/$target.php",  "$path/$target.php");
529                                 }
530                                 if (!empty($from) && file_exists($disabled_path . '/'. basename($from))) {
531                                         rename($disabled_path.'/'. basename($from),  $path . '/'. basename($from));
532                                 }
533                         }
534                 }
535     }
536
537         public function install_extensions()
538         {
539             foreach($this->extensions as $extname => $ext) {
540                 $install = "install_$extname";
541                 if(method_exists($this, $install)) {
542                     // non-standard function
543                 $this->$install();
544                 } else {
545                     if(!empty($ext["section"])) {
546                         $module = isset($ext['module'])?$ext['module']:'';
547                         $this->installExt($ext["section"], $ext["extdir"], $module);
548                     }
549                 }
550             }
551             $this->rebuild_extensions();
552         }
553
554         public function uninstall_extensions()
555         {
556             foreach($this->extensions as $extname => $ext) {
557                 $func = "uninstall_$extname";
558                 if(method_exists($this, $func)) {
559                     // non-standard function
560                 $this->$func();
561                 } else {
562                     if(!empty($ext["section"])) {
563                         $module = isset($ext['module'])?$ext['module']:'';
564                         $this->uninstallExt($ext["section"], $ext["extdir"], $module);
565                     }
566                 }
567             }
568             $this->rebuild_extensions();
569         }
570
571         public function rebuild_extensions()
572         {
573             foreach($this->extensions as $extname => $ext) {
574                 $func = "rebuild_$extname";
575                 if(method_exists($this, $func)) {
576                     // non-standard function
577                 $this->$func();
578                 } else {
579                 $this->rebuildExt($ext["extdir"], $ext["file"]);
580                 }
581             }
582         }
583
584         public function disable_extensions()
585         {
586             foreach($this->extensions as $extname => $ext) {
587                 $func = "disable_$extname";
588                 if(method_exists($this, $func)) {
589                     // non-standard install
590                 $this->$func();
591                 } else {
592                     if(!empty($ext["section"])) {
593                         $module = isset($ext['module'])?$ext['module']:'';
594                         $this->disableExt($ext["section"], $ext["extdir"], $module);
595                     }
596                 }
597             }
598             $this->rebuild_extensions();
599         }
600
601         public function enable_extensions()
602         {
603             foreach($this->extensions as $extname => $ext) {
604                 $func = "enable_$extname";
605                 if(method_exists($this, $func)) {
606                     // non-standard install
607                 $this->$func();
608                 } else {
609                     if(!empty($ext["section"])) {
610                         $module = isset($ext['module'])?$ext['module']:'';
611                         $this->enableExt($ext["section"], $ext["extdir"], $module);
612                     }
613                 }
614             }
615             $this->rebuild_extensions();
616         }
617
618         function install_dashlets()
619         {
620         if(isset($this->installdefs['dashlets'])){
621                         foreach($this->installdefs['dashlets'] as $cp){
622                                 $this->log(translate('LBL_MI_IN_DASHLETS') . $cp['name']);
623                                 $cp['from'] = str_replace('<basepath>', $this->base_dir, $cp['from']);
624                                 $path = 'custom/modules/Home/Dashlets/' . $cp['name'] . '/';
625                                 $GLOBALS['log']->debug("Installing Dashlet " . $cp['name'] . "..." . $cp['from'] );
626                                 if(!file_exists($path)){
627                                         mkdir_recursive($path, true);
628                                 }
629                                 copy_recursive($cp['from'] , $path);
630                         }
631                         include('modules/Administration/RebuildDashlets.php');
632
633                 }
634         }
635
636         function uninstall_dashlets(){
637         if(isset($this->installdefs['dashlets'])){
638                         foreach($this->installdefs['dashlets'] as $cp){
639                                 $this->log(translate('LBL_MI_UN_DASHLETS') . $cp['name']);
640                                 $path = 'custom/modules/Home/Dashlets/' . $cp['name'];
641                                 $GLOBALS['log']->debug('Unlink ' .$path);
642                                 if (file_exists($path))
643                                         rmdir_recursive($path);
644                         }
645                         include('modules/Administration/RebuildDashlets.php');
646                 }
647         }
648
649
650         function install_images(){
651         if(isset($this->installdefs['image_dir'])){
652                         $this->log( translate('LBL_MI_IN_IMAGES') );
653                         $this->copy_path($this->installdefs['image_dir'] , 'custom/themes');
654
655                 }
656         }
657
658         function install_dcactions(){
659                 if(isset($this->installdefs['dcaction'])){
660                         $this->log(translate('LBL_MI_IN_MENUS'));
661                         foreach($this->installdefs['dcaction'] as $action){
662                                 $action['from'] = str_replace('<basepath>', $this->base_dir, $action['from']);
663                                 $GLOBALS['log']->debug("Installing DCActions ..." . $action['from']);
664                                 $path = 'custom/Extension/application/Ext/DashletContainer/Containers';
665                                 if(!file_exists($path)){
666                                         mkdir_recursive($path, true);
667                                 }
668                                 copy_recursive($action['from'] , $path . '/'. $this->id_name . '.php');
669                         }
670                         $this->rebuild_dashletcontainers();
671                 }
672         }
673
674         function uninstall_dcactions(){
675         if(isset($this->installdefs['dcaction'])){
676                         $this->log(translate('LBL_MI_UN_MENUS'));
677                         foreach($this->installdefs['dcaction'] as $action){
678                                 $action['from'] = str_replace('<basepath>', $this->base_dir, $action['from']);
679                                 $GLOBALS['log']->debug("Uninstalling DCActions ..." . $action['from'] );
680                                 $path = 'custom/Extension/application/Ext/DashletContainer/Containers';
681                                 if (sugar_is_file($path . '/'. $this->id_name . '.php', 'w'))
682                                 {
683                                         rmdir_recursive( $path . '/'. $this->id_name . '.php');
684                                 }
685                                 else if (sugar_is_file($path . '/'. DISABLED_PATH . '/'. $this->id_name . '.php', 'w'))
686                                 {
687                                         rmdir_recursive( $path . '/'. DISABLED_PATH . '/'. $this->id_name . '.php');
688                                 }
689                         }
690                         $this->rebuild_dashletcontainers();
691                 }
692         }
693
694         function install_connectors(){
695         if(isset($this->installdefs['connectors'])){
696                 foreach($this->installdefs['connectors'] as $cp){
697                                 $this->log(translate('LBL_MI_IN_CONNECTORS') . $cp['name']);
698                                 $dir = str_replace('_','/',$cp['name']);
699                                 $cp['connector'] = str_replace('<basepath>', $this->base_dir, $cp['connector']);
700                                 $source_path = 'custom/modules/Connectors/connectors/sources/' . $dir. '/';
701                                 $GLOBALS['log']->debug("Installing Connector " . $cp['name'] . "..." . $cp['connector'] );
702                                 if(!file_exists($source_path)){
703                                         mkdir_recursive($source_path, true);
704                                 }
705                                 copy_recursive($cp['connector'] , $source_path);
706
707                                 //Install optional formatter code if it is specified
708                                 if(!empty($cp['formatter'])) {
709                                         $cp['formatter'] = str_replace('<basepath>', $this->base_dir, $cp['formatter']);
710                                         $formatter_path = 'custom/modules/Connectors/connectors/formatters/' . $dir. '/';
711                                         if(!file_exists($formatter_path)){
712                                                 mkdir_recursive($formatter_path, true);
713                                         }
714                                         copy_recursive($cp['formatter'] , $formatter_path);
715                                 }
716                         }
717                         require_once('include/connectors/utils/ConnectorUtils.php');
718                         ConnectorUtils::installSource($cp['name']);
719                 }
720
721         }
722         function uninstall_connectors(){
723         if(isset($this->installdefs['connectors'])){
724                 foreach($this->installdefs['connectors'] as $cp){
725                                 $this->log(translate('LBL_MI_UN_CONNECTORS') . $cp['name']);
726                                 $dir = str_replace('_','/',$cp['name']);
727                                 $source_path = 'custom/modules/Connectors/connectors/sources/' . $dir;
728                                 $formatter_path = 'custom/modules/Connectors/connectors/formatters/' . $dir;
729                                 $GLOBALS['log']->debug('Unlink ' .$source_path);
730                                 rmdir_recursive($source_path);
731                                 rmdir_recursive($formatter_path);
732                         }
733                         require_once('include/connectors/utils/ConnectorUtils.php');
734                         //ConnectorUtils::getConnectors(true);
735                         ConnectorUtils::uninstallSource($cp['name']);
736                 }
737         }
738
739         function install_vardef($from, $to_module)
740         {
741                         $GLOBALS['log']->debug("Installing Vardefs ..." . $from .  " for " .$to_module);
742                         $path = 'custom/Extension/modules/' . $to_module. '/Ext/Vardefs';
743                         if($to_module == 'application'){
744                                 $path ='custom/Extension/' . $to_module. '/Ext/Vardefs';
745                         }
746                         if(!file_exists($path)){
747                                 mkdir_recursive($path, true);
748                         }
749                         copy_recursive($from , $path.'/'. basename($from));
750         }
751
752         function install_layoutdef($from, $to_module){
753                         $GLOBALS['log']->debug("Installing Layout Defs ..." . $from .  " for " .$to_module);
754                         $path = 'custom/Extension/modules/' . $to_module. '/Ext/Layoutdefs';
755                         if($to_module == 'application'){
756                                 $path ='custom/Extension/' . $to_module. '/Ext/Layoutdefs';
757                         }
758                         if(!file_exists($path)){
759                                 mkdir_recursive($path, true);
760                         }
761                         copy_recursive($from , $path.'/'. basename($from));
762         }
763
764     // Non-standard - needs special rebuild call
765         function install_languages()
766         {
767         $languages = array();
768         if(isset($this->installdefs['language']))
769         {
770             $this->log(translate('LBL_MI_IN_LANG') );
771             foreach($this->installdefs['language'] as $packs)
772             {
773                 $modules[]=$packs['to_module'];
774                 $languages[$packs['language']] = $packs['language'];
775                                 $packs['from'] = str_replace('<basepath>', $this->base_dir, $packs['from']);
776                                 $GLOBALS['log']->debug("Installing Language Pack ..." . $packs['from']  .  " for " .$packs['to_module']);
777                             $path = 'custom/Extension/modules/' . $packs['to_module']. '/Ext/Language';
778                                 if($packs['to_module'] == 'application'){
779                                     $path ='custom/Extension/' . $packs['to_module']. '/Ext/Language';
780                                 }
781
782                                 if(!file_exists($path)){
783                                     mkdir_recursive($path, true);
784                 }
785                                 copy_recursive($packs['from'] , $path.'/'.$packs['language'].'.'. $this->id_name . '.php');
786                         }
787                         $this->rebuild_languages($languages, $modules);
788
789                 }
790         }
791
792     // Non-standard, needs special rebuild
793         function uninstall_languages(){
794         $languages = array();
795                                 if(isset($this->installdefs['language'])){
796                                         $this->log(translate('LBL_MI_UN_LANG') );
797                                         foreach($this->installdefs['language'] as $packs){
798                                                 $modules[]=$packs['to_module'];
799                                                 $languages[$packs['language']] = $packs['language'];
800                                                 $packs['from'] = str_replace('<basepath>', $this->base_dir, $packs['from']);
801                                                 $GLOBALS['log']->debug("Uninstalling Language Pack ..." . $packs['from']  .  " for " .$packs['to_module']);
802                                                 $path = 'custom/Extension/modules/' . $packs['to_module']. '/Ext/Language';
803                                                 if($packs['to_module'] == 'application'){
804                                                         $path ='custom/Extension/' . $packs['to_module']. '/Ext/Language';
805                                                 }
806                                                 if (sugar_is_file($path.'/'.$packs['language'].'.'. $this->id_name . '.php', 'w')) {
807                                                         rmdir_recursive( $path.'/'.$packs['language'].'.'. $this->id_name . '.php');
808                                                 } else if (sugar_is_file($path.'/'.DISABLED_PATH.'/'.$packs['language'].'.'. $this->id_name . '.php', 'w')) {
809                                                         rmdir_recursive($path.'/'.DISABLED_PATH.'/'.$packs['language'].'.'. $this->id_name . '.php', 'w');
810                                                 }
811                                         }
812                                         $this->rebuild_languages($languages, $modules);
813
814                                 }
815         }
816
817     // Non-standard, needs special rebuild
818         public function disable_languages()
819         {
820                 if(isset($this->installdefs['language'])) {
821                     $languages = $modules = array();
822                         foreach($this->installdefs['language'] as $item) {
823                                 $from = str_replace('<basepath>', $this->base_dir, $item['from']);
824                                 $GLOBALS['log']->debug("Disabling Language {$item['language']}... from $from for " .$item['to_module']);
825                                 $modules[]=$item['to_module'];
826                                 $languages[$item['language']] = $item['language'];
827                                 if($item['to_module'] == 'application') {
828                     $path = "custom/Extension/application/Ext/Language";
829                 } else {
830                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/Language";
831                 }
832                                 if(isset($item["name"])) {
833                                     $target = $item["name"];
834                                 } else {
835                                     $target = $this->id_name;
836                                 }
837                                 $target = "{$item['language']}.$target";
838
839                                 $disabled_path = $path.'/'.DISABLED_PATH;
840                 if (file_exists("$path/$target.php")) {
841                                         mkdir_recursive($disabled_path, true);
842                                         rename("$path/$target.php", "$disabled_path/$target.php");
843                                 } else if (file_exists($path . '/'. basename($from))) {
844                                         mkdir_recursive($disabled_path, true);
845                                     rename( $path . '/'. basename($from), $disabled_path.'/'. basename($from));
846                                 }
847                         }
848                         $this->rebuild_languages($languages, $modules);
849                 }
850         }
851
852     // Non-standard, needs special rebuild
853         public function enable_languages()
854         {
855                 if(isset($this->installdefs['language'])) {
856                         foreach($this->installdefs['language'] as $item) {
857                                 $from = str_replace('<basepath>', $this->base_dir, $item['from']);
858                                 $GLOBALS['log']->debug("Enabling Language {$item['language']}... from $from for " .$item['to_module']);
859                                 $modules[]=$item['to_module'];
860                                 $languages[$item['language']] = $item['language'];
861                                 if(!empty($module)) {
862                                     $item['to_module'] = $module;
863                                 }
864
865                 if($item['to_module'] == 'application') {
866                     $path = "custom/Extension/application/Ext/Language";
867                 } else {
868                                     $path = "custom/Extension/modules/{$item['to_module']}/Ext/Language";
869                 }
870                                 if(isset($item["name"])) {
871                                     $target = $item["name"];
872                                 } else {
873                                     $target = $this->id_name;
874                                 }
875                                 $target = "{$item['language']}.$target";
876
877                                 if(!file_exists($path)) {
878                                     mkdir_recursive($path, true);
879                                 }
880                 $disabled_path = $path.'/'.DISABLED_PATH;
881                                 if (file_exists("$disabled_path/$target.php")) {
882                                         rename("$disabled_path/$target.php",  "$path/$target.php");
883                                 }
884                                 if (file_exists($disabled_path . '/'. basename($from))) {
885                                         rename($disabled_path.'/'. basename($from),  $path . '/'. basename($from));
886                                 }
887                         }
888                         $this->rebuild_languages($languages, $modules);
889                 }
890     }
891
892     // Functions for adding and removing logic hooks from uploaded files
893     // Since one class/file can be used by multiple logic hooks, I'm not going to touch the file labeled in the logic_hook entry
894     /* The module hook definition should look like this:
895      $installdefs = array(
896      ... blah blah ...
897          'logic_hooks' => array(
898              array('module'      => 'Accounts',
899                    'hook'        => 'after_save',
900                    'order'       => 99,
901                    'description' => 'Account sample logic hook',
902                    'file'        => 'modules/Sample/sample_account_logic_hook_file.php',
903                    'class'       => 'SampleLogicClass',
904                    'function'    => 'accountAfterSave',
905              ),
906          ),
907      ... blah blah ...
908      );
909      */
910     function enable_manifest_logichooks() {
911         if(empty($this->installdefs['logic_hooks']) || !is_array($this->installdefs['logic_hooks'])) {
912            return;
913         }
914
915
916
917         foreach($this->installdefs['logic_hooks'] as $hook ) {
918             check_logic_hook_file($hook['module'], $hook['hook'], array($hook['order'], $hook['description'],  $hook['file'], $hook['class'], $hook['function']));
919         }
920     }
921
922     function disable_manifest_logichooks() {
923         if(empty($this->installdefs['logic_hooks']) || !is_array($this->installdefs['logic_hooks'])) {
924             return;
925         }
926
927         foreach($this->installdefs['logic_hooks'] as $hook ) {
928             remove_logic_hook($hook['module'], $hook['hook'], array($hook['order'], $hook['description'],  $hook['file'], $hook['class'], $hook['function']));
929         }
930     }
931
932 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
933         function copy_path($from, $to, $backup_path='', $uninstall=false){
934         //function copy_path($from, $to){
935 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
936                 $to = str_replace('<basepath>', $this->base_dir, $to);
937
938                 if(!$uninstall) {
939                 $from = str_replace('<basepath>', $this->base_dir, $from);
940                 $GLOBALS['log']->debug('Copy ' . $from);
941                 }
942                 else {
943                         $from = str_replace('<basepath>', $backup_path, $from);
944                         //$GLOBALS['log']->debug('Restore ' . $from);
945                 }
946                 $from = clean_path($from);
947                 $to = clean_path($to);
948
949                 $dir = dirname($to);
950                 //there are cases where if we need to create a directory in the root directory
951                 if($dir == '.' && is_dir($from)){
952                         $dir = $to;
953                 }
954                 if(!sugar_is_dir($dir, 'instance'))
955                         mkdir_recursive($dir, true);
956 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
957                 if(empty($backup_path)) {
958 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
959                 if(!copy_recursive($from, $to)){
960                         die('Failed to copy ' . $from. ' ' . $to);
961                 }
962 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
963                 }
964                 elseif(!$this->copy_recursive_with_backup($from, $to, $backup_path, $uninstall)){
965                         die('Failed to copy ' . $from. ' to ' . $to);
966                 }
967 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:22:18 PM */
968         }
969
970         function install_custom_fields($fields){
971                 global $beanList, $beanFiles;
972                 include('include/modules.php');
973                 require_once('modules/DynamicFields/FieldCases.php');
974                 foreach($fields as $field){
975                         $installed = false;
976                         if(isset($beanList[ $field['module']])){
977                                 $class = $beanList[ $field['module']];
978                 if(!isset($field['ext4']))$field['ext4'] = '';
979                 if(!isset($field['mass_update']))$field['mass_update'] = 0;
980                 if(!isset($field['duplicate_merge']))$field['duplicate_merge'] = 0;
981                 if(!isset($field['help']))$field['help'] = '';
982
983                                 if(file_exists($beanFiles[$class])){
984                                         require_once($beanFiles[$class]);
985                                         $mod = new $class();
986                                         $installed = true;
987                                         $fieldObject = get_widget($field['type']);
988                                         $fieldObject->populateFromRow($field);
989                                         $mod->custom_fields->use_existing_labels =  true;
990                                         $mod->custom_fields->addFieldObject($fieldObject);
991                                 }
992                         }
993                         if(!$installed){
994                                 $GLOBALS['log']->debug('Could not install custom field ' . $field['name'] . ' for module ' .  $field['module'] . ': Module does not exist');
995                         }
996                 }
997         }
998
999         function uninstall_custom_fields($fields){
1000                 global $beanList, $beanFiles;
1001                 require_once('modules/DynamicFields/DynamicField.php');
1002                 $dyField = new DynamicField();
1003
1004                 foreach($fields as $field){
1005                         $class = $beanList[ $field['module']];
1006                         if(file_exists($beanFiles[$class])){
1007                                         require_once($beanFiles[$class]);
1008                                         $mod = new $class();
1009                                         $dyField->bean = $mod;
1010                                         $dyField->module = $field['module'];
1011                                         $dyField->deleteField($field['name']);
1012                         }
1013                 }
1014         }
1015
1016         /*
1017      * ModuleInstaller->install_relationships calls install_relationship for every file included in the module package that defines a relationship, and then
1018      * writes a custom/Extension/application/Ext/TableDictionary/$module.php file containing an include_once for every relationship metadata file passed to install_relationship.
1019      * Next it calls install_vardef and install_layoutdef. Finally, it rebuilds the vardefs and layoutdefs (by calling merge_files as usual), and then calls merge_files to merge
1020      * everything in 'Ext/TableDictionary/' into 'tabledictionary.ext.php'
1021      */
1022     function install_relationships ()
1023     {
1024         if (isset ( $this->installdefs [ 'relationships' ] ))
1025         {
1026             $this->log ( translate ( 'LBL_MI_IN_RELATIONSHIPS' ) ) ;
1027             $str = "<?php \n //WARNING: The contents of this file are auto-generated\n" ;
1028             $save_table_dictionary = false ;
1029
1030             if (! file_exists ( "custom/Extension/application/Ext/TableDictionary" ))
1031             {
1032                 mkdir_recursive ( "custom/Extension/application/Ext/TableDictionary", true ) ;
1033             }
1034
1035             foreach ( $this->installdefs [ 'relationships' ] as $key => $relationship )
1036             {
1037                 $filename = basename ( $relationship [ 'meta_data' ] ) ;
1038                 $this->copy_path ( $relationship [ 'meta_data' ], 'custom/metadata/' . $filename ) ;
1039                 $this->install_relationship ( 'custom/metadata/' . $filename ) ;
1040                 $save_table_dictionary = true ;
1041
1042                 if (! empty ( $relationship [ 'module_vardefs' ] ))
1043                 {
1044                     $relationship [ 'module_vardefs' ] = str_replace ( '<basepath>', $this->base_dir, $relationship [ 'module_vardefs' ] ) ;
1045                     $this->install_vardef ( $relationship [ 'module_vardefs' ], $relationship [ 'module' ] ) ;
1046                 }
1047
1048                 if (! empty ( $relationship [ 'module_layoutdefs' ] ))
1049                 {
1050                     $relationship [ 'module_layoutdefs' ] = str_replace ( '<basepath>', $this->base_dir, $relationship [ 'module_layoutdefs' ] ) ;
1051                     $this->install_layoutdef ( $relationship [ 'module_layoutdefs' ], $relationship [ 'module' ] ) ;
1052                 }
1053
1054                 $relName = strpos($filename, "MetaData") !== false ? substr($filename, 0, strlen($filename) - 12) : $filename;
1055                 $out = sugar_fopen ( "custom/Extension/application/Ext/TableDictionary/$relName.php", 'w' ) ;
1056                 fwrite ( $out, $str . "include('custom/metadata/$filename');\n\n?>" ) ;
1057                 fclose ( $out ) ;
1058             }
1059
1060
1061
1062
1063             Relationship::delete_cache();
1064             $this->rebuild_vardefs () ;
1065             $this->rebuild_layoutdefs () ;
1066             if ($save_table_dictionary)
1067             {
1068                 $this->rebuild_tabledictionary () ;
1069             }
1070             require_once("data/Relationships/RelationshipFactory.php");
1071             SugarRelationshipFactory::deleteCache();
1072         }
1073     }
1074
1075         /*
1076      * Install_relationship obtains a set of relationship definitions from the filename passed in as a parameter.
1077      * For each definition it calls db->createTableParams to build the relationships table if it does not exist,
1078      * and SugarBean::createRelationshipMeta to add the relationship into the 'relationships' table.
1079      */
1080         function install_relationship($file)
1081         {
1082                 $_REQUEST['moduleInstaller'] = true;
1083                 if(!file_exists($file))
1084                 {
1085                         $GLOBALS['log']->debug( 'File does not exists : '.$file);
1086                         return;
1087                 }
1088                 include($file);
1089                 $rel_dictionary = $dictionary;
1090                 foreach ($rel_dictionary as $rel_name => $rel_data)
1091             {
1092                 $table = ''; // table is actually optional
1093                 // check if we have a table definition - not all relationships require a join table
1094             if ( isset( $rel_data[ 'table' ] ) )
1095             {
1096                 $table = $rel_data[ 'table' ];
1097
1098                 if(!$this->db->tableExists($table))
1099                 {
1100                     $this->db->createTableParams($table, $rel_data[ 'fields' ], $rel_data[ 'indices' ]);
1101                 }
1102             }
1103
1104             if(!$this->silent)
1105                 $GLOBALS['log']->debug("Processing relationship meta for ". $rel_name."...");
1106             SugarBean::createRelationshipMeta($rel_name, $this->db,$table,$rel_dictionary,'');
1107             Relationship::delete_cache();
1108             if(!$this->silent)
1109                 $GLOBALS['log']->debug( 'done<br>');
1110         }
1111         }
1112
1113         function install_layoutfields() {
1114                  if (!empty ( $this->installdefs [ 'layoutfields' ] ))
1115                  {
1116                         foreach ( $this->installdefs [ 'layoutfields' ] as $fieldSet )
1117             {
1118                                 if (!empty($fieldSet['additional_fields']))
1119                                 {
1120                                         $this->addFieldsToLayout($fieldSet['additional_fields']);
1121                                 }
1122             }
1123                  }
1124         }
1125
1126         function uninstall_layoutfields() {
1127                  if (!empty ( $this->installdefs [ 'layoutfields' ] ))
1128                  {
1129                         foreach ( $this->installdefs [ 'layoutfields' ] as $fieldSet )
1130             {
1131                                 if (!empty($fieldSet['additional_fields']))
1132                                 {
1133                                         $this->removeFieldsFromLayout($fieldSet['additional_fields']);
1134                                 }
1135             }
1136                  }
1137         }
1138
1139         function uninstall_relationship($file, $rel_dictionary = null){
1140         if ($rel_dictionary == null)
1141                 {
1142                         if(!file_exists($file)){
1143                                 $GLOBALS['log']->debug( 'File does not exists : '.$file);
1144                                 return;
1145                         }
1146                         include($file);
1147                         $rel_dictionary = $dictionary;
1148                 }
1149
1150                 foreach ($rel_dictionary as $rel_name => $rel_data)
1151                 {
1152                         if (!empty($rel_data['table'])){
1153                                 $table = $rel_data['table'];
1154                         }
1155                         else{
1156                                 $table = ' One-to-Many ';
1157                         }
1158
1159                         if ($this->db->tableExists($table) && isset($GLOBALS['mi_remove_tables']) && $GLOBALS['mi_remove_tables'])
1160                         {
1161                                 SugarBean::removeRelationshipMeta($rel_name, $this->db,$table,$rel_dictionary,'');
1162                                 $this->db->dropTableName($table);
1163                                 if(!$this->silent) $this->log( translate('LBL_MI_UN_RELATIONSHIPS_DROP') . $table);
1164                         }
1165
1166                         //Delete Layout defs
1167                         // check to see if we have any vardef or layoutdef entries to remove - must have a relationship['module'] parameter if we do
1168                         if (!isset($rel_data[ 'module' ]))
1169                                 $mods = array(
1170                                         $rel_data['relationships'][$rel_name]['lhs_module'],
1171                                         $rel_data['relationships'][$rel_name]['rhs_module'],
1172                                 );
1173                         else
1174                                 $mods = array($rel_data[ 'module' ]);
1175
1176                         $filename = "$rel_name.php";
1177
1178                         foreach($mods as $mod) {
1179                                 if ($mod != 'application' )  {
1180                                         $basepath = "custom/Extension/modules/$mod/Ext/";
1181                                 } else {
1182                                         $basepath = "custom/Extension/application/Ext/";
1183                                 }
1184
1185                                 foreach (array($filename , "custom" . $filename, $rel_name ."_". $mod. ".php") as $fn) {
1186                                         //remove any vardefs
1187                                         $path = $basepath . "Vardefs/$fn" ;
1188                                         if (file_exists( $path ))
1189                                                 rmdir_recursive( $path );
1190
1191                                         //remove any layoutdefs
1192                                         $path = $basepath . "Layoutdefs/$fn" ;
1193                                         if( file_exists( $path ))
1194                                         {
1195                                                 rmdir_recursive( $path );
1196                                         }
1197                                 }
1198                         }
1199
1200                         foreach (array($filename , "custom" . $filename, $rel_name ."_". $mod. ".php") as $fn) {
1201                                 // remove the table dictionary extension
1202                                 if ( file_exists("custom/Extension/application/Ext/TableDictionary/$fn"))
1203                                     unlink("custom/Extension/application/Ext/TableDictionary/$fn");
1204
1205                                 if (file_exists("custom/metadata/{$rel_name}MetaData.php"))
1206                                         unlink( "custom/metadata/{$rel_name}MetaData.php" );
1207                         }
1208                 }
1209         }
1210
1211         function uninstall_relationships($include_studio_relationships = false){
1212                 $relationships = array();
1213
1214                 //Find and remove studio created relationships.
1215                 global $beanList, $beanFiles, $dictionary;
1216                 //Load up the custom relationship definitions.
1217                 if(file_exists('custom/application/Ext/TableDictionary/tabledictionary.ext.php')){
1218                         include('custom/application/Ext/TableDictionary/tabledictionary.ext.php');
1219                 }
1220                 //Find all the relatioships/relate fields involving this module.
1221                 $rels_to_remove = array();
1222                 foreach($beanList as $mod => $bean) {
1223                         //Some modules like cases have a bean name that doesn't match the object name
1224                         $bean = BeanFactory::getObjectName($mod);
1225             VardefManager::loadVardef($mod, $bean);
1226                         //We can skip modules that are in this package as they will be removed anyhow
1227                         if (!in_array($mod, $this->modulesInPackage) && !empty($dictionary[$bean]) && !empty($dictionary[$bean]['fields']))
1228                         {
1229                                 $field_defs = $dictionary[$bean]['fields'];
1230                                 foreach($field_defs as $field => $def)
1231                                 {
1232                                         //Weed out most fields first
1233                                         if (isset ($def['type']))
1234                                         {
1235                                                 //Custom relationships created in the relationship editor
1236                                                 if ($def['type'] == "link" && !empty($def['relationship']) && !empty($dictionary[$def['relationship']]))
1237                                                 {
1238                                                         $rel_name = $def['relationship'];
1239
1240                                                         $rel_def = $dictionary[$rel_name]['relationships'][$rel_name];
1241
1242                                                         //Check against mods to be removed.
1243                                                         foreach($this->modulesInPackage as $removed_mod) {
1244                                                                 if ($rel_def['lhs_module'] == $removed_mod || $rel_def['rhs_module'] == $removed_mod )
1245                                                                 {
1246                                                                         $dictionary[$rel_name]['from_studio'] = true;
1247                                                                         $relationships[$rel_name] = $dictionary[$rel_name];
1248                                                                 }
1249                                                         }
1250                                                 }
1251                                                 //Custom "relate" fields created in studio also need to be removed
1252                                                 if ($def['type'] == 'relate' && isset($def['module'])) {
1253                                                         foreach($this->modulesInPackage as $removed_mod) {
1254                                                                 if ($def['module'] == $removed_mod)
1255                                                                 {
1256                                                                         require_once 'modules/ModuleBuilder/Module/StudioModule.php' ;
1257                                                                         $studioMod = new StudioModule ( $mod );
1258                                                                         $studioMod->removeFieldFromLayouts( $field );
1259                                                                         if (isset($def['custom_module'])) {
1260                                                                                 require_once ('modules/DynamicFields/DynamicField.php') ;
1261                                                                                 require_once ($beanFiles [ $bean ]) ;
1262                                                                                 $seed = new $bean ( ) ;
1263                                                                                 $df = new DynamicField ( $mod ) ;
1264                                                                                 $df->setup ( $seed ) ;
1265                                                                                 //Need to load the entire field_meta_data for some field types
1266                                                                                 $field_obj = $df->getFieldWidget($mod, $field);
1267                                                                                 $field_obj->delete ( $df ) ;
1268                                                                         }
1269                                                                 }
1270                                                         }
1271                                                 }
1272                                         }
1273                                 }
1274                         }
1275                 }
1276
1277
1278
1279                 $this->uninstall_relationship(null, $relationships);
1280
1281                 if(isset($this->installdefs['relationships'])) {
1282                         $relationships = $this->installdefs['relationships'];
1283                         $this->log(translate('LBL_MI_UN_RELATIONSHIPS') );
1284                         foreach($relationships as $relationship)
1285                         {
1286                                 // remove the metadata entry
1287                                 $filename = basename ( $relationship['meta_data'] );
1288                                 $pathname = (file_exists("custom/metadata/$filename")) ? "custom/metadata/$filename" : "metadata/$filename" ;
1289                                 if(isset($GLOBALS['mi_remove_tables']) && $GLOBALS['mi_remove_tables'])
1290                                 $this->uninstall_relationship( $pathname );
1291                                 if (file_exists($pathname))
1292                                         unlink( $pathname );
1293                         }
1294                 }
1295
1296                 if (file_exists("custom/Extension/application/Ext/TableDictionary/{$this->id_name}.php"))
1297                         unlink("custom/Extension/application/Ext/TableDictionary/{$this->id_name}.php");
1298                 Relationship::delete_cache();
1299                 $this->rebuild_tabledictionary();
1300         }
1301
1302
1303
1304
1305         function uninstall($base_dir){
1306                 if(defined('TEMPLATE_URL'))SugarTemplateUtilities::disableCache();
1307                 global $app_strings;
1308                 $total_steps = 5; //min steps with no tasks
1309                 $current_step = 0;
1310                 $this->base_dir = $base_dir;
1311                 $tasks = array(
1312                         'pre_uninstall',
1313                         'uninstall_relationships',
1314                         'uninstall_copy',
1315                         'uninstall_dcactions',
1316                         'uninstall_dashlets',
1317                         'uninstall_connectors',
1318                         'uninstall_layoutfields',
1319                     'uninstall_extensions',
1320                         'disable_manifest_logichooks',
1321                         'post_uninstall',
1322                 );
1323                 $total_steps += count($tasks); //now the real number of steps
1324                 if(file_exists($this->base_dir . '/manifest.php')){
1325                                 if(!$this->silent){
1326                                         $current_step++;
1327                                         display_progress_bar('install', $current_step, $total_steps);
1328                                         echo '<div id ="displayLoglink" ><a href="#" onclick="toggleDisplay(\'displayLog\')">'.$app_strings['LBL_DISPLAY_LOG'].'</a> </div><div id="displayLog" style="display:none">';
1329                                 }
1330
1331                                 global $moduleList;
1332                                 include($this->base_dir . '/manifest.php');
1333                                 $this->installdefs = $installdefs;
1334                                 $this->id_name = $this->installdefs['id'];
1335                                 $installed_modules = array();
1336                                 if(isset($this->installdefs['beans'])){
1337                                         foreach($this->installdefs['beans'] as $bean){
1338
1339                                                 $installed_modules[] = $bean['module'];
1340                                                 $this->uninstall_user_prefs($bean['module']);
1341                                         }
1342                                         $this->modulesInPackage = $installed_modules;
1343                                         $this->uninstall_beans($installed_modules);
1344                                         $this->uninstall_customizations($installed_modules);
1345                                         if(!$this->silent){
1346                                                 $current_step++;
1347                                                 update_progress_bar('install', $total_steps, $total_steps);
1348                                         }
1349                                 }
1350                                 if(!$this->silent){
1351                                         $current_step++;
1352                                         update_progress_bar('install', $current_step, $total_steps);
1353                                 }
1354                                 foreach($tasks as $task){
1355                                         $this->$task();
1356                                         if(!$this->silent){
1357                                                 $current_step++;
1358                                                 update_progress_bar('install', $current_step, $total_steps);
1359                                         }
1360                                 }
1361                                 if(isset($installdefs['custom_fields']) && (isset($GLOBALS['mi_remove_tables']) && $GLOBALS['mi_remove_tables'])){
1362                                         $this->log(translate('LBL_MI_UN_CUSTOMFIELD'));
1363                                         $this->uninstall_custom_fields($installdefs['custom_fields']);
1364                                 }
1365                                 if(!$this->silent){
1366                                         $current_step++;
1367                                         update_progress_bar('install', $current_step, $total_steps);
1368                                         echo '</div>';
1369                                 }
1370                                 //since we are passing $silent = true to rebuildAll() in that method it will set $this->silent = true, so
1371                                 //we need to save the setting to set it back after rebuildAll() completes.
1372                                 $silentBak = $this->silent;
1373                                 $this->rebuild_all(true);
1374                                 $this->silent = $silentBak;
1375
1376                                 //#27877, If the request from MB redeploy a custom module , we will not remove the ACL actions for this package.
1377                                 if( !isset($_REQUEST['action']) || $_REQUEST['action']!='DeployPackage' ){
1378                                         $this->remove_acl_actions();
1379                                 }
1380                                 //end
1381
1382                                 if(!$this->silent){
1383                                         $current_step++;
1384                                         update_progress_bar('install', $current_step, $total_steps);
1385                                         echo '</div>';
1386                                 }
1387
1388                                 UpdateSystemTabs('Restore',$installed_modules);
1389
1390                     //clear the unified_search_module.php file
1391                     require_once('modules/Home/UnifiedSearchAdvanced.php');
1392                     UnifiedSearchAdvanced::unlinkUnifiedSearchModulesFile();
1393
1394                                 $this->log('<br><b>' . translate('LBL_MI_COMPLETE') . '</b>');
1395                                 if(!$this->silent){
1396                                         update_progress_bar('install', $total_steps, $total_steps);
1397                                 }
1398                 }else{
1399                         die("No manifest.php Defined In $this->base_dir/manifest.php");
1400                 }
1401         }
1402
1403         function rebuild_languages($languages = array(), $modules="")
1404         {
1405             foreach($languages as $language=>$value){
1406                                 $this->log(translate('LBL_MI_REBUILDING') . " Language...$language");
1407                                 $this->merge_files('Ext/Language/', $language.'.lang.ext.php', $language);
1408                     if($modules!=""){
1409                         foreach($modules as $module){
1410                                 LanguageManager::clearLanguageCache($module, $language);
1411                         }
1412                     }
1413                         }
1414                         sugar_cache_reset();
1415         }
1416
1417         function rebuild_vardefs()
1418         {
1419             $this->rebuildExt("Vardefs", 'vardefs.ext.php');
1420                 sugar_cache_reset();
1421         }
1422
1423         function rebuild_dashletcontainers(){
1424             $this->log(translate('LBL_MI_REBUILDING') . " DC Actions...");
1425                         $this->merge_files('Ext/DashletContainer/Containers/', 'dcactions.ext.php');
1426         }
1427
1428         function rebuild_tabledictionary()
1429         {
1430             $this->rebuildExt("TableDictionary", 'tabledictionary.ext.php');
1431         }
1432
1433         function rebuild_relationships() {
1434         if(!$this->silent) echo translate('LBL_MI_REBUILDING') . ' Relationships';
1435                 $_REQUEST['silent'] = true;
1436                 global $beanFiles;
1437                 include('include/modules.php');
1438                 include("modules/Administration/RebuildRelationship.php");
1439         }
1440
1441         function remove_acl_actions() {
1442                 global $beanFiles, $beanList, $current_user;
1443                 include('include/modules.php');
1444                 include("modules/ACL/remove_actions.php");
1445         }
1446
1447         /**
1448          * Wrapper call to modules/Administration/RepairIndex.php
1449          */
1450         function repair_indices() {
1451                 global $current_user,$beanFiles,$dictionary;
1452                 $this->log(translate('LBL_MI_REPAIR_INDICES'));
1453                 $_REQUEST['silent'] = true; // local var flagging echo'd output in repair script
1454                 $_REQUEST['mode'] = 'execute'; // flag to just go ahead and run the script
1455                 include("modules/Administration/RepairIndex.php");
1456         }
1457
1458         /**
1459          * Rebuilds the extension files found in custom/Extension
1460          * @param boolean $silent
1461          */
1462         function rebuild_all($silent=false){
1463                 if(defined('TEMPLATE_URL'))SugarTemplateUtilities::disableCache();
1464                 $this->silent=$silent;
1465                 global $sugar_config;
1466
1467                 //Check for new module extensions
1468                 $this->rebuild_modules();
1469
1470                 $this->rebuild_languages($sugar_config['languages']);
1471                 $this->rebuild_extensions();
1472                 $this->rebuild_dashletcontainers();
1473                 $this->rebuild_relationships();
1474                 $this->rebuild_tabledictionary();
1475         $this->reset_opcodes();
1476                 sugar_cache_reset();
1477         }
1478
1479         /*
1480      * ModuleInstaller->merge_files runs over the list of all modules already installed in /modules. For each $module it reads the contents of every file in
1481      * custom/Extension/modules/$module/<path> (_override files last) and concatenates them to custom/modules/$module/<path>/<file>.
1482      * Then it does the same thing in custom/Extension/application/<path>, concatenating those files and copying the result to custom/application/<path>/<file>
1483      */
1484         function merge_files($path, $name, $filter = '', $application = false){
1485                 if(!$application){
1486                 $GLOBALS['log']->debug( get_class($this)."->merge_files() : merging module files in custom/Extension/modules/<module>/$path to custom/modules/<module>/$path$name");
1487                 foreach($this->modules as $module){
1488                                 //$GLOBALS['log']->debug("Merging Files for: ".$module);
1489                                 //$GLOBALS['log']->debug("Merging Files for path: ".$path);
1490                                 $extension = "<?php \n //WARNING: The contents of this file are auto-generated\n";
1491                                 $extpath = "modules/$module/$path";
1492                                 $module_install  = 'custom/Extension/'.$extpath;
1493                                 $shouldSave = false;
1494                                 if(is_dir($module_install)){
1495                                         $dir = dir($module_install);
1496                                         $shouldSave = true;
1497                                         $override = array();
1498                                         while($entry = $dir->read()){
1499                                                 if((empty($filter) || substr_count($entry, $filter) > 0) && is_file($module_install.'/'.$entry)
1500                                                   && $entry != '.' && $entry != '..' && strtolower(substr($entry, -4)) == ".php")
1501                                                 {
1502                                                      if (substr($entry, 0, 9) == '_override') {
1503                                                         $override[] = $entry;
1504                                                     } else {
1505                                                             $file = file_get_contents($module_install . '/' . $entry);
1506                                                             $GLOBALS['log']->debug(get_class($this)."->merge_files(): found {$module_install}{$entry}") ;
1507                                                             $extension .= "\n". str_replace(array('<?php', '?>', '<?PHP', '<?'), array('','', '' ,'') , $file);
1508                                                     }
1509                                                 }
1510                                         }
1511                                         foreach ($override as $entry) {
1512                         $file = file_get_contents($module_install . '/' . $entry);
1513                         $extension .= "\n". str_replace(array('<?php', '?>', '<?PHP', '<?'), array('','', '' ,'') , $file);
1514                                         }
1515                                 }
1516                                 $extension .= "\n?>";
1517
1518                                 if($shouldSave){
1519                                         if(!file_exists("custom/$extpath")) {
1520                                             mkdir_recursive("custom/$extpath", true);
1521                                     }
1522                                         $out = sugar_fopen("custom/$extpath/$name", 'w');
1523                                         fwrite($out,$extension);
1524                                         fclose($out);
1525                                 }else{
1526                                         if(file_exists("custom/$extpath/$name")){
1527                                                 unlink("custom/$extpath/$name");
1528                                         }
1529                                 }
1530                         }
1531
1532                 }
1533
1534                 $GLOBALS['log']->debug("Merging application files for $name in $path");
1535                 //Now the application stuff
1536                 $extension = "<?php \n //WARNING: The contents of this file are auto-generated\n";
1537                 $extpath = "application/$path";
1538                 $module_install  = 'custom/Extension/'.$extpath;
1539                 $shouldSave = false;
1540                                         if(is_dir($module_install)){
1541                                                 $dir = dir($module_install);
1542                                                 while($entry = $dir->read()){
1543                                                                 $shouldSave = true;
1544                                                                 if((empty($filter) || substr_count($entry, $filter) > 0) && is_file($module_install.'/'.$entry)
1545                                                                   && $entry != '.' && $entry != '..' && strtolower(substr($entry, -4)) == ".php")
1546                                                                 {
1547                                                                         $file = file_get_contents($module_install . '/' . $entry);
1548                                                                         $extension .= "\n". str_replace(array('<?php', '?>', '<?PHP', '<?'), array('','', '' ,'') , $file);
1549                                                                 }
1550                                                 }
1551                                         }
1552                                         $extension .= "\n?>";
1553                                         if($shouldSave){
1554                                                 if(!file_exists("custom/$extpath")){
1555                                                         mkdir_recursive("custom/$extpath", true);
1556                                                 }
1557                                                 $out = sugar_fopen("custom/$extpath/$name", 'w');
1558                                                 fwrite($out,$extension);
1559                                                 fclose($out);
1560                                         }else{
1561                                         if(file_exists("custom/$extpath/$name")){
1562                                                 unlink("custom/$extpath/$name");
1563                                         }
1564                                 }
1565
1566 }
1567
1568     function install_modules()
1569     {
1570             $this->installed_modules = array();
1571                 $this->tab_modules = array();
1572         if(isset($this->installdefs['beans'])){
1573                         $str = "<?php \n //WARNING: The contents of this file are auto-generated\n";
1574                         foreach($this->installdefs['beans'] as $bean){
1575                                 if(!empty($bean['module']) && !empty($bean['class']) && !empty($bean['path'])){
1576                                         $module = $bean['module'];
1577                                         $class = $bean['class'];
1578                                         $path = $bean['path'];
1579
1580                                         $str .= "\$beanList['$module'] = '$class';\n";
1581                                         $str .= "\$beanFiles['$class'] = '$path';\n";
1582                                         if($bean['tab']){
1583                                                 $str .= "\$moduleList[] = '$module';\n";
1584                                                 $this->install_user_prefs($module, empty($bean['hide_by_default']));
1585                                                 $this->tab_modules[] = $module;
1586                                         }else{
1587                                                 $str .= "\$modules_exempt_from_availability_check['$module'] = '$module';\n";
1588                                                 $str .= "\$report_include_modules['$module'] = '$module';\n";
1589                                                 $str .= "\$modInvisList[] = '$module';\n";
1590                                         }
1591                                     $this->installed_modules[] = $module;
1592                                 }else{
1593                                                 $errors[] = 'Bean array not well defined.';
1594                                                 $this->abort($errors);
1595                                 }
1596                         }
1597                         $str.= "\n?>";
1598                         if(!file_exists("custom/Extension/application/Ext/Include")){
1599                                 mkdir_recursive("custom/Extension/application/Ext/Include", true);
1600                         }
1601                         file_put_contents("custom/Extension/application/Ext/Include/{$this->id_name}.php", $str);
1602         }
1603     }
1604
1605     /*
1606      * ModuleInstaller->install_beans runs through the list of beans given, instantiates each bean, calls bean->create_tables, and then calls SugarBean::createRelationshipMeta for the
1607      * bean/module.
1608      */
1609         function install_beans($beans){
1610         include('include/modules.php');
1611                 foreach($beans as $bean){
1612                         $this->log( translate('LBL_MI_IN_BEAN') . " $bean");
1613                         if(isset($beanList[$bean])){
1614                                 $class = $beanList[$bean];
1615                                 if(file_exists($beanFiles[$class])){
1616                                         require_once($beanFiles[$class]);
1617                                         $mod = new $class();
1618                                         //#30273
1619                                         if(is_subclass_of($mod, 'SugarBean')  && $mod->disable_vardefs == false ){
1620                                                 $GLOBALS['log']->debug( "Creating Tables Bean : $bean");
1621                                                 $mod->create_tables();
1622                                                 SugarBean::createRelationshipMeta($mod->getObjectName(), $mod->db,$mod->table_name,'',$mod->module_dir);    
1623                                         }
1624                                 }else{
1625                                         $GLOBALS['log']->debug( "File Does Not Exist:" . $beanFiles[$class] );
1626                                 }
1627                         }
1628                 }
1629         }
1630
1631                 function uninstall_beans($beans){
1632                 include('include/modules.php');
1633         foreach($beans as $bean){
1634                         $this->log( translate('LBL_MI_UN_BEAN') . " $bean");
1635                         if(isset($beanList[$bean])){
1636                                 $class = $beanList[$bean];
1637
1638                                 if(file_exists($beanFiles[$class])){
1639                                         require_once($beanFiles[$class]);
1640                                         $mod = new $class();
1641
1642                                         if(is_subclass_of($mod, 'SugarBean')){
1643                                                 $GLOBALS['log']->debug( "Drop Tables : $bean");
1644                                                 if(isset($GLOBALS['mi_remove_tables']) && $GLOBALS['mi_remove_tables'])
1645                                                         $mod->drop_tables();
1646                                         }
1647                                 }else{
1648                                         $GLOBALS['log']->debug( "File Does Not Exist:" . $beanFiles[$class] );
1649                                 }
1650                         }
1651                 }
1652         }
1653
1654         /**
1655          * Remove any customizations made within Studio while the module was installed.
1656          */
1657         function uninstall_customizations($beans){
1658         foreach($beans as $bean){
1659                         $dirs = array(
1660                                 'custom/modules/' . $bean,
1661                                 'custom/Extension/modules/' . $bean
1662                         );
1663                 foreach($dirs as $dir)
1664                 {
1665                                 if(is_dir($dir)){
1666                                         rmdir_recursive($dir);
1667                                 }
1668                 }
1669                 }
1670         }
1671
1672         function log($str){
1673                 $GLOBALS['log']->debug('ModuleInstaller:'. $str);
1674                 if(!$this->silent){
1675                         echo $str . '<br>';
1676                 }
1677         }
1678
1679 /* BEGIN - RESTORE POINT - by MR. MILK August 31, 2005 02:15:18 PM      */
1680 function copy_recursive_with_backup( $source, $dest, $backup_path, $uninstall=false ) {
1681         if(is_file($source)) {
1682             if($uninstall) {
1683                     $GLOBALS['log']->debug("Restoring ... " . $source.  " to " .$dest );
1684                     if(copy( $source, $dest)) {
1685                             if(is_writable($dest))
1686                                 sugar_touch( $dest, filemtime($source) );
1687                         return(unlink($source));
1688                 }
1689                     else {
1690                         $GLOBALS['log']->debug( "Can't restore file: " . $source );
1691                         return true;
1692                 }
1693             }
1694             else {
1695                         if(file_exists($dest)) {
1696                                 $rest = clean_path($backup_path."/$dest");
1697                                 if( !is_dir(dirname($rest)) )
1698                                         mkdir_recursive(dirname($rest), true);
1699
1700                                 $GLOBALS['log']->debug("Backup ... " . $dest.  " to " .$rest );
1701                                 if(copy( $dest, $rest)) {
1702                                         if(is_writable($rest))
1703                                                 sugar_touch( $rest, filemtime($dest) );
1704                                 }
1705                                 else {
1706                                         $GLOBALS['log']->debug( "Can't backup file: " . $dest );
1707                                 }
1708                         }
1709                         return( copy( $source, $dest ) );
1710                 }
1711     }
1712     elseif(!is_dir($source)) {
1713             if($uninstall) {
1714                         if(is_file($dest))
1715                                 return(unlink($dest));
1716                         else {
1717                                 //don't do anything we already cleaned up the files using uninstall_new_files
1718                                 return true;
1719                         }
1720                 }
1721                 else
1722                         return false;
1723         }
1724
1725     if( !is_dir($dest) && !$uninstall){
1726         sugar_mkdir( $dest );
1727     }
1728
1729     $status = true;
1730
1731     $d = dir( $source );
1732     while( $f = $d->read() ){
1733         if( $f == "." || $f == ".." ){
1734             continue;
1735         }
1736         $status &= $this->copy_recursive_with_backup( "$source/$f", "$dest/$f", $backup_path, $uninstall );
1737     }
1738     $d->close();
1739     return( $status );
1740 }
1741
1742 private function dir_get_files($path, $base_path){
1743         $files = array();
1744         if(!is_dir($path))return $files;
1745         $d = dir($path);
1746         while ($e = $d->read()){
1747                 //ignore invisible files . .. ._MACOSX
1748                 if(substr($e, 0, 1) == '.')continue;
1749                 if(is_file($path . '/' . $e))$files[str_replace($base_path , '', $path . '/' . $e)] = str_replace($base_path , '', $path . '/' . $e);
1750                 if(is_dir($path . '/' . $e))$files = array_merge($files, $this->dir_get_files($path . '/' . $e, $base_path));
1751         }
1752         $d->close();
1753         return $files;
1754
1755 }
1756
1757 private function dir_file_count($path){
1758         //if its a file then it has at least 1 file in the directory
1759         if(is_file($path)) return 1;
1760         if(!is_dir($path)) return 0;
1761         $d = dir($path);
1762         $count = 0;
1763         while ($e = $d->read()){
1764                 //ignore invisible files . .. ._MACOSX
1765                 if(substr($e, 0, 1) == '.')continue;
1766                 if(is_file($path . '/' . $e))$count++;
1767                 if(is_dir($path . '/' . $e))$count += $this->dir_file_count($path . '/' . $e);
1768         }
1769         $d->close();
1770         return $count;
1771
1772
1773 }
1774 /* END - RESTORE POINT - by MR. MILK August 31, 2005 02:15:34 PM */
1775
1776
1777         /**
1778          * Static function which allows a module developer to abort their progress, pass in an array of errors and
1779          * redirect back to the main module loader page
1780          *
1781          * @param errors        an array of error messages which will be displayed on the
1782          *                                      main module loader page once it is loaded.
1783          */
1784         function abort($errors = array()){
1785                 //set the errors onto the session so we can display them one the moduler loader page loads
1786                 $_SESSION['MODULEINSTALLER_ERRORS'] = $errors;
1787                 echo '<META HTTP-EQUIV="Refresh" content="0;url=index.php?module=Administration&action=UpgradeWizard&view=module">';
1788                 die();
1789                 //header('Location: index.php?module=Administration&action=UpgradeWizard&view=module');
1790         }
1791
1792         /**
1793          * Return the set of errors stored in the SESSION
1794          *
1795          * @return an array of errors
1796          */
1797         function getErrors(){
1798                 if(!empty($_SESSION['MODULEINSTALLER_ERRORS'])){
1799                         $errors = $_SESSION['MODULEINSTALLER_ERRORS'];
1800                         unset($_SESSION['MODULEINSTALLER_ERRORS']);
1801                         return $errors;
1802                 }
1803                 else
1804                         return null;
1805         }
1806
1807         /*
1808      * Add any fields to the DetailView and EditView of the appropriate modules
1809      * Only add into deployed modules, as addFieldsToUndeployedLayouts has done this already for undeployed modules (and the admin might have edited the layouts already)
1810      * @param array $layoutAdditions  An array of module => fieldname
1811      * return null
1812      */
1813         function addFieldsToLayout($layoutAdditions) {
1814         require_once 'modules/ModuleBuilder/parsers/views/GridLayoutMetaDataParser.php' ;
1815
1816         // these modules either lack editviews/detailviews or use custom mechanisms for the editview/detailview.
1817         // In either case, we don't want to attempt to add a relate field to them
1818         // would be better if GridLayoutMetaDataParser could handle this gracefully, so we don't have to maintain this list here
1819         $invalidModules = array ( 'emails' , 'kbdocuments' ) ;
1820
1821         foreach ( $layoutAdditions as $deployedModuleName => $fieldName )
1822         {
1823             if ( ! in_array( strtolower ( $deployedModuleName ) , $invalidModules ) )
1824             {
1825                 foreach ( array ( MB_EDITVIEW , MB_DETAILVIEW ) as $view )
1826                 {
1827                     $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . ": adding $fieldName to $view layout for module $deployedModuleName" ) ;
1828                     $parser = new GridLayoutMetaDataParser ( $view, $deployedModuleName ) ;
1829                     $parser->addField ( array ( 'name' => $fieldName ) ) ;
1830                     $parser->handleSave ( false ) ;
1831                 }
1832             }
1833         }
1834
1835         }
1836
1837         function removeFieldsFromLayout($layoutAdditions) {
1838         require_once 'modules/ModuleBuilder/parsers/views/GridLayoutMetaDataParser.php' ;
1839
1840         // these modules either lack editviews/detailviews or use custom mechanisms for the editview/detailview.
1841         // In either case, we don't want to attempt to add a relate field to them
1842         // would be better if GridLayoutMetaDataParser could handle this gracefully, so we don't have to maintain this list here
1843         $invalidModules = array ( 'emails' , 'kbdocuments' ) ;
1844
1845         foreach ( $layoutAdditions as $deployedModuleName => $fieldName )
1846         {
1847             if ( ! in_array( strtolower ( $deployedModuleName ) , $invalidModules ) )
1848             {
1849                 foreach ( array ( MB_EDITVIEW , MB_DETAILVIEW ) as $view )
1850                 {
1851                     $GLOBALS [ 'log' ]->debug ( get_class ( $this ) . ": adding $fieldName to $view layout for module $deployedModuleName" ) ;
1852                     $parser = new GridLayoutMetaDataParser ( $view, $deployedModuleName ) ;
1853                     $parser->removeField ( $fieldName ) ;
1854                     $parser->handleSave ( false ) ;
1855                 }
1856             }
1857         }
1858
1859         }
1860
1861         ///////////////////
1862         //********** DISABLE/ENABLE FUNCTIONS
1863         ///////////////////
1864         function enable($base_dir, $is_upgrade = false, $previous_version = ''){
1865                 global $app_strings;
1866                 $this->base_dir = $base_dir;
1867                 $total_steps = 3; //minimum number of steps with no tasks
1868                 $current_step = 0;
1869                 $tasks = array(
1870                                                                 'enable_copy',
1871                                                                 'enable_dashlets',
1872                                                                 'enable_relationships',
1873                                         'enable_extensions',
1874                                         'enable_manifest_logichooks',
1875                                                                 'reset_opcodes',
1876                 );
1877                 $total_steps += count($tasks);
1878                 if(file_exists($this->base_dir . '/manifest.php')){
1879                                 if(!$this->silent){
1880                                         $current_step++;
1881                                         display_progress_bar('install', $current_step, $total_steps);
1882                                         echo '<div id ="displayLoglink" ><a href="#" onclick="toggleDisplay(\'displayLog\')">'.$app_strings['LBL_DISPLAY_LOG'].'</a> </div><div id="displayLog" style="display:none">';
1883                                 }
1884
1885                                 require_once($this->base_dir . '/manifest.php');
1886                                 if($is_upgrade && !empty($previous_version)){
1887                                         //check if the upgrade path exists
1888                                         if(!empty($upgrade_manifest)){
1889                                                 if(!empty($upgrade_manifest['upgrade_paths'])){
1890                                                         if(!empty($upgrade_manifest['upgrade_paths'][$previous_version])){
1891                                                                 $installdefs =  $upgrade_manifest['upgrade_paths'][$previous_version];
1892                                                         }else{
1893                                                                 $errors[] = 'No Upgrade Path Found in manifest.';
1894                                                                 $this->abort($errors);
1895                                                         }//fi
1896                                                 }//fi
1897                                         }//fi
1898                                 }//fi
1899                                 $this->id_name = $installdefs['id'];
1900                                 $this->installdefs = $installdefs;
1901                                 $installed_modules = array();
1902                                 if(isset($installdefs['beans'])){
1903                                         foreach($this->installdefs['beans'] as $bean){
1904                                                 $installed_modules[] = $bean['module'];
1905                                         }
1906                                 }
1907                                 if(!$this->silent){
1908                                         $current_step++;
1909                                         update_progress_bar('install', $current_step, $total_steps);
1910                                 }
1911
1912                                 foreach($tasks as $task){
1913                                         $this->$task();
1914                                         if(!$this->silent){
1915                                                 $current_step++;
1916                                                 update_progress_bar('install', $current_step, $total_steps);
1917                                         }
1918                                 }
1919
1920                                 if(!$this->silent){
1921                                         $current_step++;
1922                                         update_progress_bar('install', $current_step, $total_steps);
1923                                         echo '</div>';
1924                                 }
1925                                 UpdateSystemTabs('Add',$installed_modules);
1926                                 $GLOBALS['log']->debug('Complete');
1927
1928                 }else{
1929                         die("No \$installdefs Defined In $this->base_dir/manifest.php");
1930                 }
1931
1932         }
1933         function disable($base_dir){
1934                 global $app_strings;
1935                 $total_steps = 3; //min steps with no tasks
1936                 $current_step = 0;
1937                 $this->base_dir = $base_dir;
1938                 $tasks = array(
1939                                                         'disable_copy',
1940                                                         'disable_dashlets',
1941                                                         'disable_relationships',
1942                                     'disable_extensions',
1943                                                         'disable_manifest_logichooks',
1944                                                         'reset_opcodes',
1945                                                         );
1946                 $total_steps += count($tasks); //now the real number of steps
1947                 if(file_exists($this->base_dir . '/manifest.php')){
1948                                 if(!$this->silent){
1949                                         $current_step++;
1950                                         display_progress_bar('install', $current_step, $total_steps);
1951                                         echo '<div id ="displayLoglink" ><a href="#" onclick="toggleDisplay(\'displayLog\')">'.$app_strings['LBL_DISPLAY_LOG'].'</a> </div><div id="displayLog" style="display:none">';
1952                                 }
1953
1954                                 require_once($this->base_dir . '/manifest.php');
1955                                 $this->installdefs = $installdefs;
1956                                 $this->id_name = $this->installdefs['id'];
1957                                 $installed_modules = array();
1958                                 if(isset($this->installdefs['beans'])){
1959                                         foreach($this->installdefs['beans'] as $bean){
1960                                                 $installed_modules[] = $bean['module'];
1961                                         }
1962                                 }
1963                                 if(!$this->silent){
1964                                         $current_step++;
1965                                         update_progress_bar('install', $current_step, $total_steps);
1966                                 }
1967                                 foreach($tasks as $task){
1968                                         $this->$task();
1969                                         if(!$this->silent){
1970                                                 $current_step++;
1971                                                 update_progress_bar('install', $current_step, $total_steps);
1972                                         }
1973                                 }
1974                                 if(!$this->silent){
1975                                         $current_step++;
1976                                         update_progress_bar('install', $current_step, $total_steps);
1977                                         echo '</div>';
1978                                 }
1979                         UpdateSystemTabs('Restore',$installed_modules);
1980
1981                 }else{
1982                         die("No manifest.php Defined In $this->base_dir/manifest.php");
1983                 }
1984         }
1985
1986         function enable_vardef($to_module)
1987         {
1988             $this->enableExt("vardefs", "Vardefs", $to_module);
1989         }
1990
1991         function enable_layoutdef($to_module)
1992         {
1993             $this->enableExt("layoutdefs", "Layoutdefs", $to_module);
1994         }
1995
1996         function enable_relationships(){
1997                 if(isset($this->installdefs['relationships'])){
1998                         $str = "<?php \n //WARNING: The contents of this file are auto-generated\n";
1999                         $save_table_dictionary = false;
2000                         foreach($this->installdefs['relationships'] as $relationship){
2001                 $filename       =basename($relationship['meta_data']);
2002
2003                                 $save_table_dictionary  = true;
2004                                 $str .= "include_once('metadata/$filename');\n";
2005                                 if (empty($relationship['module']))
2006                                     continue;
2007
2008                                 if(!empty($relationship['module_vardefs'])){
2009                                         $this->enable_vardef($relationship['module']);
2010                                 }
2011                                 if(!empty($relationship['module_layoutdefs'])){
2012                                         $this->enable_layoutdef($relationship['module']);
2013                                 }
2014                         }
2015                         $this->rebuild_vardefs();
2016                         $this->rebuild_layoutdefs();
2017                         if($save_table_dictionary){
2018                                 if(!file_exists("custom/Extension/application/Ext/TableDictionary")){
2019                                         mkdir_recursive("custom/Extension/application/Ext/TableDictionary", true);
2020                                 }
2021                                 if (file_exists("custom/Extension/application/Ext/TableDictionary/".DISABLED_PATH."/$this->id_name.php"))
2022                                    rename("custom/Extension/application/Ext/TableDictionary/".DISABLED_PATH."/$this->id_name.php", "custom/Extension/application/Ext/TableDictionary/$this->id_name.php");
2023                                 $this->rebuild_tabledictionary();
2024                         }
2025                 }
2026         }
2027
2028         function disable_relationships($action = 'disable'){
2029                 if(isset($this->installdefs['relationships'])){
2030                         foreach($this->installdefs['relationships'] as $relationship){
2031                                 $filename = basename($relationship['meta_data']);
2032                 $relName = substr($filename, -12) == "MetaData.php" ? substr($filename,0,strlen($filename) - 12) : "";
2033                                 if (empty($relationship['module']) && empty($relName))
2034                         continue;
2035
2036                                 //remove the vardefs
2037                                 if (empty($relName))
2038                                         $path = 'custom/Extension/modules/' . $relationship['module']. '/Ext/Vardefs';
2039                                 if(!empty($relationship['module']) && $relationship['module'] == 'application'){
2040                                         $path ='custom/Extension/' . $relationship['module']. '/Ext/Vardefs';
2041                                 }
2042                                 if(!empty($relationship['module_vardefs']) && file_exists($path . '/'. $this->id_name . '.php')){
2043                                         mkdir_recursive($path . '/'.DISABLED_PATH, true);
2044                                         rename( $path . '/'. $this->id_name . '.php', $path . '/'.DISABLED_PATH.'/'. $this->id_name . '.php');
2045                                 }
2046                                 //remove the layoutdefs
2047                                 if ( !empty($relationship['module']) ) {
2048                     $path = 'custom/Extension/modules/' . $relationship['module']. '/Ext/Layoutdefs';
2049                     if($relationship['module'] == 'application'){
2050                         $path ='custom/Extension/' . $relationship['module']. '/Ext/Layoutdefs';
2051                     }
2052                                 }
2053
2054                                 if(!empty($relationship['module_layoutdefs']) && file_exists($path . '/'. $this->id_name . '.php')){
2055                                         mkdir_recursive($path . '/'.DISABLED_PATH, true);
2056                                         rename( $path . '/'. $this->id_name . '.php', $path . '/'.DISABLED_PATH.'/'. $this->id_name . '.php');
2057                                 }
2058
2059                         }
2060                         if(file_exists("custom/Extension/application/Ext/TableDictionary/$this->id_name.php")){
2061                                 mkdir_recursive("custom/Extension/application/Ext/TableDictionary/".DISABLED_PATH, true);
2062                                 rename("custom/Extension/application/Ext/TableDictionary/$this->id_name.php", "custom/Extension/application/Ext/TableDictionary/".DISABLED_PATH."/$this->id_name.php");
2063                         }
2064                         $this->rebuild_tabledictionary();
2065                         $this->rebuild_vardefs();
2066                         $this->rebuild_layoutdefs();
2067                 }
2068         }
2069
2070         function enable_dashlets(){
2071                 if(isset($this->installdefs['dashlets'])){
2072                         foreach($this->installdefs['dashlets'] as $cp){
2073                                 $cp['from'] = str_replace('<basepath>', $this->base_dir, $cp['from']);
2074                                 $path = 'custom/modules/Home/Dashlets/' . $cp['name'] . '/';
2075                                 $disabled_path = 'custom/modules/Home/'.DISABLED_PATH.'Dashlets/' . $cp['name'];
2076                                 $GLOBALS['log']->debug("Enabling Dashlet " . $cp['name'] . "..." . $cp['from'] );
2077                                 if (file_exists($disabled_path))
2078                                 {
2079                                         rename($disabled_path,  $path);
2080                                 }
2081                         }
2082                         include('modules/Administration/RebuildDashlets.php');
2083
2084                 }
2085         }
2086
2087         function disable_dashlets(){
2088                 if(isset($this->installdefs['dashlets'])){
2089                                         foreach($this->installdefs['dashlets'] as $cp){
2090                                                 $path = 'custom/modules/Home/Dashlets/' . $cp['name'];
2091                                                 $disabled_path = 'custom/modules/Home/'.DISABLED_PATH.'Dashlets/' . $cp['name'];
2092                                                 $GLOBALS['log']->debug('Disabling ' .$path);
2093                                                 if (file_exists($path))
2094                                                 {
2095                                                         mkdir_recursive('custom/modules/Home/'.DISABLED_PATH.'Dashlets/', true);
2096                                                         rename( $path, $disabled_path);
2097                                                 }
2098                                         }
2099                                         include('modules/Administration/RebuildDashlets.php');
2100                                 }
2101         }
2102
2103         function enable_copy(){
2104                 //copy files back onto file system. first perform md5 check to determine if anything has been modified
2105                 //here we should just go through the files in the -restore directory and copy those back
2106                 if(isset($GLOBALS['mi_overwrite_files']) && $GLOBALS['mi_overwrite_files']){
2107                         if(!empty($this->installdefs['copy'])){
2108                                 foreach($this->installdefs['copy'] as $cp){
2109                                         $cp['to'] = clean_path(str_replace('<basepath>', $this->base_dir, $cp['to']));
2110                                         $backup_path = clean_path( remove_file_extension(urldecode(hashToFile($_REQUEST['install_file'])))."-restore/".$cp['to'] );
2111
2112                                         //check if this file exists in the -restore directory
2113                                         if(file_exists($backup_path)){
2114                                                 //since the file exists, then we want do an md5 of the install version and the file system version
2115                                                 //if(is_file($backup_path) && md5_file($backup_path) == md5_file($cp['to'])){
2116                                                         //since the files are the same then we can safely move back from the -restore
2117                                                         //directory into the file system
2118                                                         $GLOBALS['log']->debug("ENABLE COPY:: FROM: ".$cp['from']. " TO: ".$cp['to']);
2119                                                         $this->copy_path($cp['from'], $cp['to']);
2120                                                 /*}else{
2121                                                         //since they are not equal then we need to prompt the user
2122                                                 }*/
2123                                         }//fi
2124                                 }//rof
2125                         }//fi
2126                 }//fi
2127         }
2128
2129         function disable_copy(){
2130                 //when we disable we want to copy the -restore files back into the file system
2131                 //but we should check the version in the module install against the version on the file system
2132                 //if they match then we can copy the file back, but otherwise we should ask the user.
2133
2134 //              $GLOBALS['log']->debug('ModuleInstaller.php->disable_copy()');
2135                 if(isset($GLOBALS['mi_overwrite_files']) && $GLOBALS['mi_overwrite_files']){
2136 //              $GLOBALS['log']->debug('ModuleInstaller.php->disable_copy():mi_overwrite_files=true');
2137                         if(!empty($this->installdefs['copy'])){
2138 //                              $GLOBALS['log']->debug('ModuleInstaller.php->disable_copy(): installdefs not empty');
2139                                 foreach($this->installdefs['copy'] as $cp){
2140                                         $cp['to'] = clean_path(str_replace('<basepath>', $this->base_dir, $cp['to']));
2141                                         $backup_path = clean_path( remove_file_extension(urldecode(hashToFile($_REQUEST['install_file'])))."-restore/".$cp['to'] ); // bug 16966 tyoung - replaced missing assignment to $backup_path
2142                                         //check if this file exists in the -restore directory
2143 //                                      $GLOBALS['log']->debug("ModuleInstaller.php->disable_copy(): backup_path=".$backup_path);
2144                                         if(file_exists($backup_path)){
2145                                                 //since the file exists, then we want do an md5 of the install version and the file system version
2146                                                 $from = str_replace('<basepath>', $this->base_dir, $cp['from']);
2147
2148                                                 //if(is_file($from) && md5_file($from) == md5_file($cp['to'])){
2149                                                         //since the files are the same then we can safely move back from the -restore
2150                                                         //directory into the file system
2151                                                         $GLOBALS['log']->debug("DISABLE COPY:: FROM: ".$backup_path. " TO: ".$cp['to']);
2152                                                         $this->copy_path($backup_path, $cp['to']);
2153                                                 /*}else{
2154                                                         //since they are not equal then we need to prompt the user
2155                                                 }*/
2156                                         }//fi
2157                                 }//rof
2158                         }//fi
2159                 }//fi
2160         }
2161
2162         public function reset_opcodes()
2163     {
2164         /* Bug 39354 - added function_exists check. Not optimal fix, but safe nonetheless.
2165          * This is for the upgrade to 6.1 from pre 6.1, since the utils files haven't been updated to 6.1 when this is called,
2166          * but this file has been updated to 6.1
2167          */
2168         if(function_exists('sugar_clean_opcodes')){
2169             sugar_clean_opcodes();
2170         }
2171     }
2172
2173     /**
2174      * BC implementation to provide specific calls to extensions
2175      */
2176     public function __call($name, $args)
2177     {
2178         $nameparts = explode('_', $name);
2179         // name is something_something
2180         if(count($nameparts) == 2 && isset($this->extensions[$nameparts[1]])) {
2181             $ext = $this->extensions[$nameparts[1]];
2182             switch($nameparts[0]) {
2183                 case 'enable':
2184                     return $this->enableExt($ext['section'], $ext['extdir']);
2185                 case 'disable':
2186                     return $this->disableExt($ext['section'], $ext['extdir']);
2187                 case 'install':
2188                     return $this->installExt($ext['section'], $ext['extdir']);
2189                 case 'uninstall':
2190                     return $this->uninstallExt($ext['section'], $ext['extdir']);
2191                 case 'rebuild':
2192                     return $this->rebuildExt($ext['extdir'], $ext['file']);
2193             }
2194         }
2195         sugar_die("Unknown method ModuleInstaller::$name called");
2196     }
2197
2198 }
2199
2200     function UpdateSystemTabs($action, $installed_modules){
2201         require_once("modules/MySettings/TabController.php");
2202         $controller = new TabController();
2203         $isSystemTabsInDB = $controller->is_system_tabs_in_db();
2204         if ($isSystemTabsInDB && !empty($installed_modules))
2205         {
2206             global $moduleList;
2207             switch ($action)
2208             {
2209                 case 'Restore' :
2210                     $currentTabs = $controller->get_system_tabs();
2211                     foreach ($installed_modules as $module)
2212                     {
2213                         if(in_array($module, $currentTabs)){
2214                             unset($currentTabs[$module]);
2215                         }
2216                     }
2217                     $controller->set_system_tabs($currentTabs);;
2218                     break;
2219                 case 'Add' :
2220                     $currentTabs = $controller->get_system_tabs();
2221                     foreach ($installed_modules as $module)
2222                     {
2223                         if(!in_array($module, $currentTabs)){
2224                             $currentTabs[$module] = $module;
2225                         }
2226                     }
2227                     $controller->set_system_tabs($currentTabs);
2228                 default:
2229                     break;
2230             }
2231     }
2232
2233 }