Skip to content

Instantly share code, notes, and snippets.

@ArondeParon
Created June 2, 2020 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArondeParon/b815c92e3f7a3124f3bb619ec8014230 to your computer and use it in GitHub Desktop.
Save ArondeParon/b815c92e3f7a3124f3bb619ec8014230 to your computer and use it in GitHub Desktop.
Themosis Laravel Valet Driver
<?php
class ThemosisValetDriver extends BasicValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return is_dir($sitePath.'/htdocs/cms');
}
/**
* Get the fully resolved path to the application's front controller.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
$_SERVER['PHP_SELF'] = $uri;
$_SERVER['SERVER_ADDR'] = '127.0.0.1';
$_SERVER['SERVER_NAME'] = $_SERVER['HTTP_HOST'];
return parent::frontControllerPath(
$sitePath.'/htdocs', $siteName, $this->forceTrailingSlash($uri)
);
}
/**
* Redirect to uri with trailing slash.
*
* @param string $uri
* @return string
*/
private function forceTrailingSlash($uri)
{
if (substr($uri, -1 * strlen('/wp-admin')) == '/wp-admin') {
header('Location: '.$uri.'/'); die;
}
return $uri;
}
/**
* Determine if the incoming request is for a static file.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string|false
*/
public function isStaticFile($sitePath, $siteName, $uri)
{
$uri = preg_replace('~(.*)/content/(.*)~', "/content/$2", $uri);
$uri = preg_replace('~(.*)(jpg|png|gif)/$~', "$1$1", $uri);
$staticFilePath = $sitePath . '/htdocs' . $uri;
// Hacks! >:D
if (preg_match('~.*(jpg|png|js|css|mp4|gif)$~', $uri)) {
return $staticFilePath;
}
if ($this->isActualFile($staticFilePath)) {
return $staticFilePath;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment