MediaLibraryEditorOpener.php

Same filename and directory in other branches
  1. 8.9.x core/modules/media_library/src/MediaLibraryEditorOpener.php
  2. 10 core/modules/media_library/src/MediaLibraryEditorOpener.php
  3. 11.x core/modules/media_library/src/MediaLibraryEditorOpener.php

Namespace

Drupal\media_library

File

core/modules/media_library/src/MediaLibraryEditorOpener.php

View source
<?php

namespace Drupal\media_library;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Ajax\AjaxResponse;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\editor\Ajax\EditorDialogSave;

/**
 * The media library opener for text editors.
 *
 * @internal
 *   This is an internal part of Media Library's text editor integration.
 */
class MediaLibraryEditorOpener implements MediaLibraryOpenerInterface {
    
    /**
     * The text format entity storage.
     *
     * @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface
     */
    protected $filterStorage;
    
    /**
     * The media storage.
     *
     * @var \Drupal\Core\Entity\ContentEntityStorageInterface
     */
    protected $mediaStorage;
    
    /**
     * The MediaLibraryEditorOpener constructor.
     *
     * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
     *   The entity type manager.
     */
    public function __construct(EntityTypeManagerInterface $entity_type_manager) {
        $this->filterStorage = $entity_type_manager->getStorage('filter_format');
        $this->mediaStorage = $entity_type_manager->getStorage('media');
    }
    
    /**
     * {@inheritdoc}
     */
    public function checkAccess(MediaLibraryState $state, AccountInterface $account) {
        $filter_format_id = $state->getOpenerParameters()['filter_format_id'];
        $filter_format = $this->filterStorage
            ->load($filter_format_id);
        if (empty($filter_format)) {
            return AccessResult::forbidden()->addCacheTags([
                'filter_format_list',
            ])
                ->setReason("The text format '{$filter_format_id}' could not be loaded.");
        }
        $filters = $filter_format->filters();
        return $filter_format->access('use', $account, TRUE)
            ->andIf(AccessResult::allowedIf($filters->has('media_embed') && $filters->get('media_embed')->status === TRUE));
    }
    
    /**
     * {@inheritdoc}
     */
    public function getSelectionResponse(MediaLibraryState $state, array $selected_ids) {
        $selected_media = $this->mediaStorage
            ->load(reset($selected_ids));
        $response = new AjaxResponse();
        $values = [
            'attributes' => [
                'data-entity-type' => 'media',
                'data-entity-uuid' => $selected_media->uuid(),
                'data-align' => 'center',
            ],
        ];
        $response->addCommand(new EditorDialogSave($values));
        return $response;
    }

}

Classes

Title Deprecated Summary
MediaLibraryEditorOpener The media library opener for text editors.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.