-
Notifications
You must be signed in to change notification settings - Fork 8
/
datafeedfunctions.php
executable file
·394 lines (331 loc) · 14.9 KB
/
datafeedfunctions.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
<?php
//Exit if not called in proper context
if (!defined('ABSPATH')) exit();
/**
* Decrypt Data From Source
*
* NOTE: As the payloads needs to be decoded and decrypted, it can't be sanitised
* before this process is completed, so always consider the $src params as UNTRUSTED
*
* @param string $src UNTRUSTED urlencoded, rc4-ecnrypted payload
* @return string
*/
function foxyshop_decrypt($src) {
global $foxyshop_settings;
// All of WordPress's sanitization functions break the payload - so check that it
// passes as XML before returning back the decrypted data
$decrypted = rc4crypt::decrypt($foxyshop_settings['api_key'],urldecode($src));
// Parse the decrypted payload using simplexml to make sure it's valid XML
$xml = simplexml_load_string($decrypted, NULL, LIBXML_NOCDATA);
if ($xml !== false) {
// We still have to return the decrypted data and not the parsed XML to maintain
// backwards-compatibility for any customised foxyshop-datafeed-endpoint.php
return $decrypted;
} else {
return false;
}
}
/**
* Push Feed to External Datafeeds
*
* NOTE: As the external datafeeds need to receive an exact copy of the $_POST payload
* we need to make use of the $_POST without sanitising the value. This function does
* still at least confirm that the payload decrypts correctly, is valid XML and includes
* the expected parent node before being used though.
*
* @param array $external_datafeeds Array of URLs to forward the raw $_POST value to
* @return null
*/
function foxyshop_run_external_datafeeds($external_datafeeds) {
global $foxyshop_settings;
if ($foxyshop_settings["orderdesk_url"]) {
//Check Referer to make sure we aren't coming from Order Desk and thus creating a loop
if ($_SERVER['REMOTE_ADDR'] == "216.70.96.51") {
die("It looks like you have a potential datafeed loop with FoxyShop and Order Desk. You can't send the datafeed to Order Desk and then have Order Desk send it back to FoxyShop or you'll have a never-ending loop. It's recommended that you uncheck the 'Send to Order Desk' feature in your FoxyShop Settings.");
}
$external_datafeeds[] = $foxyshop_settings["orderdesk_url"];
}
if (!defined('FOXYSHOP_CURL_CONNECTTIMEOUT')) define('FOXYSHOP_CURL_CONNECTTIMEOUT', 10); //10
if (!defined('FOXYSHOP_CURL_TIMEOUT')) define('FOXYSHOP_CURL_TIMEOUT', 15); //15
if (!isset($_POST["FoxyData"]) && !isset($_POST["FoxySubscriptionData"])) return;
$payload = [];
$untrusted_payload = "";
if(isset($_POST["FoxyData"])) {
// Because we can't sanitise the data because it needs to be passed in the exact same state
// to an external endpoint, let's validate the data by passing it to simplexml and confirm
// that a node exists that we expect to be there
$untrusted_payload = $_POST["FoxyData"];
$xml_decrypted = foxyshop_decrypt($untrusted_payload);
$xml = simplexml_load_string($xml_decrypted, NULL, LIBXML_NOCDATA);
if (!isset($xml->transactions)) return;
// We've confirmed that the transactions node exists, so it's valid XML as we expect it to be.
// We can now pass the untrusted raw data along to the external endpoints defined
$payload = array("FoxyData" => $untrusted_payload);
} else if(isset($_POST["FoxySubscriptionData"])) {
// Because we can't sanitise the data because it needs to be passed in the exact same state
// to an external endpoint, let's validate the data by passing it to simplexml and confirm
// that a node exists that we expect to be there
$untrusted_payload = $_POST["FoxySubscriptionData"];
$xml_decrypted = foxyshop_decrypt($untrusted_payload);
$xml = simplexml_load_string($xml_decrypted, NULL, LIBXML_NOCDATA);
if (!isset($xml->subscriptions)) return;
// We've confirmed that the subscriptions node exists, so it's valid XML as we expect it to be.
// We can now pass the untrusted raw data along to the external endpoints defined
$payload = array("FoxySubscriptionData" => $untrusted_payload);
}
foreach($external_datafeeds as $feedurl) {
if ($feedurl) {
$args = [
'headers' => ["Content-Type" => "application/x-www-form-urlencoded"],
'body' => $payload
];
if (defined('FOXYSHOP_CURL_SSL_VERIFYPEER')){
$args['sslverify'] = FOXYSHOP_CURL_SSL_VERIFYPEER;
}
$response = wp_remote_post($feedurl,
$args);
$response_body = trim(wp_remote_retrieve_body($response));
//If Error, Send Email and Kill Process
if ($response_body != 'foxy' && $response_body != 'foxysub') {
$error_msg = strip_tags( is_wp_error( $response ) ? "Datafeed Processing Error: " . $response->get_error_message() : $response_body );
$to_email = get_bloginfo('admin_email');
$message = "A FoxyCart datafeed error was encountered at " . date("F j, Y, g:i a") . ".\n\n";
$message .= "The feed that failed was $feedurl\n\n";
$message .= "The error is listed below:\n\n";
$message .= $error_msg;
//$message .= "\n\n" . print_r($_POST, 1);
//$message .= "\n\n" . print_r($_SERVER, 1);
$headers = 'From: ' . get_bloginfo('name') . ' Server Admin <' . $to_email . '>' . "\r\n";
mail($to_email, 'Data Feed Error on ' . get_bloginfo('name'), $message, $headers);
die($error_msg);
}
}
}
}
//Update the FoxyShop Inventory
function foxyshop_datafeed_inventory_update($xml) {
global $wpdb, $foxyshop_settings;
//For Each Transaction
foreach($xml->transactions->transaction as $transaction) {
//For Each Transaction Detail
foreach($transaction->transaction_details->transaction_detail as $transactiondetails) {
if ((int)$transactiondetails->is_future_line_item == 1) continue;
$product_name = (string)$transactiondetails->product_name;
$product_code = (string)$transactiondetails->product_code;
$product_quantity = (int)$transactiondetails->product_quantity;
//Skip if there's no product code
if (!$product_code) continue;
//Get List of Target ID's for Inventory Update
$meta_list = $wpdb->get_results("SELECT post_id, meta_id, meta_value FROM $wpdb->postmeta WHERE meta_key = '_inventory_levels' AND meta_value LIKE '%" . esc_sql($product_code) . "%'");
foreach ($meta_list as $meta) {
$productID = $meta->post_id;
$val = unserialize($meta->meta_value);
if (!is_array($val)) $val = array();
foreach ($val as $ivcode => $iv) {
if ($ivcode == $product_code) {
$original_count = $iv['count'];
$new_count = $original_count - $product_quantity;
$alert_level = ($iv['alert'] == '' ? $foxyshop_settings['inventory_alert_level'] : $iv['alert']);
$val[$ivcode]['count'] = $new_count;
//Send Email Alert Email
if ($foxyshop_settings['inventory_alert_email'] && $new_count <= $alert_level) {
$subject_line = "Inventory Alert: " . $product_name;
$to_email = apply_filters('foxyshop_inventory_alert_email', get_bloginfo('admin_email'));
$message = "The inventory for one of your products is getting low:\n\n";
$message .= "Product Name: " . $product_name . "\n";
$message .= "Product Code: " . $product_code . "\n";
$message .= "Current Inventory Level: " . $new_count . "\n";
$message .= "Inventory Alert Level: " . $alert_level . "\n";
$message .= "\n". get_bloginfo('wpurl') . "/wp-admin/edit.php?post_type=foxyshop_product\n";
$headers = 'From: ' . get_bloginfo('name') . ' <' . $to_email . '>' . "\r\n";
wp_mail($to_email, $subject_line, $message, $headers);
}
}
}
//Run the Update
foxyshop_inventory_count_update($product_code, $new_count, $productID, 0);
}
}
}
}
//Update the WordPress Customer's Subscription List
function foxyshop_datafeed_sso_update($xml) {
global $wpdb;
//For Each Transaction
foreach($xml->transactions->transaction as $transaction) {
//Get FoxyCart Transaction Information
$transaction_id = (string)$transaction->id;
$customer_id = (string)$transaction->customer_id;
//For Each Transaction Detail
foreach($transaction->transaction_details->transaction_detail as $transactiondetails) {
$product_code = (string)$transactiondetails->product_code;
$sub_token_url = (string)$transactiondetails->sub_token_url;
//Set Subscription Features if using SSO
if ($sub_token_url != "") {
//Get WordPress User ID
$select_user = "SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'foxycart_customer_id' AND meta_value = '" . esc_sql($customer_id) . "'";
$user_id = $wpdb->get_var($select_user);
if ($user_id) {
//Get User's Subscription Array
$foxyshop_subscription = get_user_meta($user_id, 'foxyshop_subscription', true);
if (!is_array($foxyshop_subscription)) $foxyshop_subscription = array();
//Add On To Array
$foxyshop_subscription[$product_code] = array(
"is_active" => 1,
"sub_token_url" => $sub_token_url
);
//Write Array Back to DB
update_user_meta($user_id, 'foxyshop_subscription', $foxyshop_subscription);
}
}
}
}
}
//Update or Create a WordPress User After Checkout
function foxyshop_datafeed_user_update($xml) {
global $wpdb, $foxyshop_new_password_hash;
//For Each Transaction
foreach($xml->transactions->transaction as $transaction) {
//Get FoxyCart Transaction Information
$customer_id = (string)$transaction->customer_id;
$customer_first_name = (string)$transaction->customer_first_name;
$customer_last_name = (string)$transaction->customer_last_name;
$customer_email = (string)$transaction->customer_email;
$customer_password = (string)$transaction->customer_password;
$is_anonymous = (int)$transaction->is_anonymous;
//Add or Update WordPress User If Not Guest Checkout
if ($customer_id != '0' && $is_anonymous == 0) {
//Check To See if WordPress User Already Exists
$current_user = get_user_by("email", $customer_email);
$foxyshop_new_password_hash = $customer_password;
//No Return, Add New User, Username will be email address
if (!$current_user) {
remove_action('user_register', 'foxyshop_profile_add', 5);
$new_user_id = wp_insert_user(array(
'user_login' => $customer_email,
'user_email' => $customer_email,
'first_name' => $customer_first_name,
'last_name' => $customer_last_name,
'user_email' => $customer_email,
'user_pass' => wp_generate_password(),
'user_nicename' => $customer_first_name . ' ' . $customer_last_name,
'display_name' => $customer_first_name . ' ' . $customer_last_name,
'nickname' => $customer_first_name . ' ' . $customer_last_name,
'role' => apply_filters('foxyshop_default_user_role', 'subscriber'),
));
add_user_meta($new_user_id, 'foxycart_customer_id', $customer_id, true);
//Set Password In WordPress Database
$wpdb->query("UPDATE $wpdb->users SET user_pass = '" . esc_sql($customer_password) . "' WHERE ID = '" . esc_sql($new_user_id) . "'");
//Set Original Password at FoxyCart
//foxyshop_get_foxycart_data(array("api_action" => "customer_save", "customer_id" => $customer_id, "customer_password_hash" => $customer_password));
//Run Your Custom Actions Here with add_action()
do_action("foxyshop_datafeed_add_wp_user", $xml, $new_user_id);
//Update User
} else {
//Set Password
$wpdb->query("UPDATE $wpdb->users SET user_pass = '" . esc_sql($customer_password) . "' WHERE ID = '" . esc_sql($current_user->ID) . "'");
//Update First Name and Last Name
$updated_user_id = wp_update_user(array(
'ID' => $current_user->ID,
'first_name' => $customer_first_name,
'last_name' => $customer_last_name
));
//Reset Password Again
$wpdb->query("UPDATE $wpdb->users SET user_pass = '" . esc_sql($customer_password) . "' WHERE ID = '" . esc_sql($current_user->ID) . "'");
//Add FoxyCart User ID if not added before
add_user_meta($current_user->ID, 'foxycart_customer_id', $customer_id, true);
//Run Your Custom Actions Here with add_action()
do_action("foxyshop_datafeed_update_wp_user", $xml, $current_user->ID);
}
}
}
}
//ConsoliBYTE Inventory Processor
function foxyshop_consolibyte_inventory_process() {
//DECRYPT (required)
//-----------------------------------------------------
$FoxyData_decrypted = foxyshop_decrypt($_POST["FoxyInventory"]);
$xml = simplexml_load_string($FoxyData_decrypted, NULL, LIBXML_NOCDATA);
//For Each Item
foreach($xml->foxyinventory->item as $item) {
//Set Variables
$product_code = (string)$item->product_code;
$quantity_on_hand = (int)$item->quantity_on_hand;
//Update Inventory
foxyshop_inventory_count_update($product_code, $quantity_on_hand, 0);
}
//All Done!
die("foxyinventory");
}
// ======================================================================================
// RC4 ENCRYPTION CLASS
// Do not modify.
// ======================================================================================
/**
* RC4Crypt 3.2
*
* RC4Crypt is a petite library that allows you to use RC4
* encryption easily in PHP. It's OO and can produce outputs
* in binary and hex.
*
* (C) Copyright 2006 Mukul Sabharwal [http://mjsabby.com]
* All Rights Reserved
*
* @link http://rc4crypt.devhome.org
* @author Mukul Sabharwal <[email protected]>
* @version $Id: class.rc4crypt.php,v 3.2 2006/03/10 05:47:24 mukul Exp $
* @copyright Copyright © 2006 Mukul Sabharwal
* @license http://www.gnu.org/copyleft/gpl.html
* @package RC4Crypt
*/
class rc4crypt {
/**
* The symmetric encryption function
*
* @param string $pwd Key to encrypt with (can be binary of hex)
* @param string $data Content to be encrypted
* @param bool $ispwdHex Key passed is in hexadecimal or not
* @access public
* @return string
*/
public static function encrypt ($pwd, $data, $ispwdHex = 0) {
if ($ispwdHex) $pwd = @pack('H*', $pwd); // valid input, please!
$key[] = '';
$box[] = '';
$cipher = '';
$pwd_length = strlen($pwd);
$data_length = strlen($data);
for ($i = 0; $i < 256; $i++) {
$key[$i] = ord($pwd[$i % $pwd_length]);
$box[$i] = $i;
}
for ($j = $i = 0; $i < 256; $i++) {
$j = ($j + $box[$i] + $key[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
for ($a = $j = $i = 0; $i < $data_length; $i++) {
$a = ($a + 1) % 256;
$j = ($j + $box[$a]) % 256;
$tmp = $box[$a];
$box[$a] = $box[$j];
$box[$j] = $tmp;
$k = $box[(($box[$a] + $box[$j]) % 256)];
$cipher .= chr(ord($data[$i]) ^ $k);
}
return $cipher;
}
/**
* Decryption, recall encryption
*
* @param string $pwd Key to decrypt with (can be binary of hex)
* @param string $data Content to be decrypted
* @param bool $ispwdHex Key passed is in hexadecimal or not
* @access public
* @return string
*/
public static function decrypt ($pwd, $data, $ispwdHex = 0) {
return rc4crypt::encrypt($pwd, $data, $ispwdHex);
}
}