/var/www/html/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-admin.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
/**
 * WooCommerce Admin Helper - React admin interface
 *
 * @package WooCommerce\Admin\Helper
 */

use Automattic\WooCommerce\Internal\Admin\Marketplace;
use 
Automattic\WooCommerce\Admin\PluginsHelper;

if ( ! 
defined'ABSPATH' ) ) {
    exit;
}

/**
 * WC_Helper Class
 *
 * The main entry-point for all things related to the Helper.
 * The Helper manages the connection between the store and
 * an account on WooCommerce.com.
 */
class WC_Helper_Admin {

    
/**
     * Loads the class, runs on init
     *
     * @return void
     */
    
public static function load() {
        if ( 
is_admin() ) {
            
$is_in_app_marketplace = (
                isset( 
$_GET['page'] ) && 'wc-admin' === $_GET['page'//phpcs:ignore WordPress.Security.NonceVerification.Recommended
                
&& isset( $_GET['path'] ) && '/extensions' === $_GET['path'//phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
);

            if ( 
$is_in_app_marketplace ) {
                
add_filter'woocommerce_admin_shared_settings', array( __CLASS__'add_marketplace_settings' ) );
            }
        }

        
add_filter'rest_api_init', array( __CLASS__'register_rest_routes' ) );
    }

    
/**
     * Pushes settings onto the WooCommerce Admin global settings object (wcSettings).
     *
     * @param mixed $settings The settings object we're amending.
     *
     * @return mixed $settings
     */
    
public static function add_marketplace_settings$settings ) {
        if ( ! 
WC_Helper::is_site_connected() && isset( $_GET['connect'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
wp_safe_redirectself::get_connection_url() );
            exit;
        }

        
$auth_user_data  WC_Helper_Options::get'auth_user_data', array() );
        
$auth_user_email = isset( $auth_user_data['email'] ) ? $auth_user_data['email'] : '';

        
// Get the all installed themes and plugins. Knowing this will help us decide to show Add to Store button on product cards.
        
$installed_products array_mergeWC_Helper::get_local_plugins(), WC_Helper::get_local_themes() );
        
$installed_products array_map(
            function ( 
$product ) {
                return 
$product['slug'];
            },
            
$installed_products
        
);

        
$woo_connect_notice_type WC_Helper_Updater::get_woo_connect_notice_type();

        
$settings['wccomHelper'] = array(
            
'isConnected'                => WC_Helper::is_site_connected(),
            
'connectURL'                 => self::get_connection_url(),
            
'userEmail'                  => $auth_user_email,
            
'userAvatar'                 => get_avatar_url$auth_user_email, array( 'size' => '48' ) ),
            
'storeCountry'               => wc_get_base_location()['country'],
            
'inAppPurchaseURLParams'     => WC_Admin_Addons::get_in_app_purchase_url_params(),
            
'installedProducts'          => $installed_products,
            
'wooUpdateManagerInstalled'  => WC_Woo_Update_Manager_Plugin::is_plugin_installed(),
            
'wooUpdateManagerActive'     => WC_Woo_Update_Manager_Plugin::is_plugin_active(),
            
'wooUpdateManagerInstallUrl' => WC_Woo_Update_Manager_Plugin::generate_install_url(),
            
'wooUpdateManagerPluginSlug' => WC_Woo_Update_Manager_Plugin::WOO_UPDATE_MANAGER_SLUG,
            
'wooUpdateCount'             => WC_Helper_Updater::get_updates_count_based_on_site_status(),
            
'woocomConnectNoticeType'    => $woo_connect_notice_type,
            
'dismissNoticeNonce'         => wp_create_nonce'dismiss_notice' ),
        );

        if ( 
WC_Helper::is_site_connected() ) {
            
$settings['wccomHelper']['subscription_expired_notice']  = PluginsHelper::get_expired_subscription_noticefalse );
            
$settings['wccomHelper']['subscription_expiring_notice'] = PluginsHelper::get_expiring_subscription_noticefalse );
            
$settings['wccomHelper']['subscription_missing_notice']  = PluginsHelper::get_missing_subscription_notice();
        } else {
            
$settings['wccomHelper']['disconnected_notice'] = PluginsHelper::get_wccom_disconnected_notice();
        }

        return 
$settings;
    }

    
/**
     * Generates the URL for connecting or disconnecting the store to/from WooCommerce.com.
     * Approach taken from existing helper code that isn't exposed.
     *
     * @return string
     */
    
public static function get_connection_url() {
        global 
$current_screen;

        
$connect_url_args = array(
            
'page'    => 'wc-addons',
            
'section' => 'helper',
        );

        
// No active connection.
        
if ( WC_Helper::is_site_connected() ) {
            
$connect_url_args['wc-helper-disconnect'] = 1;
            
$connect_url_args['wc-helper-nonce']      = wp_create_nonce'disconnect' );
        } else {
            
$connect_url_args['wc-helper-connect'] = 1;
            
$connect_url_args['wc-helper-nonce']   = wp_create_nonce'connect' );
        }

        if ( ! empty( 
$_GET['utm_source'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
$connect_url_args['utm_source'] = wc_cleanwp_unslash$_GET['utm_source'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
        
}

        if ( ! empty( 
$_GET['utm_campaign'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
$connect_url_args['utm_campaign'] = wc_cleanwp_unslash$_GET['utm_campaign'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
        
}

        return 
add_query_arg(
            
$connect_url_args,
            
admin_url'admin.php' )
        );
    }

    
/**
     * Registers the REST routes for the featured products endpoint.
     * This endpoint is used by the WooCommerce > Extensions > Discover
     * page.
     */
    
public static function register_rest_routes() {
        
register_rest_route(
            
'wc/v3',
            
'/marketplace/featured',
            array(
                
'methods'             => 'GET',
                
'callback'            => array( __CLASS__'get_featured' ),
                
'permission_callback' => array( __CLASS__'get_permission' ),
            )
        );
    }

    
/**
     * The Extensions page can only be accessed by users with the manage_woocommerce
     * capability. So the API mimics that behavior.
     */
    
public static function get_permission() {
        return 
current_user_can'manage_woocommerce' );
    }

    
/**
     * Fetch featured products from WooCommerce.com and serve them
     * as JSON.
     */
    
public static function get_featured() {
        
$featured WC_Admin_Addons::fetch_featured();

        if ( 
is_wp_error$featured ) ) {
            
wp_send_json_error( array( 'message' => $featured->get_error_message() ) );
        }

        
wp_send_json$featured );
    }
}

WC_Helper_Admin::load();