From 04d03bd0bf67878536fd6c2cc28bfcc167f6b5b2 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Mon, 31 Mar 2025 01:55:52 -0700 Subject: [PATCH] associations saving many to many workign now catalogs --- .../ExternalProductCatalogsController.php | 3 ++- src/Model/Entity/ExternalProductCatalog.php | 10 ++++++---- ...ernalProductCatalogsProductCatalogsTable.php | 17 ++++++++++++++--- .../ExternalProductCatalogsControllerTest.php | 9 ++++++++- 4 files changed, 30 insertions(+), 9 deletions(-) diff --git a/src/Controller/ExternalProductCatalogsController.php b/src/Controller/ExternalProductCatalogsController.php index 1363ca1..3e81d0a 100644 --- a/src/Controller/ExternalProductCatalogsController.php +++ b/src/Controller/ExternalProductCatalogsController.php @@ -71,7 +71,8 @@ class ExternalProductCatalogsController extends AppController ], ]; $postData = $this->request->getData(); - + Log::debug(print_r('$postData', true)); + Log::debug(print_r($postData, true)); $externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $postData, $saveOptions); if ($this->ExternalProductCatalogs->save($externalProductCatalog, $saveOptions)) { $this->Flash->success(__('The external product catalog has been saved.')); diff --git a/src/Model/Entity/ExternalProductCatalog.php b/src/Model/Entity/ExternalProductCatalog.php index 437f033..d228393 100644 --- a/src/Model/Entity/ExternalProductCatalog.php +++ b/src/Model/Entity/ExternalProductCatalog.php @@ -3,6 +3,7 @@ declare(strict_types=1); namespace CakeProducts\Model\Entity; +use Cake\I18n\DateTime; use Cake\ORM\Entity; /** @@ -11,10 +12,11 @@ use Cake\ORM\Entity; * @property int $id * @property string $base_url * @property string $api_url - * @property \Cake\I18n\DateTime $created - * @property \Cake\I18n\DateTime|null $deleted + * @property DateTime $created + * @property DateTime|null $deleted * - * @property \CakeProducts\Model\Entity\ProductCatalog[] $product_catalogs + * @property ProductCatalog[] $product_catalogs + * @property ExternalProductCatalogsProductCatalog[] $external_product_catalogs_product_catalogs */ class ExternalProductCatalog extends Entity { @@ -33,6 +35,6 @@ class ExternalProductCatalog extends Entity 'created' => true, 'deleted' => true, 'enabled' => true, - 'product_catalogs' => true, + 'external_product_catalogs_product_catalogs' => true, ]; } diff --git a/src/Model/Table/ExternalProductCatalogsProductCatalogsTable.php b/src/Model/Table/ExternalProductCatalogsProductCatalogsTable.php index ae59ae8..48edebf 100644 --- a/src/Model/Table/ExternalProductCatalogsProductCatalogsTable.php +++ b/src/Model/Table/ExternalProductCatalogsProductCatalogsTable.php @@ -3,8 +3,11 @@ declare(strict_types=1); namespace CakeProducts\Model\Table; +use ArrayObject; +use Cake\Core\Configure; use Cake\Datasource\EntityInterface; use Cake\Datasource\ResultSetInterface; +use Cake\Event\EventInterface; use Cake\ORM\Association\BelongsTo; use Cake\ORM\Behavior\TimestampBehavior; use Cake\ORM\Query\SelectQuery; @@ -55,6 +58,9 @@ class ExternalProductCatalogsProductCatalogsTable extends Table $this->addBehavior('Timestamp'); + $this->setEntityClass( + Configure::read('CakeProducts.ExternalProductCatalogsProductCatalogs.entity', 'CakeProducts\Model\Entity\ExternalProductCatalogsProductCatalog') + ); $this->belongsTo('ExternalProductCatalogs', [ 'className' => 'CakeProducts.ExternalProductCatalogs', // 'foreignKey' => 'external_product_catalog_id', @@ -84,13 +90,18 @@ class ExternalProductCatalogsProductCatalogsTable extends Table ->notEmptyString('product_catalog_id'); $validator - ->boolean('enabled') - ->requirePresence('enabled', 'create') - ->notEmptyString('enabled'); + ->boolean('enabled'); return $validator; } + public function beforeMarshal(EventInterface $event, ArrayObject $data, ArrayObject $options) + { + if (!isset($data['enabled'])) { + $data['enabled'] = false; + } + } + /** * Returns a rules checker object that will be used for validating * application integrity. diff --git a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php index fe5d450..d4c0235 100644 --- a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php +++ b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php @@ -47,7 +47,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest // $this->enableCsrfToken(); // $this->enableSecurityToken(); $this->disableErrorHandlerMiddleware(); - $this->ExternalProductCatalogs = $this->getTableLocator()->get('ExternalProductCatalogs'); + $this->ExternalProductCatalogs = $this->getTableLocator()->get('CakeProducts.ExternalProductCatalogs'); } /** @@ -149,6 +149,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest public function testAddPostSuccess(): void { $cntBefore = $this->ExternalProductCatalogs->find()->count(); + $linksBefore = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count(); $this->loginUserByRole('admin'); $url = [ @@ -160,13 +161,19 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest 'base_url' => 'http://localhost:8766', 'api_url' => 'http://localhost:8766/api/v1/', 'enabled' => true, + 'external_product_catalogs_product_catalogs' => [ + ['product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428'], + ] ]; $this->post($url, $data); $this->assertResponseCode(302); $this->assertRedirectContains('external-product-catalogs'); $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $linksAfter = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + $this->assertEquals($linksBefore + 1, $linksAfter); } /**