You are here

FlagAccessCheck.php in Open Social 10.3.x

File

modules/social_features/social_content_report/src/Access/FlagAccessCheck.php
View source
<?php

namespace Drupal\social_content_report\Access;

use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;
use Drupal\flag\FlagInterface;
use Drupal\social_content_report\ContentReportServiceInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Class FlagAccessCheck.
 */
class FlagAccessCheck implements AccessInterface, ContainerInjectionInterface {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The content report service.
   *
   * @var \Drupal\social_content_report\ContentReportServiceInterface
   */
  protected $socialContentReport;

  /**
   * FlagAccessCheck constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\social_content_report\ContentReportServiceInterface $social_content_report
   *   The content report service.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, ContentReportServiceInterface $social_content_report) {
    $this->entityTypeManager = $entity_type_manager;
    $this->socialContentReport = $social_content_report;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('social_content_report.content_report_service'));
  }

  /**
   * Checks if user is allowed to flag.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   * @param \Drupal\flag\FlagInterface $flag
   *   The flag type.
   * @param int $entity_id
   *   The entity ID which is being reported.
   *
   * @return \Drupal\Core\Access\AccessResult
   *   Allowed if user may use the flag and hasn't reported it yet.
   */
  public function access(AccountInterface $account, FlagInterface $flag, $entity_id) {
    if (in_array($flag
      ->id(), $this->socialContentReport
      ->getReportFlagTypes())) {

      // Make sure user is allowed to use the flag.
      if (!$account
        ->hasPermission('flag ' . $flag
        ->id())) {
        return AccessResult::forbidden();
      }
      $entity = $this->entityTypeManager
        ->getStorage($flag
        ->getFlaggableEntityTypeId())
        ->load($entity_id);
      $flagged = $flag
        ->isFlagged($entity, $account);

      // If the user already flagged the content they aren't allowed to do it
      // again.
      return $flagged ? AccessResult::forbidden() : AccessResult::allowed();
    }
    return AccessResult::neutral();
  }

}

Classes

Namesort descending Description
FlagAccessCheck Class FlagAccessCheck.