HEX
Server: LiteSpeed
System: Linux 112.webhostingindonesia.co.id 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
User: iyfwylsv (10313)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/ultimate-maps-by-supsystic/classes/modInstaller.php
<?php
class modInstallerUms {
    static private $_current = array();
    /**
     * Install new moduleUms into plugin
     * @param string $module new moduleUms data (@see classes/tables/modules.php)
     * @param string $path path to the main plugin file from what module is installed
     * @return bool true - if install success, else - false
     */
    static public function install($module, $path) {
        $exPlugDest = explode('plugins', $path);
        if(!empty($exPlugDest[1])) {
            $module['ex_plug_dir'] = str_replace(DS, '', $exPlugDest[1]);
        }
        $path = $path. DS. $module['code'];
        if(!empty($module) && !empty($path) && is_dir($path)) {
            if(self::isModule($path)) {
                $filesMoved = false;
                if(empty($module['ex_plug_dir']))
                    $filesMoved = self::moveFiles($module['code'], $path);
                else
                    $filesMoved = true;     //Those modules doesn't need to move their files
                if($filesMoved) {
                    if(frameUms::_()->getTable('modules')->exists($module['code'], 'code')) {
                        frameUms::_()->getTable('modules')->delete(array('code' => $module['code']));
                    }
					if($module['code'] != 'license')
						$module['active'] = 0;
                    frameUms::_()->getTable('modules')->insert($module);
                    self::_runModuleInstall($module);
                    self::_installTables($module);
                    return true;
                } else {
                    errorsUms::push(sprintf(__('Move files for %s failed'), $module['code']), errorsUms::MOD_INSTALL);
                }
            } else
                errorsUms::push(sprintf(__('%s is not plugin module'), $module['code']), errorsUms::MOD_INSTALL);
        }
        return false;
    }
    static protected function _runModuleInstall($module, $action = 'install') {
        $moduleLocationDir = UMS_MODULES_DIR;
        if(!empty($module['ex_plug_dir']))
            $moduleLocationDir = utilsUms::getPluginDir( $module['ex_plug_dir'] );
        if(is_dir($moduleLocationDir. $module['code'])) {
			if(!class_exists($module['code']. strFirstUp(UMS_CODE))) {
				importClassUms($module['code'], $moduleLocationDir. $module['code']. DS. 'mod.php');
			}
            $moduleClass = toeGetClassNameUms($module['code']);
            $moduleObj = new $moduleClass($module);
            if($moduleObj) {
                $moduleObj->$action();
            }
        }
    }
    /**
     * Check whether is or no module in given path
     * @param string $path path to the module
     * @return bool true if it is module, else - false
     */
    static public function isModule($path) {
        return true;
    }
    /**
     * Move files to plugin modules directory
     * @param string $code code for module
     * @param string $path path from what module will be moved
     * @return bool is success - true, else - false
     */
    static public function moveFiles($code, $path) {
        if(!is_dir(UMS_MODULES_DIR. $code)) {
            if(mkdir(UMS_MODULES_DIR. $code)) {
                utilsUms::copyDirectories($path, UMS_MODULES_DIR. $code);
                return true;
            } else
                errorsUms::push(__('Can not create module directory. Try to set permission to '. UMS_MODULES_DIR. ' directory 755 or 777', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
        } else
            return true;
        return false;
    }
    static private function _getPluginLocations() {
        $locations = array();
        $plug = reqUms::getVar('plugin');
        if(empty($plug)) {
            $plug = reqUms::getVar('checked');
            $plug = $plug[0];
        }
        $locations['plugPath'] = plugin_basename( trim( $plug ) );
        $locations['plugDir'] = dirname(WP_PLUGIN_DIR. DS. $locations['plugPath']);
		$locations['plugMainFile'] = WP_PLUGIN_DIR. DS. $locations['plugPath'];
        $locations['xmlPath'] = $locations['plugDir']. DS. 'install.xml';
		$locations['extendModPath'] = $locations['plugDir']. DS. 'install.php';
        return $locations;
    }
    static private function _getModulesFromXml($xmlPath) {
        if($xml = utilsUms::getXml($xmlPath)) {
            if(isset($xml->modules) && isset($xml->modules->mod)) {
                $modules = array();
                $xmlMods = $xml->modules->children();
                foreach($xmlMods->mod as $mod) {
                    $modules[] = $mod;
                }
                if(empty($modules))
                    errorsUms::push(__('No modules were found in XML file', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
                else
                    return $modules;
            } else
                errorsUms::push(__('Invalid XML file', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
        } else
            errorsUms::push(__('No XML file were found', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
        return false;
    }
	static private function _getExtendModules($locations) {
		$modules = array();
		$isExtendModPath = file_exists($locations['extendModPath']);
		$modulesList = $isExtendModPath ? include $locations['extendModPath'] : self::_getModulesFromXml($locations['xmlPath']);
		if(!empty($modulesList)) {
			foreach($modulesList as $mod) {
				$modData = $isExtendModPath ? $mod : utilsUms::xmlNodeAttrsToArr($mod);
				array_push($modules, $modData);
			}
			if(empty($modules))
				errorsUms::push(__('No modules were found in installation file', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
			else
				return $modules;
		} else
			errorsUms::push(__('No installation file were found', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
		return false;
	}
    /**
     * Check whether modules is installed or not, if not and must be activated - install it
     * @param array $codes array with modules data to store in database
     * @param string $path path to plugin file where modules is stored (__FILE__ for example)
     * @return bool true if check ok, else - false
     */
    static public function check($extPlugName = '') {
        $locations = self::_getPluginLocations();
		if($modules = self::_getExtendModules($locations)) {
			foreach($modules as $m) {
				if(!empty($m)) {
					//If module Exists - just activate it, we can't check this using frameUms::moduleExists because this will not work for multy-site WP
					if(frameUms::_()->getTable('modules')->exists($m['code'], 'code') /*frameUms::_()->moduleExists($m['code'])*/) {
						self::activate($m);
					} else {                                           //  if not - install it
						if(!self::install($m, $locations['plugDir'])) {
							errorsUms::push(sprintf(__('Install %s failed'), $m['code']), errorsUms::MOD_INSTALL);
						}
					}
				}
			}
		} else
            errorsUms::push(__('Error Activate module', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
        if(errorsUms::haveErrors(errorsUms::MOD_INSTALL)) {
            self::displayErrors();
            return false;
        }
		update_option(UMS_CODE. '_full_installed', 1);
        return true;
    }
    /**
	 * Public alias for _getCheckRegPlugs()
	 */
	/**
	 * We will run this each time plugin start to check modules activation messages
	 */
	static public function checkActivationMessages() {

	}
    /**
     * Deactivate module after deactivating external plugin
     */
    static public function deactivate() {
        $locations = self::_getPluginLocations();
		if($modules = self::_getExtendModules($locations)) {
			foreach($modules as $m) {
				if(frameUms::_()->moduleActive($m['code'])) { //If module is active - then deacivate it
					if(frameUms::_()->getModule('options')->getModel('modules')->put(array(
						'id' => frameUms::_()->getModule($m['code'])->getID(),
						'active' => 0,
					))->error) {
						errorsUms::push(__('Error Deactivation module', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
					}
				}
			}
		}
        if(errorsUms::haveErrors(errorsUms::MOD_INSTALL)) {
            self::displayErrors(false);
            return false;
        }
        return true;
    }
    static public function activate($modDataArr) {
		if(!empty($modDataArr['code']) && !frameUms::_()->moduleActive($modDataArr['code'])) { //If module is not active - then acivate it
			if(frameUms::_()->getModule('options')->getModel('modules')->put(array(
				'code' => $modDataArr['code'],
				'active' => 1,
			))->error) {
				errorsUms::push(__('Error Activating module', UMS_LANG_CODE), errorsUms::MOD_INSTALL);
			} else {
				$dbModData = frameUms::_()->getModule('options')->getModel('modules')->get(array('code' => $modDataArr['code']));
				if(!empty($dbModData) && !empty($dbModData[0])) {
					$modDataArr['ex_plug_dir'] = $dbModData[0]['ex_plug_dir'];
				}
				self::_runModuleInstall($modDataArr, 'activate');
			}
		}
    }
    /**
     * Display all errors for module installer, must be used ONLY if You realy need it
     */
    static public function displayErrors($exit = true) {
        $errors = errorsUms::get(errorsUms::MOD_INSTALL);
        foreach($errors as $e) {
            echo '<b style="color: red;">'. $e. '</b><br />';
        }
        if($exit) exit();
    }
    static public function uninstall() {
        $locations = self::_getPluginLocations();
		if($modules = self::_getExtendModules($locations)) {
			foreach($modules as $m) {
				self::_uninstallTables($m);
				frameUms::_()->getModule('options')->getModel('modules')->delete(array('code' => $m['code']));
				utilsUms::deleteDir(UMS_MODULES_DIR. $m['code']);
			}
		}
    }
    static protected  function _uninstallTables($module) {
        if(is_dir(UMS_MODULES_DIR. $module['code']. DS. 'tables')) {
            $tableFiles = utilsUms::getFilesList(UMS_MODULES_DIR. $module['code']. DS. 'tables');
            if(!empty($tableNames)) {
                foreach($tableFiles as $file) {
                    $tableName = str_replace('.php', '', $file);
                    if(frameUms::_()->getTable($tableName))
                        frameUms::_()->getTable($tableName)->uninstall();
                }
            }
        }
    }
    static public function _installTables($module, $action = 'install') {
		$modDir = empty($module['ex_plug_dir']) ?
            UMS_MODULES_DIR. $module['code']. DS :
            utilsUms::getPluginDir($module['ex_plug_dir']). $module['code']. DS;
        if(is_dir($modDir. 'tables')) {
            $tableFiles = utilsUms::getFilesList($modDir. 'tables');
            if(!empty($tableFiles)) {
                frameUms::_()->extractTables($modDir. 'tables'. DS);
                foreach($tableFiles as $file) {
                    $tableName = str_replace('.php', '', $file);
                    if(frameUms::_()->getTable($tableName))
                        frameUms::_()->getTable($tableName)->$action();
                }
            }
        }
    }
}