fixed #20
This commit is contained in:
32
app/Http/Middleware/RedirectIfNotInstalled.php
Normal file
32
app/Http/Middleware/RedirectIfNotInstalled.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use File;
|
||||
|
||||
class RedirectIfNotInstalled
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
// Check if .env file exists
|
||||
if (File::exists(base_path('.env'))) {
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
// Already in the wizard
|
||||
if (starts_with($request->getPathInfo(), '/install')) {
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
// Not installed, redirect to installation wizard
|
||||
redirect('install/requirements')->send();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user