AccessControl::PERMISSION_MANAGE_SETTINGS, ]; private ServicesChecker $servicesChecker; private WPFunctions $wp; private DotcomHelperFunctions $dotcomHelperFunctions; private Installer $premiumInstaller; public function __construct( ServicesChecker $servicesChecker, WPFunctions $wp, DotcomHelperFunctions $dotcomHelperFunctions, ?Installer $premiumInstaller = null ) { $this->servicesChecker = $servicesChecker; $this->wp = $wp; $this->dotcomHelperFunctions = $dotcomHelperFunctions; $this->premiumInstaller = $premiumInstaller ?? new Installer(Installer::PREMIUM_PLUGIN_SLUG); } public function installPlugin() { $premiumKeyValid = $this->servicesChecker->isPremiumKeyValid(false); if (!$premiumKeyValid) { return $this->error(__('Premium key is not valid.', 'mailpoet')); } // If we are in Dotcom platform, we try to symlink the plugin instead of downloading it try { if ($this->dotcomHelperFunctions->isDotcom()) { $result = symlink(self::DOTCOM_SYMLINK_PATH, WP_PLUGIN_DIR . '/' . self::PREMIUM_PLUGIN_SLUG); if ($result === true) { return $this->successResponse(); } } } catch (\Exception $e) { // Do nothing and continue with a regular installation } $result = $this->wp->installPlugin($this->premiumInstaller->generatePluginDownloadUrl()); if ($result !== true) { return $this->error(__('Error when installing MailPoet Premium plugin.', 'mailpoet')); } return $this->successResponse(); } public function activatePlugin() { $premiumKeyValid = $this->servicesChecker->isPremiumKeyValid(false); if (!$premiumKeyValid) { return $this->error(__('Premium key is not valid.', 'mailpoet')); } $result = $this->wp->activatePlugin(self::PREMIUM_PLUGIN_PATH); if ($result !== null) { return $this->error(__('Error when activating MailPoet Premium plugin.', 'mailpoet')); } return $this->successResponse(); } private function error($message) { return $this->badRequest([ APIError::BAD_REQUEST => $message, ]); } }