mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Check that the table exists
Should probably find a way to handle this that doesn't require a DB call
This commit is contained in:
parent
4dd3a95b6d
commit
1a14abed05
|
@ -5,6 +5,7 @@ namespace App\Http\Middleware;
|
|||
use Closure;
|
||||
use Config;
|
||||
use Route;
|
||||
use Schema;
|
||||
use App\Models\User;
|
||||
|
||||
class CheckForSetup
|
||||
|
@ -13,12 +14,22 @@ class CheckForSetup
|
|||
{
|
||||
|
||||
try {
|
||||
$usercount = User::withTrashed()->count();
|
||||
if (($usercount > 0) && (Route::is('setup*'))) {
|
||||
return redirect(config('app.url'));
|
||||
|
||||
$users_table_exists = Schema::hasTable('users');
|
||||
$settings_table_exists = Schema::hasTable('settings');
|
||||
|
||||
if ($users_table_exists && $settings_table_exists) {
|
||||
$usercount = User::withTrashed()->count();
|
||||
if (($usercount > 0) && (Route::is('setup*'))) {
|
||||
return redirect(config('app.url'));
|
||||
} else {
|
||||
return $next($request);
|
||||
}
|
||||
} else {
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
|
||||
} catch (\Exception $e) {
|
||||
return $next($request);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue