Skip to content

Instantly share code, notes, and snippets.

@ProfFan
Created July 22, 2016 16:42
Show Gist options
  • Save ProfFan/d1a3e86ff2c8c2fcccc12d9ba48dd5d0 to your computer and use it in GitHub Desktop.
Save ProfFan/d1a3e86ff2c8c2fcccc12d9ba48dd5d0 to your computer and use it in GitHub Desktop.
Larvel Valet Flarum Driver
<?php
class FlarumValetDriver extends ValetDriver
{
/**
* 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.'/vendor/flarum') && file_exists($sitePath.'/flarum');
}
/**
* 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)
{
if ($this->isActualFile($staticFilePath = $sitePath.$uri)) {
return $staticFilePath;
}
return false;
}
/**
* 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)
{
if (strpos($uri,'/admin') === 0) {
return $sitePath.'/admin.php';
}
if (strpos($uri,'/api') === 0) {
return $sitePath.'/api.php';
}
return $sitePath.'/index.php';
}
}
@lizhineng
Copy link

Thanks a lot 👍 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment