-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
user-switching.php
959 lines (821 loc) · 31.3 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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
<?php
/*
Plugin Name: User Switching
Description: Instant switching between user accounts in WordPress
Version: 1.0.8
Plugin URI: https://johnblackbourn.com/wordpress-plugin-user-switching/
Author: John Blackbourn
Author URI: https://johnblackbourn.com/
Text Domain: user-switching
Domain Path: /languages/
License: GPL v2 or later
Network: true
Copyright © 2009-2015 John Blackbourn
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
class user_switching {
/**
* Class constructor. Set up some filters and actions.
*/
private function __construct() {
# Required functionality:
add_filter( 'user_has_cap', array( $this, 'filter_user_has_cap' ), 10, 3 );
add_filter( 'map_meta_cap', array( $this, 'filter_map_meta_cap' ), 10, 4 );
add_filter( 'user_row_actions', array( $this, 'filter_user_row_actions' ), 10, 2 );
add_action( 'plugins_loaded', array( $this, 'action_plugins_loaded' ) );
add_action( 'init', array( $this, 'action_init' ) );
add_action( 'all_admin_notices', array( $this, 'action_admin_notices' ), 1 );
add_action( 'wp_logout', 'user_switching_clear_olduser_cookie' );
add_action( 'wp_login', 'user_switching_clear_olduser_cookie' );
# Nice-to-haves:
add_filter( 'ms_user_row_actions', array( $this, 'filter_user_row_actions' ), 10, 2 );
add_filter( 'login_message', array( $this, 'filter_login_message' ), 1 );
add_filter( 'removable_query_args', array( $this, 'filter_removable_query_args' ) );
add_action( 'wp_meta', array( $this, 'action_wp_meta' ) );
add_action( 'wp_footer', array( $this, 'action_wp_footer' ) );
add_action( 'personal_options', array( $this, 'action_personal_options' ) );
add_action( 'admin_bar_menu', array( $this, 'action_admin_bar_menu' ), 11 );
add_action( 'bp_member_header_actions', array( $this, 'action_bp_button' ), 11 );
add_action( 'bp_directory_members_actions', array( $this, 'action_bp_button' ), 11 );
add_action( 'bbp_template_after_user_details', array( $this, 'action_bbpress_button' ) );
}
/**
* Define the names of our cookies.
*/
public function action_plugins_loaded() {
// User Switching's auth_cookie
if ( ! defined( 'USER_SWITCHING_COOKIE' ) ) {
define( 'USER_SWITCHING_COOKIE', 'wordpress_user_sw_' . COOKIEHASH );
}
// User Switching's secure_auth_cookie
if ( ! defined( 'USER_SWITCHING_SECURE_COOKIE' ) ) {
define( 'USER_SWITCHING_SECURE_COOKIE', 'wordpress_user_sw_secure_' . COOKIEHASH );
}
// User Switching's logged_in_cookie
if ( ! defined( 'USER_SWITCHING_OLDUSER_COOKIE' ) ) {
define( 'USER_SWITCHING_OLDUSER_COOKIE', 'wordpress_user_sw_olduser_' . COOKIEHASH );
}
}
/**
* Output the 'Switch To' link on the user editing screen if we have permission to switch to this user.
*
* @param WP_User $user User object for this screen.
*/
public function action_personal_options( WP_User $user ) {
if ( ! $link = self::maybe_switch_url( $user ) ) {
return;
}
?>
<tr>
<th scope="row"><?php echo esc_html_x( 'User Switching', 'User Switching title on user profile screen', 'user-switching' ); ?></th>
<td><a href="<?php echo esc_url( $link ); ?>"><?php esc_html_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.
*/
public static function remember() {
/**
* Filter the duration of the authentication cookie expiration period.
*
* This matches the WordPress core filter in `wp_set_auth_cookie()`.
*
* @since 0.2.2
*
* @param int $length Duration of the expiration period in seconds.
* @param int $user_id User ID.
* @param bool $remember Whether to remember the user login. Default false.
*/
$cookie_life = apply_filters( 'auth_cookie_expiration', 172800, get_current_user_id(), false );
$current = wp_parse_auth_cookie( '', 'logged_in' );
# Here we calculate the expiration length of the current auth cookie and compare it to the default expiration.
# If it's greater than this, then we know the user checked 'Remember Me' when they logged in.
return ( ( $current['expiration'] - time() ) > $cookie_life );
}
/**
* Load localisation files and route actions depending on the 'action' query var.
*/
public function action_init() {
load_plugin_textdomain( 'user-switching', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
if ( ! isset( $_REQUEST['action'] ) ) {
return;
}
$current_user = ( is_user_logged_in() ) ? wp_get_current_user() : null;
switch ( $_REQUEST['action'] ) {
# We're attempting to switch to another user:
case 'switch_to_user':
if ( isset( $_REQUEST['user_id'] ) ) {
$user_id = absint( $_REQUEST['user_id'] );
} else {
$user_id = 0;
}
# Check authentication:
if ( ! current_user_can( 'switch_to_user', $user_id ) ) {
wp_die( esc_html__( 'Could not switch users.', 'user-switching' ) );
}
# Check intent:
check_admin_referer( "switch_to_user_{$user_id}" );
# Switch user:
$user = switch_to_user( $user_id, self::remember() );
if ( $user ) {
$redirect_to = self::get_redirect( $user, $current_user );
# Redirect to the dashboard or the home URL depending on capabilities:
$args = array( 'user_switched' => 'true' );
if ( $redirect_to ) {
wp_safe_redirect( add_query_arg( $args, $redirect_to ) );
} else if ( ! current_user_can( 'read' ) ) {
wp_redirect( add_query_arg( $args, home_url() ) );
} else {
wp_redirect( add_query_arg( $args, admin_url() ) );
}
die();
} else {
wp_die( esc_html__( 'Could not switch users.', 'user-switching' ) );
}
break;
# We're attempting to switch back to the originating user:
case 'switch_to_olduser':
# Fetch the originating user data:
if ( ! $old_user = self::get_old_user() ) {
wp_die( esc_html__( 'Could not switch users.', 'user-switching' ) );
}
# Check authentication:
if ( ! self::authenticate_old_user( $old_user ) ) {
wp_die( esc_html__( 'Could not switch users.', 'user-switching' ) );
}
# Check intent:
check_admin_referer( "switch_to_olduser_{$old_user->ID}" );
# Switch user:
if ( switch_to_user( $old_user->ID, self::remember(), false ) ) {
$redirect_to = self::get_redirect( $old_user, $current_user );
$args = array( 'user_switched' => 'true', 'switched_back' => 'true' );
if ( $redirect_to ) {
wp_safe_redirect( add_query_arg( $args, $redirect_to ) );
} else {
wp_redirect( add_query_arg( $args, admin_url( 'users.php' ) ) );
}
die();
} else {
wp_die( esc_html__( 'Could not switch users.', 'user-switching' ) );
}
break;
# We're attempting to switch off the current user:
case 'switch_off':
# Check authentication:
if ( ! current_user_can( 'switch_off' ) ) {
wp_die( esc_html__( 'Could not switch off.', 'user-switching' ) );
}
# Check intent:
check_admin_referer( "switch_off_{$current_user->ID}" );
# Switch off:
if ( switch_off_user() ) {
$redirect_to = self::get_redirect( null, $current_user );
$args = array( 'switched_off' => 'true' );
if ( $redirect_to ) {
wp_safe_redirect( add_query_arg( $args, $redirect_to ) );
} else {
wp_redirect( add_query_arg( $args, home_url() ) );
}
die();
} else {
wp_die( esc_html__( 'Could not switch off.', 'user-switching' ) );
}
break;
}
}
/**
* Fetch the URL to redirect to for a given user (used after switching).
*
* @param WP_User $new_user Optional. The new user's WP_User object.
* @param WP_User $old_user Optional. The old user's WP_User object.
* @return string The URL to redirect to.
*/
protected static function get_redirect( WP_User $new_user = null, WP_User $old_user = null ) {
if ( ! empty( $_REQUEST['redirect_to'] ) ) {
$redirect_to = self::remove_query_args( $_REQUEST['redirect_to'] );
$requested_redirect_to = $_REQUEST['redirect_to'];
} else {
$redirect_to = '';
$requested_redirect_to = '';
}
if ( ! $new_user ) {
/**
* Filter the redirect URL when a user switches off.
*
* This matches the WordPress core filter in wp-login.php.
*
* @since 1.0.4
*
* @param string $redirect_to The redirect destination URL.
* @param string $requested_redirect_to The requested redirect destination URL passed as a parameter.
* @param WP_User $old_user The WP_User object for the user that's switching off.
*/
$redirect_to = apply_filters( 'logout_redirect', $redirect_to, $requested_redirect_to, $old_user );
} else {
/**
* Filter the redirect URL when a user switches to another user or switches back.
*
* This matches the WordPress core filter in wp-login.php.
*
* @since 0.8.7
*
* @param string $redirect_to The redirect destination URL.
* @param string $requested_redirect_to The requested redirect destination URL passed as a parameter.
* @param WP_User $new_user The WP_User object for the user that's being switched to.
*/
$redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $new_user );
}
return $redirect_to;
}
/**
* Display the 'Switched to {user}' and 'Switch back to {user}' messages in the admin area.
*/
public function action_admin_notices() {
$user = wp_get_current_user();
if ( $old_user = self::get_old_user() ) {
?>
<div id="user_switching" class="updated">
<p><span class="dashicons dashicons-admin-users" style="color:#56c234"></span>
<?php
if ( isset( $_GET['user_switched'] ) ) {
echo esc_html( sprintf( __( 'Switched to %1$s (%2$s).', 'user-switching' ), $user->display_name, $user->user_login ) );
}
$url = add_query_arg( array(
'redirect_to' => urlencode( self::current_url() ),
), self::switch_back_url( $old_user ) );
printf( ' <a href="%s">%s</a>.', esc_url( $url ), esc_html( 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'] ) ) {
echo esc_html( sprintf( __( 'Switched back to %1$s (%2$s).', 'user-switching' ), $user->display_name, $user->user_login ) );
} else {
echo esc_html( sprintf( __( 'Switched to %1$s (%2$s).', 'user-switching' ), $user->display_name, $user->user_login ) );
}
?></p>
</div>
<?php
}
}
/**
* Validate the old user cookie and return its user data.
*
* @return bool|WP_User False if there's no old user cookie or it's invalid, WP_User object if it's present and valid.
*/
public static function get_old_user() {
$cookie = user_switching_get_olduser_cookie();
if ( ! empty( $cookie ) ) {
if ( $old_user_id = wp_validate_auth_cookie( $cookie, 'logged_in' ) ) {
return get_userdata( $old_user_id );
}
}
return false;
}
/**
* Authenticate an old user by verifying the latest entry in the auth cookie.
*
* @param WP_User $user A WP_User object (usually from the logged_in cookie).
* @return bool Whether verification with the auth cookie passed.
*/
public static function authenticate_old_user( WP_User $user ) {
$cookie = user_switching_get_auth_cookie();
if ( ! empty( $cookie ) ) {
if ( user_switching::secure_auth_cookie() ) {
$scheme = 'secure_auth';
} else {
$scheme = 'auth';
}
if ( $old_user_id = wp_validate_auth_cookie( end( $cookie ), $scheme ) ) {
return ( $user->ID === $old_user_id );
}
}
return false;
}
/**
* Adds a 'Switch back to {user}' link to the account menu in WordPress' admin bar.
*
* @param WP_Admin_Bar $wp_admin_bar The admin bar object
*/
public function action_admin_bar_menu( WP_Admin_Bar $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' ) ) {
if ( $wp_admin_bar->get_node( 'user-actions' ) ) {
$parent = 'user-actions';
} else {
return;
}
} else if ( get_option( 'show_avatars' ) ) {
$parent = 'my-account-with-avatar';
} else {
$parent = 'my-account';
}
if ( $old_user = self::get_old_user() ) {
$wp_admin_bar->add_menu( array(
'parent' => $parent,
'id' => 'switch-back',
'title' => esc_html( 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( self::current_url() ),
), self::switch_back_url( $old_user ) ),
) );
}
if ( current_user_can( 'switch_off' ) ) {
$url = self::switch_off_url( wp_get_current_user() );
if ( ! is_admin() ) {
$url = add_query_arg( array(
'redirect_to' => urlencode( self::current_url() ),
), $url );
}
$wp_admin_bar->add_menu( array(
'parent' => $parent,
'id' => 'switch-off',
'title' => esc_html__( 'Switch Off', 'user-switching' ),
'href' => $url,
) );
}
}
/**
* Adds a 'Switch back to {user}' link to the Meta sidebar widget if the admin toolbar isn't showing.
*/
public function action_wp_meta() {
if ( ! is_admin_bar_showing() && $old_user = self::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( self::current_url() ),
), self::switch_back_url( $old_user ) );
echo '<li id="user_switching_switch_on"><a href="' . esc_url( $url ) . '">' . esc_html( $link ) . '</a></li>';
}
}
/**
* Adds a 'Switch back to {user}' link to the WordPress footer if the admin toolbar isn't showing.
*/
public function action_wp_footer() {
if ( ! did_action( 'wp_meta' ) && ! is_admin_bar_showing() && $old_user = self::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( self::current_url() ),
), self::switch_back_url( $old_user ) );
echo '<p id="user_switching_switch_on"><a href="' . esc_url( $url ) . '">' . esc_html( $link ) . '</a></p>';
}
}
/**
* Adds a 'Switch back to {user}' link to the WordPress login screen.
*
* @param string $message The login screen message.
* @return string The login screen message.
*/
public function filter_login_message( $message ) {
if ( $old_user = self::get_old_user() ) {
$link = sprintf( __( 'Switch back to %1$s (%2$s)', 'user-switching' ), $old_user->display_name, $old_user->user_login );
$url = self::switch_back_url( $old_user );
if ( ! empty( $_REQUEST['redirect_to'] ) ) {
$url = add_query_arg( array(
'redirect_to' => urlencode( $_REQUEST['redirect_to'] ),
), $url );
}
$message .= '<p class="message" id="user_switching_switch_on"><span class="dashicons dashicons-admin-users" style="color:#56c234"></span> <a href="' . esc_url( $url ) . '">' . esc_html( $link ) . '</a></p>';
}
return $message;
}
/**
* Adds a 'Switch To' link to each list of user actions on the Users screen.
*
* @param array $actions The actions to display for this user row.
* @param WP_User $user The user object displayed in this row.
* @return array The actions to display for this user row.
*/
public function filter_user_row_actions( array $actions, WP_User $user ) {
if ( ! $link = self::maybe_switch_url( $user ) ) {
return $actions;
}
$actions['switch_to_user'] = '<a href="' . esc_url( $link ) . '">' . esc_html__( 'Switch To', 'user-switching' ) . '</a>';
return $actions;
}
/**
* Adds a 'Switch To' link to each member's profile page and profile listings in BuddyPress.
*/
public function action_bp_button() {
global $bp, $members_template;
if ( ! empty( $members_template ) && empty( $bp->displayed_user->id ) ) {
$user = get_userdata( $members_template->member->id );
} else {
$user = get_userdata( $bp->displayed_user->id );
}
if ( ! $user ) {
return;
}
if ( ! $link = self::maybe_switch_url( $user ) ) {
return;
}
$link = add_query_arg( array(
'redirect_to' => urlencode( bp_core_get_user_domain( $user->ID ) ),
), $link );
# Workaround for https://buddypress.trac.wordpress.org/ticket/4212
$components = array_keys( $bp->active_components );
if ( ! empty( $components ) ) {
$component = reset( $components );
} else {
$component = 'core';
}
// @codingStandardsIgnoreStart
echo bp_get_button( array(
'id' => 'user_switching',
'component' => $component,
'link_href' => esc_url( $link ),
'link_text' => esc_html__( 'Switch To', 'user-switching' ),
'wrapper_id' => 'user_switching_switch_to',
) );
// @codingStandardsIgnoreEnd
}
/**
* Adds a 'Switch To' link to each member's profile page in bbPress.
*/
public function action_bbpress_button() {
if ( ! $user = get_userdata( bbp_get_user_id() ) ) {
return;
}
if ( ! $link = self::maybe_switch_url( $user ) ) {
return;
}
$link = add_query_arg( array(
'redirect_to' => urlencode( bbp_get_user_profile_url( $user->ID ) ),
), $link );
?>
<ul id="user_switching_switch_to">
<li><a href="<?php echo esc_url( $link ); ?>"><?php esc_html_e( 'Switch To', 'user-switching' ); ?></a></li>
</ul>
<?php
}
/**
* Filter the list of query arguments which get removed from admin area URLs in WordPress.
*
* @link https://core.trac.wordpress.org/ticket/23367
*
* @param array $args List of removable query arguments.
* @return array Updated list of removable query arguments.
*/
public function filter_removable_query_args( array $args ) {
return array_merge( $args, array(
'user_switched', 'switched_off', 'switched_back',
) );
}
/**
* Helper function. Returns the switch to or switch back URL for a given user.
*
* @param WP_User $user The user to be switched to.
* @return string|bool The required URL, or false if there's no old user or the user doesn't have the required capability.
*/
public static function maybe_switch_url( WP_User $user ) {
$old_user = self::get_old_user();
if ( $old_user && ( $old_user->ID === $user->ID ) ) {
return self::switch_back_url( $old_user );
} else if ( current_user_can( 'switch_to_user', $user->ID ) ) {
return self::switch_to_url( $user );
} else {
return false;
}
}
/**
* Helper function. Returns the nonce-secured URL needed to switch to a given user ID.
*
* @param WP_User $user The user to be switched to.
* @return string The required URL.
*/
public static function switch_to_url( WP_User $user ) {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_to_user',
'user_id' => $user->ID,
), wp_login_url() ), "switch_to_user_{$user->ID}" );
}
/**
* Helper function. Returns the nonce-secured URL needed to switch back to the originating user.
*
* @param WP_User $user The old user.
* @return string The required URL.
*/
public static function switch_back_url( WP_User $user ) {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_to_olduser',
), wp_login_url() ), "switch_to_olduser_{$user->ID}" );
}
/**
* Helper function. Returns the nonce-secured URL needed to switch off the current user.
*
* @param WP_User $user The user to be switched off.
* @return string The required URL.
*/
public static function switch_off_url( WP_User $user ) {
return wp_nonce_url( add_query_arg( array(
'action' => 'switch_off',
), wp_login_url() ), "switch_off_{$user->ID}" );
}
/**
* Helper function. Returns the current URL.
*
* @return string The current URL.
*/
public static function current_url() {
return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
/**
* Helper function. Removes a list of common confirmation-style query args from a URL.
*
* @param string $url A URL.
* @return string The URL with the listed query args removed.
*/
public static function remove_query_args( $url ) {
/**
* Filter the list of URL parameters to remove from the URL when redirecting after a user switches.
*
* This matches the WordPress core filter in `wp_admin_canonical_url()`.
*
* @since 1.0.4
*
* @param array $removable_query_args An array of parameters to remove from the URL.
*/
$args = apply_filters( 'removable_query_args', array(
'message', 'update', 'updated', 'settings-updated', 'saved',
'activated', 'activate', 'deactivate', 'enabled', 'disabled',
'locked', 'skipped', 'deleted', 'trashed', 'untrashed',
'spammed', 'unspammed',
) );
return remove_query_arg( $args, $url );
}
/**
* Helper function. Should User Switching's equivalent of the 'logged_in' cookie be secure?
*
* This is used to set the 'secure' flag on the old user cookie, for enhanced security.
*
* @link https://core.trac.wordpress.org/ticket/15330
*
* @return bool Should the old user cookie be secure?
*/
public static function secure_olduser_cookie() {
return ( is_ssl() && ( 'https' === parse_url( home_url(), PHP_URL_SCHEME ) ) );
}
/**
* Helper function. Should User Switching's equivalent of the 'auth' cookie be secure?
*
* This is used to determine whether to set a secure auth cookie or not.
*
* @return bool Should the auth cookie be secure?
*/
public static function secure_auth_cookie() {
return ( is_ssl() && ( 'https' === parse_url( wp_login_url(), PHP_URL_SCHEME ) ) );
}
/**
* 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 filter_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.
*/
public function filter_user_has_cap( array $user_caps, array $required_caps, array $args ) {
if ( 'switch_to_user' === $args[0] ) {
$user_caps['switch_to_user'] = ( user_can( $args[1], 'edit_user', $args[2] ) && ( $args[2] != $args[1] ) );
} else if ( 'switch_off' === $args[0] ) {
$user_caps['switch_off'] = user_can( $args[1], 'edit_users' );
}
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.
*/
public function filter_map_meta_cap( array $required_caps, $cap, $user_id, array $args ) {
if ( ( 'switch_to_user' === $cap ) && ( $args[0] == $user_id ) ) {
$required_caps[] = 'do_not_allow';
}
return $required_caps;
}
/**
* Singleton instantiator.
*
* @return user_switching User Switching instance.
*/
public static function get_instance() {
static $instance;
if ( ! isset( $instance ) ) {
$instance = new user_switching;
}
return $instance;
}
}
if ( ! function_exists( 'user_switching_set_olduser_cookie' ) ) {
/**
* Sets authorisation cookies containing the originating user information.
*
* @param int $old_user_id The ID of the originating user, usually the current logged in user.
* @param bool $pop Optional. Pop the latest user off the auth cookie, instead of appending the new one. Default false.
*/
function user_switching_set_olduser_cookie( $old_user_id, $pop = false ) {
$secure_auth_cookie = user_switching::secure_auth_cookie();
$secure_olduser_cookie = user_switching::secure_olduser_cookie();
$expiration = time() + 172800; # 48 hours
$auth_cookie = user_switching_get_auth_cookie();
$olduser_cookie = wp_generate_auth_cookie( $old_user_id, $expiration, 'logged_in' );
if ( $secure_auth_cookie ) {
$auth_cookie_name = USER_SWITCHING_SECURE_COOKIE;
$scheme = 'secure_auth';
} else {
$auth_cookie_name = USER_SWITCHING_COOKIE;
$scheme = 'auth';
}
if ( $pop ) {
array_pop( $auth_cookie );
} else {
array_push( $auth_cookie, wp_generate_auth_cookie( $old_user_id, $expiration, $scheme ) );
}
setcookie( $auth_cookie_name, json_encode( $auth_cookie ), $expiration, SITECOOKIEPATH, COOKIE_DOMAIN, $secure_auth_cookie, true );
setcookie( USER_SWITCHING_OLDUSER_COOKIE, $olduser_cookie, $expiration, COOKIEPATH, COOKIE_DOMAIN, $secure_olduser_cookie, true );
}
}
if ( ! function_exists( 'user_switching_clear_olduser_cookie' ) ) {
/**
* Clears the cookies containing the originating user, or pops the latest item off the end if there's more than one.
*
* @param bool $clear_all Optional. Whether to clear the cookies (as opposed to just popping the last user off the end). Default true.
*/
function user_switching_clear_olduser_cookie( $clear_all = true ) {
$auth_cookie = user_switching_get_auth_cookie();
if ( ! empty( $auth_cookie ) ) {
array_pop( $auth_cookie );
}
if ( $clear_all || empty( $auth_cookie ) ) {
$expire = time() - 31536000;
setcookie( USER_SWITCHING_COOKIE, ' ', $expire, SITECOOKIEPATH, COOKIE_DOMAIN );
setcookie( USER_SWITCHING_SECURE_COOKIE, ' ', $expire, SITECOOKIEPATH, COOKIE_DOMAIN );
setcookie( USER_SWITCHING_OLDUSER_COOKIE, ' ', $expire, COOKIEPATH, COOKIE_DOMAIN );
} else {
if ( user_switching::secure_auth_cookie() ) {
$scheme = 'secure_auth';
} else {
$scheme = 'auth';
}
if ( $old_user_id = wp_validate_auth_cookie( end( $auth_cookie ), $scheme ) ) {
user_switching_set_olduser_cookie( $old_user_id, true );
}
}
}
}
if ( ! function_exists( 'user_switching_get_olduser_cookie' ) ) {
/**
* Gets the value of the cookie containing the originating user.
*
* @return string|bool The old user cookie, or boolean false if there isn't one.
*/
function user_switching_get_olduser_cookie() {
if ( isset( $_COOKIE[ USER_SWITCHING_OLDUSER_COOKIE ] ) ) {
return stripslashes( $_COOKIE[ USER_SWITCHING_OLDUSER_COOKIE ] );
} else {
return false;
}
}
}
if ( ! function_exists( 'user_switching_get_auth_cookie' ) ) {
/**
* Gets the value of the auth cookie containing the list of originating users.
*
* @return array Array of originating user authentication cookies. Empty array if there are none.
*/
function user_switching_get_auth_cookie() {
if ( user_switching::secure_auth_cookie() ) {
$auth_cookie_name = USER_SWITCHING_SECURE_COOKIE;
} else {
$auth_cookie_name = USER_SWITCHING_COOKIE;
}
if ( isset( $_COOKIE[ $auth_cookie_name ] ) ) {
$cookie = json_decode( stripslashes( $_COOKIE[ $auth_cookie_name ] ) );
}
if ( ! isset( $cookie ) || ! is_array( $cookie ) ) {
$cookie = array();
}
return $cookie;
}
}
if ( ! function_exists( 'switch_to_user' ) ) {
/**
* 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 Optional. Whether to 'remember' the user in the form of a persistent browser cookie. Default false.
* @param bool $set_old_user Optional. Whether to set the old user cookie. Default true.
* @return bool|WP_User WP_User object on success, false on failure.
*/
function switch_to_user( $user_id, $remember = false, $set_old_user = true ) {
if ( ! $user = get_userdata( $user_id ) ) {
return false;
}
$old_user_id = ( is_user_logged_in() ) ? get_current_user_id() : false;
if ( $set_old_user && $old_user_id ) {
user_switching_set_olduser_cookie( $old_user_id );
} else {
user_switching_clear_olduser_cookie( false );
}
wp_clear_auth_cookie();
wp_set_auth_cookie( $user_id, $remember );
wp_set_current_user( $user_id );
if ( $set_old_user ) {
/**
* Fires when a user switches to another user account.
*
* @since 0.6.0
*
* @param int $user_id The ID of the user being switched to.
* @param int $old_user_id The ID of the user being switched from.
*/
do_action( 'switch_to_user', $user_id, $old_user_id );
} else {
/**
* Fires when a user switches back to their originating account.
*
* @since 0.6.0
*
* @param int $user_id The ID of the user being switched back to.
* @param int|false $old_user_id The ID of the user being switched from, or false if the user is switching back
* after having been switched off.
*/
do_action( 'switch_back_user', $user_id, $old_user_id );
}
return $user;
}
}
if ( ! function_exists( 'switch_off_user' ) ) {
/**
* 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.
*/
function switch_off_user() {
if ( ! $old_user_id = get_current_user_id() ) {
return false;
}
user_switching_set_olduser_cookie( $old_user_id );
wp_clear_auth_cookie();
wp_set_current_user( 0 );
/**
* Fires when a user switches off.
*
* @since 0.6.0
*
* @param int $old_user_id The ID of the user switching off.
*/
do_action( 'switch_off_user', $old_user_id );
return true;
}
}
if ( ! function_exists( 'current_user_switched' ) ) {
/**
* Helper function. Did the current user switch into their account?
*
* @return bool|WP_User False if the user isn't logged in or they didn't switch in; old user object (which evaluates to
* true) if the user switched into the current user account.
*/
function current_user_switched() {
if ( ! is_user_logged_in() ) {
return false;
}
return user_switching::get_old_user();
}
}
$GLOBALS['user_switching'] = user_switching::get_instance();