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\ProductService; use ModulesGarden\ProxmoxAddon\App\Services\Cloud\UserService; use ModulesGarden\ProxmoxAddon\App\Services\CloudService; use ModulesGarden\Servers\ProxmoxCloudVps\App\Helpers\AppParams; use ModulesGarden\Servers\ProxmoxCloudVps\App\Helpers\ProxmoxAddonValidator; use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Validators\Validator; use ModulesGarden\Servers\ProxmoxCloudVps\Core\App\Controllers\Instances\AddonController; use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Traits\WhmcsParams; class ChangeUserRole extends AddonController { use WhmcsParams; use ProductService; use UserService; use ApiService; public function execute($params = null) { if(!ProxmoxAddonValidator::isInstalled()){ return ProxmoxAddonValidator::failAsString(); } try { (new AppParams())->initFromParams($params); //Create User if (!$this->isUser()) { $this->userCreate(); } $this->userUpdate(); $cloud = new CloudService(); $vms = $cloud->getVmids(); $this->userUpdatePermission($vms); return "success"; } catch (\Exception $ex) { if (ModuleSettings::isDebug()) { logModuleCall( 'ProxmoxCloudVps', __CLASS__, [], null, $ex->getMessage() . " " . $ex->getTraceAsString() ); } return $ex->getMessage(); } } }