2FAuth/app/Http/Middleware/SetLanguage.php

57 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
2022-11-22 15:15:52 +01:00
use App\Facades\Settings;
use Closure;
use Illuminate\Support\Facades\App;
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.
2022-07-30 17:51:02 +02:00
// FI: Settings::get() always returns a fallback value
$lang = Settings::get('lang');
2022-11-22 15:15:52 +01:00
if ($lang === 'browser') {
$lang = config('app.fallback_locale');
$accepted = str_replace(' ', '', $request->header('Accept-Language'));
2022-09-07 17:56:42 +02:00
if ($accepted && $accepted !== '*') {
2022-09-07 17:56:42 +02:00
$prefLocales = array_reduce(
array_diff(explode(',', $accepted), ['*']),
2022-11-22 15:15:52 +01:00
function ($res, $el) {
[$l, $q] = array_merge(explode(';q=', $el), [1]);
$res[$l] = (float) $q;
2022-09-07 17:56:42 +02:00
return $res;
},
[]
);
arsort($prefLocales);
// We only keep the primary language passed via the header.
2022-09-07 17:56:42 +02:00
$lang = array_key_first($prefLocales);
}
}
// If the language is not available (or partial), strings will be translated using the fallback language.
App::setLocale($lang);
return $next($request);
}
}