Files
UNIT3D/app/Http/Middleware/SetLanguage.php
Roardom 3de7b17381 refactor: swap null coalescing for default model in user settings
Cleans up the code to remove null coalescing on user_settings when it doesn't exist. Sometimes null was unintentionally being cast to false. Allowing the user_setting remain optional allows the site administration to configure and change defaults for their users without it affecting users who have explicitly chosen their existing user settings.

Alternative to #4789
2025-06-20 03:00:48 +00:00

102 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Http\Middleware;
use App\Models\Language;
use Closure;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\App;
use Date;
class SetLanguage
{
/**
* This function checks if language to set is an allowed lang of config.
*/
private function setLocale(string $locale): void
{
// Check if is allowed and set default locale if not
if (!Language::allowed($locale)) {
$locale = config('app.locale');
}
// Set app language
App::setLocale($locale);
// Set carbon language
if (config('language.carbon')) {
// Carbon uses only language code
if (config('language.mode.code') == 'long') {
$locale = explode('-', (string) $locale)[0];
}
Carbon::setLocale($locale);
}
// Set date language
if (config('language.date')) {
// Date uses only language code
if (config('language.mode.code') == 'long') {
$locale = explode('-', (string) $locale)[0];
}
Date::setLocale($locale);
}
}
public function setDefaultLocale(): void
{
$this->setLocale(config('app.locale'));
}
public function setUserLocale(): void
{
$user = auth()->user();
if ($user->settings->locale) {
$this->setLocale($user->settings->locale);
} else {
$this->setDefaultLocale();
}
}
public function setSystemLocale($request): void
{
if ($request->session()->has('locale')) {
$this->setLocale(session('locale'));
} else {
$this->setDefaultLocale();
}
}
/**
* Handle an incoming request.
*/
public function handle(\Illuminate\Http\Request $request, Closure $next): mixed
{
if ($request->has('lang')) {
$this->setLocale($request->get('lang'));
} elseif (auth()->check()) {
$this->setUserLocale();
} else {
$this->setSystemLocale($request);
}
return $next($request);
}
}