-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add shop association endpoint, and improve multishop tests to check u…
…pdates with different shop parameters including list of shop IDs
- Loading branch information
1 parent
284354c
commit 121c9d6
Showing
3 changed files
with
213 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?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\APIResources\ApiPlatform\Resources\Product; | ||
|
||
use ApiPlatform\Metadata\ApiProperty; | ||
use ApiPlatform\Metadata\ApiResource; | ||
use PrestaShop\PrestaShop\Core\Domain\Product\Exception\ProductNotFoundException; | ||
use PrestaShop\PrestaShop\Core\Domain\Product\Query\GetProductForEditing; | ||
use PrestaShop\PrestaShop\Core\Domain\Product\Shop\Command\SetProductShopsCommand; | ||
use PrestaShop\PrestaShop\Core\Domain\Shop\Exception\ShopAssociationNotFound; | ||
use PrestaShopBundle\ApiPlatform\Metadata\CQRSPartialUpdate; | ||
use Symfony\Component\HttpFoundation\Response; | ||
|
||
#[ApiResource( | ||
operations: [ | ||
new CQRSPartialUpdate( | ||
uriTemplate: '/product/{productId}/shops', | ||
CQRSCommand: SetProductShopsCommand::class, | ||
CQRSQuery: GetProductForEditing::class, | ||
scopes: [ | ||
'product_write', | ||
], | ||
CQRSQueryMapping: Product::QUERY_MAPPING, | ||
CQRSCommandMapping: [ | ||
'[associatedShopIds]' => '[shopIds]', | ||
], | ||
), | ||
], | ||
exceptionToStatus: [ | ||
ProductNotFoundException::class => Response::HTTP_NOT_FOUND, | ||
ShopAssociationNotFound::class => Response::HTTP_NOT_FOUND, | ||
], | ||
)] | ||
class ProductShops extends Product | ||
{ | ||
public int $sourceShopId; | ||
|
||
#[ApiProperty(openapiContext: ['type' => 'array', 'items' => ['type' => 'integer']])] | ||
public array $associatedShopIds; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters