mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-11 19:14:30 +01:00
90 lines
2.2 KiB
PHP
90 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Middleware;
|
|
|
|
use CachetHQ\Cachet\Settings\Repository as SettingsRepository;
|
|
use Closure;
|
|
use Illuminate\Contracts\Config\Repository as ConfigRepository;
|
|
use Illuminate\Http\Request;
|
|
use Jenssegers\Date\Date;
|
|
|
|
/**
|
|
* This is the localize middleware class.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
* @author Joseph Cohen <joe@alt-three.com>
|
|
* @author Graham Campbell <james@alt-three.com>
|
|
*/
|
|
class Localize
|
|
{
|
|
/**
|
|
* The config repository instance.
|
|
*
|
|
* @var \Illuminate\Contracts\Config\Repository
|
|
*/
|
|
protected $config;
|
|
|
|
/**
|
|
* The settings repository instance.
|
|
*
|
|
* @var \CachetHQ\Cachet\Settings\Repository
|
|
*/
|
|
protected $settings;
|
|
|
|
/**
|
|
* Constructs a new localize middleware instance.
|
|
*
|
|
* @param \Illuminate\Contracts\Config\Repository $config
|
|
* @param \CachetHQ\Cachet\Settings\Repository $settings
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(ConfigRepository $config, SettingsRepository $settings)
|
|
{
|
|
$this->config = $config;
|
|
$this->settings = $settings;
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
if (!(bool) $this->settings->get('automatic_localization')) {
|
|
return $next($request);
|
|
}
|
|
|
|
$requestedLanguages = $request->getLanguages();
|
|
$userLanguage = $this->config->get('app.locale');
|
|
$langs = $this->config->get('langs');
|
|
|
|
foreach ($requestedLanguages as $language) {
|
|
$language = str_replace('_', '-', $language);
|
|
|
|
if (isset($langs[$language])) {
|
|
$userLanguage = $language;
|
|
break;
|
|
}
|
|
}
|
|
|
|
app('translator')->setLocale($userLanguage);
|
|
Date::setLocale($userLanguage);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|