Current File : /var/www/vinorea/vendor/prestashop/translationtools-bundle/Translation/Helper/DomainHelper.php |
<?php
/**
* This file is authored by PrestaShop SA and Contributors <contact@prestashop.com>
*
* It is distributed under MIT license.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PrestaShop\TranslationToolsBundle\Translation\Helper;
class DomainHelper
{
/**
* @param string $localPath
*
* @return string
*/
public static function getCrowdinPath($localPath)
{
$segments = explode(DIRECTORY_SEPARATOR, $localPath);
$directorySegments = array_slice($segments, 0, 2);
if (count($directorySegments) !== count($segments)) {
return implode(DIRECTORY_SEPARATOR, $directorySegments) . DIRECTORY_SEPARATOR . implode('.', array_slice($segments, 2));
}
return implode(DIRECTORY_SEPARATOR, $directorySegments);
}
/**
* @param string $domain
*
* @return string
*/
public static function getExportPath($domain)
{
return str_replace('.', DIRECTORY_SEPARATOR, $domain);
}
/**
* @param string $exportPath
*
* @return string
*/
public static function getDomain($exportPath)
{
return str_replace(DIRECTORY_SEPARATOR, '.', $exportPath);
}
/**
* Builds a module domain name for the legacy system
*
* @param string $moduleName Name of the module (eg. ps_themecusto)
* @param string $sourceFileName Filename where the wording was found (eg. someFile.tpl)
*
* @return string The domain name (eg. Modules.Psthemecusto.somefile)
*/
public static function buildModuleDomainFromLegacySource($moduleName, $sourceFileName)
{
$transformedModuleName = self::buildModuleDomainNameComponent($moduleName);
if (empty($sourceFileName)) {
$source = self::transformDomainComponent($moduleName);
} else {
$source = strtolower(basename($sourceFileName, '.tpl'));
// sourced from https://github.com/PrestaShop/PrestaShop/blob/1.6.1.x/classes/Translate.php#L174-L178
if ('controller' == substr($source, -10, 10)) {
$source = substr($source, 0, -10);
}
$source = ucfirst($source);
}
$domain = 'Modules.' . $transformedModuleName . '.' . $source;
return $domain;
}
/**
* Returns the base domain for the provided module name
*
* @param string $moduleName
* @param bool $withDots True to use separating dots
*
* @return string
*/
public static function buildModuleBaseDomain($moduleName, $withDots = false)
{
$domain = 'Modules';
if ($withDots) {
$domain .= '.';
}
$domain .= self::buildModuleDomainNameComponent($moduleName);
return $domain;
}
/**
* Transforms the module name to use in a domain
*
* @param string $moduleName
*
* @return string
*/
private static function buildModuleDomainNameComponent($moduleName)
{
if ('ps_' === substr($moduleName, 0, 3)) {
$moduleName = substr($moduleName, 3);
}
return self::transformDomainComponent($moduleName);
}
/**
* Formats a domain component by removing unwanted characters
*
* @param string $component
*
* @return string
*/
private static function transformDomainComponent($component)
{
return ucfirst(
strtr(
strtolower($component),
['_' => '']
)
);
}
}