<?php

/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/OSL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 */

namespace PrestaShop\Module\PsEventbus\Service;

if (!defined('_PS_VERSION_')) {
    exit;
}

class PresenterService
{
    /**
     * @var PsAccountsAdapterService
     */
    private $psAccountsAdapterService;

    public function __construct()
    {
        /** @var \Ps_eventbus */
        $psEventbus = \Module::getInstanceByName('ps_eventbus');
        $psAccountsAdapterService = $psEventbus->getService(PsAccountsAdapterService::class);

        $this->psAccountsAdapterService = $psAccountsAdapterService;
    }

    /**
     * @param \ModuleCore $module
     * @param array<mixed> $requiredConsents
     * @param array<mixed> $optionalConsents
     *
     * @return array<mixed>
     */
    public function expose(\ModuleCore $module, $requiredConsents = [], $optionalConsents = [])
    {
        if (!in_array('info', $requiredConsents)) {
            array_unshift($requiredConsents, 'info');
        }

        if ($this->psAccountsAdapterService == null) {
            return [];
        }

        $language = \Context::getContext()->language;

        if ($language == null) {
            throw new \PrestaShopException('No language context');
        }

        return [
            'jwt' => $this->psAccountsAdapterService->getShopToken(),
            'requiredConsents' => $requiredConsents,
            'optionalConsents' => $optionalConsents,
            'module' => array_merge([
                'logoUrl' => \Tools::getHttpHost(true) . '/modules/' . $module->name . '/logo.png',
            ], $this->convertObjectToArray($module)),
            'shop' => [
                /* @phpstan-ignore-next-line */
                'id' => $this->psAccountsAdapterService->getShopUuid(),
                'name' => \Configuration::get('PS_SHOP_NAME'),
                'url' => \Tools::getHttpHost(true),
                'lang' => $language->iso_code,
            ],
            'psEventbusModule' => $this->convertObjectToArray(\Module::getInstanceByName('ps_eventbus')),
        ];
    }

    /**
     * @param object|\ModuleCore|false $object
     *
     * @return array<mixed>
     */
    private function convertObjectToArray($object)
    {
        if (!$object) {
            return [];
        }
        $array = [];
        /* @phpstan-ignore-next-line */ // TODO understand why phpstan complains about this
        foreach ($object as $key => $value) {
            if (is_object($value)) {
                $array[$key] = $this->convertObjectToArray($value);
            } else {
                $array[$key] = $value;
            }
        }

        return $array;
    }
}
