View source
<?php
namespace Drupal\freelinking\Plugin\freelinking;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Session\AccountProxyInterface;
use Drupal\Core\Url;
use Drupal\freelinking\Plugin\FreelinkingPluginBase;
use Drupal\user\UserInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class User extends FreelinkingPluginBase implements ContainerFactoryPluginInterface {
protected $entityTypeManager;
protected $currentUser;
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entityTypeManager, AccountProxyInterface $currentUser) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
$this->currentUser = $currentUser;
}
public function getIndicator() {
return '/(u|user|username|uid|userid)$/A';
}
public function getTip() {
return $this
->t('Click to view user profile.');
}
public function buildLink(array $target) {
if ($this->currentUser
->hasPermission('access user profiles')) {
$account = NULL;
if (is_numeric($target['dest'])) {
$account = $this->entityTypeManager
->getStorage('user')
->load($target['dest']);
}
else {
$accounts = $this->entityTypeManager
->getStorage('user')
->loadByProperties([
'name' => $target['dest'],
]);
if (count($accounts) === 1) {
$account = array_shift($accounts);
}
}
if (NULL !== $account && $account instanceof UserInterface) {
$link = [
'#type' => 'link',
'#title' => isset($target['text']) ? $target['text'] : $account
->getDisplayName(),
'#url' => Url::fromRoute('entity.user.canonical', [
'user' => $account
->id(),
], [
'language' => $target['language'],
]),
'#attributes' => [
'title' => isset($target['tooltip']) ? $target['tooltip'] : $this
->getTip(),
],
];
}
else {
$link = [
'#theme' => 'freelink_error',
'#plugin' => 'user',
'#message' => $this
->t('User %user not found', [
'%user' => $target['dest'],
]),
];
}
}
else {
$link = [
'#theme' => 'freelink_error',
'#plugin' => 'user',
'#message' => $this
->t('Unauthorized to view user profile.'),
];
}
return $link;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('current_user'));
}
}