FillPdfFileContextAccessControlHandler.php in FillPDF 8.4
File
src/FillPdfFileContextAccessControlHandler.php
View source
<?php
namespace Drupal\fillpdf;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;
use Symfony\Component\DependencyInjection\ContainerInterface;
class FillPdfFileContextAccessControlHandler extends EntityAccessControlHandler implements EntityHandlerInterface {
protected $accessHelper;
protected $linkManipulator;
protected $contextManager;
public function __construct(EntityTypeInterface $entity_type, FillPdfAccessHelperInterface $access_helper, FillPdfLinkManipulatorInterface $link_manipulator, FillPdfContextManagerInterface $context_manager) {
parent::__construct($entity_type);
$this->accessHelper = $access_helper;
$this->linkManipulator = $link_manipulator;
$this->contextManager = $context_manager;
}
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('fillpdf.access_helper'), $container
->get('fillpdf.link_manipulator'), $container
->get('fillpdf.context_manager'));
}
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
switch ($operation) {
case 'view':
$url_string = $entity->context->value;
$decoded_url = rawurldecode($url_string);
return $this->accessHelper
->canGeneratePdfFromUrlString($decoded_url, $account);
case 'update':
return AccessResult::forbidden();
case 'delete':
return AccessResult::allowedIfHasPermission($account, 'administer pdfs');
}
return AccessResult::allowed();
}
}