1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Plugin Name: Pagantis |
4
|
|
|
* Plugin URI: http://www.pagantis.com/ |
5
|
|
|
* Description: Financiar con Pagantis |
6
|
|
|
* Version: 8.0.0 |
7
|
|
|
* Author: Pagantis |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
//namespace Gateways; |
11
|
|
|
|
12
|
|
|
|
13
|
|
|
if (!defined('ABSPATH')) { |
14
|
|
|
exit; |
15
|
|
|
} |
16
|
|
|
|
17
|
|
|
class WcPagantis |
18
|
|
|
{ |
19
|
|
|
const GIT_HUB_URL = 'https://github.com/pagantis/woocommerce'; |
20
|
|
|
const PAGANTIS_DOC_URL = 'https://developer.pagantis.com'; |
21
|
|
|
const SUPPORT_EML = 'mailto:[email protected]?Subject=woocommerce_plugin'; |
22
|
|
|
/** Concurrency tablename */ |
23
|
|
|
const LOGS_TABLE = 'pagantis_logs'; |
24
|
|
|
/** Config tablename */ |
25
|
|
|
const CONFIG_TABLE = 'pagantis_config'; |
26
|
|
|
|
27
|
|
|
public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
28
|
|
|
'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
29
|
|
|
'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
30
|
|
|
'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
31
|
|
|
|
32
|
|
|
'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
33
|
|
|
'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
34
|
|
|
'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
35
|
|
|
'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
36
|
|
|
'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
37
|
|
|
'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
38
|
|
|
'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
39
|
|
|
'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
40
|
|
|
'PAGANTIS_URL_OK'=>'', |
41
|
|
|
'PAGANTIS_URL_KO'=>'', |
42
|
|
|
'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
43
|
|
|
); |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* WC_Pagantis constructor. |
47
|
|
|
*/ |
48
|
|
|
public function __construct() |
49
|
|
|
{ |
50
|
|
|
require_once(plugin_dir_path(__FILE__).'/vendor/autoload.php'); |
|
|
|
|
51
|
|
|
|
52
|
|
|
$this->template_path = plugin_dir_path(__FILE__).'/templates/'; |
|
|
|
|
53
|
|
|
|
54
|
|
|
$this->pagantisActivation(); |
55
|
|
|
|
56
|
|
|
load_plugin_textdomain('pagantis', false, basename(dirname(__FILE__)).'/languages'); |
|
|
|
|
57
|
|
|
add_filter('woocommerce_payment_gateways', array($this, 'addPagantisGateway')); |
|
|
|
|
58
|
|
|
add_filter('woocommerce_available_payment_gateways', array($this, 'pagantisFilterGateways'), 9999); |
59
|
|
|
add_filter('plugin_row_meta', array($this, 'pagantisRowMeta'), 10, 2); |
60
|
|
|
add_filter('plugin_action_links_'.plugin_basename(__FILE__), array($this, 'pagantisActionLinks')); |
|
|
|
|
61
|
|
|
add_action('woocommerce_after_add_to_cart_form', array($this, 'pagantisAddProductSimulator')); |
|
|
|
|
62
|
|
|
add_action('wp_enqueue_scripts', 'add_widget_js'); |
63
|
|
|
add_action('rest_api_init', array($this, 'pagantisRegisterEndpoint')); //Endpoint |
64
|
|
|
add_filter('load_textdomain_mofile', array($this, 'loadPagantisTranslation'), 10, 2); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/* |
68
|
|
|
* Replace 'textdomain' with your plugin's textdomain. e.g. 'woocommerce'. |
69
|
|
|
* File to be named, for example, yourtranslationfile-en_GB.mo |
70
|
|
|
* File to be placed, for example, wp-content/lanaguages/textdomain/yourtranslationfile-en_GB.mo |
71
|
|
|
*/ |
72
|
|
|
public function loadPagantisTranslation($mofile, $domain) |
73
|
|
|
{ |
74
|
|
|
if ('pagantis' === $domain) { |
75
|
|
|
$mofile = WP_LANG_DIR . '/../plugins/pagantis/languages/pagantis-' . get_locale() . '.mo'; |
|
|
|
|
76
|
|
|
} |
77
|
|
|
return $mofile; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Sql table |
82
|
|
|
*/ |
83
|
|
|
public function pagantisActivation() |
84
|
|
|
{ |
85
|
|
|
global $wpdb; |
86
|
|
|
$tableName = $wpdb->prefix.self::CONFIG_TABLE; |
87
|
|
|
|
88
|
|
|
//Check if table exists |
89
|
|
|
$tableExists = $wpdb->get_var("SHOW TABLES LIKE '$tableName'") != $tableName; |
90
|
|
|
if ($tableExists) { |
91
|
|
|
$charset_collate = $wpdb->get_charset_collate(); |
92
|
|
|
$sql = "CREATE TABLE IF NOT EXISTS $tableName ( |
93
|
|
|
id int NOT NULL AUTO_INCREMENT, |
94
|
|
|
config varchar(60) NOT NULL, |
95
|
|
|
value varchar(100) NOT NULL, |
96
|
|
|
UNIQUE KEY id(id)) $charset_collate"; |
97
|
|
|
|
98
|
|
|
require_once(ABSPATH.'wp-admin/includes/upgrade.php'); |
|
|
|
|
99
|
|
|
dbDelta($sql); |
|
|
|
|
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
$dbConfigs = $wpdb->get_results("select * from $tableName", ARRAY_A); |
|
|
|
|
103
|
|
|
|
104
|
|
|
// Convert a multimple dimension array for SQL insert statements into a simple key/value |
105
|
|
|
$simpleDbConfigs = array(); |
106
|
|
|
foreach ($dbConfigs as $config) { |
107
|
|
|
$simpleDbConfigs[$config['config']] = $config['value']; |
108
|
|
|
} |
109
|
|
|
$newConfigs = array_diff_key($this->defaultConfigs, $simpleDbConfigs); |
110
|
|
|
if (!empty($newConfigs)) { |
111
|
|
|
foreach ($newConfigs as $key => $value) { |
112
|
|
|
$wpdb->insert($tableName, array('config' => $key, 'value' => $value), array('%s', '%s')); |
113
|
|
|
} |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
foreach (array_merge($this->defaultConfigs, $simpleDbConfigs) as $key => $value) { |
117
|
|
|
putenv($key . '=' . $value); |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
//Current plugin config: pagantis_public_key => New field --- public_key => Old field |
121
|
|
|
$settings = get_option('woocommerce_pagantis_settings'); |
|
|
|
|
122
|
|
|
|
123
|
|
|
if (!isset($settings['pagantis_public_key']) && $settings['public_key']) { |
124
|
|
|
$settings['pagantis_public_key'] = $settings['public_key']; |
125
|
|
|
unset($settings['public_key']); |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
if (!isset($settings['pagantis_private_key']) && $settings['secret_key']) { |
129
|
|
|
$settings['pagantis_private_key'] = $settings['secret_key']; |
130
|
|
|
unset($settings['secret_key']); |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
update_option('woocommerce_pagantis_settings', $settings); |
|
|
|
|
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* Product simulator |
138
|
|
|
*/ |
139
|
|
|
public function pagantisAddProductSimulator() |
140
|
|
|
{ |
141
|
|
|
global $product; |
142
|
|
|
|
143
|
|
|
$cfg = get_option('woocommerce_pagantis_settings'); |
|
|
|
|
144
|
|
|
if ($cfg['enabled'] !== 'yes' || $cfg['pagantis_public_key'] == '' || $cfg['pagantis_private_key'] == '' || |
145
|
|
|
$cfg['simulator'] !== 'yes' || $product->price < getenv('PAGANTIS_DISPLAY_MIN_AMOUNT') ) { |
146
|
|
|
return; |
147
|
|
|
} |
148
|
|
|
|
149
|
|
|
$template_fields = array( |
150
|
|
|
'total' => is_numeric($product->price) ? $product->price : 0, |
151
|
|
|
'public_key' => $cfg['pagantis_public_key'], |
152
|
|
|
'simulator_type' => getenv('PAGANTIS_SIMULATOR_DISPLAY_TYPE'), |
153
|
|
|
'positionSelector' => getenv('PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'), |
154
|
|
|
'quantitySelector' => getenv('PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'), |
155
|
|
|
'priceSelector' => getenv('PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'), |
156
|
|
|
'totalAmount' => is_numeric($product->price) ? $product->price : 0 |
157
|
|
|
); |
158
|
|
|
wc_get_template('product_simulator.php', $template_fields, '', $this->template_path); |
|
|
|
|
159
|
|
|
} |
160
|
|
|
|
161
|
|
|
/** |
162
|
|
|
* Add Pagantis to payments list. |
163
|
|
|
* |
164
|
|
|
* @param $methods |
165
|
|
|
* |
166
|
|
|
* @return array |
167
|
|
|
*/ |
168
|
|
|
public function addPagantisGateway($methods) |
169
|
|
|
{ |
170
|
|
|
if (! class_exists('WC_Payment_Gateway')) { |
171
|
|
|
return $methods; |
172
|
|
|
} |
173
|
|
|
|
174
|
|
|
include_once('controllers/paymentController.php'); |
175
|
|
|
$methods[] = 'WcPagantisGateway'; |
176
|
|
|
|
177
|
|
|
return $methods; |
178
|
|
|
} |
179
|
|
|
|
180
|
|
|
/** |
181
|
|
|
* Initialize WC_Pagantis class |
182
|
|
|
* |
183
|
|
|
* @param $methods |
184
|
|
|
* |
185
|
|
|
* @return mixed |
186
|
|
|
*/ |
187
|
|
|
public function pagantisFilterGateways($methods) |
188
|
|
|
{ |
189
|
|
|
$pagantis = new WcPagantisGateway(); |
190
|
|
|
if ($pagantis->is_available()) { |
191
|
|
|
$methods['pagantis'] = $pagantis; |
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
return $methods; |
195
|
|
|
} |
196
|
|
|
|
197
|
|
|
/** |
198
|
|
|
* Add links to Plugin description |
199
|
|
|
* |
200
|
|
|
* @param $links |
201
|
|
|
* |
202
|
|
|
* @return mixed |
203
|
|
|
*/ |
204
|
|
|
public function pagantisActionLinks($links) |
205
|
|
|
{ |
206
|
|
|
$params_array = array('page' => 'wc-settings', 'tab' => 'checkout', 'section' => 'pagantis'); |
207
|
|
|
$setting_url = esc_url(add_query_arg($params_array, admin_url('admin.php?'))); |
|
|
|
|
208
|
|
|
$setting_link = '<a href="'.$setting_url.'">'.__('Settings', 'pagantis').'</a>'; |
|
|
|
|
209
|
|
|
|
210
|
|
|
array_unshift($links, $setting_link); |
211
|
|
|
|
212
|
|
|
return $links; |
213
|
|
|
} |
214
|
|
|
|
215
|
|
|
/** |
216
|
|
|
* Add links to Plugin options |
217
|
|
|
* |
218
|
|
|
* @param $links |
219
|
|
|
* @param $file |
220
|
|
|
* |
221
|
|
|
* @return array |
222
|
|
|
*/ |
223
|
|
|
public function pagantisRowMeta($links, $file) |
224
|
|
|
{ |
225
|
|
|
if ($file == plugin_basename(__FILE__)) { |
|
|
|
|
226
|
|
|
$links[] = '<a href="'.WcPagantis::GIT_HUB_URL.'" target="_blank">'.__('Documentation', 'pagantis').'</a>'; |
|
|
|
|
227
|
|
|
$links[] = '<a href="'.WcPagantis::PAGANTIS_DOC_URL.'" target="_blank">'. |
228
|
|
|
__('API documentation', 'pagantis').'</a>'; |
229
|
|
|
$links[] = '<a href="'.WcPagantis::SUPPORT_EML.'">'.__('Support', 'pagantis').'</a>'; |
230
|
|
|
|
231
|
|
|
return $links; |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
return $links; |
235
|
|
|
} |
236
|
|
|
|
237
|
|
|
/** |
238
|
|
|
* Read logs |
239
|
|
|
*/ |
240
|
|
|
public function readLogs($data) |
241
|
|
|
{ |
242
|
|
|
global $wpdb; |
243
|
|
|
$filters = ($data->get_params()); |
244
|
|
|
$response = array(); |
245
|
|
|
$secretKey = $filters['secret']; |
246
|
|
|
$from = $filters['from']; |
247
|
|
|
$to = $filters['to']; |
248
|
|
|
$cfg = get_option('woocommerce_pagantis_settings'); |
|
|
|
|
249
|
|
|
$privateKey = isset($cfg['secret_key']) ? $cfg['secret_key'] : null; |
250
|
|
|
$tableName = $wpdb->prefix.self::LOGS_TABLE; |
251
|
|
|
$query = "select * from $tableName where createdAt>$from and createdAt<$to order by createdAt desc"; |
252
|
|
|
$results = $wpdb->get_results($query); |
253
|
|
|
if (isset($results) && $privateKey == $secretKey) { |
254
|
|
|
foreach ($results as $key => $result) { |
255
|
|
|
$response[$key]['timestamp'] = $result->createdAt; |
256
|
|
|
$response[$key]['log'] = json_decode($result->log); |
257
|
|
|
} |
258
|
|
|
} else { |
259
|
|
|
$response['result'] = 'Error'; |
260
|
|
|
} |
261
|
|
|
$response = json_encode($response); |
262
|
|
|
header("HTTP/1.1 200", true, 200); |
263
|
|
|
header('Content-Type: application/json', true); |
264
|
|
|
header('Content-Length: '.strlen($response)); |
265
|
|
|
echo($response); |
266
|
|
|
exit(); |
|
|
|
|
267
|
|
|
} |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* Update extra config |
271
|
|
|
*/ |
272
|
|
|
public function updateExtraConfig($data) |
273
|
|
|
{ |
274
|
|
|
global $wpdb; |
275
|
|
|
$tableName = $wpdb->prefix.self::CONFIG_TABLE; |
276
|
|
|
$response = array('status'=>null); |
277
|
|
|
|
278
|
|
|
$filters = ($data->get_params()); |
279
|
|
|
$secretKey = $filters['secret']; |
280
|
|
|
$cfg = get_option('woocommerce_pagantis_settings'); |
|
|
|
|
281
|
|
|
$privateKey = isset($cfg['pagantis_private_key']) ? $cfg['pagantis_private_key'] : null; |
282
|
|
|
if ($privateKey != $secretKey) { |
283
|
|
|
$response['status'] = 401; |
284
|
|
|
$response['result'] = 'Unauthorized'; |
285
|
|
|
} elseif ($_SERVER['REQUEST_METHOD'] == 'POST') { |
286
|
|
|
if (count($_POST)) { |
287
|
|
|
foreach ($_POST as $config => $value) { |
288
|
|
|
if (isset($this->defaultConfigs[$config]) && $response['status']==null) { |
289
|
|
|
$wpdb->update( |
290
|
|
|
$tableName, |
291
|
|
|
array('value' => $value), |
292
|
|
|
array('config' => $config), |
293
|
|
|
array('%s'), |
294
|
|
|
array('%s') |
295
|
|
|
); |
296
|
|
|
} else { |
297
|
|
|
$response['status'] = 400; |
298
|
|
|
$response['result'] = 'Bad request'; |
299
|
|
|
} |
300
|
|
|
} |
301
|
|
|
} else { |
302
|
|
|
$response['status'] = 422; |
303
|
|
|
$response['result'] = 'Empty data'; |
304
|
|
|
} |
305
|
|
|
} |
306
|
|
|
|
307
|
|
|
if ($response['status']==null) { |
308
|
|
|
$tableName = $wpdb->prefix.self::CONFIG_TABLE; |
309
|
|
|
$dbResult = $wpdb->get_results("select config, value from $tableName", ARRAY_A); |
|
|
|
|
310
|
|
|
foreach ($dbResult as $value) { |
311
|
|
|
$formattedResult[$value['config']] = $value['value']; |
312
|
|
|
} |
313
|
|
|
$response['result'] = $formattedResult; |
|
|
|
|
314
|
|
|
} |
315
|
|
|
|
316
|
|
|
$result = json_encode($response['result']); |
317
|
|
|
header("HTTP/1.1 ".$response['status'], true, $response['status']); |
318
|
|
|
header('Content-Type: application/json', true); |
319
|
|
|
header('Content-Length: '.strlen($result)); |
320
|
|
|
echo($result); |
321
|
|
|
exit(); |
|
|
|
|
322
|
|
|
} |
323
|
|
|
|
324
|
|
|
/** |
325
|
|
|
* ENDPOINT - Read logs -> Hook: rest_api_init |
326
|
|
|
* @return mixed |
327
|
|
|
*/ |
328
|
|
|
public function pagantisRegisterEndpoint() |
329
|
|
|
{ |
330
|
|
|
register_rest_route( |
|
|
|
|
331
|
|
|
'pagantis/v1', |
332
|
|
|
'/logs/(?P<secret>\w+)/(?P<from>\d+)/(?P<to>\d+)', |
333
|
|
|
array( |
334
|
|
|
'methods' => 'GET', |
335
|
|
|
'callback' => array( |
336
|
|
|
$this, |
337
|
|
|
'readLogs') |
338
|
|
|
), |
339
|
|
|
true |
340
|
|
|
); |
341
|
|
|
|
342
|
|
|
register_rest_route( |
343
|
|
|
'pagantis/v1', |
344
|
|
|
'/configController/(?P<secret>\w+)', |
345
|
|
|
array( |
346
|
|
|
'methods' => 'GET, POST', |
347
|
|
|
'callback' => array( |
348
|
|
|
$this, |
349
|
|
|
'updateExtraConfig') |
350
|
|
|
), |
351
|
|
|
true |
352
|
|
|
); |
353
|
|
|
} |
354
|
|
|
} |
355
|
|
|
|
356
|
|
|
/** |
357
|
|
|
* Add widget Js |
358
|
|
|
**/ |
359
|
|
|
function add_widget_js() |
360
|
|
|
{ |
361
|
|
|
wp_enqueue_script('pgSDK', 'https://cdn.pagantis.com/js/pg-v2/sdk.js', '', '', true); |
|
|
|
|
362
|
|
|
} |
363
|
|
|
|
364
|
|
|
$WcPagantis = new WcPagantis(); |
365
|
|
|
|