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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
<?php
declare( strict_types = 1 );
namespace Automattic\WooCommerce\Admin\Features\Blueprint;
use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCPaymentGateways; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsAccount; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsAdvanced; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsEmails; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsGeneral; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsTax; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsIntegrations; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsProducts; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsSiteVisibility; use Automattic\WooCommerce\Admin\Features\Blueprint\Exporters\ExportWCSettingsShipping; use Automattic\WooCommerce\Admin\PageController; use Automattic\WooCommerce\Blueprint\Exporters\HasAlias; use Automattic\WooCommerce\Blueprint\Exporters\StepExporter; use Automattic\WooCommerce\Blueprint\UseWPFunctions;
/** * Class Init * * This class initializes the Blueprint feature for WooCommerce. */ class Init { use UseWPFunctions;
const INSTALLED_WP_ORG_PLUGINS_TRANSIENT = 'woocommerce_blueprint_installed_wp_org_plugins'; const INSTALLED_WP_ORG_THEMES_TRANSIENT = 'woocommerce_blueprint_installed_wp_org_themes'; /** * Array of initialized exporters. * * @var StepExporter[] */ private array $initialized_exporters = array();
/** * Init constructor. */ public function __construct() { add_action( 'rest_api_init', array( $this, 'init_rest_api' ) ); add_filter( 'woocommerce_admin_shared_settings', array( $this, 'add_js_vars' ) );
add_filter( 'wooblueprint_export_landingpage', function () { return '/wp-admin/admin.php?page=wc-admin'; } );
add_filter( 'wooblueprint_exporters', array( $this, 'add_woo_exporters' ) );
add_action( 'upgrader_process_complete', array( $this, 'clear_installed_wp_org_plugins_transient' ), 10, 2 ); add_action( 'deleted_plugin', array( $this, 'clear_installed_wp_org_plugins_transient' ), 10, 2 );
add_action( 'upgrader_process_complete', array( $this, 'clear_installed_wp_org_themes_transient' ), 10, 2 ); add_action( 'switch_theme', array( $this, 'clear_installed_wp_org_themes_transient' ) ); add_action( 'deleted_theme', array( $this, 'clear_installed_wp_org_themes_transient' ) ); }
/** * Register REST API routes. * * @return void */ public function init_rest_api() { ( new RestApi() )->register_routes(); }
/** * Return Woo Exporter classnames. * * @return StepExporter[] */ public function get_woo_exporters() { $classnames = array( ExportWCSettingsGeneral::class, ExportWCSettingsProducts::class, ExportWCSettingsTax::class, ExportWCSettingsShipping::class, ExportWCPaymentGateways::class, ExportWCSettingsAccount::class, ExportWCSettingsEmails::class, ExportWCSettingsIntegrations::class, ExportWCSettingsSiteVisibility::class, ExportWCSettingsAdvanced::class, );
$exporters = array(); foreach ( $classnames as $classname ) { $exporters[ $classname ] = $this->initialized_exporters[ $classname ] ?? new $classname(); $this->initialized_exporters[ $classname ] = $exporters[ $classname ]; }
return array_values( $exporters ); }
/** * Add Woo Specific Exporters. * * @param StepExporter[] $exporters Array of step exporters. * * @return StepExporter[] */ public function add_woo_exporters( array $exporters ) { return array_merge( $exporters, $this->get_woo_exporters() ); }
/** * Get plugins for export group. * * @return array|array[] $plugins */ public function get_plugins_for_export_group() { $plugins = $this->get_installed_wp_org_plugins();
// Get active plugins from WordPress options and transform plugins array into export format. $active_plugins = $this->wp_get_option( 'active_plugins', array() ); $plugins = array_map( function ( $key, $plugin ) use ( $active_plugins ) { return array( 'id' => $key, 'label' => $plugin['Name'], 'checked' => in_array( $key, $active_plugins, true ), ); }, array_keys( $plugins ), $plugins );
usort( $plugins, function ( $a, $b ) { return $b['checked'] <=> $a['checked']; } ); return $plugins; }
/** * Clear the installed WordPress.org plugins transient. */ public function clear_installed_wp_org_plugins_transient() { delete_transient( self::INSTALLED_WP_ORG_PLUGINS_TRANSIENT ); }
/** * Clear the installed WordPress.org themes transient. */ public function clear_installed_wp_org_themes_transient() { delete_transient( self::INSTALLED_WP_ORG_THEMES_TRANSIENT ); }
/** * Get themes for export group. * * @return array $themes */ public function get_themes_for_export_group() { $themes = $this->get_installed_wp_org_themes(); $active_theme = $this->wp_get_theme();
$themes = array_map( function ( $theme ) use ( $active_theme ) { return array( 'id' => $theme->get_stylesheet(), 'label' => $theme->get( 'Name' ), 'checked' => $theme->get_stylesheet() === $active_theme->get_stylesheet(), ); }, $themes );
usort( $themes, function ( $a, $b ) { return $b['checked'] <=> $a['checked']; } );
return array_values( $themes ); }
/** * Return step groups for JS. * * This is used to populate exportable items on the blueprint settings page. * * @return array */ public function get_step_groups_for_js() { return array( array( 'id' => 'settings', 'description' => __( 'Includes all the items featured in WooCommerce | Settings.', 'woocommerce' ), 'label' => __( 'WooCommerce Settings', 'woocommerce' ), 'icon' => 'settings', 'items' => array_map( function ( $exporter ) { return array( 'id' => $exporter instanceof HasAlias ? $exporter->get_alias() : $exporter->get_step_name(), 'label' => $exporter->get_label(), 'description' => $exporter->get_description(), 'checked' => true, ); }, $this->get_woo_exporters() ), ), array( 'id' => 'plugins', 'description' => __( 'Includes all the installed plugins.', 'woocommerce' ), 'label' => __( 'Plugins', 'woocommerce' ), 'icon' => 'plugins', 'items' => $this->get_plugins_for_export_group(), ), array( 'id' => 'themes', 'description' => __( 'Includes all the installed themes.', 'woocommerce' ), 'label' => __( 'Themes', 'woocommerce' ), 'icon' => 'layout', 'items' => $this->get_themes_for_export_group(), ), ); }
/** * Add shared JS vars. * * @param array $settings shared settings. * * @return mixed */ public function add_js_vars( $settings ) { if ( ! is_admin() ) { return $settings; }
if ( 'woocommerce_page_wc-settings-advanced-blueprint' === PageController::get_instance()->get_current_screen_id() ) { // Used on the settings page. // wcSettings.admin.blueprint_step_groups. $settings['blueprint_step_groups'] = $this->get_step_groups_for_js(); $settings['blueprint_max_step_size_bytes'] = RestApi::MAX_FILE_SIZE; }
return $settings; }
/** * Get all installed WordPress.org plugins. * * @return array */ private function get_installed_wp_org_plugins() { // Try to get cached plugin list. $wp_org_plugins = get_transient( self::INSTALLED_WP_ORG_PLUGINS_TRANSIENT ); if ( is_array( $wp_org_plugins ) ) { return $wp_org_plugins; }
// Get all installed plugins. $all_plugins = $this->wp_get_plugins(); $plugin_slugs = array();
// Build a map of plugin file => slug. foreach ( $all_plugins as $key => $plugin ) { $slug = dirname( $key ); /** * Apply the WP Core "wp_plugin_dependencies_slug" filter to get the correct plugin slug. */ $slug = apply_filters( 'wp_plugin_dependencies_slug', $slug ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingSinceComment
$plugin_slugs[] = $slug; $all_plugins[ $key ]['slug'] = $slug; }
$api_response = $this->wp_plugins_api( 'plugin_information', array( 'fields' => array( 'short_description' => false, 'sections' => false, 'description' => false, 'tested' => false, 'requires' => false, 'rating' => false, 'ratings' => false, 'downloaded' => false, 'downloadlink' => false, 'last_updated' => false, 'added' => false, 'tags' => false, 'compatibility' => false, 'homepage' => false, 'versions' => false, 'donate_link' => false, 'reviews' => false, 'banners' => false, 'icons' => false, 'active_installs' => false, ), 'slugs' => $plugin_slugs, ) );
// If API fails, return all plugins. if ( is_wp_error( $api_response ) ) { return $all_plugins; }
// Filter plugins: only keep those with a valid API response (no 'error' for their slug). $wp_org_plugins = array_filter( $all_plugins, function ( $plugin ) use ( $api_response ) { $slug = $plugin['slug']; return isset( $api_response->{$slug} ) && ! isset( $api_response->{$slug}['error'] ); } );
set_transient( self::INSTALLED_WP_ORG_PLUGINS_TRANSIENT, $wp_org_plugins ); return $wp_org_plugins; }
/** * Get all installed WordPress.org themes. * * @return array */ private function get_installed_wp_org_themes() { // Try to get cached theme list. $wp_org_themes = get_transient( self::INSTALLED_WP_ORG_THEMES_TRANSIENT ); if ( is_array( $wp_org_themes ) ) { return $wp_org_themes; }
// Get all installed themes. $all_themes = $this->wp_get_themes(); $theme_slugs = array();
// Build an array of installed theme slugs. foreach ( $all_themes as $key => $theme ) { if ( is_string( $key ) ) { $theme_slugs[] = strtolower( $key ); } }
$api_response = $this->wp_themes_api( 'theme_information', array( 'fields' => array( 'downloadlink' => true, 'sections' => false, 'description' => false, 'rating' => false, 'ratings' => false, 'downloaded' => false, 'last_updated' => false, 'tags' => false, 'homepage' => false, 'screenshots' => false, 'screenshot_url' => false, 'parent' => false, 'versions' => false, 'extended_author' => false, ), 'slugs' => $theme_slugs, ) );
// If the API fails, return all installed themes. if ( is_wp_error( $api_response ) ) { return $all_themes; }
$wp_org_themes = array_filter( $all_themes, function ( $theme ) use ( $api_response ) { $slug = $theme->get_stylesheet(); return isset( $api_response->{$slug}['download_link'] ); } );
set_transient( self::INSTALLED_WP_ORG_THEMES_TRANSIENT, $wp_org_themes ); return $wp_org_themes; } }
|