Installer updates

Added probe.php
Added new installer views and controllers
Updated AuthController
Updated Middlewares
Updated Commands for installation process
This commit is contained in:
Manish Verma
2018-08-07 13:45:46 +05:30
parent 1ac0f42a58
commit 22d3bb4036
28 changed files with 1197 additions and 405 deletions

View File

@@ -4,20 +4,44 @@ namespace App\Http\Middleware;
use Cache;
use Closure;
// use Illuminate\Contracts\Routing\Middleware;
use Illuminate\Support\Facades\App;
// use Illuminate\Contracts\Routing\Middleware;
use Illuminate\Support\Facades\Config;
use Session;
class LanguageMiddleware
{
public function handle($request, Closure $next)
{
if (Cache::has('language') and array_key_exists(Cache::get('language'), Config::get('languages'))) {
App::setLocale(Cache::get('language'));
$lang = '';
if (\Auth::check()) {
if (\Auth::user()->user_language != null) {
$lang = \Auth::user()->user_language;
} else {
$lang = $this->getLangFromSessionOrCache();
}
} else {
$lang = $this->getLangFromSessionOrCache();
}
if ($lang != '' and array_key_exists($lang, Config::get('languages'))) {
App::setLocale($lang);
} else { // This is optional as Laravel will automatically set the fallback language if there is none specified
App::setLocale(Config::get('app.fallback_locale'));
}
return $next($request);
}
public function getLangFromSessionOrCache()
{
$lang = '';
if (Session::has('language')) {
$lang = Session::get('language');
} elseif (Cache::has('language')) {
$lang = Cache::get('language');
}
return $lang;
}
}