customHostings[DUP_WPEngine_Host::getIdentifier()] = new DUP_WPEngine_Host(); $this->customHostings[DUP_GoDaddy_Host::getIdentifier()] = new DUP_GoDaddy_Host(); $this->customHostings[DUP_WordpressCom_Host::getIdentifier()] = new DUP_WordpressCom_Host(); $this->customHostings[DUP_Liquidweb_Host::getIdentifier()] = new DUP_Liquidweb_Host(); $this->customHostings[DUP_Pantheon_Host::getIdentifier()] = new DUP_Pantheon_Host(); $this->customHostings[DUP_Flywheel_Host::getIdentifier()] = new DUP_Flywheel_Host(); } public function init() { if ($this->initialized) { return true; } foreach ($this->customHostings as $cHost) { if (!($cHost instanceof DUP_Host_interface)) { throw new Exception('Host must implement DUP_Host_interface'); } if ($cHost->isHosting()) { $this->activeHostings[] = $cHost->getIdentifier(); $cHost->init(); } } $this->initialized = true; return true; } public function getActiveHostings() { return $this->activeHostings; } public function isHosting($identifier) { return in_array($identifier, $this->activeHostings); } public function isManaged() { if ($this->isHosting(self::HOST_WORDPRESSCOM)) { return true; } if ($this->isHosting(self::HOST_GODADDY)) { return true; } if ($this->isHosting(self::HOST_WPENGINE)) { return true; } if ($this->isHosting(self::HOST_LIQUIDWEB)) { return true; } if ($this->isHosting(self::HOST_PANTHEON)) { return true; } if ($this->isHosting(self::HOST_FLYWHEEL)) { return true; } if ($this->WPConfigIsNotWriteable()) { return true; } if ($this->notAccessibleCoreDirPresent()) { return true; } return false; } public function WPConfigIsNotWriteable() { $wpConfigPath = duplicator_get_abs_path()."/wp-config.php"; return file_exists($wpConfigPath) && !is_writeable($wpConfigPath); } public function notAccessibleCoreDirPresent() { $absPath = duplicator_get_abs_path(); $coreDirs = array( $absPath.'/wp-admin', $absPath.'/wp-includes', WP_CONTENT_DIR ); foreach ($coreDirs as $coreDir) { if (file_exists($coreDir) && !is_writeable($coreDir)) { return true; } } return false; } public function getHosting($identifier) { if ($this->isHosting($identifier)) { return $this->activeHostings[$identifier]; } else { return false; } } }