iwa-panda1

Manage Weather Data by International Weather Agency (Version 1)
Log | Files | Refs

commit f225280a835448e44899fe1cfca07d04d4eaed0f
parent 727b80d6eb12a02aae47f6a4969fb05926ea7482
Author: LennartSchroot <[email protected]>
Date:   Fri, 14 Apr 2023 15:54:05 +0200

update

Diffstat:
M.idea/php.xml | 5+++++
ARouter/Router.php | 60++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Acomposer.json | 10++++++++++
Acomposer.phar | 0
Acss/homepage.css | 172+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aindex.php | 39+++++++++++++++++++++++++++++++++++++++
Aloginhandler.php | 59+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Atemplates/404.html | 58++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Atemplates/homepage.php | 38++++++++++++++++++++++++++++++++++++++
Avendor/autoload.php | 25+++++++++++++++++++++++++
Avendor/composer/ClassLoader.php | 585+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Avendor/composer/LICENSE | 21+++++++++++++++++++++
Avendor/composer/autoload_classmap.php | 14++++++++++++++
Avendor/composer/autoload_namespaces.php | 9+++++++++
Avendor/composer/autoload_psr4.php | 9+++++++++
Avendor/composer/autoload_real.php | 36++++++++++++++++++++++++++++++++++++
Avendor/composer/autoload_static.php | 24++++++++++++++++++++++++
17 files changed, 1164 insertions(+), 0 deletions(-)

diff --git a/.idea/php.xml b/.idea/php.xml @@ -10,6 +10,11 @@ <option name="highlightLevel" value="WARNING" /> <option name="transferred" value="true" /> </component> + <component name="PhpIncludePathManager"> + <include_path> + <path value="$PROJECT_DIR$/Composer/vendor/composer" /> + </include_path> + </component> <component name="PhpProjectSharedConfiguration" php_language_level="8.1" /> <component name="PhpStanOptionsConfiguration"> <option name="transferred" value="true" /> diff --git a/Router/Router.php b/Router/Router.php @@ -0,0 +1,60 @@ +<?php + +declare(strict_types=1); + +namespace Router; + +class Router +{ + private $handlers; + private $notFoundHandler; + private const METHOD_POST = 'POST'; + private const METHOD_GET = 'GET'; + + public function get(string $path, $handler): void + { + $this->addHandler(self::METHOD_GET, $path, $handler); + } + public function post(string $path, $handler): void + { + $this->addHandler(self::METHOD_POST, $path, $handler); + } + + public function addNotFoundHandler($handler): void + { + $this->notFoundHandler = $handler; + } + + private function addHandler(string $method, string $path, $handler): void + { + $this->handlers[$method . $path] = [ + 'path' => $path, + 'method' => $method, + 'handler' => $handler + ]; + } + public function run() + { + $requestUri = parse_url($_SERVER['REQUEST_URI']); + $requestPath = $requestUri['path']; + $method = $_SERVER['REQUEST_METHOD']; + + $callback = null; + foreach ($this->handlers as $handler){ + if ($handler['path'] === $requestPath && $method === $handler['method']){ + $callback = $handler['handler']; + } + } + + if (!$callback){ + header("HTTP/1.0 404 Not Found"); + if (!empty($this->notFoundHandler)) { + $callback = $this->notFoundHandler; + } + } + + call_user_func_array($callback, [ + array_merge($_GET, $_POST) + ]); + } +} diff --git a/composer.json b/composer.json @@ -0,0 +1,9 @@ +{ + "require": { + }, + "autoload": { + "classmap": [ + "Router", "sql_files", "templates", "vendor" + ] + } +} +\ No newline at end of file diff --git a/composer.phar b/composer.phar Binary files differ. diff --git a/css/homepage.css b/css/homepage.css @@ -0,0 +1,172 @@ +@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap'); + +* { + box-sizing: border-box; +} + +body { + margin: 0; + font-family: 'Montserrat', sans-serif; +} + +/* Header */ +.header { + background-color: #2471A3; + color: #fff; + padding: 20px; + display: flex; + justify-content: space-between; + align-items: center; +} + +.header h1 { + margin: 0; + font-size: 36px; + text-shadow: 2px 2px 2px #555; +} + +.header h1 span { + font-weight: normal; +} + +.header h1 a { + text-decoration: none; + color: #fff; +} + +a { + text-decoration: none; +} + + +/* Search form */ +.search-form { + display: flex; + align-items: center; +} + +.search-form input[type="text"] { + padding: 10px; + font-size: 16px; + border: none; + border-radius: 5px 0 0 5px; +} + +.search-form button[type="submit"] { + background-color: #2E86C1; + color: white; + padding: 10px; + font-size: 16px; + border: none; + border-radius: 0 5px 5px 0; + cursor: pointer; + transition: background-color 0.2s ease; +} + +.search-form button[type="submit"]:hover { + background-color: #2471A3; +} + +/* Main content */ +.main { + display: flex; + flex-wrap: wrap; + justify-content: space-around; + padding: 20px; +} + +.dashboard-section, .login-section { + width: 45%; + margin: 20px; + padding: 20px; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); + transition: box-shadow 0.2s ease; +} + +.dashboard-section { + background-color: #F1F9FF; +} + +.dashboard-section:hover, .login-section:hover { + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); +} + +.dashboard-section h2, .login-section h2 { + margin-top: 0; +} + +.button { + display: inline-block; + background-color: #2E86C1; + color: white; + padding: 10px 20px; + font-size: 16px; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.2s ease; +} + +.button:hover { + background-color: #2471A3; +} + +/* Login form */ +.login-form label { + display: block; + margin-bottom: 5px; + font-size: 18px; + color: #333; +} + +.login-form input[type="text"], .login-form input[type="password"] { + display: block; + width: 100%; + padding: 10px; + margin-bottom: 15px; + font-size: 16px; + border: none; + border-radius: 5px; + background-color: #F1F9FF; + color: #333; +} + +.login-form button[type="submit"] { + background-color: #2E86C1; + color: white; + padding: 10px; + font-size: 16px; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.2s ease; +} + +.login-form button[type="submit"]:hover { + background-color: #2471A3; +} + +.footer { + background-color: #333; + color: #fff; + padding: 20px; + text-align: center; + margin-top: 50px; +} + +.footer p { + margin: 0; + font-size: 14px; +} + +.footer a { + color: #fff; + text-decoration: none; + transition: color 0.2s ease; +} + +.footer a:hover { + color: #2E86C1; +} + diff --git a/index.php b/index.php @@ -0,0 +1,39 @@ +<?php + +//session_start(); + +require_once 'vendor/autoload.php'; + +//$requestHandler = new RequestHandler(); +//$requestFactory = new RequestFactory(); +//$request = $requestFactory->createRequest(); +// +//$response = $requestHandler->handle($request); +//$container = new Container(); + +use Router\Router; + +$router = new Router(); + +$router->get('/', function () { + include 'templates/homepage.php'; +}); + +$router->get('/uitloggen', function () { + session_destroy(); + include 'templates/login.html'; +}); + + +$router->get('/login', function () { + include 'templates/login.html'; +}); + +$router->post('/login', function ($params) { +}); + +$router->addNotFoundHandler(function (){ + include 'templates/404.html'; +}); + +$router->run(); diff --git a/loginhandler.php b/loginhandler.php @@ -0,0 +1,58 @@ +<?php +$servername = "86.92.67.21"; +$username = "friedel"; +$password = "hailiwa"; +$dbname = "wap2"; +$conn = mysqli_connect($servername, $username, $password, $dbname); +// perform validation and authentication +if (!$conn) { + die("Connection failed: " . mysqli_connect_error()); +} + +// check if a post request was sent +if ($_SERVER["REQUEST_METHOD"] == "POST") { + // fetch data from the form + if(isset($_POST['email']) && isset($_POST['password'])){ + $email = $_POST['email']; + $pwd = $_POST['password']; + } else { + echo "One of the forms was empty"; + } + + // create, prepare sql statement and execute sql statement + $sql = "select u.email, u.password, p.permission_id, p.permission_name + from user u + join user_permission up on up.email = u.email + join permission p on p.permission_id = up.permission_id + where u.email = ? "; + $stmt= $conn->prepare($sql); + $stmt->bind_param("s", $email); + $stmt->execute(); + $result = $stmt->get_result(); + + // verification logic and $_SESSION start + if(count($row = $result->fetch_assoc()) > 0){ + if($email == $row['email'] && password_verify($pwd, $row['password'])) { + session_start(); + $_SESSION['email'] = $row['email']; + mysqli_data_seek($result, 0); + $permissions = array(); + $permissions_names = array(); + while($row = mysqli_fetch_assoc($result)){ + array_push($permissions, $row['permission_id']); + array_push($permissions_names, $row['permission_name']); + } + $_SESSION['permissions'] = $permissions; + $_SESSION['permissions_names'] = $permissions_names; + foreach($_SESSION['permissions'] as $bullshit){ + echo $bullshit . "<br>"; + } + header('Location: dashboard.php'); + } else { + echo '<p style="color:red">Invalid username or password.</p>'; + } + } else { + echo '<p style="color:red">Invalid username or password.</p>'; + } +} +?> +\ No newline at end of file diff --git a/templates/404.html b/templates/404.html @@ -0,0 +1,58 @@ +<!DOCTYPE html> +<html> +<div class="number">404</div> +<div class="text"><span>Helaas...</span><br>Pagina niet gevonden</div> +<style> + body { + display: flex; + flex-flow: row wrap; + align-content: center; + justify-content: center; + } + + div { + width: 100%; + text-align: center; + } + + .number { + background: #fff; + position: relative; + font: 900 30vmin "Consolas"; + letter-spacing: 5vmin; + text-shadow: 2px -1px 0 #000, 4px -2px 0 #0a0a0a, 6px -3px 0 #0f0f0f, 8px -4px 0 #141414, 10px -5px 0 #1a1a1a, 12px -6px 0 #1f1f1f, 14px -7px 0 #242424, 16px -8px 0 #292929; + } + .number::before { + background-color: #673ab7; + background-image: radial-gradient(closest-side at 50% 50%, #ffc107 100%, rgba(0, 0, 0, 0)), radial-gradient(closest-side at 50% 50%, #e91e63 100%, rgba(0, 0, 0, 0)); + background-repeat: repeat-x; + background-size: 40vmin 40vmin; + background-position: -100vmin 20vmin, 100vmin -25vmin; + width: 100%; + height: 100%; + mix-blend-mode: screen; + -webkit-animation: moving 10s linear infinite both; + animation: moving 10s linear infinite both; + display: block; + position: absolute; + content: ""; + } + @-webkit-keyframes moving { + to { + background-position: 100vmin 20vmin, -100vmin -25vmin; + } + } + @keyframes moving { + to { + background-position: 100vmin 20vmin, -100vmin -25vmin; + } + } + + .text { + font: 400 5vmin "Courgette"; + } + .text span { + font-size: 10vmin; + } +</style> +</html> diff --git a/templates/homepage.php b/templates/homepage.php @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html> +<head> + <title>IWA - Weather Stations</title> + <link rel="stylesheet" type="text/css" href="/css/homepage.css"> +</head> +<body> +<div class="header"> + <h1>IWA - Weather Stations</h1> + <form class="search-form" action="/search"> + <input type="text" name="q" placeholder="Search for weather stations..."> + <button type="submit">Search</button> + </form> +</div> + +<div class="main"> + <div class="dashboard-section"> + <h2>Dashboard</h2> + <p>Welcome to your weather station dashboard. Here, you can view real-time weather data from your weather stations, set alerts, and more.</p> + <a href="/dashboard" class="button">Go to Dashboard</a> + </div> + <div class="login-section"> + <h2>Login</h2> + <form class="login-form" action="loginhandler.php" method="post"> + <label for="email">Email:</label> + <input type="text" name="email" required> + <label for="password">Password:</label> + <input type="password" name="password" required> + <button type="submit">Login</button> + </form> + </div> +</div> + +<div class="footer"> + <p>&copy; 2023 IWA. All rights reserved.</p> +</div> +</body> +</html> diff --git a/vendor/autoload.php b/vendor/autoload.php @@ -0,0 +1,25 @@ +<?php + +// autoload.php @generated by Composer + +if (PHP_VERSION_ID < 50600) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL; + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, $err); + } elseif (!headers_sent()) { + echo $err; + } + } + trigger_error( + $err, + E_USER_ERROR + ); +} + +require_once __DIR__ . '/composer/autoload_real.php'; + +return ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d::getLoader(); diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php @@ -0,0 +1,585 @@ +<?php + +/* + * This file is part of Composer. + * + * (c) Nils Adermann <[email protected]> + * Jordi Boggiano <[email protected]> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier <[email protected]> + * @author Jordi Boggiano <[email protected]> + * @see https://www.php-fig.org/psr/psr-0/ + * @see https://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var ?string */ + private $vendorDir; + + // PSR-4 + /** + * @var array[] + * @psalm-var array<string, array<string, int>> + */ + private $prefixLengthsPsr4 = array(); + /** + * @var array[] + * @psalm-var array<string, array<int, string>> + */ + private $prefixDirsPsr4 = array(); + /** + * @var array[] + * @psalm-var array<string, string> + */ + private $fallbackDirsPsr4 = array(); + + // PSR-0 + /** + * @var array[] + * @psalm-var array<string, array<string, string[]>> + */ + private $prefixesPsr0 = array(); + /** + * @var array[] + * @psalm-var array<string, string> + */ + private $fallbackDirsPsr0 = array(); + + /** @var bool */ + private $useIncludePath = false; + + /** + * @var string[] + * @psalm-var array<string, string> + */ + private $classMap = array(); + + /** @var bool */ + private $classMapAuthoritative = false; + + /** + * @var bool[] + * @psalm-var array<string, bool> + */ + private $missingClasses = array(); + + /** @var ?string */ + private $apcuPrefix; + + /** + * @var self[] + */ + private static $registeredLoaders = array(); + + /** + * @param ?string $vendorDir + */ + public function __construct($vendorDir = null) + { + $this->vendorDir = $vendorDir; + self::initializeIncludeClosure(); + } + + /** + * @return string[] + */ + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); + } + + return array(); + } + + /** + * @return array[] + * @psalm-return array<string, array<int, string>> + */ + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + /** + * @return array[] + * @psalm-return array<string, string> + */ + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + /** + * @return array[] + * @psalm-return array<string, string> + */ + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + /** + * @return string[] Array of classname => path + * @psalm-return array<string, string> + */ + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param string[] $classMap Class to filename map + * @psalm-param array<string, string> $classMap + * + * @return void + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + * + * @return void + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + * + * @return void + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 base directories + * + * @return void + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + * + * @return void + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + * + * @return void + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + * + * @return void + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + * + * @return void + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + + if (null === $this->vendorDir) { + return; + } + + if ($prepend) { + self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; + } else { + unset(self::$registeredLoaders[$this->vendorDir]); + self::$registeredLoaders[$this->vendorDir] = $this; + } + } + + /** + * Unregisters this instance as an autoloader. + * + * @return void + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + + if (null !== $this->vendorDir) { + unset(self::$registeredLoaders[$this->vendorDir]); + } + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return true|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + $includeFile = self::$includeFile; + $includeFile($file); + + return true; + } + + return null; + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + /** + * Returns the currently registered loaders indexed by their corresponding vendor directories. + * + * @return self[] + */ + public static function getRegisteredLoaders() + { + return self::$registeredLoaders; + } + + /** + * @param string $class + * @param string $ext + * @return string|false + */ + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } + + /** + * @return void + */ + private static function initializeIncludeClosure() + { + if (self::$includeFile !== null) { + return; + } + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + self::$includeFile = \Closure::bind(static function($file) { + include $file; + }, null, null); + } +} diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php @@ -0,0 +1,14 @@ +<?php + +// autoload_classmap.php @generated by Composer + +$vendorDir = dirname(__DIR__); +$baseDir = dirname($vendorDir); + +return array( + 'ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d' => $vendorDir . '/composer/autoload_real.php', + 'Composer\\Autoload\\ClassLoader' => $vendorDir . '/composer/ClassLoader.php', + 'Composer\\Autoload\\ComposerStaticInitcf389d7de287a43ad291471ecbeaa04d' => $vendorDir . '/composer/autoload_static.php', + 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', + 'Router\\Router' => $baseDir . '/Router/Router.php', +); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php @@ -0,0 +1,9 @@ +<?php + +// autoload_namespaces.php @generated by Composer + +$vendorDir = dirname(__DIR__); +$baseDir = dirname($vendorDir); + +return array( +); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php @@ -0,0 +1,9 @@ +<?php + +// autoload_psr4.php @generated by Composer + +$vendorDir = dirname(__DIR__); +$baseDir = dirname($vendorDir); + +return array( +); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php @@ -0,0 +1,36 @@ +<?php + +// autoload_real.php @generated by Composer + +class ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d +{ + private static $loader; + + public static function loadClassLoader($class) + { + if ('Composer\Autoload\ClassLoader' === $class) { + require __DIR__ . '/ClassLoader.php'; + } + } + + /** + * @return \Composer\Autoload\ClassLoader + */ + public static function getLoader() + { + if (null !== self::$loader) { + return self::$loader; + } + + spl_autoload_register(array('ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d', 'loadClassLoader'), true, true); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); + spl_autoload_unregister(array('ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d', 'loadClassLoader')); + + require __DIR__ . '/autoload_static.php'; + call_user_func(\Composer\Autoload\ComposerStaticInitcf389d7de287a43ad291471ecbeaa04d::getInitializer($loader)); + + $loader->register(true); + + return $loader; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php @@ -0,0 +1,24 @@ +<?php + +// autoload_static.php @generated by Composer + +namespace Composer\Autoload; + +class ComposerStaticInitcf389d7de287a43ad291471ecbeaa04d +{ + public static $classMap = array ( + 'ComposerAutoloaderInitcf389d7de287a43ad291471ecbeaa04d' => __DIR__ . '/..' . '/composer/autoload_real.php', + 'Composer\\Autoload\\ClassLoader' => __DIR__ . '/..' . '/composer/ClassLoader.php', + 'Composer\\Autoload\\ComposerStaticInitcf389d7de287a43ad291471ecbeaa04d' => __DIR__ . '/..' . '/composer/autoload_static.php', + 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', + 'Router\\Router' => __DIR__ . '/../..' . '/Router/Router.php', + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->classMap = ComposerStaticInitcf389d7de287a43ad291471ecbeaa04d::$classMap; + + }, null, ClassLoader::class); + } +}