You are here

class CertificateController in Opigno certificate 8

Same name and namespace in other branches
  1. 3.x src/Controller/CertificateController.php \Drupal\opigno_certificate\Controller\CertificateController

Defines a controller to render a single opigno_certificate.

Hierarchy

Expanded class hierarchy of CertificateController

File

src/Controller/CertificateController.php, line 16

Namespace

Drupal\opigno_certificate\Controller
View source
class CertificateController extends EntityViewController {

  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $currentUser;

  /**
   * Creates a CertificateController object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_manager
   *   The entity manager.
   * @param \Drupal\Core\Render\RendererInterface $renderer
   *   The renderer service.
   * @param \Drupal\Core\Session\AccountInterface $current_user
   *   The current user.
   */
  public function __construct(EntityTypeManagerInterface $entity_manager, RendererInterface $renderer, AccountInterface $current_user) {
    parent::__construct($entity_manager, $renderer);
    $this->currentUser = $current_user ?: \Drupal::currentUser();
  }

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

  /**
   * Callback to view the opigno_certificate entity attached to any entity.
   */
  public function viewEntity($entity_type, $entity_id, $view_mode = 'full') {
    $entity = $this->entityManager
      ->getStorage($entity_type)
      ->load($entity_id);

    /** @var \Drupal\opigno_certificate\OpignoCertificateInterface $opigno_certificate */
    $opigno_certificate = $entity->field_certificate->entity;

    // We're going to render the opigno_certificate,
    // but the opigno_certificate will need pull
    // information from the entity that references it. So set the
    // 'referencing_entity' computed field to the entity being displayed.
    $opigno_certificate
      ->set('referencing_entity', $entity);
    return $this
      ->view($opigno_certificate, $view_mode);
  }

  /**
   * {@inheritdoc}
   */
  public function view(EntityInterface $opigno_certificate, $view_mode = 'full') {

    /** @var \Drupal\opigno_certificate\OpignoCertificateInterface $opigno_certificate */

    // @todo: check opigno_certificate access before rendering the opigno_certificate.
    // @todo: implement entity access to check that user has completed learning
    // path. This will need to be a custom access operation other than 'view'.

    /*if ($entity = $opigno_certificate->referencing_entity->entity) {
      $title = $entity->label();
      }*/
    if (in_array($view_mode, [
      'full',
      'default',
    ]) && $opigno_certificate
      ->getViewModeSelectorField()) {
      $view_mode = 'view_mode_selector';
    }
    $build = parent::view($opigno_certificate, $view_mode);
    return $build;
  }

  /**
   * Checks access for the controller.
   *
   * @param string $entity_type
   *   The entity type.
   * @param string $entity_id
   *   The entity ID.
   *
   * @return \Drupal\Core\Access\AccessResult
   *   The access result object.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public function viewAccess($entity_type, $entity_id) {
    $entity = $this->entityManager
      ->getStorage($entity_type)
      ->load($entity_id);
    if ($entity && ($opigno_certificate = $entity->field_certificate->entity)) {
      $opigno_certificate
        ->set('referencing_entity', $entity);
      $access_result = AccessResult::allowedIfHasPermission($this->currentUser, 'administer certificates');
      if ($access_result
        ->isAllowed()) {
        return $access_result;
      }

      // Check access against the entity referencing the opigno_certificate
      // instead of the opigno_certificate itself,
      // so that each entity can have its own access check,
      // but use 'view opigno_certificate'
      // so that the access is specific to viewing opigno_certificates.
      return $entity
        ->access('view certificate', $this->currentUser, TRUE);
    }
    return AccessResult::forbidden();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CertificateController::$currentUser protected property The current user.
CertificateController::create public static function Instantiates a new instance of this class. Overrides EntityViewController::create
CertificateController::view public function Provides a page to render a single entity. Overrides EntityViewController::view
CertificateController::viewAccess public function Checks access for the controller.
CertificateController::viewEntity public function Callback to view the opigno_certificate entity attached to any entity.
CertificateController::__construct public function Creates a CertificateController object. Overrides EntityViewController::__construct
DeprecatedServicePropertyTrait::__get public function Allows to access deprecated/removed properties.
EntityViewController::$deprecatedProperties protected property
EntityViewController::$entityTypeManager protected property The entity type manager.
EntityViewController::$renderer protected property The renderer service.
EntityViewController::buildTitle public function Pre-render callback to build the page title.
EntityViewController::trustedCallbacks public static function Lists the trusted callbacks provided by the implementing class. Overrides TrustedCallbackInterface::trustedCallbacks
EntityViewController::viewRevision public function Provides a page to render a single entity revision.
TrustedCallbackInterface::THROW_EXCEPTION constant Untrusted callbacks throw exceptions.
TrustedCallbackInterface::TRIGGER_SILENCED_DEPRECATION constant Untrusted callbacks trigger silenced E_USER_DEPRECATION errors.
TrustedCallbackInterface::TRIGGER_WARNING constant Untrusted callbacks trigger E_USER_WARNING errors.