Browse Source

Islandora IIIF: Address PHPCS errors.

959-iiif-width-height-caching
Alexander O'Neill 1 year ago
parent
commit
8c8de83e9d
  1. 8
      modules/islandora_iiif/islandora_iiif.install
  2. 46
      modules/islandora_iiif/src/Plugin/Action/MediaAttributesFromIiif.php

8
modules/islandora_iiif/islandora_iiif.install

@ -5,12 +5,14 @@
* Install/update hook implementations. * Install/update hook implementations.
*/ */
/** use Symfony\Component\Yaml\Yaml;
/**
* Add Media Attributes from IIIF action. * Add Media Attributes from IIIF action.
*/ */
function islandora_iiif_update_92001(&$sandbox) { function islandora_iiif_update_92001(&$sandbox) {
$config_id = 'system.action.media_attributes_from_iiif_action'; $config_id = 'system.action.media_attributes_from_iiif_action';
$config_path = \Drupal::service('extension.list.module')->getPath('islandora_iiif') . '/config/optional/' . $config_id .'.yml'; $config_path = \Drupal::service('extension.list.module')->getPath('islandora_iiif') . '/config/optional/' . $config_id . '.yml';
$data = \Symfony\Component\Yaml\Yaml::parseFile($config_path); $data = Yaml::parseFile($config_path);
\Drupal::configFactory()->getEditable($config_id)->setData($data)->save(TRUE); \Drupal::configFactory()->getEditable($config_id)->setData($data)->save(TRUE);
} }

46
modules/islandora_iiif/src/Plugin/Action/MediaAttributesFromIiif.php

@ -4,20 +4,15 @@ namespace Drupal\islandora_iiif\Plugin\Action;
use Drupal\Component\Datetime\TimeInterface; use Drupal\Component\Datetime\TimeInterface;
use Drupal\Core\Action\Plugin\Action\SaveAction; use Drupal\Core\Action\Plugin\Action\SaveAction;
use Drupal\Core\Config\ImmutableConfig;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\file\FileInterface;
use Drupal\Core\Logger\LoggerChannelInterface; use Drupal\Core\Logger\LoggerChannelInterface;
use Drupal\Core\Session\AccountInterface; use Drupal\Core\Session\AccountInterface;
use Drupal\islandora\IslandoraUtils; use Drupal\islandora\IslandoraUtils;
use Drupal\islandora\MediaSource\MediaSourceService; use Drupal\islandora\MediaSource\MediaSourceService;
use Drupal\islandora_iiif\IiifInfo; use Drupal\islandora_iiif\IiifInfo;
use Drupal\media\MediaInterface;
use Drupal\node\NodeInterface;
use GuzzleHttp\Client; use GuzzleHttp\Client;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
/** /**
* Provides an action that can save any entity. * Provides an action that can save any entity.
* *
@ -30,18 +25,18 @@ use Symfony\Component\HttpFoundation\Request;
class MediaAttributesFromIiif extends SaveAction { class MediaAttributesFromIiif extends SaveAction {
/** /**
* The HTTP client * The HTTP client.
* *
* @var \GuzzleHttp\Client; * @var \GuzzleHttp\Client
*/ */
protected $httpClient; protected $httpClient;
/** /**
* The IIIF Info service. * The IIIF Info service.
* *
* @var IiifInfo * @var \Drupal\islandora_iiif\IiifInfo
*/ */
protected $iiifInfo; protected $iiifInfo;
/** /**
* The logger. * The logger.
@ -76,14 +71,15 @@ protected $iiifInfo;
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager. * The entity type manager.
* @param \Drupal\Component\Datetime\TimeInterface $time * @param \Drupal\Component\Datetime\TimeInterface $time
* @param
* The time service. * The time service.
* @param \Guzzle\Http\Client $http_client * @param \Guzzle\Http\Client $http_client
* The HTTP Client. * The HTTP Client.
* @param IiifInfo $iiif_info * @param \Drupal\islandora_iiif\IiifInfo $iiif_info
* The IIIF INfo service. * The IIIF INfo service.
* @param \Drupal\islandora\IslandoraUtils $islandora_utils
* Islandora utility functions.
* @param \Drupal\islandora\MediaSource\MediaSourceService $media_source * @param \Drupal\islandora\MediaSource\MediaSourceService $media_source
* Media source service. * Islandora media service.
* @param \Drupal\Core\Logger\LoggerChannelInterface $channel * @param \Drupal\Core\Logger\LoggerChannelInterface $channel
* Logger channel. * Logger channel.
*/ */
@ -91,10 +87,10 @@ protected $iiifInfo;
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $time); parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $time);
$this->httpClient = $http_client; $this->httpClient = $http_client;
$this->iiifInfo = $iiif_info; $this->iiifInfo = $iiif_info;
$this->utils = $islandora_utils; $this->utils = $islandora_utils;
$this->mediaSource = $media_source; $this->mediaSource = $media_source;
$this->logger = $channel; $this->logger = $channel;
} }
/** /**
@ -118,7 +114,7 @@ $this->logger = $channel;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function execute($entity = NULL ) { public function execute($entity = NULL) {
$width = $height = FALSE; $width = $height = FALSE;
// Get the original File media use term. // Get the original File media use term.
@ -130,15 +126,16 @@ $this->logger = $channel;
$original_file_mids = $this->utils->getMediaReferencingNodeAndTerm($entity, $original_file_term); $original_file_mids = $this->utils->getMediaReferencingNodeAndTerm($entity, $original_file_term);
if (!empty($original_file_mids)) { if (!empty($original_file_mids)) {
// Ordinarily there shouldn't be more than one Original File media but it's not guaranteed. // Ordinarily there shouldn't be more than one Original File media but
foreach($original_file_mids as $original_file_mid) { // it's not guaranteed.
foreach ($original_file_mids as $original_file_mid) {
/* /**
* @var \Drupal\Media\MediaInterface $original_file_media * @var \Drupal\Media\MediaInterface $original_file_media
*/ */
$original_file_media = $this->entityTypeManager->getStorage('media')->load($original_file_mid); $original_file_media = $this->entityTypeManager->getStorage('media')->load($original_file_mid);
// Get the media MIME Type // Get the media MIME Type.
$original_file = $this->mediaSource->getSourceFile($original_file_media); $original_file = $this->mediaSource->getSourceFile($original_file_media);
$mime_type = $original_file->getMimeType(); $mime_type = $original_file->getMimeType();
@ -146,7 +143,6 @@ $this->logger = $channel;
[$width, $height] = $this->iiifInfo->getImageDimensions($original_file); [$width, $height] = $this->iiifInfo->getImageDimensions($original_file);
} }
// @todo Make field configurable. Low priority since this whole thing is a workaround for an Islandora limitation. // @todo Make field configurable. Low priority since this whole thing is a workaround for an Islandora limitation.
if ($original_file_media->hasField('field_width') && $original_file_media->hasField('field_height')) { if ($original_file_media->hasField('field_width') && $original_file_media->hasField('field_height')) {
$original_file_media->set('field_height', $height); $original_file_media->set('field_height', $height);
@ -166,4 +162,4 @@ $this->logger = $channel;
return $object->access('update', $account, $return_as_object); return $object->access('update', $account, $return_as_object);
} }
} }

Loading…
Cancel
Save