Current File : //var/www/vinorea/modules/ps_accounts/controllers/front/apiV1ShopLinkAccount.php
<?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 Academic Free License version 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/AFL-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.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
 */

use PrestaShop\Module\PsAccounts\Account\Command\LinkShopCommand;
use PrestaShop\Module\PsAccounts\Account\Command\UnlinkShopCommand;
use PrestaShop\Module\PsAccounts\Account\Dto\LinkShop;
use PrestaShop\Module\PsAccounts\Account\Exception\RefreshTokenException;
use PrestaShop\Module\PsAccounts\Cqrs\CommandBus;
use PrestaShop\Module\PsAccounts\Http\Controller\AbstractShopRestController;
use PrestaShop\Module\PsAccounts\Http\Request\UpdateShopLinkAccountRequest;

class ps_AccountsApiV1ShopLinkAccountModuleFrontController extends AbstractShopRestController
{
    /**
     * @var CommandBus
     */
    private $commandBus;

    /**
     * @throws Exception
     */
    public function __construct()
    {
        parent::__construct();

        $this->commandBus = $this->module->getService(CommandBus::class);
        //$this->commandBus = $this->module->getContainer()->get('prestashop.command_bus');
    }

    /**
     * @param Shop $shop
     * @param UpdateShopLinkAccountRequest $request
     *
     * @return array
     *
     * @throws RefreshTokenException
     * @throws Exception
     */
    public function update(Shop $shop, UpdateShopLinkAccountRequest $request)
    {
        $this->commandBus->handle(new LinkShopCommand(
            new LinkShop([
                'shopId' => $request->shop_id,
                'uid' => $request->uid,
                'ownerUid' => $request->owner_uid,
                'ownerEmail' => $request->owner_email,
                'employeeId' => $request->employee_id,
            ])
        ));

        return [
            'success' => true,
            'message' => 'Link Account stored successfully',
        ];
    }

    /**
     * @param Shop $shop
     * @param array $payload
     *
     * @return array
     *
     * @throws PrestaShopException
     * @throws Exception
     */
    public function delete(Shop $shop, array $payload)
    {
        $this->commandBus->handle(new UnlinkShopCommand($shop->id));

        return [
            'success' => true,
            'message' => 'Link Account deleted successfully',
        ];
    }
}