summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Config
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2018-01-19 15:40:08 +0000
committerGreg Roach <fisharebest@gmail.com>2018-01-19 22:39:48 +0000
commit9499ed38534b88c310649782326f430b724fbe3a (patch)
tree3b10195a8e8e56024f75403869d5a56074314181 /vendor/symfony/http-kernel/Config
parentc9b4efa1714b4374cc3446e0d3a1935da0cb3a59 (diff)
downloadwebtrees-9499ed38534b88c310649782326f430b724fbe3a.tar.gz
webtrees-9499ed38534b88c310649782326f430b724fbe3a.tar.bz2
webtrees-9499ed38534b88c310649782326f430b724fbe3a.zip
Add symfony/http-kernel
Diffstat (limited to 'vendor/symfony/http-kernel/Config')
-rw-r--r--vendor/symfony/http-kernel/Config/EnvParametersResource.php99
-rw-r--r--vendor/symfony/http-kernel/Config/FileLocator.php56
2 files changed, 155 insertions, 0 deletions
diff --git a/vendor/symfony/http-kernel/Config/EnvParametersResource.php b/vendor/symfony/http-kernel/Config/EnvParametersResource.php
new file mode 100644
index 0000000000..0fe6aca8c1
--- /dev/null
+++ b/vendor/symfony/http-kernel/Config/EnvParametersResource.php
@@ -0,0 +1,99 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\HttpKernel\Config;
+
+use Symfony\Component\Config\Resource\SelfCheckingResourceInterface;
+
+/**
+ * EnvParametersResource represents resources stored in prefixed environment variables.
+ *
+ * @author Chris Wilkinson <chriswilkinson84@gmail.com>
+ */
+class EnvParametersResource implements SelfCheckingResourceInterface, \Serializable
+{
+ /**
+ * @var string
+ */
+ private $prefix;
+
+ /**
+ * @var string
+ */
+ private $variables;
+
+ /**
+ * Constructor.
+ *
+ * @param string $prefix
+ */
+ public function __construct($prefix)
+ {
+ $this->prefix = $prefix;
+ $this->variables = $this->findVariables();
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function __toString()
+ {
+ return serialize($this->getResource());
+ }
+
+ /**
+ * @return array An array with two keys: 'prefix' for the prefix used and 'variables' containing all the variables watched by this resource
+ */
+ public function getResource()
+ {
+ return array('prefix' => $this->prefix, 'variables' => $this->variables);
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function isFresh($timestamp)
+ {
+ return $this->findVariables() === $this->variables;
+ }
+
+ public function serialize()
+ {
+ return serialize(array('prefix' => $this->prefix, 'variables' => $this->variables));
+ }
+
+ public function unserialize($serialized)
+ {
+ if (\PHP_VERSION_ID >= 70000) {
+ $unserialized = unserialize($serialized, array('allowed_classes' => false));
+ } else {
+ $unserialized = unserialize($serialized);
+ }
+
+ $this->prefix = $unserialized['prefix'];
+ $this->variables = $unserialized['variables'];
+ }
+
+ private function findVariables()
+ {
+ $variables = array();
+
+ foreach ($_SERVER as $key => $value) {
+ if (0 === strpos($key, $this->prefix)) {
+ $variables[$key] = $value;
+ }
+ }
+
+ ksort($variables);
+
+ return $variables;
+ }
+}
diff --git a/vendor/symfony/http-kernel/Config/FileLocator.php b/vendor/symfony/http-kernel/Config/FileLocator.php
new file mode 100644
index 0000000000..169c9ad6e5
--- /dev/null
+++ b/vendor/symfony/http-kernel/Config/FileLocator.php
@@ -0,0 +1,56 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\HttpKernel\Config;
+
+use Symfony\Component\Config\FileLocator as BaseFileLocator;
+use Symfony\Component\HttpKernel\KernelInterface;
+
+/**
+ * FileLocator uses the KernelInterface to locate resources in bundles.
+ *
+ * @author Fabien Potencier <fabien@symfony.com>
+ */
+class FileLocator extends BaseFileLocator
+{
+ private $kernel;
+ private $path;
+
+ /**
+ * Constructor.
+ *
+ * @param KernelInterface $kernel A KernelInterface instance
+ * @param null|string $path The path the global resource directory
+ * @param array $paths An array of paths where to look for resources
+ */
+ public function __construct(KernelInterface $kernel, $path = null, array $paths = array())
+ {
+ $this->kernel = $kernel;
+ if (null !== $path) {
+ $this->path = $path;
+ $paths[] = $path;
+ }
+
+ parent::__construct($paths);
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function locate($file, $currentPath = null, $first = true)
+ {
+ if (isset($file[0]) && '@' === $file[0]) {
+ return $this->kernel->locateResource($file, $this->path, $first);
+ }
+
+ return parent::locate($file, $currentPath, $first);
+ }
+}