-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuser-switching.php
569 lines (472 loc) · 17.7 KB
/
user-switching.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
<?php
class user_switching {
/**
* Class constructor. Set up some filters and actions.
*
* @return null
*/
function __construct() {
# Required functionality:
add_filter( 'user_has_cap', array( $this, 'user_cap_filter' ), 10, 3 );
add_filter( 'map_meta_cap', array( $this, 'map_meta_cap' ), 10, 4 );
add_filter( 'user_row_actions', array( $this, 'user_row' ), 10, 2 );
add_action( 'plugins_loaded', array( $this, 'set_old_cookie' ) );
add_action( 'init', array( $this, 'init' ) );
add_action( 'admin_notices', array( $this, 'admin_notice' ), 1 );
add_action( 'wp_logout', 'wp_clear_olduser_cookie' );
add_action( 'wp_login', 'wp_clear_olduser_cookie' );
# Nice-to-haves:
add_filter( 'ms_user_row_actions', array( $this, 'user_row' ), 10, 2 );
add_action( 'wp_footer', array( $this, 'switch_on' ) );
add_action( 'personal_options', array( $this, 'personal_options' ) );
add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 11 );
add_action( 'bp_adminbar_menus', array( $this, 'bp_menu' ), 9 );
add_action( 'bp_member_header_actions', array( $this, 'bp_button' ), 11 );
add_action( 'network_admin_notices', array( $this, 'admin_notice' ), 1 );
add_action( 'login_message', array( $this, 'login_message' ), 1 );
add_action( 'bp_directory_members_actions', array( $this, 'bp_button' ), 11 );
}
/**
* Define the name of the old user cookie. Uses WordPress' cookie hash for increased security.
*
* @return null
*/
function set_old_cookie() {
if ( !defined( 'OLDUSER_COOKIE' ) )
define( 'OLDUSER_COOKIE', 'wordpress_olduser_' . COOKIEHASH );
}
/**
* Output the 'Switch To' link on the user editing screen if we have permission to switch to this user.
*
* @param object $user User object for this screen
* @return null
*/
function personal_options( $user ) {
if ( !current_user_can( 'switch_to_user', $user->ID ) )
return;
?>
<tr>
<th scope="row"><?php _ex( 'User Switching', 'User Switching title on user profile screen', 'user_switching' ); ?></th>
<td><a href="<?php _e($this->switch_to_url( $user->ID )); ?>"><?php _e( 'Switch To', 'user_switching' ); ?></a></td>
</tr>
<?php
}
/**
* Return whether or not the current logged in user is being remembered in the form of a persistent browser
* cookie (ie. they checked the 'Remember Me' check box when they logged in). This is used to persist the
* 'remember me' value when the user switches to another user.
*
* @return bool Whether the current user is being 'remembered' or not.
*/
function remember() {
$current_user = wp_get_current_user();
$current = wp_parse_auth_cookie( '', 'logged_in' );
$cookie_life = apply_filters( 'auth_cookie_expiration', 172800, $current_user->ID, false );
return ( ( $current['expiration'] - time() ) > $cookie_life );
}
/**
* Load localisation files and route actions depending on the 'action' query var. Actions are secured
* with WordPress' nonce system.
*
* @return null
*/
function init() {
load_plugin_textdomain( 'user_switching', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
if ( !isset( $_REQUEST['action'] ) )
return;
if ( isset( $_REQUEST['redirect_to'] ) and !empty( $_REQUEST['redirect_to'] ) )
$redirect_to = remove_query_arg( array( 'user_switched', 'switched_off', 'switched_back', 'message', 'updated', 'settings-updated' ), $_REQUEST['redirect_to'] );
else
$redirect_to = false;
switch ( $_REQUEST['action'] ) {
# We're attempting to switch to another user:
case 'switch_to_user':
$user_id = intval( $_REQUEST['user_id'] );
check_admin_referer( "switch_to_user_{$user_id}" );
# Switch user:
if ( switch_to_user( $user_id, $this->remember() ) ) {
# Redirect to the dashboard or the home URL depending on capabilities:
if ( $redirect_to )
wp_safe_redirect( add_query_arg( array( 'user_switched' => 'true' ), $redirect_to ) );
else if ( !current_user_can( 'read' ) )
wp_redirect( add_query_arg( array( 'user_switched' => 'true' ), home_url() ) );
else
wp_redirect( add_query_arg( array( 'user_switched' => 'true' ), admin_url() ) );
die();
} else {
wp_die( __( 'Could not switch users.', 'user_switching' ) );
}
break;
# We're attempting to switch back to the originating user:
case 'switch_to_olduser':
check_admin_referer( 'switch_to_olduser' );
# Fetch the originating user data:
if ( !$old_user = $this->get_old_user() )
wp_die( __( 'Could not switch users.', 'user_switching' ) );
# Switch user:
if ( switch_to_user( $old_user->ID, $this->remember(), false ) ) {
if ( $redirect_to )
wp_safe_redirect( add_query_arg( array( 'user_switched' => 'true', 'switched_back' => 'true' ), $redirect_to ) );
else
wp_redirect( add_query_arg( array( 'user_switched' => 'true', 'switched_back' => 'true' ), admin_url('users.php') ) );
die();
} else {
wp_die( __( 'Could not switch users.', 'user_switching' ) );
}
break;
# We're attempting to switch off the current user:
case 'switch_off':
check_admin_referer( 'switch_off' );
# Switch off:
if ( switch_off_user() ) {
if ( $redirect_to )
wp_safe_redirect( add_query_arg( array( 'switched_off' => 'true' ), $redirect_to ) );
else
wp_redirect( add_query_arg( array( 'switched_off' => 'true' ), home_url() ) );
die();
} else {
wp_die( __( 'Could not switch off.', 'user_switching' ) );
}
break;
}
}
/**
* Display the 'Switched to {user}' and 'Switch back to {user}' messages in the admin area.
*
* @return null
*/
function admin_notice() {
global $user_identity, $user_login;
if ( $old_user = $this->get_old_user() ) {
?>
<div id="user_switching" class="updated">
<p><?php
if ( isset( $_GET['user_switched'] ) )
printf( __( 'Switched to %1$s (%2$s).', 'user_switching' ), $user_identity, $user_login );
$url = add_query_arg( array(
'redirect_to' => urlencode( $this->current_url() )
), $this->switch_back_url() );
printf( ' <a href="%s">%s</a>.', $url, sprintf( __( 'Switch back to %1$s (%2$s)', 'user_switching' ), $old_user->display_name, $old_user->user_login ) );
?></p>
</div>
<?php
} else if ( isset( $_GET['user_switched'] ) ) {
?>
<div id="user_switching" class="updated">
<p><?php
if ( isset( $_GET['switched_back'] ) )
printf( __( 'Switched back to %1$s (%2$s).', 'user_switching' ), $user_identity, $user_login );
else
printf( __( 'Switched to %1$s (%2$s).', 'user_switching' ), $user_identity, $user_login );
?></p>
</div>
<?php
}
}
/**
* Validate the old_user cookie and return its user data.
*
* @return bool|object False if there's no old_user cookie or it's invalid, WP_User object if it's present and valid.
*/
function get_old_user() {
if ( isset( $_COOKIE[OLDUSER_COOKIE] ) ) {
if ( $old_user_id = wp_validate_auth_cookie( $_COOKIE[OLDUSER_COOKIE], 'old_user' ) )
return get_userdata( $old_user_id );
}
return false;
}
/**
* Adds a 'Switch back to {user}' link to the account menu in WordPress' admin bar.
*
* @return null
*/
function admin_bar_menu( $wp_admin_bar ) {
if ( !function_exists( 'is_admin_bar_showing' ) )
return;
if ( !is_admin_bar_showing() )
return;
if ( method_exists( $wp_admin_bar, 'get_node' ) and $wp_admin_bar->get_node( 'user-actions' ) )
$parent = 'user-actions';
else if ( get_option( 'show_avatars' ) )
$parent = 'my-account-with-avatar';
else
$parent = 'my-account';
if ( $old_user = $this->get_old_user() ) {
$wp_admin_bar->add_menu( array(
'parent' => $parent,
'id' => 'wp-admin-bar-switch-back',
'title' => sprintf( __( 'Switch back to %1$s (%2$s)', 'user_switching' ), $old_user->display_name, $old_user->user_login ),
'href' => add_query_arg( array(
'redirect_to' => urlencode( $this->current_url() )
), $this->switch_back_url() )
) );
}
if ( current_user_can( 'switch_off' ) ) {
$url = $this->switch_off_url();
if ( !is_admin() ) {
$url = add_query_arg( array(
'redirect_to' => urlencode( $this->current_url() )
), $url );
}
$wp_admin_bar->add_menu( array(
'parent' => $parent,
'id' => 'wp-admin-bar-switch-off',
'title' => __( 'Switch Off', 'user_switching' ),
'href' => $url
) );
}
}
/**
* Adds a 'Switch back to {user}' link to the WordPress footer if the admin toolbar isn't showing.
*
* @return null
*/
function switch_on() {
if ( !is_admin_bar_showing() and $old_user = $this->get_old_user() ) {
$link = sprintf( __( 'Switch back to %1$s (%2$s)', 'user_switching' ), $old_user->display_name, $old_user->user_login );
$url = add_query_arg( array(
'redirect_to' => urlencode( $this->current_url() )
), $this->switch_back_url() );
_e('<p id="user_switching_switch_on"><a href="' . $url . '">' . $link . '</a></p>');
}
}
/**
* Adds a 'Switch back to {user}' link to the WordPress login screen.
*
* @return null
*/
function login_message( $message ) {
if ( $old_user = $this->get_old_user() ) {
$link = sprintf( __( 'Switch back to %1$s (%2$s)', 'user_switching' ), $old_user->display_name, $old_user->user_login );
$url = $this->switch_back_url();
if ( isset( $_REQUEST['redirect_to'] ) and !empty( $_REQUEST['redirect_to'] ) ) {
$url = add_query_arg( array(
'redirect_to' => $_REQUEST['redirect_to']
), $url );
}
$message .= '<p class="message"><a href="' . $url . '">' . $link . '</a></p>';
}
return $message;
}
/**
* Adds a 'Switch To' link to each list of user actions on the Users screen.
*
* @return null
*/
function user_row( $actions, $user ) {
if ( current_user_can( 'switch_to_user', $user->ID ) )
$actions[] = '<a href="' . $this->switch_to_url( $user->ID ) . '">' . __( 'Switch To', 'user_switching' ) . '</a>';
return $actions;
}
/**
* Adds a 'Switch back to {user}' link to the BuddyPress admin bar.
*
* @return null
*/
function bp_menu() {
if ( !is_admin() and $old_user = $this->get_old_user() ) {
_e('<li id="bp-adminbar-userswitching-menu" style="background-image:none"><a href="' . $this->switch_back_url() . '">');
printf( __( 'Switch back to %1$s (%2$s)', 'user_switching' ), $old_user->display_name, $old_user->user_login );
_e('</a></li>');
}
}
/**
* Adds a 'Switch To' link to each member's profile page and profile listings in BuddyPress.
*
* @return null
*/
function bp_button() {
global $bp, $members_template;
if ( !empty( $members_template ) )
$id = intval( $members_template->member->id );
else
$id = intval( $bp->displayed_user->id );
if ( current_user_can( 'switch_to_user', $id ) ) {
# Workaround for https://buddypress.trac.wordpress.org/ticket/4212
$components = array_keys( $bp->active_components );
if ( !empty( $components ) )
$component = reset( $components );
else
$component = 'core';
echo bp_get_button( array(
'id' => 'user_switching',
'component' => $component,
'link_href' => $this->switch_to_url( $id ),
'link_text' => __( 'Switch To', 'user_switching' )
) );
}
}
/**
* Returns the nonce-secured URL needed to switch to a given user ID.
*
* @param int $user_id The user ID to be switched to.
* @return string The required URL
*/
function switch_to_url( $user_id ) {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_to_user',
'user_id' => $user_id
), site_url( 'wp-login.php', 'login' ) ), "switch_to_user_{$user_id}" );
}
/**
* Returns the nonce-secured URL needed to switch back to the originating user.
*
* @return string The required URL
*/
function switch_back_url() {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_to_olduser'
), site_url( 'wp-login.php', 'login' ) ), 'switch_to_olduser' );
}
/**
* Returns the nonce-secured URL needed to "switch off" the current user.
*
* @return string The required URL
*/
function switch_off_url() {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_off'
), site_url( 'wp-login.php', 'login' ) ), 'switch_off' );
}
/**
* Returns the current URL.
*
* @return string The current URL
*/
function current_url() {
return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
/**
* Filter the user's capabilities so they can be added/removed on the fly.
*
* This is used to grant the 'switch_to_user' capability to a user if they have the ability to edit the user
* they're trying to switch to (and that user is not themselves), and to grant the 'switch_off' capability to
* a user if they can edit users.
*
* Important: This does not get called for Super Admins. See map_meta_cap() below.
*
* @param array $user_caps User's capabilities
* @param array $required_caps Actual required capabilities for the requested capability
* @param array $args Arguments that accompany the requested capability check:
* [0] => Requested capability from current_user_can()
* [1] => Current user ID
* [2] => Optional second parameter from current_user_can()
* @return array User's capabilities
*/
function user_cap_filter( $user_caps, $required_caps, $args ) {
if ( 'switch_to_user' == $args[0] )
$user_caps['switch_to_user'] = ( current_user_can( 'edit_user', $args[2] ) and ( $args[2] != $args[1] ) );
else if ( 'switch_off' == $args[0] )
$user_caps['switch_off'] = ( current_user_can( 'edit_users' ) and !$this->get_old_user() );
return $user_caps;
}
/**
* Filters the actual required capabilities for a given capability or meta capability.
*
* This is used to add the 'do_not_allow' capability to the list of required capabilities when a super admin
* is trying to switch to themselves. It affects nothing else as super admins can do everything by default.
*
* @param array $required_caps Actual required capabilities for the requested action
* @param string $cap Capability or meta capability being checked
* @param string $user_id Current user ID
* @param array $args Arguments that accompany this capability check
* @return array Required capabilities for the requested action
*/
function map_meta_cap( $required_caps, $cap, $user_id, $args ) {
if ( ( 'switch_to_user' == $cap ) and ( $args[0] == $user_id ) )
$required_caps[] = 'do_not_allow';
else if ( ( 'switch_off' == $cap ) and ( $this->get_old_user() ) )
$required_caps[] = 'do_not_allow';
return $required_caps;
}
}
/**
* Sets an authorisation cookie containing the user ID of the originating user.
*
* @param int $old_user_id The ID of the originating user, usually the current logged in user.
* @return null
*/
if ( !function_exists( 'wp_set_olduser_cookie' ) ) {
function wp_set_olduser_cookie( $old_user_id ) {
$expiration = time() + 172800; # 48 hours
$cookie = wp_generate_auth_cookie( $old_user_id, $expiration, 'old_user' );
setcookie( OLDUSER_COOKIE, $cookie, $expiration, COOKIEPATH, COOKIE_DOMAIN, false );
}
}
/**
* Clears the cookie containing the originating user ID.
*
* @return null
*/
if ( !function_exists( 'wp_clear_olduser_cookie' ) ) {
function wp_clear_olduser_cookie() {
setcookie( OLDUSER_COOKIE, ' ', time() - 31536000, COOKIEPATH, COOKIE_DOMAIN );
}
}
/**
* Switches the current logged in user to the specified user.
*
* @param int $user_id The ID of the user to switch to.
* @param bool $remember Whether to 'remember' the user in the form of a persistent browser cookie. Optional.
* @param int|bool $old_user_id The ID of the originating user, or false to not set the old user cookie. Defaults to the current user.
* @return bool True on success, false on failure.
*/
if ( !function_exists( 'switch_to_user' ) ) {
function switch_to_user( $user_id, $remember = false, $old_user_id = 0 ) {
if ( !function_exists( 'wp_set_auth_cookie' ) )
return false;
if ( !$user_id )
return false;
if ( !$user = get_userdata( $user_id ) )
return false;
$old_user = wp_get_current_user();
if ( ( 0 === $old_user_id ) and $old_user )
$old_user_id = $old_user->ID;
if ( $old_user_id )
wp_set_olduser_cookie( $old_user_id );
else
wp_clear_olduser_cookie();
wp_clear_auth_cookie();
wp_set_auth_cookie( $user_id, $remember );
wp_set_current_user( $user_id );
if ( false === $old_user_id )
do_action( 'switch_back_user', $user_id, $old_user_id );
else
do_action( 'switch_to_user', $user_id, $old_user_id );
return true;
}
}
/**
* Switches off the current logged in user. This logs the current user out while retaining a cookie allowing them to log straight
* back in using the 'Switch back to {user}' system.
*
* @return bool True on success, false on failure.
*/
if ( !function_exists( 'switch_off_user' ) ) {
function switch_off_user() {
if ( $old_user = wp_get_current_user() )
$old_user_id = $old_user->ID;
else
return false;
wp_set_olduser_cookie( $old_user_id );
wp_clear_auth_cookie();
do_action( 'switch_off_user', $old_user_id );
return true;
}
}
/**
* Helper function. Did the current user switch into their account?
*
* @return bool|object False if the user isn't logged in or they didn't switch in; old user object (which evalutes to true) if the user switched into the current user account.
*/
if ( !function_exists( 'current_user_switched' ) ) {
function current_user_switched() {
global $user_switching;
if ( !is_user_logged_in() )
return false;
return $user_switching->get_old_user();
}
}
global $user_switching;
$user_switching = new user_switching;
?>