fix: Upgrade TranslatableStringHelper service and create its interface.

This commit is contained in:
Pol Dellaiera 2021-11-18 09:10:13 +01:00
parent 9f06bc7126
commit cc9ce4167f
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
3 changed files with 55 additions and 76 deletions

View File

@ -1,92 +1,56 @@
<?php <?php
/*
* Chill is a suite of a modules, Chill is a software for social workers declare(strict_types=1);
* Copyright (C) 2014, Champs Libres Cooperative SCRLFS, <http://www.champs-libres.coop>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Chill\MainBundle\Templating; namespace Chill\MainBundle\Templating;
use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Translation\Translator; use Symfony\Contracts\Translation\TranslatorInterface;
/** final class TranslatableStringHelper implements TranslatableStringHelperInterface
*
* This helper helps to find the string in current locale from translatable_strings
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*
*/
class TranslatableStringHelper
{ {
/** private RequestStack $requestStack;
*
* @var RequestStack private TranslatorInterface $translator;
*/
private $requestStack; public function __construct(RequestStack $requestStack, TranslatorInterface $translator)
private $fallbackLocales;
public function __construct(RequestStack $requestStack, Translator $translator)
{ {
$this->requestStack = $requestStack; $this->requestStack = $requestStack;
$this->fallbackLocales = $translator->getFallbackLocales(); $this->translator = $translator;
} }
/**
* return the string in current locale if it exists.
*
* If it does not exists; return the name in the first language available.
*
* Return a blank string if any strings are available.
* Return NULL if $translatableString is NULL
*
* @param array $translatableStrings
* @return string
*/
public function localize(array $translatableStrings)
{
if (NULL === $translatableStrings) {
return NULL;
}
$language = $this->requestStack->getCurrentRequest()->getLocale();
if (isset($translatableStrings[$language])) { public function localize(array $translatableStrings): ?string
{
return $translatableStrings[$language]; if ([] === $translatableStrings) {
} else { return null;
foreach ($this->fallbackLocales as $locale) {
if (array_key_exists($locale, $translatableStrings)) {
return $translatableStrings[$locale];
}
}
} }
$request = $this->requestStack->getCurrentRequest();
if (null === $request) {
return null;
}
$language = $request->getLocale();
if (array_key_exists($language, $translatableStrings)) {
return $translatableStrings[$language];
}
foreach ($this->translator->getFallbackLocales() as $locale) {
if (array_key_exists($locale, $translatableStrings)) {
return $translatableStrings[$locale];
}
}
// no fallback translation... trying the first available // no fallback translation... trying the first available
$langs = array_keys($translatableStrings); $langs = array_keys($translatableStrings);
if (count($langs) === 0) { if ([] === $langs) {
return ''; return '';
} }
return $translatableStrings[$langs[0]];
return $translatableStrings[$langs[0]];
} }
} }

View File

@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Chill\MainBundle\Templating;
interface TranslatableStringHelperInterface
{
/**
* Return the string in current locale if it exists.
*
* If it does not exists; return the name in the first language available.
*
* Return a blank string if any strings are available.
*/
public function localize(array $translatableStrings): ?string;
}

View File

@ -28,11 +28,9 @@ services:
chill.main.helper.translatable_string: chill.main.helper.translatable_string:
class: Chill\MainBundle\Templating\TranslatableStringHelper class: Chill\MainBundle\Templating\TranslatableStringHelper
arguments:
- "@request_stack"
- "@translator.default"
Chill\MainBundle\Templating\TranslatableStringHelper: '@chill.main.helper.translatable_string' Chill\MainBundle\Templating\TranslatableStringHelper: '@chill.main.helper.translatable_string'
Chill\MainBundle\Templating\TranslatableStringHelperInterface: '@Chill\MainBundle\Templating\TranslatableStringHelper'
chill.main.twig.translatable_string: chill.main.twig.translatable_string:
class: Chill\MainBundle\Templating\TranslatableStringTwig class: Chill\MainBundle\Templating\TranslatableStringTwig