activitypub-1.0.x-dev/src/Plugin/views/argument_default/Entity.php
src/Plugin/views/argument_default/Entity.php
<?php
namespace Drupal\activitypub\Plugin\views\argument_default;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\views\Plugin\views\argument_default\ArgumentDefaultPluginBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Default argument plugin to extract an entity.
*
* @ViewsArgumentDefault(
* id = "activitypub_entity",
* title = @Translation("ActivityPub")
* )
*/
class Entity extends ArgumentDefaultPluginBase implements CacheableDependencyInterface {
/**
* The route match.
*
* @var \Drupal\Core\Routing\RouteMatchInterface
*/
protected $routeMatch;
/**
* Drupal\Core\Entity\EntityTypeManagerInterface definition.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Constructs a new entity instance.
*
* @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\Routing\RouteMatchInterface $route_match
* The route match.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $route_match, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->routeMatch = $route_match;
$this->entityTypeManager = $entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('current_route_match'),
$container->get('entity_type.manager'),
);
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['entity_type_id'] = ['default' => 'node'];
return $options;
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['#type'] = 'fieldset';
$form['#title'] = $this->t('Options');
$entity_types = $this->getEntityTypes();
$form['entity_type_id'] = [
'#type' => 'select',
'#title' => $this->t('Entity Type'),
'#description' => $this->t('Select the entity type. The entity will be determined from the route parameters.'),
'#options' => $entity_types,
'#default_value' => $this->options['entity_type_id'],
'#required' => TRUE,
];
}
/**
* {@inheritdoc}
*/
public function getArgument() {
$id = NULL;
if ($entity = $this->routeMatch->getParameter($this->options['entity_type_id'])) {
$id = $entity->id();
}
return $id;
}
/**
* {@inheritdoc}
*/
public function getCacheMaxAge() {
return Cache::PERMANENT;
}
/**
* {@inheritdoc}
*/
public function getCacheContexts() {
return ['url'];
}
/**
* Get list of entity types formatted for options list.
*/
protected function getEntityTypes() {
$options = [];
foreach ($this->entityTypeManager->getDefinitions() as $entity_type_id => $definition) {
if ($definition instanceof ContentEntityTypeInterface) {
$options[$entity_type_id] = $definition->getLabel();
}
}
asort($options);
return $options;
}
}
