Passed
Pull Request — master (#16)
by Cesar
02:37
created

WcPagantis::pagantisAddProductSimulator()   B

Complexity

Conditions 8
Paths 5

Size

Total Lines 20
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 8
eloc 14
c 1
b 0
f 0
nc 5
nop 0
dl 0
loc 20
rs 8.4444
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');
0 ignored issues
show
Bug introduced by
The function plugin_dir_path was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

50
        require_once(/** @scrutinizer ignore-call */ plugin_dir_path(__FILE__).'/vendor/autoload.php');
Loading history...
51
52
        $this->template_path = plugin_dir_path(__FILE__).'/templates/';
0 ignored issues
show
Bug Best Practice introduced by
The property template_path does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
53
54
        $this->pagantisActivation();
55
56
        load_plugin_textdomain('pagantis', false, basename(dirname(__FILE__)).'/languages');
0 ignored issues
show
Bug introduced by
The function load_plugin_textdomain was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

56
        /** @scrutinizer ignore-call */ 
57
        load_plugin_textdomain('pagantis', false, basename(dirname(__FILE__)).'/languages');
Loading history...
57
        add_filter('woocommerce_payment_gateways', array($this, 'addPagantisGateway'));
0 ignored issues
show
Bug introduced by
The function add_filter was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

57
        /** @scrutinizer ignore-call */ 
58
        add_filter('woocommerce_payment_gateways', array($this, 'addPagantisGateway'));
Loading history...
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'));
0 ignored issues
show
Bug introduced by
The function plugin_basename was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

60
        add_filter('plugin_action_links_'./** @scrutinizer ignore-call */ plugin_basename(__FILE__), array($this, 'pagantisActionLinks'));
Loading history...
61
        add_action('woocommerce_after_add_to_cart_form', array($this, 'pagantisAddProductSimulator'));
0 ignored issues
show
Bug introduced by
The function add_action was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

61
        /** @scrutinizer ignore-call */ 
62
        add_action('woocommerce_after_add_to_cart_form', array($this, 'pagantisAddProductSimulator'));
Loading history...
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';
0 ignored issues
show
Bug introduced by
The function get_locale was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

75
            $mofile = WP_LANG_DIR . '/../plugins/pagantis/languages/pagantis-' . /** @scrutinizer ignore-call */ get_locale() . '.mo';
Loading history...
Bug introduced by
The constant WP_LANG_DIR was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
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');
0 ignored issues
show
Bug introduced by
The constant ABSPATH was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
99
            dbDelta($sql);
0 ignored issues
show
Bug introduced by
The function dbDelta was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

99
            /** @scrutinizer ignore-call */ 
100
            dbDelta($sql);
Loading history...
100
        }
101
102
        $dbConfigs = $wpdb->get_results("select * from $tableName", ARRAY_A);
0 ignored issues
show
Bug introduced by
The constant ARRAY_A was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
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');
0 ignored issues
show
Bug introduced by
The function get_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

121
        $settings = /** @scrutinizer ignore-call */ get_option('woocommerce_pagantis_settings');
Loading history...
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);
0 ignored issues
show
Bug introduced by
The function update_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

133
        /** @scrutinizer ignore-call */ 
134
        update_option('woocommerce_pagantis_settings', $settings);
Loading history...
134
    }
135
136
    /**
137
     * Product simulator
138
     */
139
    public function pagantisAddProductSimulator()
140
    {
141
        global $product;
142
143
        $cfg = get_option('woocommerce_pagantis_settings');
0 ignored issues
show
Bug introduced by
The function get_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

143
        $cfg = /** @scrutinizer ignore-call */ get_option('woocommerce_pagantis_settings');
Loading history...
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);
0 ignored issues
show
Bug introduced by
The function wc_get_template was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

158
        /** @scrutinizer ignore-call */ 
159
        wc_get_template('product_simulator.php', $template_fields, '', $this->template_path);
Loading history...
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?')));
0 ignored issues
show
Bug introduced by
The function esc_url was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

207
        $setting_url  = /** @scrutinizer ignore-call */ esc_url(add_query_arg($params_array, admin_url('admin.php?')));
Loading history...
Bug introduced by
The function admin_url was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

207
        $setting_url  = esc_url(add_query_arg($params_array, /** @scrutinizer ignore-call */ admin_url('admin.php?')));
Loading history...
Bug introduced by
The function add_query_arg was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

207
        $setting_url  = esc_url(/** @scrutinizer ignore-call */ add_query_arg($params_array, admin_url('admin.php?')));
Loading history...
208
        $setting_link = '<a href="'.$setting_url.'">'.__('Settings', 'pagantis').'</a>';
0 ignored issues
show
Bug introduced by
The function __ was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

208
        $setting_link = '<a href="'.$setting_url.'">'./** @scrutinizer ignore-call */ __('Settings', 'pagantis').'</a>';
Loading history...
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__)) {
0 ignored issues
show
Bug introduced by
The function plugin_basename was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

225
        if ($file == /** @scrutinizer ignore-call */ plugin_basename(__FILE__)) {
Loading history...
226
            $links[] = '<a href="'.WcPagantis::GIT_HUB_URL.'" target="_blank">'.__('Documentation', 'pagantis').'</a>';
0 ignored issues
show
Bug introduced by
The function __ was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

226
            $links[] = '<a href="'.WcPagantis::GIT_HUB_URL.'" target="_blank">'./** @scrutinizer ignore-call */ __('Documentation', 'pagantis').'</a>';
Loading history...
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');
0 ignored issues
show
Bug introduced by
The function get_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

248
        $cfg  = /** @scrutinizer ignore-call */ get_option('woocommerce_pagantis_settings');
Loading history...
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();
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
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');
0 ignored issues
show
Bug introduced by
The function get_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

280
        $cfg  = /** @scrutinizer ignore-call */ get_option('woocommerce_pagantis_settings');
Loading history...
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);
0 ignored issues
show
Bug introduced by
The constant ARRAY_A was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
310
            foreach ($dbResult as $value) {
311
                $formattedResult[$value['config']] = $value['value'];
312
            }
313
            $response['result'] = $formattedResult;
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $formattedResult seems to be defined by a foreach iteration on line 310. Are you sure the iterator is never empty, otherwise this variable is not defined?
Loading history...
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();
0 ignored issues
show
Best Practice introduced by
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
322
    }
323
324
    /**
325
     * ENDPOINT - Read logs -> Hook: rest_api_init
326
     * @return mixed
327
     */
328
    public function pagantisRegisterEndpoint()
329
    {
330
        register_rest_route(
0 ignored issues
show
Bug introduced by
The function register_rest_route was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

330
        /** @scrutinizer ignore-call */ 
331
        register_rest_route(
Loading history...
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);
0 ignored issues
show
Bug introduced by
The function wp_enqueue_script was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

361
    /** @scrutinizer ignore-call */ 
362
    wp_enqueue_script('pgSDK', 'https://cdn.pagantis.com/js/pg-v2/sdk.js', '', '', true);
Loading history...
362
}
363
364
$WcPagantis = new WcPagantis();
365