-
Notifications
You must be signed in to change notification settings - Fork 8
/
ssoendpoint.php
executable file
·149 lines (125 loc) · 5.89 KB
/
ssoendpoint.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
<?php
//Exit if not called in proper context
if (!defined('ABSPATH')) exit();
//SSO ENDPOINT TEMPLATE
if (isset($_GET['fcsid']) && isset($_GET['timestamp'])) {
global $foxyshop_settings;
global $current_user;
//Run an action here in case you want to to intercept (only if there's no special checkout type)
if (!isset($_GET['checkout_type'])) {
do_action("foxyshop_sso_endpoint");
}
$login_url = get_bloginfo('wpurl') . '/wp-login.php';
//If you don't want to redirect to the wp-login screen for your login/create account page, define this constant in your wp-config.php file.
if (defined('FOXYSHOP_SSO_REDIRECT_URL')) $login_url = FOXYSHOP_SSO_REDIRECT_URL;
if(!is_user_logged_in()) {
//Force a Straight Redirect
if ($foxyshop_settings['sso_account_required'] == 1) {
$redirect_to = get_bloginfo('url') . '/foxycart-sso-' . $foxyshop_settings['datafeed_url_key'] . '/?timestamp=' . sanitize_text_field($_GET['timestamp']) . '&fcsid=' . sanitize_text_field($_GET['fcsid']);
header('Location: ' . $login_url . '?redirect_to=' . urlencode($redirect_to) . '&foxycart_checkout=1&reauth=1');
die;
//Check Cart Contents to Decide on Redirect
} elseif ($foxyshop_settings['sso_account_required'] == 2 && !isset($_GET['checkout_type'])) {
if (!defined('FOXYSHOP_CURL_CONNECTTIMEOUT')) define('FOXYSHOP_CURL_CONNECTTIMEOUT', 10);
if (!defined('FOXYSHOP_CURL_TIMEOUT')) define('FOXYSHOP_CURL_TIMEOUT', 15);
$args = array(
"timeout" => !defined('FOXYSHOP_CURL_TIMEOUT') ? 15 : FOXYSHOP_CURL_TIMEOUT,
"method" => "POST",
"sslverify" => defined('FOXYSHOP_CURL_SSL_VERIFYPEER') ? FOXYSHOP_CURL_SSL_VERIFYPEER : 1,
"body" => $foxyData,
);
$response = wp_remote_get("https://" . $foxyshop_settings['domain'] . "/cart?fcsid=" . sanitize_text_field($_GET['fcsid']) . "&output=json", $args);
//WP Error
if (is_wp_error($response)) {
die();
}
$curlout = trim($response['body']);
$sso_required = 0;
if ($curlout) {
$response = json_decode($curlout, true);
$item_list = isset($response['products']) ? $response['products'] : $response['items'];
foreach($item_list as $product){
$code = $product['code'];
$product_name = $product['name'];
$product_id = 0;
//Skip This if Login Already True
if (!$sso_required) {
//Lookup Product Code
$product_check = get_posts('post_type=foxyshop_product&meta_key=_code&meta_value=' . $code);
if ($product_check) {
foreach($product_check as $check1) {
$product_id = $check1->ID;
}
//If Not Found, Lookup ID
} else {
$product_check = get_posts('post_type=foxyshop_product&page_id=' . (int)$code);
if ($product_check) {
foreach($product_check as $check1) {
if ($check1->ID == (int)$code) $product_id = $check1->ID;
}
}
}
if ($product_id > 0) {
if (get_post_meta($product_id,'_require_sso', true) == "on") $sso_required = 1;
}
}
}
}
//Do the Signup Redirect
if ($sso_required) {
$redirect_to = get_bloginfo('url') . '/foxycart-sso-' . $foxyshop_settings['datafeed_url_key'] . '/?timestamp=' . sanitize_text_field($_GET['timestamp']) . '&fcsid=' . sanitize_text_field($_GET['fcsid']);
header('Location: ' . $login_url . '?redirect_to=' . urlencode($redirect_to) . '&foxycart_checkout=1&reauth=1');
die;
//No Redirect Required
} else {
$customer_id = 0;
}
//No Redirect Required
} else {
$customer_id = 0;
}
//Already Logged In, Get Account Info.
} else {
wp_get_current_user();
$customer_id = get_user_meta($current_user->ID, "foxycart_customer_id", TRUE);
$customer_email = $current_user->user_email;
//Get FoxyCart Customer ID
if (!$customer_id) $customer_id = foxyshop_check_for_customer_id($customer_email);
//Customer ID Doesn't Exist, Create New FoxyCart Customer
if (!$customer_id) $customer_id = foxyshop_add_new_customer_id($customer_email, $current_user->user_pass, $current_user->user_firstname, $current_user->user_lastname);
}
//Redirect to FoxyCart
$fcsid = sanitize_text_field($_GET['fcsid']);
$timestamp = sanitize_text_field($_GET['timestamp']);
$newtimestamp = strtotime("+60 minutes", $timestamp);
$auth_token = sha1($customer_id . '|' . $newtimestamp . '|' . $foxyshop_settings['api_key']);
$redirect_complete = 'https://' . $foxyshop_settings['domain'] . '/checkout?fc_auth_token=' . $auth_token . '&fc_customer_id=' . $customer_id . '×tamp=' . $newtimestamp . '&fcsid=' . $fcsid;
wp_redirect($redirect_complete, 301);
die;
}
function foxyshop_check_for_customer_id($email) {
global $current_user;
wp_get_current_user();
$foxy_data = array("api_action" => "customer_get", "customer_email" => $email);
$foxy_response = foxyshop_get_foxycart_data($foxy_data);
$xml = simplexml_load_string($foxy_response, NULL, LIBXML_NOCDATA);
if ($xml->result == "SUCCESS") {
$foxycart_customer_id = (string)$xml->customer_id;
if ($foxycart_customer_id) add_user_meta($current_user->ID, 'foxycart_customer_id', $foxycart_customer_id, true);
return $foxycart_customer_id;
} else {
return false;
}
}
function foxyshop_add_new_customer_id($email, $pass, $first_name, $last_name) {
global $current_user;
wp_get_current_user();
$foxy_data = array("api_action" => "customer_save", "customer_email" => $email, "customer_password_hash" => $pass);
if ($first_name != '') $foxy_data['customer_first_name'] = $first_name;
if ($last_name != '') $foxy_data['customer_last_name'] = $last_name;
$foxy_response = foxyshop_get_foxycart_data($foxy_data);
$xml = simplexml_load_string($foxy_response, NULL, LIBXML_NOCDATA);
$foxycart_customer_id = (string)$xml->customer_id;
if ($foxycart_customer_id) add_user_meta($current_user->ID, 'foxycart_customer_id', $foxycart_customer_id, true);
return $foxycart_customer_id;
}