b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / app / code / Mirasvit / Search / Service /
Filename/home/a/home/dev2.destoffenstraat.com/app/code/Mirasvit/Search/Service/MapperService.php
Size2.59 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified15-Oct-2024 20:30
Last accessed23-Aug-2025 09:05
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Mirasvit
*
* This source file is subject to the Mirasvit Software License, which is available at https://mirasvit.com/license/.
* Do not edit or add to this file if you wish to upgrade the to newer versions in the future.
* If you wish to customize this module for your needs.
* Please refer to http://www.magentocommerce.com for more information.
*
* @category Mirasvit
* @package mirasvit/module-search-ultimate
* @version 2.3.2
* @copyright Copyright (C) 2024 Mirasvit (https://mirasvit.com/)
*/


declare(strict_types=1);

namespace Mirasvit\Search\Service;

use Magento\Framework\App\ObjectManager;
use Magento\Store\Model\StoreManagerInterface;
use Mirasvit\Search\Service\ContentService;

class MapperService
{
private $storeManager;

private $contentService;

public function __construct(
StoreManagerInterface $storeManager,
ContentService $contentService
) {
$this->storeManager = $storeManager;
$this->contentService = $contentService;
}

public function getBaseUrl(int $storeId): string
{
return $this->storeManager->getStore($storeId)->getBaseUrl();
}

public function getAdminPath(): string
{
$url = ObjectManager::getInstance()->get(\Magento\Backend\Helper\Data::class)
->getHomePageUrl();

$components = parse_url($url);
$components = explode('/', trim($components['path'], '/'));

return array_shift($components);
}

public function clearString(int $storeId, string $string, bool $processHtmlContent): string
{
if ($processHtmlContent) {
$string = $this->contentService->processHtmlContent($storeId, $string);
}

$string = (string)preg_replace('/<style>.*<\/style>/', '', $string);

return strip_tags(html_entity_decode($string));
}

public function correctUrl(int $storeId, string $url): string
{
$baseUrl = $this->getBaseUrl($storeId);

if (strripos($url, $baseUrl) === false || strripos($url, $this->getAdminPath()) !== false) {
$url = str_replace('/' . $this->getAdminPath() . '/', '/', $url);
$url = preg_replace('~\/key\/.*~', '', $url);
}

if (strripos($url, $baseUrl) === false) {
$baseChunks = explode('/', $baseUrl);
$urlChunks = explode('/', $url);
foreach ($baseChunks as $idx => $chunk) {
if (isset($urlChunks[$idx])) {
$urlChunks[$idx] = $chunk;
}
}

$url = implode('/', $urlChunks);
}

return $url;
}
}