-
Notifications
You must be signed in to change notification settings - Fork 0
/
woa.php
228 lines (200 loc) · 6.75 KB
/
woa.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
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
<?php
/**
* WPCOMSH functions file.
*
* @package wpcomsh
*/
// phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
/**
* Clear cache after other post process actions are complete.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_process_job_cache_flush( $args, $assoc_args ) {
WP_CLI::runcommand(
'cache flush',
array(
'launch' => false,
'exit_error' => false,
)
);
}
add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 );
add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 );
add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_process_job_cache_flush', 99, 2 );
/**
* Clear WooCommerce plugin cache post clone.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_clone_woocommerce( $args, $assoc_args ) {
$plugins = array(
'woocommerce-payments' => function () {
$account = \WC_Payments::get_account_service();
$account->clear_cache();
},
);
foreach ( $plugins as $plugin => $callback ) {
$result = WP_CLI::runcommand(
sprintf( '--skip-plugins --skip-themes plugin is-active %s', $plugin ),
array(
'launch' => false,
'return' => 'all',
'exit_error' => false,
)
);
if ( 0 !== $result->return_code ) {
WP_CLI::log( sprintf( 'Skipping inactive plugin: %s', $plugin ) );
continue;
}
$callback();
WP_CLI::log( sprintf( 'Callback executed for %s', $plugin ) );
}
}
add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_clone_woocommerce', 10, 2 );
/**
* Convert `safecss` WPCOM-specific post type to `custom_css`.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_transfer_update_safecss_to_custom_css( $args, $assoc_args ) {
$safecss_posts = get_posts(
array(
'numberposts' => 1,
'post_type' => 'safecss',
)
);
foreach ( $safecss_posts as $safecss_post ) {
$safecss_post_id = $safecss_post->ID;
wp_update_post(
(object) array(
'ID' => $safecss_post_id,
'post_type' => 'custom_css',
)
);
WP_CLI::runcommand(
"theme mod set custom_css_post_id {$safecss_post_id}",
array(
'launch' => false,
'exit_error' => false,
)
);
}
WP_CLI::success( 'safecss posts updated to custom_css' );
}
add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 );
add_action( 'wpcomsh_woa_post_reset', 'wpcomsh_woa_post_transfer_update_safecss_to_custom_css', 10, 2 );
/**
* Debug and error logging for the post-transfer action to enable HPOS.
*
* @param string $message Message to log.
*/
function wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( $message ) {
$message = sprintf( 'maybe_enable_woocommerce_hpos: %s', $message );
// The error_log call can be uncommented for debugging.
// error_log( $message );
WPCOMSH_Log::unsafe_direct_log( $message );
}
/**
* Enable HPOS for WooCommerce sites that don't already have it enabled.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos( $args, $assoc_args ) {
// This flag is only set for sites with ECOMMERCE_MANAGED_PLUGINS. Sites without this feature are skipped.
$enable_woocommerce_hpos = WP_CLI\Utils\get_flag_value( $assoc_args, 'enable_woocommerce_hpos', false );
if ( ! $enable_woocommerce_hpos ) {
return;
}
// Verify WooCommerce is installed and active.
$woocommerce_is_active = is_plugin_active( 'woocommerce/woocommerce.php' );
if ( false === $woocommerce_is_active ) {
wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'WooCommerce not active' );
return;
}
// Verify HPOS isn't already enabled
$option_value = get_option( 'woocommerce_custom_orders_table_enabled', false );
if ( 'yes' === $option_value ) {
wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'HPOS is already enabled' );
return;
}
// Enable HPOS
$result = WP_CLI::runcommand(
'wc hpos enable',
array(
'return' => 'all',
'launch' => false,
'exit_error' => false,
)
);
if ( 0 !== $result->return_code ) {
wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( sprintf( 'Error enabling HPOS: %s', $result->stderr ) );
return;
}
wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos_log( 'Successfully enabled HPOS' );
}
add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_maybe_enable_woocommerce_hpos', 10, 2 );
/**
* Woo Express: Free Trial - deactivate simple site activated plugins.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins( $args, $assoc_args ) {
$deactivate_plugins = WP_CLI\Utils\get_flag_value( $assoc_args, 'woo-express-trial-deactivate-plugins', false );
if ( ! $deactivate_plugins ) {
return;
}
WP_CLI::runcommand(
'--skip-plugins --skip-themes plugin deactivate crowdsignal-forms polldaddy',
array(
'launch' => false,
'exit_error' => false,
)
);
WP_CLI::success( 'Woo Express plugins deactivated' );
}
add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_woo_express_trial_deactivate_plugins', 10, 2 );
/**
* Sets the environment type for the site.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_clone_set_staging_environment_type( $args, $assoc_args ) {
$set_staging_environment = WP_CLI\Utils\get_flag_value( $assoc_args, 'set-staging-environment-type', false );
if ( ! $set_staging_environment ) {
return;
}
WP_CLI::runcommand(
'config set WP_ENVIRONMENT_TYPE staging --type=constant',
array(
'launch' => false,
'exit_error' => false,
)
);
WP_CLI::success( 'Staging environment set' );
}
add_action( 'wpcomsh_woa_post_clone', 'wpcomsh_woa_post_clone_set_staging_environment_type', 10, 2 );
/**
* Install marketplace software after a site transfer.
*
* @param array $args Arguments.
* @param array $assoc_args Associated arguments.
*/
function wpcomsh_woa_post_transfer_install_marketplace_software( $args, $assoc_args ) {
$install_marketplace_software = WP_CLI\Utils\get_flag_value( $assoc_args, 'install-marketplace-software', false );
if ( ! $install_marketplace_software ) {
return;
}
$result = ( new Marketplace_Software_Manager() )->install_marketplace_software();
if ( is_wp_error( $result ) ) {
WP_CLI::error( $result->get_error_message() );
WPCOMSH_Log::unsafe_direct_log( $result->get_error_message() );
}
}
add_action( 'wpcomsh_woa_post_transfer', 'wpcomsh_woa_post_transfer_install_marketplace_software', 10, 2 );