-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-eu-vat-number.php
551 lines (499 loc) · 17.3 KB
/
woocommerce-eu-vat-number.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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
<?php
/**
* Plugin Name: WooCommerce EU VAT Number
* Requires Plugins: woocommerce
* Plugin URI: https://woocommerce.com/products/eu-vat-number/
* Description: The EU VAT Number extension lets you collect and validate EU VAT numbers during checkout to identify B2B transactions verses B2C. IP Addresses can also be validated to ensure they match the billing address. EU businesses with a valid VAT number can have their VAT removed prior to payment.
* Version: 2.9.10
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Text Domain: woocommerce-eu-vat-number
* Domain Path: /languages
* Requires at least: 6.5
* Tested up to: 6.7
* WC requires at least: 9.2
* WC tested up to: 9.4
* Requires PHP: 7.4
* PHP tested up to: 8.3
*
* Copyright: © 2024 WooCommerce
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*
* @package woocommerce-eu-vat-number
* Woo: 18592:d2720c4b4bb8d6908e530355b7a2d734
*/
// phpcs:disable WordPress.Files.FileName
define( 'WC_EU_VAT_VERSION', '2.9.10' ); // WRCS: DEFINED_VERSION.
define( 'WC_EU_VAT_FILE', __FILE__ );
define( 'WC_EU_ABSPATH', __DIR__ . '/' );
define( 'WC_EU_VAT_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
/**
* WC_EU_VAT_Number_Init class.
*/
class WC_EU_VAT_Number_Init {
/**
* Min version of WooCommerce supported.
*
* @var string
*/
const WC_MIN_VERSION = '8.7';
/**
* Constructor.
*/
public function __construct() {
add_action( 'plugins_loaded', array( $this, 'init' ) );
add_action( 'woocommerce_blocks_loaded', array( $this, 'wc_eu_vat_number_block_init' ) );
add_action( 'plugins_loaded', array( $this, 'localization' ), 0 );
// Subscribe to automated translations.
add_filter( 'woocommerce_translations_updates_for_' . basename( __FILE__, '.php' ), '__return_true' );
register_activation_hook( __FILE__, array( $this, 'install' ) );
}
/**
* Checks that WooCommerce is loaded before doing anything else.
*
* @return bool True if supported
*/
private function check_dependencies() {
$dependencies = array(
'wc_installed' => array(
'callback' => array( $this, 'is_woocommerce_active' ),
'notice_callback' => array( $this, 'woocommerce_inactive_notice' ),
),
'wc_minimum_version' => array(
'callback' => array( $this, 'is_woocommerce_version_supported' ),
'notice_callback' => array( $this, 'woocommerce_wrong_version_notice' ),
),
'soap_required' => array(
'callback' => array( $this, 'is_soap_supported' ),
'notice_callback' => array( $this, 'requires_soap_notice' ),
),
'wc_tax_enabled' => array(
'callback' => array( $this, 'is_taxes_enabled' ),
'notice_callback' => array( $this, 'woocommerce_tax_disabled_notice' ),
),
);
foreach ( $dependencies as $check ) {
if ( ! call_user_func( $check['callback'] ) ) {
add_action( 'admin_notices', $check['notice_callback'] );
return false;
}
}
return true;
}
/**
* Checks if the WooCommerce plugin is active.
* Note: Must be run after the "plugins_loaded" action fires.
*
* @since 1.0
* @return bool
*/
public function is_woocommerce_active() {
return class_exists( 'woocommerce' );
}
/**
* Checks if the current WooCommerce version is supported.
* Note: Must be run after the "plugins_loaded" action fires.
*
* @since 1.0
* @return bool
*/
public function is_woocommerce_version_supported() {
return version_compare(
get_option( 'woocommerce_db_version' ),
self::WC_MIN_VERSION,
'>='
);
}
/**
* Checks if the WooCommerce Blocks is active.
* Note: Must be run after the "plugins_loaded" action fires.
*
* @return bool
*/
public function is_woocommerce_blocks_active() {
return class_exists( 'Automattic\WooCommerce\Blocks\Package' );
}
/**
* Checks if WooCommerce taxes are enabled.
*
* @since 2.8.8
*
* @return bool
*/
public function is_taxes_enabled() {
return function_exists( 'wc_tax_enabled' ) && wc_tax_enabled();
}
/**
* Checks if the current WooCommerce Blocks version is supported.
* Note: Must be run after the "plugins_loaded" action fires.
*
* @return bool
*/
public function is_woocommerce_blocks_version_supported() {
return version_compare(
\Automattic\WooCommerce\Blocks\Package::get_version(),
'7.3.0',
'>='
);
}
/**
* Checks if the server supports SOAP.
*
* @since 2.3.7
* @return bool
*/
public function is_soap_supported() {
return class_exists( 'SoapClient' );
}
/**
* WC inactive notice.
*
* @since 1.0.0
*/
public function woocommerce_inactive_notice() {
if ( current_user_can( 'activate_plugins' ) ) {
/* translators: %1$s: Plugin page link start %2$s Link end */
echo '<div class="error"><p><strong>' . wp_kses_post( __( 'WooCommerce EU VAT Number is inactive.', 'woocommerce-eu-vat-number' ) . '</strong> ' . sprintf( __( 'The WooCommerce plugin must be active for EU VAT Number to work. %1$sPlease install and activate WooCommerce%2$s.', 'woocommerce-eu-vat-number' ), '<a href="' . esc_url( admin_url( 'plugins.php' ) ) . '">', '</a>' ) ) . '</p></div>';
}
}
/**
* Wrong version notice.
*
* @since 1.0.0
*/
public function woocommerce_wrong_version_notice() {
if ( current_user_can( 'activate_plugins' ) ) {
/* translators: %1$s: Minimum version %2$s: Plugin page link start %3$s Link end */
echo '<div class="error"><p><strong>' . wp_kses_post( __( 'WooCommerce EU VAT Number is inactive.', 'woocommerce-eu-vat-number' ) . '</strong> ' . sprintf( __( 'The WooCommerce plugin must be at least version %1$s for EU VAT Number to work. %2$sPlease upgrade WooCommerce%3$s.', 'woocommerce-eu-vat-number' ), self::WC_MIN_VERSION, '<a href="' . esc_url( admin_url( 'plugins.php' ) ) . '">', '</a>' ) ) . '</p></div>';
}
}
/**
* No SOAP support notice.
*
* @since 2.3.7
*/
public function requires_soap_notice() {
if ( current_user_can( 'activate_plugins' ) ) {
echo '<div class="error"><p><strong>' . esc_html__( 'WooCommerce EU VAT Number is inactive.', 'woocommerce-eu-vat-number' ) . '</strong> ' . esc_html__( 'Your server does not provide SOAP support which is required functionality for communicating with VIES. You will need to reach out to your web hosting provider to get information on how to enable this functionality on your server.', 'woocommerce-eu-vat-number' ) . '</p></div>';
}
}
/**
* Taxes disabled notice.
*
* @since 2.8.8
*/
public function woocommerce_tax_disabled_notice() {
if ( ! current_user_can( 'manage_woocommerce' ) ) {
return;
}
/*
* Recheck if the notice is needed.
*
* This is needed on the settings page as the options are updated after the
* `init` hook fires. This means that the notice can be shown on the settings
* page immediately after taxes are enabled and save is clicked.
*/
if ( $this->is_taxes_enabled() ) {
return;
}
/**
* Filters whether to show the tax disabled notice.
*
* This allows developers to prevent the taxes disabled notice from
* being shown. In most cases it is recommended the extension be
* deactivated if taxes are intentionally disabled.
*
* This hook is targeted at multisite set ups in which the extension is
* globally enabled but individual sites may or may not need taxes to
* be enabled.
*
* @since 2.8.8
*
* @param bool $show_notice Whether to show the notice.
*/
$show_notice = apply_filters( 'woocommerce_eu_vat_show_tax_disabled_notice', true );
if ( ! $show_notice ) {
return;
}
echo '<div class="error">';
echo '<p><strong>' . esc_html__( 'WooCommerce EU VAT Number is inactive.', 'woocommerce-eu-vat-number' ) . '</strong> ';
printf(
/* translators: %1$s: Settings link start %2$s: Link end */
esc_html__( 'The EU VAT Number extension functionality requires taxes be enabled on your store. To do so, go to %1$sWooCommerce > Settings%2$s, check the Enable tax rates and calculations checkbox, and click the Save changes button.', 'woocommerce-eu-vat-number' ),
'<a href="' . esc_url( admin_url( 'admin.php?page=wc-settings' ) ) . '">',
'</a>'
);
echo '</div>';
}
/**
* Init the plugin once WP is loaded.
*/
public function init() {
if ( $this->check_dependencies() ) {
if ( version_compare( get_option( 'woocommerce_eu_vat_version', 0 ), WC_EU_VAT_VERSION, '<' ) ) {
add_action( 'init', array( $this, 'install' ) );
}
include_once __DIR__ . '/includes/wc-eu-vat-functions.php';
include_once __DIR__ . '/includes/class-wc-eu-vat-privacy.php';
if ( ! class_exists( 'WC_EU_VAT_Number' ) ) {
include_once __DIR__ . '/includes/class-wc-eu-vat-number.php';
include_once __DIR__ . '/includes/class-wc-eu-vat-my-account.php';
}
if ( is_admin() ) {
include_once __DIR__ . '/includes/class-wc-eu-vat-admin.php';
include_once __DIR__ . '/includes/class-wc-eu-vat-reports.php';
}
$this->filter_woocpayments_compatibility();
add_action( 'before_woocommerce_init', array( $this, 'declare_woocommerce_feature_compatibility' ) );
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
add_filter( 'woocommerce_get_order_item_totals', 'wc_eu_vat_maybe_add_zero_tax_display', 10, 3 );
add_filter(
'__experimental_woocommerce_blocks_add_data_attributes_to_block',
function ( $allowed_blocks ) {
if ( $this->is_woocommerce_blocks_active() && $this->is_woocommerce_blocks_version_supported() ) {
$allowed_blocks[] = 'woocommerce/eu-vat-number';
}
return $allowed_blocks;
},
10,
1
);
}
}
/**
* Load translations.
*/
public function localization() {
/**
* Filters plugin locale.
*
* @since 2.1.11
*/
$locale = apply_filters( 'plugin_locale', get_locale(), 'woocommerce-eu-vat-number' );
$dir = trailingslashit( WP_LANG_DIR );
load_textdomain( 'woocommerce-eu-vat-number', $dir . 'woocommerce-eu-vat-number/woocommerce-eu-vat-number-' . $locale . '.mo' );
load_plugin_textdomain( 'woocommerce-eu-vat-number', false, dirname( plugin_basename( WC_EU_VAT_FILE ) ) . '/languages' );
}
/**
* Installer
*/
public function install() {
update_option( 'woocommerce_eu_vat_version', WC_EU_VAT_VERSION );
add_rewrite_endpoint( 'vat-number', EP_ROOT | EP_PAGES );
flush_rewrite_rules();
}
/**
* Add custom action links on the plugin screen.
*
* @param mixed $actions Plugin Actions Links.
* @return array
*/
public function plugin_action_links( $actions ) {
$custom_actions = array(
'settings' => sprintf( '<a href="%s">%s</a>', admin_url( 'admin.php?page=wc-settings&tab=tax' ), __( 'Settings', 'woocommerce-eu-vat-number' ) ),
);
return array_merge( $custom_actions, $actions );
}
/**
* Show row meta on the plugin screen.
*
* @param mixed $links Plugin Row Meta.
* @param mixed $file Plugin Base file.
* @return array
*/
public function plugin_row_meta( $links, $file ) {
if ( 'woocommerce-eu-vat-number/woocommerce-eu-vat-number.php' === $file ) {
$row_meta = array(
/**
* Filters the plugin docs URL.
*
* @since 2.1.8
*/
'docs' => '<a href="' . esc_url( apply_filters( 'wc_eu_vat_number_docs_url', 'https://docs.woocommerce.com/document/eu-vat-number/' ) ) . '" title="' . esc_attr( __( 'View Plugin Documentation', 'woocommerce-eu-vat-number' ) ) . '">' . __( 'Docs', 'woocommerce-eu-vat-number' ) . '</a>',
/**
* Filters the plugin changelog URL.
*
* @since 2.1.8
*/
'changelog' => '<a href="' . esc_url( apply_filters( 'wc_eu_vat_number_changelog', 'https://woocommerce.com/changelogs/woocommerce-eu-vat-number/changelog.txt' ) ) . '" title="' . esc_attr( __( 'View Plugin Changelog', 'woocommerce-eu-vat-number' ) ) . '">' . __( 'Changelog', 'woocommerce-eu-vat-number' ) . '</a>',
/**
* Filters the plugin support URL.
*
* @since 2.1.8
*/
'support' => '<a href="' . esc_url( apply_filters( 'wc_eu_vat_number_support_url', 'https://woocommerce.com/my-account/create-a-ticket?select=18592' ) ) . '" title="' . esc_attr( __( 'Support', 'woocommerce-eu-vat-number' ) ) . '">' . __( 'Support', 'woocommerce-eu-vat-number' ) . '</a>',
);
return array_merge( $links, $row_meta );
}
return (array) $links;
}
/**
* Remove incompatible express payment options from WooCommerce Payments.
*
* Neither the Apple Pay or Google Pay APIs support the collection of
* VAT numbers so store owners running a B2B store will disable these
* payment methods by default.
*
* WooPay is not compatible.
*
* @see https://woo.com/document/woopay-merchant-documentation/#incompatible-extensions
* @see https://github.com/woocommerce/woocommerce-eu-vat-number/issues/315#issuecomment-1888262947
*
* @since 2.9.2
*/
public function filter_woocpayments_compatibility() {
// No changes within the admin.
if ( is_admin() ) {
return;
}
// No changes if B2B is not enabled.
if ( 'no' === get_option( 'woocommerce_eu_vat_number_b2b', 'no' ) ) {
return;
}
// No changes if the store owner has deactivated this feature.
if ( 'no' === get_option( 'woocommerce_eu_vat_number_prevent_incompatible_payment_methods', 'no' ) ) {
return;
}
// Prevent incompatible payment methods from being used.
if ( function_exists( 'wcpay_init' ) ) {
add_filter(
'option_woocommerce_woocommerce_payments_settings',
/**
* Filter the WooCommerce Payments settings to disable incompatible payment methods.
*
* @param array $payment_options The WooCommerce Payments settings.
* @return array Modified WooCommerce Payments settings.
*/
function ( $payment_options ) {
$payment_options['payment_request'] = 'no';
$payment_options['platform_checkout'] = 'no';
return $payment_options;
}
);
}
// Compatibility for Stripe.
if ( function_exists( 'woocommerce_gateway_stripe' ) ) {
// Hide express payment button on the Checkout page.
add_filter(
'wc_stripe_hide_payment_request_on_product_page',
'__return_true',
999
);
// Hide express payment button on the Cart page.
add_filter(
'wc_stripe_show_payment_request_on_cart',
'__return_false',
999
);
// Hide express payment button on the Single product page.
add_filter(
'wc_stripe_show_payment_request_on_checkout',
'__return_false',
999
);
}
// Compatibility for Square.
if ( class_exists( 'WooCommerce_Square_Loader' ) ) {
add_filter(
'option_woocommerce_square_credit_card_settings',
/**
* Filter the Square settings to disable incompatible payment methods.
*
* @param array $options Square setting options.
* @return array Modified Square settings.
*/
function ( $option ) {
$option['enable_digital_wallets'] = 'no';
return $option;
},
999
);
}
// Compatibility for Braintree.
if ( class_exists( 'WC_PayPal_Braintree_Loader' ) ) {
// Hide express payment button on the Cart page.
add_filter(
'wc_braintree_paypal_cart_checkout_enabled',
'__return_false',
999
);
// Hide express payment button on the Single product page.
add_filter(
'wc_braintree_paypal_product_buy_now_enabled',
'__return_false',
999
);
}
}
/**
* Registers block type and registers with WC Blocks Integration Interface.
*/
public function wc_eu_vat_number_block_init() {
if ( $this->check_dependencies() && $this->is_woocommerce_blocks_active() && $this->is_woocommerce_blocks_version_supported() ) {
include_once __DIR__ . '/includes/class-wc-eu-vat-extend-store-endpoint.php';
include_once __DIR__ . '/includes/class-wc-eu-vat-blocks.php';
add_action(
'woocommerce_blocks_checkout_block_registration',
function( $integration_registry ) {
$integration_registry->register( new WC_EU_VAT_Blocks_Integration() );
}
);
if ( ! class_exists( 'WC_EU_VAT_Number' ) ) {
include_once __DIR__ . '/includes/class-wc-eu-vat-number.php';
include_once __DIR__ . '/includes/class-wc-eu-vat-my-account.php';
}
add_action(
'wp_enqueue_scripts',
function() {
WC_EU_VAT_Number::localize_wc_eu_vat_params( 'wc-blocks-eu-vat-scripts-frontend' );
}
);
register_block_type(
__DIR__ . '/block.json',
array(
'attributes' => array(
'title' => array(
'type' => 'string',
'default' => __( 'VAT Number', 'woocommerce-eu-vat-number' ),
),
'description' => array(
'type' => 'string',
'default' => '',
),
'showStepNumber' => array(
'type' => 'boolean',
'default' => true,
),
),
)
);
// Extend store API with EU VAT Number related data.
$extend = new WC_EU_VAT_Extend_Store_Endpoint();
$extend->init();
}
}
/**
* Declares compatibility with Woocommerce features.
*
* List of features:
* - custom_order_tables
* - product_block_editor
*
* @since 2.9.0 Rename function
*/
public function declare_woocommerce_feature_compatibility(): void {
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility(
'custom_order_tables',
__FILE__
);
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility(
'product_block_editor',
__FILE__
);
}
}
}
new WC_EU_VAT_Number_Init();