1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Plugin Name: WooCommerce Stripe Gateway |
4
|
|
|
* Plugin URI: https://wordpress.org/plugins/woocommerce-gateway-stripe/ |
5
|
|
|
* Description: Take credit card payments on your store using Stripe. |
6
|
|
|
* Author: WooCommerce |
7
|
|
|
* Author URI: https://woocommerce.com/ |
8
|
|
|
* Version: 4.1.6 |
9
|
|
|
* Requires at least: 4.4 |
10
|
|
|
* Tested up to: 4.9 |
11
|
|
|
* WC requires at least: 2.6 |
12
|
|
|
* WC tested up to: 3.4 |
13
|
|
|
* Text Domain: woocommerce-gateway-stripe |
14
|
|
|
* Domain Path: /languages/ |
15
|
|
|
* |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
if ( ! defined( 'ABSPATH' ) ) { |
19
|
|
|
exit; |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* WooCommerce fallback notice. |
24
|
|
|
* |
25
|
|
|
* @since 4.1.2 |
26
|
|
|
* @return string |
27
|
|
|
*/ |
28
|
|
|
function woocommerce_stripe_missing_wc_notice() { |
29
|
|
|
/* translators: 1. URL link. */ |
30
|
|
|
echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>'; |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
add_action( 'plugins_loaded', 'woocommerce_gateway_stripe_init' ); |
34
|
|
|
|
35
|
|
|
function woocommerce_gateway_stripe_init() { |
36
|
|
|
load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' ); |
37
|
|
|
|
38
|
|
|
if ( ! class_exists( 'WooCommerce' ) ) { |
39
|
|
|
add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' ); |
40
|
|
|
return; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
if ( ! class_exists( 'WC_Stripe' ) ) : |
44
|
|
|
/** |
45
|
|
|
* Required minimums and constants |
46
|
|
|
*/ |
47
|
|
|
define( 'WC_STRIPE_VERSION', '4.1.6' ); |
48
|
|
|
define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); |
49
|
|
|
define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); |
50
|
|
|
define( 'WC_STRIPE_MAIN_FILE', __FILE__ ); |
51
|
|
|
define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); |
52
|
|
|
define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
53
|
|
|
|
54
|
|
|
class WC_Stripe { |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* @var Singleton The reference the *Singleton* instance of this class |
58
|
|
|
*/ |
59
|
|
|
private static $instance; |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* @var Reference to logging class. |
63
|
|
|
*/ |
64
|
|
|
private static $log; |
|
|
|
|
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* Returns the *Singleton* instance of this class. |
68
|
|
|
* |
69
|
|
|
* @return Singleton The *Singleton* instance. |
70
|
|
|
*/ |
71
|
|
|
public static function get_instance() { |
72
|
|
|
if ( null === self::$instance ) { |
73
|
|
|
self::$instance = new self(); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
return self::$instance; |
|
|
|
|
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* Private clone method to prevent cloning of the instance of the |
80
|
|
|
* *Singleton* instance. |
81
|
|
|
* |
82
|
|
|
* @return void |
83
|
|
|
*/ |
84
|
|
|
private function __clone() {} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* Private unserialize method to prevent unserializing of the *Singleton* |
88
|
|
|
* instance. |
89
|
|
|
* |
90
|
|
|
* @return void |
91
|
|
|
*/ |
92
|
|
|
private function __wakeup() {} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* Protected constructor to prevent creating a new instance of the |
96
|
|
|
* *Singleton* via the `new` operator from outside of this class. |
97
|
|
|
*/ |
98
|
|
|
private function __construct() { |
99
|
|
|
add_action( 'admin_init', array( $this, 'install' ) ); |
100
|
|
|
$this->init(); |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Init the plugin after plugins_loaded so environment variables are set. |
105
|
|
|
* |
106
|
|
|
* @since 1.0.0 |
107
|
|
|
* @version 4.0.0 |
108
|
|
|
*/ |
109
|
|
|
public function init() { |
110
|
|
|
if ( is_admin() ) { |
111
|
|
|
require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php' ); |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' ); |
115
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' ); |
116
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' ); |
117
|
|
|
include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' ); |
118
|
|
|
require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' ); |
119
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' ); |
120
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' ); |
121
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' ); |
122
|
|
|
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' ); |
123
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' ); |
124
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' ); |
125
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' ); |
126
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' ); |
127
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' ); |
128
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' ); |
129
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' ); |
130
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' ); |
131
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' ); |
132
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' ); |
133
|
|
|
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' ); |
134
|
|
|
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' ); |
135
|
|
|
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' ); |
136
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' ); |
137
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' ); |
138
|
|
|
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' ); |
139
|
|
|
|
140
|
|
|
if ( is_admin() ) { |
141
|
|
|
require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' ); |
142
|
|
|
} |
143
|
|
|
|
144
|
|
|
// REMOVE IN THE FUTURE. |
145
|
|
|
require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' ); |
146
|
|
|
|
147
|
|
|
add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) ); |
148
|
|
|
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) ); |
149
|
|
|
|
150
|
|
|
if ( version_compare( WC_VERSION, '3.4', '<' ) ) { |
151
|
|
|
add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) ); |
152
|
|
|
} |
153
|
|
|
} |
154
|
|
|
|
155
|
|
|
/** |
156
|
|
|
* Updates the plugin version in db |
157
|
|
|
* |
158
|
|
|
* @since 3.1.0 |
159
|
|
|
* @version 4.0.0 |
160
|
|
|
*/ |
161
|
|
|
public function update_plugin_version() { |
162
|
|
|
delete_option( 'wc_stripe_version' ); |
163
|
|
|
update_option( 'wc_stripe_version', WC_STRIPE_VERSION ); |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
/** |
167
|
|
|
* Handles upgrade routines. |
168
|
|
|
* |
169
|
|
|
* @since 3.1.0 |
170
|
|
|
* @version 3.1.0 |
171
|
|
|
*/ |
172
|
|
|
public function install() { |
173
|
|
|
if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
174
|
|
|
return; |
175
|
|
|
} |
176
|
|
|
|
177
|
|
|
if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) { |
178
|
|
|
do_action( 'woocommerce_stripe_updated' ); |
179
|
|
|
|
180
|
|
|
if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) { |
181
|
|
|
define( 'WC_STRIPE_INSTALLING', true ); |
182
|
|
|
} |
183
|
|
|
|
184
|
|
|
$this->update_plugin_version(); |
185
|
|
|
} |
186
|
|
|
} |
187
|
|
|
|
188
|
|
|
/** |
189
|
|
|
* Adds plugin action links. |
190
|
|
|
* |
191
|
|
|
* @since 1.0.0 |
192
|
|
|
* @version 4.0.0 |
193
|
|
|
*/ |
194
|
|
|
public function plugin_action_links( $links ) { |
195
|
|
|
$plugin_links = array( |
196
|
|
|
'<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>', |
197
|
|
|
'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>', |
198
|
|
|
'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>', |
199
|
|
|
); |
200
|
|
|
return array_merge( $plugin_links, $links ); |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* Add the gateways to WooCommerce. |
205
|
|
|
* |
206
|
|
|
* @since 1.0.0 |
207
|
|
|
* @version 4.0.0 |
208
|
|
|
*/ |
209
|
|
|
public function add_gateways( $methods ) { |
210
|
|
|
if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) { |
211
|
|
|
$methods[] = 'WC_Stripe_Subs_Compat'; |
212
|
|
|
$methods[] = 'WC_Stripe_Sepa_Subs_Compat'; |
213
|
|
|
} else { |
214
|
|
|
$methods[] = 'WC_Gateway_Stripe'; |
215
|
|
|
$methods[] = 'WC_Gateway_Stripe_Sepa'; |
216
|
|
|
} |
217
|
|
|
|
218
|
|
|
$methods[] = 'WC_Gateway_Stripe_Bancontact'; |
219
|
|
|
$methods[] = 'WC_Gateway_Stripe_Sofort'; |
220
|
|
|
$methods[] = 'WC_Gateway_Stripe_Giropay'; |
221
|
|
|
$methods[] = 'WC_Gateway_Stripe_Eps'; |
222
|
|
|
$methods[] = 'WC_Gateway_Stripe_Ideal'; |
223
|
|
|
$methods[] = 'WC_Gateway_Stripe_P24'; |
224
|
|
|
$methods[] = 'WC_Gateway_Stripe_Alipay'; |
225
|
|
|
$methods[] = 'WC_Gateway_Stripe_Multibanco'; |
226
|
|
|
|
227
|
|
|
return $methods; |
228
|
|
|
} |
229
|
|
|
|
230
|
|
|
/** |
231
|
|
|
* Modifies the order of the gateways displayed in admin. |
232
|
|
|
* |
233
|
|
|
* @since 4.0.0 |
234
|
|
|
* @version 4.0.0 |
235
|
|
|
*/ |
236
|
|
|
public function filter_gateway_order_admin( $sections ) { |
237
|
|
|
unset( $sections['stripe'] ); |
238
|
|
|
unset( $sections['stripe_bancontact'] ); |
239
|
|
|
unset( $sections['stripe_sofort'] ); |
240
|
|
|
unset( $sections['stripe_giropay'] ); |
241
|
|
|
unset( $sections['stripe_eps'] ); |
242
|
|
|
unset( $sections['stripe_ideal'] ); |
243
|
|
|
unset( $sections['stripe_p24'] ); |
244
|
|
|
unset( $sections['stripe_alipay'] ); |
245
|
|
|
unset( $sections['stripe_sepa'] ); |
246
|
|
|
unset( $sections['stripe_multibanco'] ); |
247
|
|
|
|
248
|
|
|
$sections['stripe'] = 'Stripe'; |
249
|
|
|
$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' ); |
250
|
|
|
$sections['stripe_sofort'] = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
251
|
|
|
$sections['stripe_giropay'] = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
252
|
|
|
$sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
253
|
|
|
$sections['stripe_ideal'] = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' ); |
254
|
|
|
$sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
255
|
|
|
$sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' ); |
256
|
|
|
$sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
257
|
|
|
$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' ); |
258
|
|
|
|
259
|
|
|
return $sections; |
260
|
|
|
} |
261
|
|
|
} |
262
|
|
|
|
263
|
|
|
WC_Stripe::get_instance(); |
264
|
|
|
endif; |
265
|
|
|
} |
266
|
|
|
|
This check marks private properties in classes that are never used. Those properties can be removed.