88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
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\Session\ShopSession;
|
|
use PrestaShop\Module\PsAccounts\Api\Controller\AbstractShopRestController;
|
|
use PrestaShop\Module\PsAccounts\Api\Controller\Request\UpdateShopOauth2ClientRequest;
|
|
use PrestaShop\Module\PsAccounts\Provider\OAuth2\Oauth2Client;
|
|
|
|
class ps_AccountsApiV1ShopOauth2ClientModuleFrontController extends AbstractShopRestController
|
|
{
|
|
/**
|
|
* @var Oauth2Client
|
|
*/
|
|
private $oauth2Client;
|
|
|
|
/**
|
|
* @var ShopSession
|
|
*/
|
|
private $session;
|
|
|
|
/**
|
|
* ps_AccountsApiV1ShopOauth2ClientModuleFrontController constructor.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->oauth2Client = $this->module->getService(Oauth2Client::class);
|
|
$this->session = $this->module->getService(ShopSession::class);
|
|
}
|
|
|
|
/**
|
|
* @param Shop $shop
|
|
* @param UpdateShopOauth2ClientRequest $request
|
|
*
|
|
* @return array
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function update(Shop $shop, UpdateShopOauth2ClientRequest $request)
|
|
{
|
|
$this->oauth2Client->update($request->client_id, $request->client_secret);
|
|
$this->session->getOrRefreshToken();
|
|
|
|
return [
|
|
'success' => true,
|
|
'message' => 'Oauth client stored successfully',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param Shop $shop
|
|
* @param array $payload
|
|
*
|
|
* @return array
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function delete(Shop $shop, array $payload)
|
|
{
|
|
$this->oauth2Client->delete();
|
|
|
|
return [
|
|
'success' => true,
|
|
'message' => 'Oauth client deleted successfully',
|
|
];
|
|
}
|
|
}
|