Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Category/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Category/StoreCategories.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Catalog\Model\Category;

use Magento\Catalog\Api\CategoryRepositoryInterface;
use Magento\Catalog\Model\Category;
use Magento\Store\Api\GroupRepositoryInterface;

/**
 * Fetcher for associated with store group categories.
 */
class StoreCategories
{
    /**
     * @var CategoryRepositoryInterface
     */
    private $categoryRepository;

    /**
     * @var GroupRepositoryInterface
     */
    private $groupRepository;

    /**
     * @param CategoryRepositoryInterface $categoryRepository
     * @param GroupRepositoryInterface $groupRepository
     */
    public function __construct(
        CategoryRepositoryInterface $categoryRepository,
        GroupRepositoryInterface $groupRepository
    ) {
        $this->categoryRepository = $categoryRepository;
        $this->groupRepository = $groupRepository;
    }

    /**
     * Get all category ids for store.
     *
     * @param int|null $storeGroupId
     * @return int[]
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getCategoryIds(?int $storeGroupId = null): array
    {
        $rootCategoryId = $storeGroupId
            ? $this->groupRepository->get($storeGroupId)->getRootCategoryId()
            : Category::TREE_ROOT_ID;
        /** @var Category $rootCategory */
        $rootCategory = $this->categoryRepository->get($rootCategoryId);
        $categoriesIds = array_map(
            function ($value) {
                return (int) $value;
            },
            (array) $rootCategory->getAllChildren(true)
        );

        return $categoriesIds;
    }
}