class SwitchUserBlock

Same name and namespace in other branches
  1. 5.x src/Plugin/Block/SwitchUserBlock.php \Drupal\devel\Plugin\Block\SwitchUserBlock

Provides a block for switching users.

Plugin annotation


@Block(
  id = "devel_switch_user",
  admin_label = @Translation("Switch user"),
  category = "Devel"
)

Hierarchy

Expanded class hierarchy of SwitchUserBlock

File

src/Plugin/Block/SwitchUserBlock.php, line 28

Namespace

Drupal\devel\Plugin\Block
View source
class SwitchUserBlock extends BlockBase implements ContainerFactoryPluginInterface {
    use RedirectDestinationTrait;
    
    /**
     * The FormBuilder object.
     *
     * @var \Drupal\Core\Form\FormBuilderInterface
     */
    protected $formBuilder;
    
    /**
     * The Current User object.
     *
     * @var \Drupal\Core\Session\AccountInterface
     */
    protected $currentUser;
    
    /**
     * The user storage.
     *
     * @var \Drupal\Core\Entity\EntityStorageInterface
     */
    protected $userStorage;
    
    /**
     * Constructs a new SwitchUserBlock object.
     *
     * @param array $configuration
     *   A configuration array containing information about the plugin instance.
     * @param string $plugin_id
     *   The plugin_id for the plugin instance.
     * @param mixed $plugin_definition
     *   The plugin implementation definition.
     * @param \Drupal\Core\Session\AccountInterface $current_user
     *   Current user.
     * @param \Drupal\Core\Entity\EntityStorageInterface $user_storage
     *   The user storage.
     * @param \Drupal\Core\Form\FormBuilderInterface $form_builder
     *   The form builder service.
     */
    public function __construct(array $configuration, $plugin_id, $plugin_definition, AccountInterface $current_user, EntityStorageInterface $user_storage, FormBuilderInterface $form_builder) {
        parent::__construct($configuration, $plugin_id, $plugin_definition);
        $this->formBuilder = $form_builder;
        $this->currentUser = $current_user;
        $this->userStorage = $user_storage;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
        return new static($configuration, $plugin_id, $plugin_definition, $container->get('current_user'), $container->get('entity_type.manager')
            ->getStorage('user'), $container->get('form_builder'));
    }
    
    /**
     * {@inheritdoc}
     */
    public function defaultConfiguration() {
        return [
            'list_size' => 12,
            'include_anon' => FALSE,
            'show_form' => TRUE,
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function blockAccess(AccountInterface $account) {
        return AccessResult::allowedIfHasPermission($account, 'switch users');
    }
    
    /**
     * {@inheritdoc}
     */
    public function blockForm($form, FormStateInterface $form_state) {
        $anonymous = new AnonymousUserSession();
        $form['list_size'] = [
            '#type' => 'number',
            '#title' => $this->t('Number of users to display in the list'),
            '#default_value' => $this->configuration['list_size'],
            '#min' => 1,
            '#max' => 50,
        ];
        $form['include_anon'] = [
            '#type' => 'checkbox',
            '#title' => $this->t('Include %anonymous', [
                '%anonymous' => $anonymous->getDisplayName(),
            ]),
            '#default_value' => $this->configuration['include_anon'],
        ];
        $form['show_form'] = [
            '#type' => 'checkbox',
            '#title' => $this->t('Allow entering any user name'),
            '#default_value' => $this->configuration['show_form'],
        ];
        return $form;
    }
    
    /**
     * {@inheritdoc}
     */
    public function blockSubmit($form, FormStateInterface $form_state) {
        $this->configuration['list_size'] = $form_state->getValue('list_size');
        $this->configuration['include_anon'] = $form_state->getValue('include_anon');
        $this->configuration['show_form'] = $form_state->getValue('show_form');
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheMaxAge() {
        return 0;
    }
    
    /**
     * {@inheritdoc}
     */
    public function build() {
        $build = [];
        if ($accounts = $this->getUsers()) {
            $build['devel_links'] = $this->buildUserList($accounts);
            if ($this->configuration['show_form']) {
                $build['devel_form'] = $this->formBuilder
                    ->getForm('\\Drupal\\devel\\Form\\SwitchUserForm');
            }
        }
        return $build;
    }
    
    /**
     * Provides the list of accounts that can be used for the user switch.
     *
     * Inactive users are omitted from all of the following db selects. Users
     * with 'switch users' permission and anonymous user if include_anon property
     * is set to TRUE, are prioritized.
     *
     * @return \Drupal\Core\Session\AccountInterface[]
     *   List of accounts to be used for the switch.
     */
    protected function getUsers() {
        $list_size = $this->configuration['list_size'];
        $include_anonymous = $this->configuration['include_anon'];
        $list_size = $include_anonymous ? $list_size - 1 : $list_size;
        // Users with 'switch users' permission are prioritized so
        // we try to load first users with this permission.
        $query = $this->userStorage
            ->getQuery()
            ->condition('uid', 0, '>')
            ->condition('status', 0, '>')
            ->sort('access', 'DESC')
            ->range(0, $list_size);
        $roles = user_roles(TRUE, 'switch users');
        if (!empty($roles) && !isset($roles[Role::AUTHENTICATED_ID])) {
            $query->condition('roles', array_keys($roles), 'IN');
        }
        $user_ids = $query->execute();
        // If we don't have enough users with 'switch users' permission, add
        // uids until we hit $list_size.
        if (count($user_ids) < $list_size) {
            $query = $this->userStorage
                ->getQuery()
                ->condition('uid', 0, '>')
                ->condition('status', 0, '>')
                ->sort('access', 'DESC')
                ->range(0, $list_size);
            // Excludes the prioritized user ids only if the previous query return
            // some records.
            if (!empty($user_ids)) {
                $query->condition('uid', array_keys($user_ids), 'NOT IN');
                $query->range(0, $list_size - count($user_ids));
            }
            $user_ids += $query->execute();
        }
        
        /** @var \Drupal\Core\Session\AccountInterface[] $accounts */
        $accounts = $this->userStorage
            ->loadMultiple($user_ids);
        if ($include_anonymous) {
            $anonymous = new AnonymousUserSession();
            $accounts[$anonymous->id()] = $anonymous;
        }
        uasort($accounts, 'static::sortUserList');
        return $accounts;
    }
    
    /**
     * Builds the user listing as renderable array.
     *
     * @param \Drupal\core\Session\AccountInterface[] $accounts
     *   The accounts to be rendered in the list.
     *
     * @return array
     *   A renderable array.
     */
    protected function buildUserList(array $accounts) {
        $links = [];
        foreach ($accounts as $account) {
            $links[$account->id()] = [
                'title' => $account->getDisplayName(),
                'url' => Url::fromRoute('devel.switch', [
                    'name' => $account->getAccountName(),
                ]),
                'query' => $this->getDestinationArray(),
                'attributes' => [
                    'title' => $account->hasPermission('switch users') ? $this->t('This user can switch back.') : $this->t('Caution: this user will be unable to switch back.'),
                ],
            ];
            if ($account->isAnonymous()) {
                $links[$account->id()]['url'] = Url::fromRoute('user.logout');
            }
            if ($this->currentUser
                ->id() === $account->id()) {
                $links[$account->id()]['title'] = new FormattableMarkup('<strong>%user</strong>', [
                    '%user' => $account->getDisplayName(),
                ]);
            }
        }
        return [
            '#theme' => 'links',
            '#links' => $links,
            '#attached' => [
                'library' => [
                    'devel/devel',
                ],
            ],
        ];
    }
    
    /**
     * Helper callback for uasort() to sort accounts by last access.
     *
     * @param \Drupal\Core\Session\AccountInterface $a
     *   First account.
     * @param \Drupal\Core\Session\AccountInterface $b
     *   Second account.
     *
     * @return int
     *   Result of comparing the last access times:
     *   - -1 if $a was more recently accessed
     *   -  0 if last access times compare equal
     *   -  1 if $b was more recently accessed
     */
    public static function sortUserList(AccountInterface $a, AccountInterface $b) {
        $a_access = (int) $a->getLastAccessedTime();
        $b_access = (int) $b->getLastAccessedTime();
        if ($a_access === $b_access) {
            return 0;
        }
        // User never access to site.
        if ($a_access === 0) {
            return 1;
        }
        return $a_access > $b_access ? -1 : 1;
    }

}

Members

Title Sort descending Modifiers Object type Summary Member alias Overriden Title Overrides
BlockBase::buildConfigurationForm public function Form constructor. Overrides PluginFormInterface::buildConfigurationForm 2
BlockPluginInterface::BLOCK_LABEL_VISIBLE constant Indicates the block label (title) should be displayed to end users.
BlockPluginTrait::$inPreview protected property Whether the plugin is being rendered in preview mode.
BlockPluginTrait::$transliteration protected property The transliteration service.
BlockPluginTrait::access public function
BlockPluginTrait::baseConfigurationDefaults protected function Returns generic default configuration for block plugins.
BlockPluginTrait::blockValidate public function 3
BlockPluginTrait::buildConfigurationForm public function Creates a generic configuration form for all block types. Individual
block plugins can add elements to this form by overriding
BlockBase::blockForm(). Most block plugins should not override this
method unless they need to alter the generic form elements.
Aliased as: traitBuildConfigurationForm
BlockPluginTrait::calculateDependencies public function
BlockPluginTrait::getConfiguration public function 1
BlockPluginTrait::getMachineNameSuggestion public function 1
BlockPluginTrait::getPreviewFallbackString public function 3
BlockPluginTrait::label public function
BlockPluginTrait::setConfiguration public function
BlockPluginTrait::setConfigurationValue public function
BlockPluginTrait::setInPreview public function
BlockPluginTrait::setTransliteration public function Sets the transliteration service.
BlockPluginTrait::submitConfigurationForm public function Most block plugins should not override this method. To add submission
handling for a specific block type, override BlockBase::blockSubmit().
BlockPluginTrait::transliteration protected function Wraps the transliteration service.
BlockPluginTrait::validateConfigurationForm public function Most block plugins should not override this method. To add validation
for a specific block type, override BlockBase::blockValidate().
1
ContextAwarePluginAssignmentTrait::addContextAssignmentElement protected function Builds a form element for assigning a context to a given slot.
ContextAwarePluginAssignmentTrait::contextHandler protected function Wraps the context handler.
ContextAwarePluginTrait::$context protected property The data objects representing the context of this plugin.
ContextAwarePluginTrait::$initializedContextConfig protected property Tracks whether the context has been initialized from configuration.
ContextAwarePluginTrait::getCacheContexts public function 9
ContextAwarePluginTrait::getCacheTags public function 4
ContextAwarePluginTrait::getContext public function
ContextAwarePluginTrait::getContextDefinition public function
ContextAwarePluginTrait::getContextDefinitions public function
ContextAwarePluginTrait::getContextMapping public function
ContextAwarePluginTrait::getContexts public function
ContextAwarePluginTrait::getContextValue public function
ContextAwarePluginTrait::getContextValues public function
ContextAwarePluginTrait::getPluginDefinition abstract public function 1
ContextAwarePluginTrait::setContext public function 1
ContextAwarePluginTrait::setContextMapping public function
ContextAwarePluginTrait::setContextValue public function
ContextAwarePluginTrait::validateContexts public function
DerivativeInspectionInterface::getBaseId public function Gets the base_plugin_id of the plugin instance. 1
DerivativeInspectionInterface::getDerivativeId public function Gets the derivative_id of the plugin instance. 1
MessengerTrait::$messenger protected property The messenger. 17
MessengerTrait::messenger public function Gets the messenger. 17
MessengerTrait::setMessenger public function Sets the messenger.
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
PluginWithFormsTrait::getFormClass public function Implements \Drupal\Core\Plugin\PluginWithFormsInterface::getFormClass().
PluginWithFormsTrait::hasFormClass public function Implements \Drupal\Core\Plugin\PluginWithFormsInterface::hasFormClass().
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a &#039;destination&#039; URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 3
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
SwitchUserBlock::$currentUser protected property The Current User object.
SwitchUserBlock::$formBuilder protected property The FormBuilder object.
SwitchUserBlock::$userStorage protected property The user storage.
SwitchUserBlock::blockAccess public function Indicates whether the block should be shown. Overrides BlockPluginTrait::blockAccess
SwitchUserBlock::blockForm public function Overrides BlockPluginTrait::blockForm
SwitchUserBlock::blockSubmit public function Overrides BlockPluginTrait::blockSubmit
SwitchUserBlock::build public function Builds and returns the renderable array for this block plugin. Overrides BlockPluginInterface::build
SwitchUserBlock::buildUserList protected function Builds the user listing as renderable array.
SwitchUserBlock::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
SwitchUserBlock::defaultConfiguration public function Overrides BlockPluginTrait::defaultConfiguration
SwitchUserBlock::getCacheMaxAge public function Overrides ContextAwarePluginTrait::getCacheMaxAge
SwitchUserBlock::getUsers protected function Provides the list of accounts that can be used for the user switch.
SwitchUserBlock::sortUserList public static function Helper callback for uasort() to sort accounts by last access.
SwitchUserBlock::__construct public function Constructs a new SwitchUserBlock object. Overrides BlockPluginTrait::__construct