# fluent-cart/1.6.4/app/Services/PluginInstaller/AddonManager.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 321 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Services/PluginInstaller/AddonManager.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Services/PluginInstaller/AddonManager.php
- Modified: 2026-06-11T12:21:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Services/PluginInstaller/AddonManager.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Services\PluginInstaller;

class AddonManager
{
    public function installAddon($sourceType, $sourceLink, $pluginSlug, $path = 'zipball_url')
    {
        if (!current_user_can('install_plugins')) {
            return new \WP_Error('permission_denied', __('You do not have permission to install plugins.', 'fluent-cart'));
        }

        $backgroundInstaller = new BackgroundInstaller();
        if ($sourceType === 'wordpress') {
            $result = $backgroundInstaller->installPlugin($pluginSlug);
        } else if ($sourceType === 'cdn') {
            $result = $backgroundInstaller->installFromCdn($sourceLink, $pluginSlug);
        } else if ($sourceType === 'github') {
            $result = $backgroundInstaller->installFromGithub($sourceLink, $pluginSlug, $path);
        } else {
            return new \WP_Error('invalid_source', __('Invalid addon source type.', 'fluent-cart'));
        }

        return $result;
    }

    public function activateAddon($pluginFile)
    {
        if (!current_user_can('activate_plugins')) {
            return new \WP_Error('permission_denied', __('You do not have permission to activate plugins.', 'fluent-cart'));
        }

        if (!function_exists('activate_plugin')) {
            require_once ABSPATH . 'wp-admin/includes/plugin.php';
        }

        $result = activate_plugin($pluginFile);

        if (is_wp_error($result)) {
            return $result;
        }

        return true;
    }

    public static function getAddonStatus($pluginSlug, $pluginFile)
    {
        if (!function_exists('get_plugins')) {
            require_once ABSPATH . 'wp-admin/includes/plugin.php';
        }

        if (!function_exists('is_plugin_active')) {
            require_once ABSPATH . 'wp-admin/includes/plugin.php';
        }

        $all_plugins = get_plugins();
        $is_installed = isset($all_plugins[$pluginFile]);
        $is_active = is_plugin_active($pluginFile);

        return [
            'is_installed' => $is_installed,
            'is_active'    => $is_active,
            'plugin_slug'  => $pluginSlug,
            'plugin_file'  => $pluginFile
        ];
    }

    /**
     * Check for updates based on source type
     *
     * @param string $sourceType Source type (github, wordpress, other)
     * @param string $sourceLink Source URL (for github, other sources)
     * @param string $pluginFile Plugin file path
     * @param string $pluginSlug Plugin slug (for wordpress)
     * @return array|\WP_Error
     */
    public function checkForUpdate($sourceType, $sourceLink, $pluginFile, $pluginSlug = '')
    {
        if (!function_exists('get_plugin_data')) {
            require_once ABSPATH . 'wp-admin/includes/plugin.php';
        }

        // Get current plugin version
        $pluginPath = WP_PLUGIN_DIR . '/' . $pluginFile;
        if (!file_exists($pluginPath)) {
            return new \WP_Error('plugin_not_found', __('Plugin file not found.', 'fluent-cart'));
        }

        $pluginData = get_plugin_data($pluginPath);
        $currentVersion = $pluginData['Version'] ?? '1.0.0';

        // Route to appropriate update check method
        switch ($sourceType) {
            case 'github':
                return $this->checkUpdateFromGitHub($sourceLink, $currentVersion);

            case 'wordpress':
                return $this->checkUpdateFromWordPress($pluginFile, $currentVersion);

            default:
                return $this->checkUpdateFromOther($sourceType, $sourceLink, $currentVersion);
        }
    }

    /**
     * Check for updates from GitHub
     *
     * @param string $sourceLink releases/latest URL
     * @param string $currentVersion Current plugin version
     * @return array|\WP_Error
     */
    private function checkUpdateFromGitHub($sourceLink, $currentVersion)
    {
        if (!$sourceLink) {
            return new \WP_Error('invalid_url', __('Source link is required', 'fluent-cart'));
        }

        $latestVersionInfo = $this->getLatestGitHubVersion($sourceLink);

        if (is_wp_error($latestVersionInfo)) {
            return $latestVersionInfo;
        }

        $latestVersion = $latestVersionInfo['version'];
        $hasUpdate = version_compare($latestVersion, $currentVersion, '>');

        return [
            'current_version' => $currentVersion,
            'latest_version'  => $latestVersion,
            'has_update'      => $hasUpdate,
            'download_url'    => $latestVersionInfo['download_url'],
            'release_notes'   => $latestVersionInfo['release_notes'] ?? '',
            'source_type'     => 'github'
        ];
    }

    /**
     * Check for updates from WordPress.org
     *
     * @param string $pluginFile Plugin file path
     * @param string $currentVersion Current plugin version
     * @return array|\WP_Error
     */
    private function checkUpdateFromWordPress($pluginFile, $currentVersion)
    {
        // Force refresh of update transients
        wp_update_plugins();

        // Get available updates
        $update_plugins = get_site_transient('update_plugins');

        if (!$update_plugins || !isset($update_plugins->response)) {
            return new \WP_Error('no_updates', __('Unable to check for updates from WordPress.org', 'fluent-cart'));
        }

        // Check if this plugin has an update available
        if (isset($update_plugins->response[$pluginFile])) {
            $update = $update_plugins->response[$pluginFile];

            return [
                'current_version' => $currentVersion,
                'latest_version'  => $update->new_version,
                'has_update'      => true,
                'download_url'    => $update->package ?? '',
                'release_notes'   => $update->upgrade_notice ?? '',
                'source_type'     => 'wordpress'
            ];
        }

        // No update available
        return [
            'current_version' => $currentVersion,
            'latest_version'  => $currentVersion,
            'has_update'      => false,
            'download_url'    => '',
            'release_notes'   => '',
            'source_type'     => 'wordpress'
        ];
    }

    /**
     * Check for updates from other sources (placeholder)
     *
     * @param string $sourceType Source type
     * @param string $sourceLink Source link
     * @param string $currentVersion Current plugin version
     * @return array|\WP_Error
     */
    private function checkUpdateFromOther($sourceType, $sourceLink, $currentVersion)
    {
        return new \WP_Error(
            'not_supported',
            sprintf(
                __('Update check for source type "%s" is not currently available.', 'fluent-cart'),
                $sourceType
            )
        );
    }

    /**
     * Get latest version info from GitHub
     *
     * @param string $releasesUrl GitHub releases URL
     * @return array|\WP_Error
     */
    private function getLatestGitHubVersion($releasesUrl)
    {
        preg_match('#github\.com/([^/]+)/([^/]+)/releases#', $releasesUrl, $matches);

        if (empty($matches[1]) || empty($matches[2])) {
            return new \WP_Error('invalid_url', __('Invalid GitHub releases URL', 'fluent-cart'));
        }

        $owner = $matches[1];
        $repo = $matches[2];

        $api_url = "https://api.github.com/repos/{$owner}/{$repo}/releases/latest";

        $response = wp_remote_get($api_url, [
            'timeout' => 30,
            'headers' => [
                'Accept'     => 'application/vnd.github.v3+json',
                'User-Agent' => 'FluentCart/' . FLUENTCART_VERSION
            ]
        ]);

        if (is_wp_error($response)) {
            return new \WP_Error('api_error', $response->get_error_message());
        }

        $code = wp_remote_retrieve_response_code($response);
        if ($code !== 200) {
            /* translators: %1$s: HTTP status code */
            return new \WP_Error('api_error', sprintf(__('Github API error with status code: %1$s', 'fluent-cart'), $code));
        }

        $body = wp_remote_retrieve_body($response);
        $data = json_decode($body, true);

        if (empty($data['tag_name']) || empty($data['zipball_url'])) {
            return new \WP_Error('no_release', __('No release found. Please ensure the repository has published releases.', 'fluent-cart'));
        }

        // Extract version number from tag (remove 'v' prefix if present)
        $version = ltrim($data['tag_name'], 'vV');

        return [
            'version'       => $version,
            'download_url'  => $data['zipball_url'],
            'release_notes' => $data['body'] ?? ''
        ];
    }


    /**
     * Update addon from WordPress.org
     *
     * @param string $pluginFile Plugin file path
     * @return bool|\WP_Error
     */
    private function updateFromWordPress($pluginFile)
    {
        require_once ABSPATH . 'wp-admin/includes/file.php';
        require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
        require_once ABSPATH . 'wp-admin/includes/plugin.php';

        $was_active = is_plugin_active($pluginFile);

        if ($was_active) {
            deactivate_plugins($pluginFile, true); // true = silent
        }

        // Use WordPress native Plugin_Upgrader
        $skin = new \WP_Ajax_Upgrader_Skin();
        $upgrader = new \Plugin_Upgrader($skin);

        // Perform the upgrade
        $result = $upgrader->upgrade($pluginFile);

        if (is_wp_error($result)) {
            if ($was_active) {
                activate_plugin($pluginFile, '', false, true); // true = silent
            }
            return $result;
        }

        if ($result === false) {
            if ($was_active) {
                activate_plugin($pluginFile, '', false, true);
            }
            return new \WP_Error('update_failed', __('Plugin update failed.', 'fluent-cart'));
        }

        if ($was_active) {
            $activate_result = activate_plugin($pluginFile, '', false, true);

            if (is_wp_error($activate_result)) {
                return new \WP_Error('activation_failed', $activate_result->get_error_message());
            }
        }

        return true;
    }

    /**
     * Update addon from other sources (placeholder)
     *
     * @param string $sourceType Source type
     * @return \WP_Error
     */
    private function updateFromOther($sourceType)
    {
        return new \WP_Error(
            'not_supported',
            sprintf(
                __('Update for source type "%s" is not currently available.', 'fluent-cart'),
                $sourceType
            )
        );
    }
}
```
