1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00
Files
laravel-valet/server.php
2016-05-06 12:24:25 -05:00

104 lines
2.0 KiB
PHP

<?php
/**
* Define the user's "~/.valet" path.
*/
define('VALET_HOME_PATH', '/Users/'.posix_getpwuid(fileowner(__FILE__))['name'].'/.valet');
/**
* De-escalate root privileges down to Valet directory owner.
*/
posix_setuid(fileowner(VALET_HOME_PATH.'/config.json'));
/**
* Show the Valet 404 "Not Found" page.
*/
function show_valet_404()
{
http_response_code(404);
require __DIR__.'/404.html';
exit;
}
/**
* Load the Valet configuration.
*/
$valetConfig = json_decode(
file_get_contents(VALET_HOME_PATH.'/config.json'), true
);
/**
* Parse the URI and site / host for the incoming request.
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
$siteName = basename(
$_SERVER['HTTP_HOST'],
'.'.$valetConfig['domain']
);
if (strpos($siteName, 'www.') === 0) {
$siteName = substr($siteName, 4);
}
/**
* Determine the fully qualified path to the site.
*/
$valetSitePath = null;
foreach ($valetConfig['paths'] as $path) {
if (is_dir($path.'/'.$siteName)) {
$valetSitePath = $path.'/'.$siteName;
break;
}
}
if (is_null($valetSitePath)) {
show_valet_404();
}
/**
* Find the appropriate Valet driver for the request.
*/
$valetDriver = null;
require __DIR__.'/drivers/require.php';
$valetDriver = ValetDriver::assign($valetSitePath, $siteName, $uri);
if (! $valetDriver) {
show_valet_404();
}
/**
* Dispatch the request.
*/
$uri = $valetDriver->mutateUri($uri);
$uriPathInfo = pathinfo($uri);
$isPhpFile = false;
if (isset($uriPathInfo['extension']) && $uriPathInfo['extension'] === 'php') {
$isPhpFile = true;
}
if ($uri !== '/' && ! $isPhpFile && $staticFilePath = $valetDriver->isStaticFile($valetSitePath, $siteName, $uri)) {
return $valetDriver->serveStaticFile($staticFilePath, $valetSitePath, $siteName, $uri);
}
$frontControllerPath = $valetDriver->frontControllerPath(
$valetSitePath, $siteName, $uri
);
if (! $frontControllerPath) {
show_valet_404();
}
chdir(dirname($frontControllerPath));
require $frontControllerPath;