forked from woocommerce/woocommerce-gateway-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-gateway-stripe.php
263 lines (230 loc) · 9.5 KB
/
woocommerce-gateway-stripe.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
<?php
/**
* Plugin Name: WooCommerce Stripe Gateway
* Plugin URI: https://wordpress.org/plugins/woocommerce-gateway-stripe/
* Description: Take credit card payments on your store using Stripe.
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Version: 4.1.4
* Requires at least: 4.4
* Tested up to: 4.9
* WC requires at least: 2.6
* WC tested up to: 3.4
* Text Domain: woocommerce-gateway-stripe
* Domain Path: /languages/
*
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require_once( dirname( __FILE__ ) . '/woo-includes/woo-functions.php' );
/**
* WooCommerce fallback notice.
*
* @since 4.1.2
* @return string
*/
function woocommerce_stripe_missing_wc_notice() {
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>';
}
if ( ! wc_stripe_is_wc_active() ) {
add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' );
return;
}
if ( ! class_exists( 'WC_Stripe' ) ) :
/**
* Required minimums and constants
*/
define( 'WC_STRIPE_VERSION', '4.1.4' );
define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
class WC_Stripe {
/**
* @var Singleton The reference the *Singleton* instance of this class
*/
private static $instance;
/**
* @var Reference to logging class.
*/
private static $log;
/**
* Returns the *Singleton* instance of this class.
*
* @return Singleton The *Singleton* instance.
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Private clone method to prevent cloning of the instance of the
* *Singleton* instance.
*
* @return void
*/
private function __clone() {}
/**
* Private unserialize method to prevent unserializing of the *Singleton*
* instance.
*
* @return void
*/
private function __wakeup() {}
/**
* Protected constructor to prevent creating a new instance of the
* *Singleton* via the `new` operator from outside of this class.
*/
private function __construct() {
add_action( 'admin_init', array( $this, 'install' ) );
add_action( 'plugins_loaded', array( $this, 'init' ) );
}
/**
* Init the plugin after plugins_loaded so environment variables are set.
*
* @since 1.0.0
* @version 4.0.0
*/
public function init() {
if ( is_admin() ) {
require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-privacy.php' );
}
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' );
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' );
require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' );
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' );
require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' );
require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' );
if ( is_admin() ) {
require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' );
}
// REMOVE IN THE FUTURE.
require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' );
add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
if ( version_compare( WC_VERSION, '3.4', '<' ) ) {
add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
}
}
/**
* Updates the plugin version in db
*
* @since 3.1.0
* @version 4.0.0
*/
public function update_plugin_version() {
delete_option( 'wc_stripe_version' );
update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
}
/**
* Handles upgrade routines.
*
* @since 3.1.0
* @version 3.1.0
*/
public function install() {
if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
return;
}
if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
do_action( 'woocommerce_stripe_updated' );
if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
define( 'WC_STRIPE_INSTALLING', true );
}
$this->update_plugin_version();
}
}
/**
* Adds plugin action links.
*
* @since 1.0.0
* @version 4.0.0
*/
public function plugin_action_links( $links ) {
$plugin_links = array(
'<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
);
return array_merge( $plugin_links, $links );
}
/**
* Add the gateways to WooCommerce.
*
* @since 1.0.0
* @version 4.0.0
*/
public function add_gateways( $methods ) {
if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
$methods[] = 'WC_Stripe_Subs_Compat';
$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
} else {
$methods[] = 'WC_Gateway_Stripe';
$methods[] = 'WC_Gateway_Stripe_Sepa';
}
$methods[] = 'WC_Gateway_Stripe_Bancontact';
$methods[] = 'WC_Gateway_Stripe_Sofort';
$methods[] = 'WC_Gateway_Stripe_Giropay';
$methods[] = 'WC_Gateway_Stripe_Eps';
$methods[] = 'WC_Gateway_Stripe_Ideal';
$methods[] = 'WC_Gateway_Stripe_P24';
$methods[] = 'WC_Gateway_Stripe_Alipay';
$methods[] = 'WC_Gateway_Stripe_Multibanco';
return $methods;
}
/**
* Modifies the order of the gateways displayed in admin.
*
* @since 4.0.0
* @version 4.0.0
*/
public function filter_gateway_order_admin( $sections ) {
unset( $sections['stripe'] );
unset( $sections['stripe_bancontact'] );
unset( $sections['stripe_sofort'] );
unset( $sections['stripe_giropay'] );
unset( $sections['stripe_eps'] );
unset( $sections['stripe_ideal'] );
unset( $sections['stripe_p24'] );
unset( $sections['stripe_alipay'] );
unset( $sections['stripe_sepa'] );
unset( $sections['stripe_multibanco'] );
$sections['stripe'] = 'Stripe';
$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
$sections['stripe_sofort'] = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
$sections['stripe_giropay'] = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
$sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
$sections['stripe_ideal'] = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
$sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
$sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
$sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
return $sections;
}
}
WC_Stripe::get_instance();
endif;