Version 1
[yaffs-website] / web / modules / contrib / ctools / src / Access / TempstoreAccess.php
diff --git a/web/modules/contrib/ctools/src/Access/TempstoreAccess.php b/web/modules/contrib/ctools/src/Access/TempstoreAccess.php
new file mode 100644 (file)
index 0000000..506ade6
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+
+namespace Drupal\ctools\Access;
+
+
+use Drupal\Core\Access\AccessResult;
+use Drupal\Core\Routing\Access\AccessInterface as CoreAccessInterface;
+use Drupal\Core\Routing\RouteMatch;
+use Drupal\Core\Session\AccountInterface;
+use Drupal\ctools\Access\AccessInterface as CToolsAccessInterface;
+use Drupal\user\SharedTempStoreFactory;
+use Symfony\Component\Routing\Route;
+
+class TempstoreAccess implements CoreAccessInterface {
+
+  /**
+   * The shared tempstore factory.
+   *
+   * @var \Drupal\user\SharedTempStoreFactory
+   */
+  protected $tempstore;
+
+  public function __construct(SharedTempStoreFactory $tempstore) {
+    $this->tempstore = $tempstore;
+  }
+
+  protected function getTempstore() {
+    return $this->tempstore;
+  }
+
+  public function access(Route $route, RouteMatch $match, AccountInterface $account) {
+    $tempstore_id = $match->getParameter('tempstore_id') ? $match->getParameter('tempstore_id') : $route->getDefault('tempstore_id');
+    $id = $match->getParameter($route->getRequirement('_ctools_access'));
+    if ($tempstore_id && $id) {
+      $cached_values = $this->getTempstore()->get($tempstore_id)->get($id);
+      if (!empty($cached_values['access']) && ($cached_values['access'] instanceof CToolsAccessInterface)) {
+        $access = $cached_values['access']->access($account);
+      }
+      else {
+        $access = AccessResult::allowed();
+      }
+    }
+    else {
+      $access = AccessResult::forbidden();
+    }
+    // The different wizards will have different tempstore ids and adding this
+    // cache context allows us to nuance the access per wizard.
+    $access->addCacheContexts(['url.query_args:tempstore_id']);
+    return $access;
+  }
+}
\ No newline at end of file