Skip to content

Instantly share code, notes, and snippets.

@abdumu
Last active October 10, 2022 18:37
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 abdumu/131cf15ce6d710ee443f019d912f760e to your computer and use it in GitHub Desktop.
Save abdumu/131cf15ce6d710ee443f019d912f760e to your computer and use it in GitHub Desktop.
Laravel valet driver for phpBB
<?php
class phpBBValetDriver 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)
{
if (file_exists($sitePath.'/phpbb/user.php')) {
return true;
}
return false;
}
/**
* 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 (
preg_match('#^/(assets|styles)#', $uri) ||
preg_match('#^/adm/style/#', $uri) ||
preg_match('#^/adm/images/#', $uri)
) {
return rtrim($sitePath, '/') . $uri;
}
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(trim($uri, '/') == 'install')
{
return rtrim($sitePath, '/') . '/install/app.php';
}
return $sitePath.(trim($uri) == '/' || empty($uri) ? '/index.php' : $uri);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment