This commit is contained in:
denisdulici
2017-09-23 18:43:09 +03:00
parent 8bb636d7ad
commit 447f314eb5
9 changed files with 47 additions and 19 deletions

View 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();
}
}