Comutare utilizatori

Descriere

Acest modul îți permite să schimbi rapid conturile de utilizator în WordPress, cu un clic pe un buton. Vei fi autentificat și dezautentificat instantaneu ca utilizatorul pe care îl alegi. Este util pentru medii de testare, pentru a ajuta clienții de pe site-urile WooCommerce sau pentru administratorii care au nevoie să comute între mai multe conturi.

Funcționalități

  • Comută utilizator: Comută instantaneu la oricare utilizator din ecranul de Utilizatori.
  • Comută înapoi: Comută instantaneu înapoi la contul tău originar.
  • Comutare oprită: Deautentificare din contul tău dar reține abilitatea de a comuta din nou instantaneu înapoi.
  • Compatible with Multisite, WooCommerce, BuddyPress, bbPress, and most two-factor authentication plugins.

Securitate

  • Doar utilizatorii cu abilitatea de a edita alți utilizatori pot să comute între conturi. Implicit, aceștia sunt doar administratori pe instalările cu un singur site și super-administratori de pe instalările multi-site.
  • Parolele nu sunt (și nu pot fi) devoalate.
  • Folosește sistemul de autentificare cu cookie al WordPress când reține contul(urile) de unde ai comutat când comută înapoi.
  • Implementează sistemul de securitate cu cod de unică folosință (nonce) în WordPress, însemnând că doar aceia care intenționează să comute utilizatorul pot comuta.
  • Full support for user session validation where appropriate.
  • Suport complet pentru administrare peste SSL (dacă e cazul).

Utilizare

  1. Vizitează meniul Utilizatoridin WordPress și vei vedea legătura Comută la în lista de acțiuni pentru fiecare utilizator.
  2. Clic aici și vei fi imediat comutat în contul acelui utilizator.
  3. Poți comuta înapoi la contul tău originar via legătura Comută înapoi pe fiecare ecran al panoului de control sau în meniul tău de profil din bara de unelte WordPress.

Vezi Întrebări/Răspunsuri pentru informații despre facilitatea de Comutare oprită.

Other Plugins

I maintain several other plugins for developers. Check them out:

  • Query Monitor is the developer tools panel for WordPress
  • WP Crontrol lets you view and control what’s happening in the WP-Cron system

Declarație de confidențialitate

User Switching makes use of browser cookies in order to allow users to switch to another account. Its cookies operate using the same mechanism as the authentication cookies in WordPress core, which means their values contain the user’s user_login field in plain text which should be treated as potentially personally identifiable information (PII) for privacy and regulatory reasons (GDPR, CCPA, etc). The names of the cookies are:

  • wordpress_user_sw_{COOKIEHASH}
  • wordpress_user_sw_secure_{COOKIEHASH}
  • wordpress_user_sw_olduser_{COOKIEHASH}

User Switching does not send data to any third party, nor does it include any third party resources, nor will it ever do so.

See also the FAQ for some questions relating to privacy and safety when switching between users.

Capturi ecran

  • Legătura Comută la din ecranul Utilizatori
  • Legătura Comută la din profilul unui utilizator

Întrebări frecvente

Does this plugin work with PHP 8?

Yes, it’s actively tested and working up to PHP 8.1.

Ce înseamnă „Comutare oprită”?

Oprirea comutării te deautentifică din contul tău dar reține ID-ul tău de utilizator într-un cookie de autentificare pentru a putea comuta imediat înapoi fără să trebuiască să te autentifici din nou. E asemănător cu comutarea la niciun utilizator, iar apoi să poți comuta înapoi.

Legătura Comutare oprită poate fi găsită în meniul tău de profil din bara de unelte WordPress. Odată ce ai oprit comutarea vei vedea o legătură Comută înapoi în ecranul de autentificare și în subsolul site-ului tău.

Poate lucra acest modul cu instalări WordPress multi-site?

Da, iar tu vei fi de asemenea capabil să comuți utilizatorii din ecranul Utilizatori din Administrare rețea.

Does this plugin work with WooCommerce?

Yes, and you’ll also be able to switch users from various WooCommerce administration screens.

Poate lucra acest modul cuBuddyPress?

Da, iar tu vei fi de de asemenea capabil să comuți utilizatorii din ecranele de profil membru și din cel cu lista membrilor.

Poate lucra acest modul cu bbPress?

Da, iar tu vei putea de asemenea să comuți utilizatorii din ecranele de profil membru.

Acest modul funcționează dacă site-ul meu folosește un modul de autentificare în doi-factori?

Da, cel mult.

O excepție de care sunt conștient este Duo Security. Dacă folosești acest modul, ar trebui să instalezi modulul suplimentar User Switching pentru Duo Security care va împiedica autentificarea cu doi-factori să apară la comutarea între utilizatori.

Ce capabilitate trebuie să aibă un utilizator pentru a putea comuta între conturi?

Un utilizator are nevoie de capabilitatea edit_users pentru a putea comuta între conturi de utilizatori. Implicit doar administratorii au această capabilitate, iar cu validarea modului multi-site doar super administratorii o au.

Can the ability to switch accounts be granted to other users or roles?

Yes. The switch_users meta capability can be explicitly granted to a user or a role to allow them to switch users regardless of whether or not they have the edit_users capability. For practical purposes, the user or role will also need the list_users capability so they can access the Users menu in the WordPress admin area.

add_filter( 'user_has_cap', function( $allcaps, $caps, $args, $user ) {
    if ( 'switch_to_user' === $args[0] ) {
        if ( my_condition( $user ) ) {
            $allcaps['switch_users'] = true;
        }
    }
    return $allcaps;
}, 9, 4 );

Note that this needs to happen before User Switching’s own capability filtering, hence the priority of 9.

Can the ability to switch accounts be denied from users?

Yes. User capabilities in WordPress can be set to false to deny them from a user. Denying the switch_users capability prevents the user from switching users, even if they have the edit_users capability.

add_filter( 'user_has_cap', function( $allcaps, $caps, $args, $user ) {
    if ( 'switch_to_user' === $args[0] ) {
        if ( my_condition( $user ) ) {
            $allcaps['switch_users'] = false;
        }
    }
    return $allcaps;
}, 9, 4 );

Note that this needs to happen before User Switching’s own capability filtering, hence the priority of 9.

Can I add a custom „Switch To” link to my own plugin or theme?

Yes. Use the user_switching::maybe_switch_url() method for this. It takes care of authentication and returns a nonce-protected URL for the current user to switch into the provided user account.

if ( method_exists( 'user_switching', 'maybe_switch_url' ) ) {
    $url = user_switching::maybe_switch_url( $target_user );
    if ( $url ) {
        printf(
            '<a href="%1$s">Switch to %2$s</a>',
            esc_url( $url ),
            esc_html( $target_user->display_name )
        );
    }
}

This link also works for switching back to the original user, but if you want an explicit link for this you can use the following code:

if ( method_exists( 'user_switching', 'get_old_user' ) ) {
    $old_user = user_switching::get_old_user();
    if ( $old_user ) {
        printf(
            '<a href="%1$s">Switch back to %2$s</a>',
            esc_url( user_switching::switch_back_url( $old_user ) ),
            esc_html( $old_user->display_name )
        );
    }
}

Can I determine whether the current user switched into their account?

Yes. Use the current_user_switched() function for this.

if ( function_exists( 'current_user_switched' ) ) {
    $switched_user = current_user_switched();
    if ( $switched_user ) {
        // User is logged in and has switched into their account.
        // $switched_user is the WP_User object for their originating user.
    }
}

Does this plugin allow a user to frame another user for an action?

Potentially yes, but User Switching includes some safety protections for this and there are further precautions you can take as a site administrator:

  • User Switching stores the ID of the originating user in the new session for the user they switch to. Although this session does not persist by default when they subsequently switch back, there will be a record of this ID if your MySQL server has query logging enabled.
  • User Switching stores the login name of the originating user in an authentication cookie (see the Privacy Statement for more information). If your server access logs store cookie data, there will be a record of this login name (along with the IP address) for each access request.
  • You can install an audit trail plugin such as Simple History, WP Activity Log, or Stream, all of which have built-in support for User Switching and all of which log an entry when a user switches into another account.
  • User Switching triggers an action when a user switches account, switches off, or switches back (see below). You can use these actions to perform additional logging for safety purposes depending on your requirements.

One or more of the above should allow you to correlate an action with the originating user when a user switches account, should you need to.

Bear in mind that even without the User Switching plugin in use, any user who has the ability to edit another user can still frame another user for an action by, for example, changing their password and manually logging into that account. If you are concerned about users abusing others, you should take great care when granting users administrative rights.

Pot administratorii obișnuiți să comute conturile în instalările multi-site?

Nu. Asta poate fi validată prin instalarea modulului Comutarea utilizatorilor pentru administratori obișnuiți.

Pot comuta utilizatorii direct din bara de instrumente de administrare?

Da, există un modul terț suplimentar pentru asta: Admin Bar User Switching.

Sunt apelate orice acțiuni ale modulului când utilizatorul comută între conturi?

Yes. When a user switches to another account, the switch_to_user hook is called:

/**
 * Fires when a user switches to another user account.
 *
 * @since 0.6.0
 * @since 1.4.0 The `$new_token` and `$old_token` parameters were added.
 *
 * @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.
 * @param string $new_token   The token of the session of the user being switched to. Can be an empty string
 *                            or a token for a session that may or may not still be valid.
 * @param string $old_token   The token of the session of the user being switched from.
 */
do_action( 'switch_to_user', $user_id, $old_user_id, $new_token, $old_token );

When a user switches back to their originating account, the switch_back_user hook is called:

/**
 * Fires when a user switches back to their originating account.
 *
 * @since 0.6.0
 * @since 1.4.0 The `$new_token` and `$old_token` parameters were added.
 *
 * @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.
 * @param string    $new_token   The token of the session of the user being switched to. Can be an empty string
 *                               or a token for a session that may or may not still be valid.
 * @param string    $old_token   The token of the session of the user being switched from.
 */
do_action( 'switch_back_user', $user_id, $old_user_id, $new_token, $old_token );

When a user switches off, the switch_off_user hook is called:

/**
 * Fires when a user switches off.
 *
 * @since 0.6.0
 * @since 1.4.0 The `$old_token` parameter was added.
 *
 * @param int    $old_user_id The ID of the user switching off.
 * @param string $old_token   The token of the session of the user switching off.
 */
do_action( 'switch_off_user', $old_user_id, $old_token );

In addition, User Switching respects the following filters from WordPress core when appropriate:

  • login_redirect when switching to another user.
  • logout_redirect when switching off.

Do you accept donations?

I am accepting sponsorships via the GitHub Sponsors program and any support you can give will help me maintain this plugin and keep it free for everyone.

Recenzii

12 iulie 2023 2 răspunsuri
This is an excellent tool, thank you so much to the developer for their contribution. I hope to see some updates soon. Worrying that it might be abandoned as it hasn't received any updates for almost a year.
6 iunie 2023
I am really grateful that this tool exists, it works flawlessly.
17 aprilie 2023
I use "User Switching" on all the sites I develop. It's important that the users have the rights they need, and nothing more. That may require you to add additional capabilities to additional roles or specific users; a different plugin is used to do that. Also, the Gutenberg experience can be a bit overwhelming to the average contributor, but we can provide a simpler editor experience by hiding the 35 blocks and any panels they don't need. These processes are much easier to complete and verify, when you, as an administrator, just can switch to the selected user profile without having to log out and in, in a separate windows or browser. I've been using User Switching for years, including on a handful of WordPress 6.2 development sites, and to me, it just works ✔
Citește toate cele 215 recenzii

Contributori și dezvoltatori

„Comutare utilizatori” este un software open-source. La acest modul au contribuit următoarele persoane.

Contributori

„Comutare utilizatori” a fost tradus în 48 de locale. Mulțumim traducătorilor pentru contribuția lor.

Tradu „Comutare utilizatori” în limba ta.

Te interesează dezvoltarea?

Răsfoiește codul, vezi depozitarul SVN, sau abonează-te la jurnalul de dezvoltare prin RSS.

Istoric modificări

1.7.0

  • Redirect to the current post, term, user, or comment being edited when switching off
  • Clean up some user-facing messages
  • Apply basic styling to the Switch Back link that appears in the footer
  • Use a better placement for the Switch To menu on bbPress profiles
  • Use a more appropriate HTTP response code if switching off fails
  • Exclude .editorconfig from dist ZIP

1.6.0

  • Add a ‘Switch To’ link to the order screen in WooCommerce
  • Add a ‘Switch back’ link to the My Account screen and the login screen in WooCommerce

1.5.8

  • Avoid a fatal if the interim-login query parameter is present on a page other than wp-login.php.

1.5.7

  • Fix some issues that could lead to PHP errors given a malformed cookie.
  • Fix documentation.

1.5.6

  • Add a class to the table row on the user edit screen.
  • Updated docs.

1.5.5

  • Added the user_switching_in_footer filter to disable output in footer on front end.
  • Documentation additions and improvements.

1.5.4

  • Fix a cookie issue caused by Jetpack 8.1.1 which prevented switching back to the original user.

1.5.3

  • Remove usage of a method that’s been deprecated in WordPress 5.3

1.5.2

  • Set the correct lang attribute on User Switching’s admin notice.
  • Move the WooCommerce session forgetting to an action callback so it can be unhooked if necessary.

1.5.1

  • Add appropriate HTTP response codes to the error states.
  • Display User Switching’s messages in the original user’s locale.
  • Increase the priority of the hook that sets up the cookie constants. See #40.
  • Don’t attempt to output the ‘Switch To’ link on author archives when the queried object isn’t a user. See #39.

1.5.0

  • Add support for forgetting WooCommerce sessions when switching between users. Requires WooCommerce 3.6+.

1.4.2

  • Don’t attempt to add the Switch To link to the admin toolbar when viewing an author archive in the admin area. This prevents a fatal error occurring when filtering custom post type listing screens by authors in the admin area.

1.4.1

  • Add a Switch To link to the Edit User admin toolbar menu when viewing an author archive.
  • Add a Switch back link to the Edit User admin toolbar menu when viewing an author archive and you’re already switched.

1.4.0

  • Add support for user session retention, reuse, and destruction when switching to and back from other user accounts.
  • Add support for the switch_users meta capability for fine grained control over the ability to switch user accounts.
  • More code and documentation quality improvements.

1.3.1

  • Add support for the X-Redirect-By header in WordPress 5.0.
  • Allow User Switching’s admin notices to be dismissed.
  • Introduce a privacy statement.

1.3.0

  • Update the BuddyPress compatibility.
  • Various code and inline docs improvements.

1.2.0

  • Improve the Switch Back functionality when the interim login window is shown.
  • Always show the Switch Back link in the Meta widget if it’s present.

1.1.0

  • Introduce a user_switching_switched_message filter to allow customisation of the message displayed to switched users in the admin area.
  • Switch to safe redirects for extra paranoid hardening.
  • Docblock improvements.
  • Coding standards improvements.

1.0.9

  • Renunțarea la limbile din pachet în favoarea pachetelor de limbi din translate.wordpress.org.

1.0.8

  • Traduceri în chineză (taiwaneză) și cehă.
  • Actualizare traduceri în daneză, spaniolă, idiș și germană.
  • Adăugat un atribut ID la legăturile generate de User Switching pe ecranul de autentificare WordPress, pe ecranele BuddyPress și bbPress.
  • Evitarea unei note învechite despre argument când e îndepărtat nodul acțiuni-utilizator din bara de administrare.

1.0.7

  • Traduceri în azeră, daneză și bosniacă.
  • A fost adăugat înapoi titlul ‘Comutare utilizatori’ pe ecranul de profil utilizator.
  • Corectează valoarea trecută parametrului $old_user_id al hook-ului switch_back_user când un utilizator a fost comutat pe oprit. Acesta ar trebui să fie mai degrabă boolean false decât 0.
  • Doc-blocuri pentru acțiuni și filtre.
  • Mai multe îmbunătățiri de standarde de cod.

1.0.6

  • Corectarea valorilor transferate acțiunii switch_back_user când un utilizator comută înapoi.
  • Mai multe îmbunătățiri de standarde de cod.

1.0.5

  • Traducere în norvegiană de Per Søderlind.
  • Îmbunătățiri standarde de cod.

1.0.4

  • Suport pentru noile filtre logout_redirect și removable_query_args din WordPress 4.2.

1.0.3

  • Traducerea în croată de Ante Sepic.
  • Evitarea notificărilor PHP cauzate de alte module care în mod eronat folosesc ca și capabilitate booleanul true.

1.0.2

  • Traducere în turcă de Abdullah Pazarbasi.
  • Traducere în română de ArianServ și Adrian Pop.
  • Traducere în olandeză de Thom.
  • Traducere în grecește de evigiannakou.
  • Traducere în bulgară de Petya Raykovska.
  • Traducere în finladeză de Sami Keijonen.
  • Traducere în italiană de Alessandro Curci și Alessandro Tesoro.
  • Actualizarea traducerilor în arabă, spaniolă, germană și poloneză.

1.0.1

  • Scurtarea numelor cookie-urilor utilizate de Comutarea utilizatorilor pentru a evita problemele cu regulile implicite prea zeloase ale lui Suhosin.
  • Adăugarea compatibilității cu versiuni mai vechi pentru constanta OLDUSER_COOKIE învechită.

1.0

  • Întărirea securității pentru situri care folosesc HTTPS în zona de administrare și HTTP în cea publică.
  • Adaugă o verificare suplimentară de autentificare înainte de verificarea nonce (cu codul de unică folosință).
  • Icon drăguț alături de legăturile ‘Comută înapoi’.

0.9

  • Corecții minore pentru filtrul login_redirect.
  • Creșterea specificității codurilor de unică folosință (nonce) switch_to_old_user și switch_off.

0.8.9

  • Traducere în franceză de Fx Bénard.
  • Traducere în evreiește de Rami Y.
  • Traducere în indoneziană de Eko Ikhyar.
  • Traducere în portugheză de Raphael Mendonça.