mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Support\Facades\App;
|
|
use App\Facades\Settings;
|
|
|
|
class SetLanguage
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
// 3 possible cases here:
|
|
// - The user has choosen a specific language among those available in the Setting view of 2FAuth
|
|
// - The client send an accept-language header
|
|
// - No language is passed from the client
|
|
//
|
|
// We prioritize the user defined one, then the request header one, and finally the fallback one.
|
|
// FI: Settings::get() always returns a fallback value
|
|
$lang = Settings::get('lang');
|
|
|
|
if($lang === 'browser') {
|
|
$lang = config('app.fallback_locale');
|
|
|
|
if ($request->hasHeader("Accept-Language")) {
|
|
// We only keep the primary language passed via the header.
|
|
$lang = head(explode(',', $request->header("Accept-Language")));
|
|
}
|
|
}
|
|
|
|
// If the language is not available (or partial), strings will be translated using the fallback language.
|
|
App::setLocale($lang);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|