2017-12-07 23:04:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
2018-04-10 11:23:13 +00:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2017-12-07 23:04:02 +00:00
|
|
|
use Closure;
|
|
|
|
use App\Models\{Site};
|
|
|
|
use Config;
|
|
|
|
use View;
|
|
|
|
use Theme;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class SetSite
|
|
|
|
* This class is responsible for setting our site settings based on the URL of a request
|
|
|
|
*
|
|
|
|
* @package App\Http\Middleware
|
|
|
|
*/
|
|
|
|
class SetSite
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
|
|
|
// @todo Figure out how to know if this is an API call - and deny it if it's not in the database.
|
2018-05-20 12:53:14 +00:00
|
|
|
$so = new Site;
|
2018-04-10 11:23:13 +00:00
|
|
|
|
|
|
|
if (Schema::hasTable('site'))
|
|
|
|
{
|
|
|
|
$so = Site::where('url',$request->root())
|
|
|
|
->orwhere('devurl',$request->root())
|
|
|
|
// @todo With an API call, we would use ->firstorfail();
|
|
|
|
->first();
|
|
|
|
}
|
2017-12-07 23:04:02 +00:00
|
|
|
|
|
|
|
// If we dont exist, we'll return a fake model.
|
2018-05-20 12:53:14 +00:00
|
|
|
if (! $so or ! $so->exists) {
|
2017-12-07 23:04:02 +00:00
|
|
|
$so = (new Site)->sample();
|
|
|
|
}
|
|
|
|
|
|
|
|
Theme::set($so->theme);
|
|
|
|
|
|
|
|
// Set who we are in SETUP.
|
|
|
|
Config::set('SITE_SETUP',$so);
|
|
|
|
View::share('so',$so);
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|