http://modulesgarden.com * CONTACT -> contact@modulesgarden.com * * * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the * inclusion of the above copyright notice. This software or any other * copies thereof may not be provided or otherwise made available to any * other person. No title to and ownership of the software is hereby * transferred. * * **********************************************************************/ namespace ModulesGarden\Servers\ProxmoxCloudVps\App\Http\Actions; use ModulesGarden\ProxmoxAddon\App\Models\ModuleSettings; use ModulesGarden\ProxmoxAddon\App\Services\ApiService; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\HostingService; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\NetworkService; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\ProductService; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\UserService; use ModulesGarden\ProxmoxAddon\App\Services\Utility; use ModulesGarden\Servers\ProxmoxCloudVps\App\Helpers\AppParams; use ModulesGarden\Servers\ProxmoxCloudVps\App\Helpers\ProxmoxAddonValidator; use ModulesGarden\Servers\ProxmoxCloudVps\Core\App\Controllers\Instances\AddonController; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Traits\WhmcsParams; class ChangePackage extends AddonController { use ApiService; use UserService; use ProductService; use WhmcsParams; use HostingService; /** * @param null $params * @return bool|string * @todo Resources validation */ public function execute($params = null) { try { if(!ProxmoxAddonValidator::isInstalled()){ return ProxmoxAddonValidator::failAsString(); } (new AppParams())->initFromWhmcsParams(); $this->networkService = new NetworkService(); //Bandwith limit $this->saveUsageLimit(); //Assing ip if (!Utility::isIpManagerProxmoxCloudIntegration()) { if($this->configuration()->isOrderPublicIp()){ list($ip4, $ip6) = $this->networkService->getIpAddressesRequest(); $bridge = $this->configuration()->getBridge(); $this->networkService->addIp($ip4, $ip6, $this->getDefaultNodeIfSet(),$bridge); } } return "success"; }catch (\Exception $ex) { if (ModuleSettings::isDebug()) { logModuleCall( 'ProxmoxCloudVps', __CLASS__, [], null, $ex->getMessage() . " " . $ex->getTraceAsString() ); } return $ex->getMessage(); } } }