commit 2a71f7a627ec0f236268bb58a5988eb5f2642e1b
parent 0304a7fe20c3a1f4310f1ab1a5bcf1aeafa7a17d
Author: Kninteman <[email protected]>
Date: Tue, 18 Apr 2023 15:18:26 +0200
ORM Search Data ofzo
Diffstat:
17 files changed, 203 insertions(+), 891 deletions(-)
diff --git a/.idea/php.xml b/.idea/php.xml
@@ -13,6 +13,7 @@
<component name="PhpIncludePathManager">
<include_path>
<path value="$PROJECT_DIR$/Composer/vendor/composer" />
+ <path value="$PROJECT_DIR$/vendor/composer" />
</include_path>
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="8.2" />
diff --git a/Lollipop/DatabaseObject.php b/Lollipop/DatabaseObject.php
@@ -26,7 +26,7 @@ namespace Lollipop {
{
$this->data = $data;
}
- public function where(string $key, string $value) : bool
+ public function where(string $key, string $value)
{
$sql = "SELECT * FROM {$this->table} WHERE $key = ?";
$value = array($value);
@@ -39,6 +39,7 @@ namespace Lollipop {
$this->data = $result->fetch_assoc();
return true;
}
+
public function where_array(array $values) : bool
{
$sql = "SELECT * FROM {$this->table} WHERE ";
@@ -113,32 +114,32 @@ namespace Lollipop {
public function add() : bool
/* this function add the set variables to the database */
{
- if (!$this->changed_keys)
- return false;
-
- $sql = "INSERT INTO {$this->table} (";
- $sql_val = ") VALUES (";
- $values = [];
-
- foreach ($this->changed_keys as $index => $key) {
- if ($index > 0){
- $sql .= ', ';
- $sql_val .= ', ';
- }
- $sql .= $key;
- $sql_val .= "?";
- $values[] = $this->data[$key];
- }
-
- $sql .= $sql_val . ")";
- $stmt = $this->db->conn->prepare($sql);
-
- $this->changed_keys = [];
-
- if($stmt->execute($values))
- return true;
- else
- return false;
+ if (!$this->changed_keys)
+ return false;
+
+ $sql = "INSERT INTO {$this->table} (";
+ $sql_val = ") VALUES (";
+ $values = [];
+
+ foreach ($this->changed_keys as $index => $key) {
+ if ($index > 0){
+ $sql .= ', ';
+ $sql_val .= ', ';
+ }
+ $sql .= $key;
+ $sql_val .= "?";
+ $values[] = $this->data[$key];
+ }
+
+ $sql .= $sql_val . ")";
+ $stmt = $this->db->conn->prepare($sql);
+
+ $this->changed_keys = [];
+
+ if($stmt->execute($values))
+ return true;
+ else
+ return false;
}
public function delete()
{
diff --git a/Lollipop/SQLDatabase.php b/Lollipop/SQLDatabase.php
@@ -85,6 +85,43 @@ namespace Lollipop {
}
return $objects;
}
+ public function getDateRange(string $table_name, array $query)
+ {
+ if($query == null)
+ return [];
+
+ $cls = new $table_name($this);
+
+ $sql = "SELECT * FROM {$cls->get_table()} WHERE ";
+ $index = 0;
+ $values = [];
+ foreach($query as $key => $q) {
+ foreach ($q as $k => $value) {
+ if ($index > 0) {
+ $sql .= " AND ";
+ }
+ $sql .= "{$key} {$k} ?";
+ $values[] = $value;
+ $index++;
+ }
+ }
+
+ $stmt = $this->conn->prepare($sql);
+ $stmt->execute($values);
+ $result = $stmt->get_result();
+
+ if ($result->num_rows == 0) {
+ return [];
+ }
+
+ $objects = [];
+ while ($row = $result->fetch_assoc()) {
+ $o = new $table_name($this);
+ $o->setData($row);
+ $objects[] = $o;
+ }
+ return $objects;
+ }
}
}
?>
\ No newline at end of file
diff --git a/classes/Weather_data.php b/classes/Weather_data.php
@@ -0,0 +1,15 @@
+<?php
+
+class Weather_data extends Lollipop\DatabaseObject
+{
+ static function get_table(): string
+ {
+ return "weather_data";
+ }
+
+ static function get_primary(): string
+ {
+ return "data_id";
+ }
+}
+?>
+\ No newline at end of file
diff --git a/composer.json b/composer.json
@@ -1,9 +0,0 @@
-{
- "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/index.php b/index.php
@@ -1,19 +1,6 @@
<?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();
+include "Router/Router.php";
+$router = new Router\Router();
$router->get('/', function () {
include 'templates/homepage.php';
@@ -23,7 +10,6 @@ $router->get('/addcontract', function () {
include 'addContract.php';
});
-
$router->get('/login_handler', function () {
include '../login_handler.php';
});
@@ -31,15 +17,19 @@ $router->get('/login_handler', function () {
$router->get('/login', function () {
include 'templates/login.html';
});
+
$router->get('/add_user', function () {
include 'add_user.php';
});
+
$router->get('/search_user', function () {
include 'search_user.php';
});
+
$router->get('/alter_user', function () {
include 'search_user.php';
});
+
$router->get('/dashboard', function () {
include 'search_data.php';
});
@@ -48,10 +38,6 @@ $router->post('/logout', function () {
include 'logout.php';
});
-//$router->get('/data', function () {
-// include 'searchdata.php';
-//});
-
$router->post('/login', function ($params) {
});
diff --git a/search_data.php b/search_data.php
@@ -1,121 +1,112 @@
<?php
-error_reporting(0);
+ include "navbar.php";
+ include "utils/autoloader.php";
- include "navbar.php";
- include "Connect.php";
-?>
+ $db = new Lollipop\SQLDatabase("86.92.67.21", "friedel", "hailiwa", "wap2");
- <?php
- $connect = new Connect;
- $conn = $connect->getConn();
- $params = [];
+ $weather = $db->get(Weather_data::class);
- $dateEnd = ($_GET['date-end']) . "%";
- $dateBegin = ($_GET['date-begin'] . "%");
+ $date_begin = '2023-04-04';
+ $date_end = '2023-04-05';
- $startDate = $_GET['date-begin'];
- $endDate = $_GET['date-end'];
- $station = $_GET['station'];
+ $query = array(
+ 'date_time' => array(
+ '>=' => $date_begin,
+ '<=' => $date_end
+ )
+ );
- $sql = "SELECT * FROM weather_data";
- if(!isset($_GET['date-begin']) && !isset($_GET['date-end']) && !isset($_GET['station'])){
- $sql .= " LIMIT 250";
- }
- if (isset($_GET['date-begin']) && $_GET['date-begin']) {
- $sql .= " WHERE date_time >= ?";
- $params[] = $dateBegin;
- if (isset($_GET['date-end']) && $_GET['date-end']) {
- $sql .= " AND date_time <= ?";
- $params[] = $dateEnd;
- }
- } elseif (isset($_GET['date-end']) && $_GET['date-end']) {
- $sql .= " WHERE date_time <= ?";
- $params[] = $dateEnd;
- }
- if (isset($_GET['station']) && $_GET['station']) {
- if ($_GET['date-begin'] || $_GET['date-end']){
- $sql .= " AND ";
- }
- else{
- $sql .= " WHERE ";
- }
- $sql .= "station_name = ?";
- $params[] = $_GET['station'];
- }
+ $params = [];
+ if($_SERVER['REQUEST_METHOD'] == 'GET'){
+ if(isset($_GET['date_end']))
+ $date_begin = ($_GET['date_begin'] . "%");
+ else
+ $date_begin = "%";
+ if(isset($_GET['date_end']))
+ $date_end = ($_GET['date_end'] . "%");
+ else
+ $date_end = "%";
+ if(isset($_GET['station']))
+ $station = ($_GET['station'] . "%");
+ else
+ $station = "%";
- $stmt = $conn->prepare($sql);
-// if (isset($_GET['date-begin']))
-// $stmt->bind_param('s', $dateBegin);
-// if (isset($_GET['date-end']))
-// $stmt->bind_param('s', $dateEnd);
-// if (isset($_GET['station'])) {
-// $stmt->bind_param('d', $_GET['station']);
-// }
+ $query = array(
+ 'date_time' => array(
+ '>=' => $date_begin,
+ '<=' => $date_end
+ ),
+ 'station' => array(
+ '=' => $station
+ )
+ );
+ $weather_data = $db->getDateRange(Weather_data::class, $query);
+ }
+?>
+<html>
+ <head>
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
+ </head>
+ <body>
+ <form class="d-flex" action="search_data.php" method="get">
+ <input class="form-control me-2" type="text" name="date_begin" placeholder="Date begin (YYYY-MM-DD)" pattern="\d{4}-\d{2}-\d{2}" value=<?php echo$startDate?>>
+ <input class="form-control me-2" type="text" name="date_end" placeholder="Date end (YYYY-MM-DD)" pattern="\d{4}-\d{2}-\d{2}" value=<?php echo$endDate?>>
+ <input class="form-control me-2" type="text" name="station" placeholder="Search" aria-label="Search" value=<?php echo$station?>>
+ <button class="btn btn-outline-success" type="submit">Search</button>
+ </form>
- $stmt->execute($params);
- $result = $stmt->get_result();
+ <?php
+ // verification logic and $_SESSION start
+ if ($weather_data != null) {?>
+ <table class=\"table table-striped\">
+ <thead>
+ <tr>
+ <th> Station name </th>
+ <th> Date & Time </th>
+ <th> Validated </th>
+ <th> Temperature </th>
+ <th> Dewpoint </th>
+ <th> Sea pressure </th>
+ <th> Station pressure </th>
+ <th> Visibility </th>
+ <th> Wind speed </th>
+ <th> Precipitation </th>
+ <th> Snow depth </th>
+ <th> Events </th>
+ <th> Cloud count </th>
+ <th> Wind direction </th>
+ </tr>
+ </thead>
+ <tbody>
- ?>
-<html>
-<head>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
- <link rel="stylesheet" type="text/css" href="/css/weerdata.css">
-</head>
-<body>
-<form class="d-flex" action="search_data.php" method="get">
- <input class="form-control me-2" type="text" name="date-begin" placeholder="Date begin (YYYY-MM-DD)" pattern="\d{4}-\d{2}-\d{2}" value=<?php echo$startDate?>>
- <input class="form-control me-2" type="text" name="date-end" placeholder="Date end (YYYY-MM-DD)" pattern="\d{4}-\d{2}-\d{2}" value=<?php echo$endDate?>>
- <input class="form-control me-2" type="text" name="station" placeholder="Search" aria-label="Search" value=<?php echo$station?>>
- <button class="btn btn-outline-success" type="submit">Search</button>
-</form>
-<?php
- // verification logic and $_SESSION start
- if ($result->num_rows > 0) {
- echo "<table class=\"table table-striped\">
- <thead>
- <tr>
- <th> Station name </th>
- <th> Date & Time </th>
- <th> Validated </th>
- <th> Temperature </th>
- <th> Dewpoint </th>
- <th> Sea pressure </th>
- <th> Station pressure </th>
- <th> Visibility </th>
- <th> Wind speed </th>
- <th> Precipitation </th>
- <th> Snow depth </th>
- <th> Events </th>
- <th> Cloud count </th>
- <th> Wind direction </th>
- </tr>
- </thead>
- <tbody>";
- while ($row = mysqli_fetch_assoc($result)) {
- $link = "/search_data.php?station=" . $row['station_name'];
- echo "<tr>";
- echo "<td><a href='" . $link . "'>" . $row['station_name'] . "</a></td>";
- echo "<td>" . $row["date_time"]. "</td>";
- echo "<td>" . $row["validated"]. "</td>";
- echo "<td>" . $row["temperature"]. "</td>";
- echo "<td>" . $row["dew_point"]. "</td>";
- echo "<td>" . $row["pressure_sea"]. "</td>";
- echo "<td>" . $row["pressure_station"]. "</td>";
- echo "<td>" . $row["visibility"]. "</td>";
- echo "<td>" . $row["wind_speed"]. "</td>";
- echo "<td>" . $row["precipitation"]. "</td>";
- echo "<td>" . $row["snow_depth"]. "</td>";
- echo "<td>" . $row["events"]. "</td>";
- echo "<td>" . $row["cloud_count"]. "</td>";
- echo "<td>" . $row["wind_direction"]. "</td>";
- echo "</tr>";
- }
- echo "
- </tbody>
- </table>";
- } else {
- echo "No data found.";
- }
- ?>
-</body>
+ </tbody>
+ <?php
+ foreach($weather_data as $data) {
+ $link = "/search_data.php?station=" . $data->station_name;
+ echo "<tr>";
+ echo "<td><a href='" . $link . "'>" . $data->station_name . "</a></td>";
+ echo "<td>" . $data->date_time . "</td>";
+ echo "<td>" . $data->validated . "</td>";
+ echo "<td>" . $data->temperature . "</td>";
+ echo "<td>" . $data->dew_point . "</td>";
+ echo "<td>" . $data->pressure_sea . "</td>";
+ echo "<td>" . $data->pressure_station . "</td>";
+ echo "<td>" . $data->visibility . "</td>";
+ echo "<td>" . $data->wind_speed . "</td>";
+ echo "<td>" . $data->precipitation . "</td>";
+ echo "<td>" . $data->snow_depth . "</td>";
+ echo "<td>" . $data->events . "</td>";
+ echo "<td>" . $data->cloud_count . "</td>";
+ echo "<td>" . $data->wind_direction . "</td>";
+ echo "</tr>";
+ }
+ ?>
+ </tbody>
+ </table>
+ <?php
+ } else {
+ echo "No data found.";
+ }
+ ?>
+ </body>
</html>
\ No newline at end of file
diff --git a/test.php b/test.php
@@ -0,0 +1,13 @@
+<?php
+include "utils/autoloader.php";
+$db = new Lollipop\SQLDatabase("86.92.67.21", "friedel", "hailiwa", "wap2");
+$weather = $db->get(Weather_data::class);
+$date_begin = '2023-04-04';
+$date_end = '2023-04-05';
+$query = array(
+ 'date_time' => array(
+ '>=' => $date_begin,
+ '<=' => $date_end
+ )
+);
+var_dump($db->getDateRange(Weather_data::class, $query));
diff --git a/vendor/autoload.php b/vendor/autoload.php
@@ -1,25 +0,0 @@
-<?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
@@ -1,585 +0,0 @@
-<?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
@@ -1,21 +0,0 @@
-
-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
@@ -1,14 +0,0 @@
-<?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
@@ -1,9 +0,0 @@
-<?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
@@ -1,9 +0,0 @@
-<?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
@@ -1,36 +0,0 @@
-<?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
@@ -1,24 +0,0 @@
-<?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);
- }
-}