Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing behaviour #11

Merged
merged 8 commits into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions embargoes.module
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\embargoes\Access\EmbargoesFileAccessHandler;
use Drupal\node\NodeInterface;

/**
Expand Down Expand Up @@ -45,6 +46,31 @@ function embargoes_media_view(array &$build, EntityInterface $media, EntityViewD
\Drupal::service('embargoes.media_access')->setEmbargoMessage($media);
}

/**
* Implements hook_entity_type_alter().
*/
function embargoes_entity_type_alter(array &$entity_types) {
if (isset($entity_types['file'])) {
$entity_types['file']->setHandlerClass('access', EmbargoesFileAccessHandler::class);
}
}

/**
* Implemens hook_file_download().
*/
function embargoes_file_download($uri) {
$files = \Drupal::entityTypeManager()
->getStorage('file')
->loadByProperties(['uri' => $uri]);
$file = reset($files);
if ($file instanceof EntityInterface) {
$access = \Drupal::service('embargoes.file_access')->isActivelyEmbargoed($file, \Drupal::currentUser());
if ($access->isForbidden()) {
return -1;
}
}
}

/**
* Implements hook_theme().
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Access/EmbargoedFileAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public static function entityType() {
public function isActivelyEmbargoed(EntityInterface $file, AccountInterface $user) {
$state = parent::isActivelyEmbargoed($file, $user);
$parent_nodes = $this->embargoes->getParentNidsOfFileEntity($file);
$embargoes = $this->embargoes->getActiveNodeEmbargoesByNids($parent_nodes, $this->request->getClientIp(), $user);
if (!empty($embargoes) && empty($this->embargoes->getIpAllowedEmbargoes($embargoes))) {
$embargoes = $this->embargoes->getActiveEmbargoesByNids($parent_nodes, $this->request->getClientIp(), $user);
if (!empty($embargoes)) {
$state = AccessResult::forbidden();
$state->addCacheableDependency($file);
$state->addCacheableDependency($user);
Expand Down
25 changes: 25 additions & 0 deletions src/Access/EmbargoesFileAccessHandler.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

namespace Drupal\embargoes\Access;

use Drupal\file\FileAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;

/**
* Extends checkAccess to check embargoed access.
*/
class EmbargoesFileAccessHandler extends FileAccessControlHandler {

/**
* {@inheritdoc}
*/
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
$embargoed = \Drupal::service('embargoes.file_access')->isActivelyEmbargoed($entity, $account);
if ($embargoed->isForbidden()) {
return $embargoed;
}
return parent::checkAccess($entity, $operation, $account);
}

}
10 changes: 7 additions & 3 deletions src/EmbargoesEmbargoesService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
use Drupal\embargoes\Entity\EmbargoesEmbargoEntityInterface;
use Drupal\file\FileInterface;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
Expand Down Expand Up @@ -112,7 +114,7 @@ public function getIpAllowedCurrentEmbargoesByNids(array $nids) {
$embargo = $this->entityManager
->getStorage('embargoes_embargo_entity')
->load($embargo_id);
if (!is_null($embargo->getExemptIps())) {
if (!empty($embargo->getExemptIps())) {
$ip_allowed_current_embargoes[$embargo_id] = $embargo_id;
}
}
Expand Down Expand Up @@ -177,7 +179,7 @@ public function getIpAllowedEmbargoes(array $embargoes) {
$embargo = $this->entityManager
->getStorage('embargoes_embargo_entity')
->load($embargo_id);
if (!is_null($embargo->getExemptIps())) {
if (!empty($embargo->getExemptIps())) {
$ip_allowed_embargoes[$embargo_id] = $embargo->getExemptIps();
}
}
Expand Down Expand Up @@ -285,7 +287,9 @@ public function getMediaParentNids($mid) {
* {@inheritdoc}
*/
public function getParentNidsOfFileEntity(FileInterface $file) {
$relationships = file_get_file_references($file);
$relationships = NestedArray::mergeDeep(
file_get_file_references($file),
file_get_file_references($file, NULL, EntityStorageInterface::FIELD_LOAD_REVISION, 'image'));
if (!$relationships) {
$nids = [];
}
Expand Down
34 changes: 15 additions & 19 deletions src/EventSubscriber/IpRedirectAttacher.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
namespace Drupal\embargoes\EventSubscriber;

use Drupal\embargoes\Access\EmbargoedAccessInterface;
use Drupal\file\FileInterface;
use Drupal\node\NodeInterface;
use Drupal\media\MediaInterface;
use Drupal\Core\Session\AccountInterface;
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\KernelEvents;
Expand Down Expand Up @@ -60,27 +62,21 @@ public function __construct(EmbargoedAccessInterface $node_access, EmbargoedAcce
* The initial response.
*/
public function attachIpRedirect(GetResponseEvent $response) {
$route_name = $response->getRequest()->attributes->get(RouteObjectInterface::ROUTE_NAME);
$redirect_url = NULL;
// Redirect for nodes.
if (substr($route_name, 0, 11) == 'entity.node') {
$node = $response->getRequest()->attributes->get('node');
if ($node) {
$redirect_url = $this->nodeAccess->getIpEmbargoedRedirectUrl($node, $this->user);
// Cycle through all attributes; the first one we get back that's restricted
// means redirection is necessary.
foreach ($response->getRequest()->attributes->all() as $attribute) {
if ($attribute instanceof NodeInterface) {
$redirect_url = $this->nodeAccess->getIpEmbargoedRedirectUrl($attribute, $this->user);
break;
}
}
// Redirect for media.
elseif (substr($route_name, 0, 12) == 'entity.media') {
$media = $response->getRequest()->attributes->get('media');
if ($media) {
$redirect_url = $this->mediaAccess->getIpEmbargoedRedirectUrl($media, $this->user);
if ($attribute instanceof MediaInterface) {
$redirect_url = $this->mediaAccess->getIpEmbargoedRedirectUrl($attribute, $this->user);
break;
}
}
// Redirect for files.
elseif (substr($route_name, 0, 11) == 'entity.file') {
$file = $response->getRequest()->attributes->get('file');
if ($file) {
$redirect_url = $this->fileAccess->getIpEmbargoedRedirectUrl($file, $this->user);
if ($attribute instanceof FileInterface) {
$redirect_url = $this->fileAccess->getIpEmbargoedRedirectUrl($attribute, $this->user);
break;
}
}
if ($redirect_url) {
Expand Down
19 changes: 16 additions & 3 deletions src/Form/EmbargoesEmbargoEntityForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Drupal\Component\Uuid\UuidInterface;
use Drupal\Core\Entity\EntityForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
Expand Down Expand Up @@ -37,6 +38,13 @@ class EmbargoesEmbargoEntityForm extends EntityForm {
protected $uuidGenerator;

/**
* Messaging interface.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;

/*
qadan marked this conversation as resolved.
Show resolved Hide resolved
* Embargoes service.
*
* @var \Drupal\embargoes\EmbargoesEmbargoesServiceInterface
Expand All @@ -52,13 +60,16 @@ class EmbargoesEmbargoEntityForm extends EntityForm {
* An embargoes logging service.
* @param \Drupal\Component\Uuid\UuidInterface $uuid_generator
* A UUID generator.
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* Messaging interface.
* @param \Drupal\embargoes\EmbargoesEmbargoesServiceInterface $embargoes_service
* An embargoes service.
*/
public function __construct(EmbargoesIpRangesServiceInterface $ip_ranges, EmbargoesLogServiceInterface $embargoes_log, UuidInterface $uuid_generator, EmbargoesEmbargoesServiceInterface $embargoes_service) {
public function __construct(EmbargoesIpRangesServiceInterface $ip_ranges, EmbargoesLogServiceInterface $embargoes_log, UuidInterface $uuid_generator, MessengerInterface $messenger, EmbargoesEmbargoesServiceInterface $embargoes_service) {
$this->ipRanges = $ip_ranges;
$this->embargoesLog = $embargoes_log;
$this->uuidGenerator = $uuid_generator;
$this->messenger = $messenger;
$this->embargoes = $embargoes_service;
}

Expand All @@ -70,6 +81,7 @@ public static function create(ContainerInterface $container) {
$container->get('embargoes.ips'),
$container->get('embargoes.log'),
$container->get('uuid'),
$container->get('messenger'),
$container->get('embargoes.embargoes'));
}

Expand All @@ -96,7 +108,8 @@ public function form(array $form, FormStateInterface $form_state) {
],
];

qadan marked this conversation as resolved.
Show resolved Hide resolved
$form['expiration_type'] = [

$form['expiry_type'] = [
'#type' => 'radios',
'#title' => $this->t('Expiration type'),
'#default_value' => $embargo->getExpirationTypeAsInt(),
Expand Down Expand Up @@ -177,7 +190,7 @@ public function form(array $form, FormStateInterface $form_state) {
public function save(array $form, FormStateInterface $form_state) {
$embargo = $this->entity;
$embargo->setEmbargoType($form_state->getValue('embargo_type'));
$embargo->setExpirationType($form_state->getValue('expiration_type'));
$embargo->setExpirationType($form_state->getValue('expiry_type'));
$embargo->setExpirationDate($form_state->getValue('expiration_date'));
$embargo->setExemptIps($form_state->getValue('exempt_ips'));
$embargo->setExemptUsers($form_state->getValue('exempt_users'));
Expand Down