Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/mageworx/module-seobase/Helper/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mageworx/module-seobase/Helper/Hreflangs.php
<?php
/**
 * Copyright © MageWorx. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace MageWorx\SeoBase\Helper;

use MageWorx\SeoBase\Model\HreflangsConfigReader;

class Hreflangs extends \Magento\Framework\App\Helper\AbstractHelper
{
    const SCOPE_GLOBAL  = 0;
    const SCOPE_WEBSITE = 1;

    const CMS_RELATION_BY_ID         = 0;
    const CMS_RELATION_BY_URLKEY     = 1;
    const CMS_RELATION_BY_IDENTIFIER = 2;

    /**
     * @var HreflangsConfigReader
     */
    protected $hreflangsConfigReader;

    /**
     * @var \Magento\Store\Model\StoreManagerInterface
     */
    protected $storeManager;

    /**
     * Hreflangs constructor.
     *
     * @param HreflangsConfigReader $hreflangsConfigReader
     * @param \Magento\Store\Model\StoreManagerInterface $storeManager
     * @param \Magento\Framework\App\Helper\Context $context
     */
    public function __construct(
        HreflangsConfigReader $hreflangsConfigReader,
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        \Magento\Framework\App\Helper\Context $context
    ) {
        $this->hreflangsConfigReader = $hreflangsConfigReader;
        $this->storeManager          = $storeManager;
        parent::__construct($context);
    }

    /**
     * @param type $page
     * @return int|string
     */
    public function getCmsIdentifierValue($page)
    {
        if (!is_object($page)) {
            return null;
        }

        $cmsPageRelationWay = $this->hreflangsConfigReader->getCmsPageRelationWay();

        if ($cmsPageRelationWay == self::CMS_RELATION_BY_ID) {
            return $page->getPageId();
        }
        if ($cmsPageRelationWay == self::CMS_RELATION_BY_URLKEY) {
            return $page->getIdentifier();
        }
        if ($cmsPageRelationWay == self::CMS_RELATION_BY_IDENTIFIER) {
            return $page->getMageworxHreflangIdentifier();
        }
    }

    /**
     *
     * @param string $type
     * @param int|null $storeId
     * @return array
     */
    public function getHreflangFinalCodes($type, $storeId = null)
    {
        if (!$storeId) {
            $storeId = $this->storeManager->getStore()->getId();
        }
        $langCodes    = $this->getHreflangLanguageCodes($type, $storeId);
        $countryCodes = $this->gethreflangCountryCodes($type, $storeId);

        $hreflangFinalCodes = [];
        $xdefaultStoreIds   = $this->getXDefaultValidStoreIds($type, $storeId);
        $xdefaultStoreId    = array_shift($xdefaultStoreIds);

        foreach ($langCodes as $storeId => $langCode) {
            if (!empty($countryCodes[$storeId])) {
                $langCode = $langCode . '-' . $countryCodes[$storeId];
            }
            if ($storeId == $xdefaultStoreId) {
                $langCode = 'x-default';
            }
            $hreflangFinalCodes[$storeId] = $langCode;
        }

        return $this->deleteDuplicateCodes($hreflangFinalCodes);
    }

    /**
     * @param array $array
     * @return array
     */
    protected function deleteDuplicateCodes($array)
    {
        return array_unique($array);
    }

    /**
     *
     * @param string $type
     * @param int|null $storeId
     * @return string
     */
    public function getHreflangRawCodes($type, $storeId = null)
    {
        if (!$storeId) {
            $storeId = $this->storeManager->getStore()->getId();
        }
        $langCodes    = $this->getHreflangLanguageCodes($type, $storeId);
        $countryCodes = $this->getHreflangCountryCodes($type, $storeId);

        $hreflangRawCodes = [];
        $xdefaultStoreIds = $this->getXDefaultValidStoreIds($type, $storeId);

        foreach ($langCodes as $storeId => $langCode) {
            if (!empty($countryCodes[$storeId])) {
                $langCode = $langCode . '-' . $countryCodes[$storeId];
            }
            if (in_array($storeId, $xdefaultStoreIds)) {
                $langCode = 'x-default';
            }
            $hreflangRawCodes[$storeId] = $langCode;
        }

        return $hreflangRawCodes;
    }

    /**
     * @param string $type
     * @param int|null $storeId
     * @return array
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getHreflangLanguageCodes($type, $storeId = null)
    {
        if (!$storeId) {
            $storeId = $this->storeManager->getStore()->getId();
        }
        $storeLangCodes = [];
        $storeIds       = $this->getHreflangStoreIds($type, $storeId);

        foreach ($storeIds as $storeId) {
            $storeLangCodes[$storeId] = $this->hreflangsConfigReader->getLanguageCode((int)$storeId);
        }

        return $storeLangCodes;
    }

    /**
     * @param string $type
     * @param int|null $storeId
     * @return array
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getHreflangCountryCodes($type, $storeId = null)
    {
        if (!$storeId) {
            $storeId = $this->storeManager->getStore()->getId();
        }
        $storeCountryCodes = [];
        $storeIds          = $this->getHreflangStoreIds($type, $storeId);

        foreach ($storeIds as $storeId) {
            if ($this->hreflangsConfigReader->isCountryCodeEnabled((int)$storeId)) {
                $storeCountryCodes[$storeId] = $this->hreflangsConfigReader->getCountryCode((int)$storeId);
            }
        }

        return $storeCountryCodes;
    }

    /**
     * @param string $type
     * @param int $storeId
     * @return array
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getHreflangStoreIds($type, $storeId)
    {
        if (self::SCOPE_GLOBAL == $this->hreflangsConfigReader->getHreflangScope()) {
            return $this->getAllEnabledStoreIdsByType($type);
        }

        return $this->getWebsiteStoreIdsByStoreId($type, $storeId);
    }


    /**
     *
     * @param string $type
     * @param int $storeId
     * @return array
     */
    public function getXDefaultValidStoreIds($type, $storeId)
    {
        $xdefaultStoreIds = $this->hreflangsConfigReader->getXDefaultStoreIds();
        if (self::SCOPE_GLOBAL == $this->hreflangsConfigReader->getHreflangScope()) {
            $validStoreIds = $this->getAllEnabledStoreIdsByType($type);
            $storeIds      = array_intersect($xdefaultStoreIds, $validStoreIds);
        } else {
            $websiteStoreIds = $this->getWebsiteStoreIdsByStoreId($type, $storeId);
            $storeIds        = array_intersect($xdefaultStoreIds, $websiteStoreIds);
        }

        return $storeIds;
    }

    /**
     *
     * @param string $type
     * @param int|null $storeId
     * @return array
     */
    public function getWebsiteStoreIdsByStoreId($type, $storeId = null)
    {
        $rawStoreIds = $this->storeManager->getStore($storeId)->getWebsite()->getStoreIds();

        return $this->filterValidStoreIds($type, $rawStoreIds);
    }

    /**
     *
     * @param string $type
     * @param array $storeIds
     * @return array
     */
    public function filterValidStoreIds($type, $storeIds)
    {
        $validIds = $this->getAllEnabledStoreIdsByType($type);

        return array_intersect($storeIds, $validIds);
    }

    /**
     * @param string|null $type
     * @return array
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getAllEnabledStoreIdsByType(string $type = null): array
    {
        return array_keys($this->getAllEnabledStoreByType($type));
    }

    /**
     * @param string|null $type
     * @return array
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getAllEnabledStoreByType(string $type = null): array
    {
        $allStores = $this->getActiveStores();
        $stores    = [];
        foreach ($allStores as $storeId => $store) {
            $storeId = (int)$store->getStoreId();
            if ($this->hreflangsConfigReader->isHreflangsEnabledFor($type, $storeId)) {
                $stores[$storeId] = $store;
            }
        }

        return $stores;
    }

    /**
     * Retrieve list of active stores
     *
     * @return array
     */
    public function getActiveStores()
    {
        $stores = [];
        foreach ($this->storeManager->getStores() as $store) {
            if ($store->getIsActive()) {
                $stores[$store->getId()] = $store;
            }
        }

        return $stores;
    }

    /**
     * Check if store is active by store ID
     *
     * @param int $id
     * @return bool
     */
    public function isActiveStore($id)
    {
        $this->getActiveStores();

        return array_key_exists($id, $this->getActiveStores());
    }
}

Spamworldpro Mini