You are here

CartApiAccessCheck.php in Commerce Cart API 8

File

src/Access/CartApiAccessCheck.php
View source
<?php

namespace Drupal\commerce_cart_api\Access;

use Drupal\commerce_cart\CartProviderInterface;
use Drupal\commerce_order\Entity\OrderInterface;
use Drupal\commerce_order\Entity\OrderItemInterface;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Symfony\Component\Routing\Route;

/**
 * Access check for the cart rest plugins.
 *
 * Uses the cart provider to check if a cart belongs to the current session,
 * and also verifies order items belong to a valid cart.
 */
class CartApiAccessCheck implements AccessInterface {

  /**
   * The cart provider.
   *
   * @var \Drupal\commerce_cart\CartProviderInterface
   */
  protected $cartProvider;

  /**
   * Constructs a new CartApiAccessCheck object.
   *
   * @param \Drupal\commerce_cart\CartProviderInterface $cart_provider
   *   The cart provider.
   */
  public function __construct(CartProviderInterface $cart_provider) {
    $this->cartProvider = $cart_provider;
  }

  /**
   * Checks access.
   *
   * @param \Symfony\Component\Routing\Route $route
   *   The route to check against.
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The route match.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The currently logged in account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public function access(Route $route, RouteMatchInterface $route_match, AccountInterface $account) {

    // If the route has no parameters (cart collection), allow.
    $parameters = $route
      ->getOption('parameters');
    if (empty($parameters['commerce_order'])) {
      return AccessResult::allowed();
    }

    // If there is no cart, no access.
    $order = $route_match
      ->getParameter('commerce_order');
    if (!$order || !$order instanceof OrderInterface) {
      return AccessResult::forbidden();
    }

    // Carts must be a draft and flagged as a cart.
    if ($order
      ->getState()->value != 'draft' || empty($order->cart->value)) {
      return AccessResult::forbidden()
        ->addCacheableDependency($order);
    }

    // Ensure cart belongs to the current user.
    $carts = $this->cartProvider
      ->getCartIds($account);
    if (!in_array($order
      ->id(), $carts)) {
      return AccessResult::forbidden()
        ->addCacheableDependency($order);
    }

    // If there is also an order item in the route, make sure it belongs
    // to this cart as well.
    $order_item = $route_match
      ->getParameter('commerce_order_item');
    if ($order_item && $order_item instanceof OrderItemInterface) {
      if (!$order
        ->hasItem($order_item)) {
        return AccessResult::forbidden()
          ->addCacheableDependency($order_item)
          ->addCacheableDependency($order);
      }
    }
    return AccessResult::allowed()
      ->addCacheableDependency($order);
  }

}

Classes

Namesort descending Description
CartApiAccessCheck Access check for the cart rest plugins.