View source
<?php
namespace Drupal\mediaelement\Plugin\Field\FieldFormatter;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManager;
use Drupal\Core\Entity\EntityFieldManager;
use Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter;
class MediaElementVideoFieldFormatter extends FileVideoFormatter implements ContainerFactoryPluginInterface {
use MediaElementFieldFormatterTrait {
defaultSettings as traitDefaultSettings;
settingsForm as traitSettingsForm;
settingsSummary as traitSettingsSummary;
viewElements as traitViewElements;
}
protected $entityTypeManager;
protected $entityFieldManager;
protected $imageStyleStorage;
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, EntityTypeManager $entity_type_manager, EntityFieldManager $entity_field_manager) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->entityTypeManager = $entity_type_manager;
$this->entityFieldManager = $entity_field_manager;
$this->imageStyleStorage = $entity_type_manager
->getStorage('image_style');
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['label'], $configuration['view_mode'], $configuration['third_party_settings'], $container
->get('entity_type.manager'), $container
->get('entity_field.manager'));
}
protected function getImageStyleOptions() {
$style_names = array_map(function ($style) {
return $style
->label();
}, $this->imageStyleStorage
->loadMultiple());
return [
'raw' => $this
->t('Original Image'),
] + $style_names;
}
protected function getImageFieldOptions() {
$options = [
'none' => $this
->t('No Poster'),
];
$entity_id = $this->fieldDefinition
->getTargetEntityTypeId();
$bundle = $this->fieldDefinition
->getTargetBundle();
$image_fields = $this->entityFieldManager
->getFieldMapByFieldType('image');
$entity_fields = $image_fields[$entity_id] ?? [];
$bundle_fields = $this->entityFieldManager
->getFieldDefinitions($entity_id, $bundle);
foreach ($entity_fields as $field_name => $field_info) {
if (in_array($bundle, $field_info['bundles'])) {
$options[$field_name] = $this
->t('@field_label (@field_name)', [
'@field_label' => $bundle_fields[$field_name]
->getLabel(),
'@field_name' => $field_name,
]);
}
}
return $options;
}
protected function getPosterPath(EntityInterface $entity) {
$image_field = $this->settings['poster_image_field'];
$image_style = $this->settings['poster_image_style'];
if ($image_field == 'none') {
return '';
}
if ($entity
->get($image_field)
->isEmpty()) {
return '';
}
$image_uri = $entity->{$image_field}->entity
->getFileUri();
$image_url = $image_style == 'raw' ? file_create_url($image_uri) : $this->imageStyleStorage
->load($image_style)
->buildUrl($image_uri);
return file_url_transform_relative($image_url);
}
public static function defaultSettings() {
return self::traitDefaultSettings() + [
'poster_image_field' => 'none',
'poster_image_style' => 'raw',
];
}
public function settingsForm(array $form, FormStateInterface $form_state) {
return $this
->traitSettingsForm($form, $form_state) + [
'poster_image_field' => [
'#title' => $this
->t('Poster Image Field'),
'#description' => $this
->t('Select an Image Field from this @entity_type type to use as the poster thumbnail.', [
'@entity_type' => $this->fieldDefinition
->getTargetEntityTypeId(),
]),
'#type' => 'select',
'#options' => $this
->getImageFieldOptions(),
'#default_value' => $this->settings['poster_image_field'],
],
'poster_image_style' => [
'#title' => $this
->t('Poster Image Style'),
'#type' => 'select',
'#options' => $this
->getImageStyleOptions(),
'#default_value' => $this->settings['poster_image_style'],
'#states' => [
'invisible' => [
':input[name*="poster_image_field"]' => [
'value' => 'none',
],
],
],
],
];
}
public function settingsSummary() {
$summary = $this
->traitSettingsSummary();
$summary[] = $this
->t('Poster Image Field: %field', [
'%field' => $this
->getImageFieldOptions()[$this->settings['poster_image_field']],
]);
if ($this->settings['poster_image_field'] != 'none') {
$summary[] = $this
->t('Poster Image Style: %style', [
'%style' => $this
->getImageStyleOptions()[$this->settings['poster_image_style']],
]);
}
return $summary;
}
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = $this
->traitViewElements($items, $langcode);
$poster_path = $this
->getPosterPath($items
->getEntity());
if (!empty($poster_path)) {
foreach ($elements as &$element) {
$element['#attributes']
->setAttribute('poster', $poster_path);
}
}
return $elements;
}
}