forked from voceconnect/wp-multisite-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-multisite-sso.php
325 lines (261 loc) · 10.6 KB
/
wp-multisite-sso.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
<?php
/*
Plugin Name: WP Multisite SSO
Version: 1.1.1
Plugin URI: http://voceconnect.com/
Description: Single sign on for a multisite network. Users are authenticated across all sites within the network.
Author: Voce Platforms, Sean McCafferty
Author URI: http://voceconnect.com/
*/
/*
* This plugin will login/logout a user to the network sites using WP login/logout
* functions. Usually implemented on a domain mapped environment - This plugin makes
* use of JSONP in order to make cross domain calls, while this protocol is usually
* enabled by default on web servers, this plugin will fail to work if it is not enabled.
*/
class WP_MultiSite_SSO {
const USER_META_KEY = 'multisite-sso';
const LOGIN_ACTION = 'sso-login';
const LOGOUT_ACTION = 'sso-logout';
const SETTINGS_SLUG = 'wp_multisite_sso_settings';
private static $user_hash_md5_format = 'multsite_sso-user_id-%s';
public static function init() {
// no need to run if this is not a multisite install
if ( !is_multisite() )
return;
// if requesting to sso login/logout
if ( isset( $_REQUEST['action'] ) && ( self::LOGIN_ACTION === $_REQUEST['action'] ) && isset( $_REQUEST['sso'] ) ) {
self::authenticate_user_on_blog();
return;
} elseif ( isset( $_REQUEST['action'] ) && ( self::LOGOUT_ACTION === $_REQUEST['action'] ) ) {
self::unauthenticate_user_on_blog();
return;
}
// hook in to login/logout
add_action( 'wp_login', array( __CLASS__, 'handle_login' ), 10, 2 );
add_action( 'wp_logout', array( __CLASS__, 'handle_logout' ) );
add_action( 'login_enqueue_scripts', function() {
wp_enqueue_script( 'jquery' );
} );
}
/**
* Gets a list of the sites on the network, using the domain mapping plugin
* domains if the plugin is in use.
* @param type $network_sites
* @return type
*/
public static function get_network_sites( $network_sites = array() ) {
$network_sites = array();
// get list of sites
$sites = function_exists('get_sites') ? get_sites() : wp_get_sites();
// assign domain to site associated by blog id
foreach( $sites as $site ) {
$site = is_object( $site ) ? get_object_vars( $site ) : $site;
if ( !isset( $site['blog_id'] ) || !isset( $site['domain'] ) )
continue;
$network_sites[$site['blog_id']] = esc_url( $site['domain'] );
}
// if domain mapping exists, attempt to map the sites to the mapped domain
$mapped_domains = self::get_domain_mapped_blogs();
foreach( $mapped_domains as $mapped_domain ) {
if ( !isset( $mapped_domain->domain ) || !isset( $mapped_domain->blog_id ) )
continue;
$network_sites[$mapped_domain->blog_id] = esc_url( $mapped_domain->domain );
}
return $network_sites;
}
/**
* Get the mapped domains if the Domain Mapping plugin is used
* @global type $wpdb
* @return type
*/
public static function get_domain_mapped_blogs() {
global $wpdb;
if ( !function_exists( 'dm_text_domain' ) )
return array();
$mapped_domains = $wpdb->get_results( "SELECT blog_id, domain FROM {$wpdb->dmtable} WHERE active = 1", OBJECT_K );
return empty( $mapped_domains ) ? array() : (array) $mapped_domains;
}
/**
* Provides the functionality to sign the user in to the network sites once
* they have signed in to the current blog.
* @global type $current_site
* @param type $username
* @param type $user
*/
public static function handle_login( $username, $user ) {
global $current_site;
// setup variables
$sso_objects = array();
$time = time();
$user_hash = md5( sprintf( self::$user_hash_md5_format, $user->ID ) );
$network_sites = array_diff( WP_MultiSite_SSO::get_network_sites(), array( esc_url( home_url() ) ) );
// Bail if we have no network sites to login to.
if ( empty( $network_sites ) ) {
return;
}
$current_blog_id = get_current_blog_id();
// IP address.
$ip_address = '';
if ( !empty( $_SERVER['REMOTE_ADDR'] ) ) {
$ip_address = $_SERVER['REMOTE_ADDR'];
}
// User-agent.
$user_agent = '';
if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) {
$user_agent = wp_unslash( $_SERVER['HTTP_USER_AGENT'] );
}
foreach( array_keys( $network_sites ) as $blog_id ) {
// build the sso objects to send
$sso_objects[$blog_id] = array(
'user_hash' => $user_hash,
'user_id' => $user->ID,
'src_blog_id' => $current_blog_id,
'dest_blog_id' => $blog_id,
'timestamp' => $time,
'ip_address' => $ip_address,
'user_agent' => $user_agent
);
}
// encrypt the sso object
$cipher = 'AES-128-ECB';
$iv = openssl_random_pseudo_bytes( openssl_cipher_iv_length( $cipher ) );
$sso_objects = array_map( function( $sso_object ) use ( $iv, $cipher ) {
// encode the sso object
$sso_object = json_encode( $sso_object );
$cipher_raw = openssl_encrypt( $sso_object, $cipher, substr( AUTH_SALT, 0, 32 ), OPENSSL_RAW_DATA, $iv );
$hmac = hash_hmac( 'sha256', $cipher_raw, substr( AUTH_SALT, 0, 32 ), true );
return base64_encode( $iv . $hmac . $cipher_raw );
}, $sso_objects );
// add reference to hash to the user's meta, store the time and all sso objects
$user_meta = array(
'hash' => $user_hash,
'value' => array(
'timestamp' => $time,
'keys' => $sso_objects
)
);
update_user_meta( $user->ID, self::USER_META_KEY, $user_meta );
$action = self::LOGIN_ACTION;
include __DIR__ . '/inc/sso.php';
die;
}
/**
* Logic to authenticate a user if the request is a `self:LOGIN_ACTION`. Acting as a JSONP response
* to allow a cross domain request
*/
private static function authenticate_user_on_blog() {
header('Content-type: application/javascript; charset=utf-8');
// verify is a sso login request
if ( !isset( $_REQUEST['action'] ) || ( isset( $_REQUEST['action'] ) && ( self::LOGIN_ACTION !== $_REQUEST['action'] ) ) || !isset( $_REQUEST['sso'] ) )
return;
// setup vars
$sso_object = array();
$request_sso = $_REQUEST['sso'];
$sso = base64_decode( esc_attr( $request_sso ) );
// Decrypt the SSO object.
$cipher = 'AES-128-ECB';
$ivlen = openssl_cipher_iv_length( $cipher );
$iv = substr( $sso, 0, $ivlen );
$sha2len = 32;
$hmac = substr( $sso, $ivlen, $sha2len );
$cipher_raw = substr( $sso, $ivlen + $sha2len );
$sso = openssl_decrypt( $cipher_raw, $cipher, substr( AUTH_SALT, 0, 32 ), OPENSSL_RAW_DATA, $iv );
// PHP 5.6+ timing attack safe comparison.
$calcmac = hash_hmac( 'sha256', $cipher_raw, substr( AUTH_SALT, 0, 32 ), true );
if ( hash_equals( $hmac, $calcmac ) ) {
$sso_object = json_decode( $sso );
}
// dont continue if sso_object doesn't exist
if ( empty( $sso_object ) )
return;
$sso_user_hash = isset( $sso_object->user_hash ) ? $sso_object->user_hash : false;
$sso_user_id = isset( $sso_object->user_id ) ? $sso_object->user_id : false;
$sso_src_blog_id = isset( $sso_object->src_blog_id ) ? $sso_object->src_blog_id : false;
$sso_dest_blog_id = isset( $sso_object->dest_blog_id ) ? $sso_object->dest_blog_id : false;
$sso_timestamp = isset( $sso_object->timestamp ) ? $sso_object->timestamp : false;
$sso_ip_address = isset( $sso_object->ip_address ) ? $sso_object->ip_address : '';
$sso_user_agent = isset( $sso_object->user_agent ) ? $sso_object->user_agent : '';
// dont continue if the ip address does not match the sso object's
$ip_address = '';
if ( !empty( $_SERVER['REMOTE_ADDR'] ) )
$ip_address = $_SERVER['REMOTE_ADDR'];
if ( $ip_address !== $sso_ip_address )
return;
// dont continue if the user-agent does not match the sso object's
$user_agent = '';
if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) )
$user_agent = wp_unslash( $_SERVER['HTTP_USER_AGENT'] );
if ( $user_agent !== $sso_user_agent )
return;
// dont continue if one of these sso object values do not exist
if ( empty( $sso_user_hash ) || empty( $sso_user_id ) || empty( $sso_src_blog_id ) || empty( $sso_dest_blog_id ) || empty( $sso_timestamp ) )
return;
// obtain multisite sso user_meta of the specified user
$user_meta = get_user_meta( $sso_user_id, self::USER_META_KEY, true );
// dont continue if the value does not exist
if ( empty( $user_meta ) )
return;
// dont continue if one of the user meta objects does not exist
$user_hash = isset( $user_meta['hash'] ) ? $user_meta['hash'] : false;
$meta_data = isset( $user_meta['value'] ) ? $user_meta['value'] : false;
if ( empty( $user_hash ) || empty( $meta_data ) )
return;
$timestamp = isset( $meta_data['timestamp'] ) ? $meta_data['timestamp'] : false;
$encryption_keys = isset( $meta_data['keys'] ) ? $meta_data['keys'] : false;
// make sure the encryption keys and timestamp exist
if ( empty( $timestamp ) || empty( $encryption_keys ) )
return;
// dont continue if the timestamp has expired (is older than 2 minutes) or user hashes do not match
if ( ( ( $timestamp + 60 * 2 ) < time() ) || $user_hash !== $sso_user_hash ) {
// remove the meta, to keep everything clean
delete_user_meta( $sso_user_id, self::USER_META_KEY );
return;
}
// dont continue if the encryption key does not exist in the keys
// if it does exist, remove the key from the list of keys to ensure
// the key is only used once
if ( in_array( $request_sso, $encryption_keys ) ) {
$encryption_keys = array_diff( $encryption_keys, array( $request_sso ) );
$user_meta['value']['keys'] = $encryption_keys;
update_user_meta( $sso_user_id, self::USER_META_KEY, $user_meta );
} else {
return;
}
// everything checks out, so authenticate the user in on the main blog
wp_set_auth_cookie( $sso_user_id, true );
echo 'loadSitesCB' . "({'user_status': 'auth'})";
die;
}
/**
* Provides the functionality to log a user out of the network sites when they have
* signed out of the current blog.
*/
public static function handle_logout() {
$network_sites = array_diff( WP_MultiSite_SSO::get_network_sites(), array( esc_url( home_url() ) ) );
// Bail if we have no network sites to logout of.
if ( empty( $network_sites ) ) {
return;
}
// create a blank sso objects for logout
$sso_objects = array();
$user = null;
// set logout action
$action = self::LOGOUT_ACTION;
include __DIR__ . '/inc/sso.php';
die;
}
/**
* Logic to unauthenticate a user is the request is a `self:LOGOUT_ACTION'. Acting as a JSONP response
* to allow a cross domain request
*/
private static function unauthenticate_user_on_blog() {
header('Content-type: application/javascript; charset=utf-8');
wp_logout();
echo 'loadSitesCB' . "({'user_status': 'unauth'})";
die;
}
}
add_action( 'init', array( 'WP_MultiSite_SSO', 'init' ) );
if ( is_admin() )
include __DIR__ . '/admin/admin.php';