Skip to content

Commit b1351c6

Browse files
committed
Merge 2.7 into 3.0
2 parents 0a3dee4 + fbc0760 commit b1351c6

File tree

8 files changed

+21
-18
lines changed

8 files changed

+21
-18
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Breaking changes:
6767
* Symfony: missing Elasticsearch DocumentMetadataFactoryInterface alias definition (#4962)
6868
* Chore: drop dependency on fig/link-util (#4945)
6969
* Metadata: resource name collection missing deprecation (#4953)
70+
* Doctrine: ability to use ORM and ODM (#5032)
7071

7172
## 2.7.0
7273

src/Doctrine/Odm/Metadata/Resource/DoctrineMongoDbOdmResourceCollectionMetadataFactory.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
namespace ApiPlatform\Doctrine\Odm\Metadata\Resource;
1515

16-
use ApiPlatform\Doctrine\Common\State\PersistProcessor;
17-
use ApiPlatform\Doctrine\Common\State\RemoveProcessor;
1816
use ApiPlatform\Doctrine\Odm\State\CollectionProvider;
1917
use ApiPlatform\Doctrine\Odm\State\ItemProvider;
2018
use ApiPlatform\Metadata\ApiResource;
@@ -101,9 +99,9 @@ private function getProvider(Operation $operation): string
10199
private function getProcessor(Operation $operation): string
102100
{
103101
if ($operation instanceof DeleteOperationInterface) {
104-
return RemoveProcessor::class;
102+
return 'api_platform.doctrine_mongodb.odm.state.remove_processor';
105103
}
106104

107-
return PersistProcessor::class;
105+
return 'api_platform.doctrine_mongodb.odm.state.persist_processor';
108106
}
109107
}

src/Doctrine/Orm/Metadata/Resource/DoctrineOrmResourceCollectionMetadataFactory.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
namespace ApiPlatform\Doctrine\Orm\Metadata\Resource;
1515

16-
use ApiPlatform\Doctrine\Common\State\PersistProcessor;
17-
use ApiPlatform\Doctrine\Common\State\RemoveProcessor;
1816
use ApiPlatform\Doctrine\Orm\State\CollectionProvider;
1917
use ApiPlatform\Doctrine\Orm\State\ItemProvider;
2018
use ApiPlatform\Metadata\ApiResource;
@@ -101,9 +99,9 @@ private function getProvider(Operation $operation): string
10199
private function getProcessor(Operation $operation): string
102100
{
103101
if ($operation instanceof DeleteOperationInterface) {
104-
return RemoveProcessor::class;
102+
return 'api_platform.doctrine.orm.state.remove_processor';
105103
}
106104

107-
return PersistProcessor::class;
105+
return 'api_platform.doctrine.orm.state.persist_processor';
108106
}
109107
}

src/Metadata/ApiResource.php

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
/**
1919
* Resource metadata attribute.
2020
*
21+
* @Annotation
22+
*
2123
* @author Antoine Bluchet <[email protected]>
2224
*/
2325
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)]

src/Symfony/Bundle/Resources/config/doctrine_mongodb_odm.xml

+4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@
2020
<argument type="service" id="doctrine_mongodb" />
2121

2222
<tag name="api_platform.state_processor" priority="-100" key="ApiPlatform\Doctrine\Common\State\RemoveProcessor" />
23+
<tag name="api_platform.state_processor" priority="-100" key="api_platform.doctrine_mongodb.odm.state.remove_processor" />
2324
</service>
2425
<service id="ApiPlatform\Doctrine\Common\State\RemoveProcessor" alias="api_platform.doctrine_mongodb.odm.state.remove_processor" />
2526

2627
<service id="api_platform.doctrine_mongodb.odm.state.persist_processor" class="ApiPlatform\Doctrine\Common\State\PersistProcessor">
2728
<argument type="service" id="doctrine_mongodb" />
2829

2930
<tag name="api_platform.state_processor" priority="-100" key="ApiPlatform\Doctrine\Common\State\PersistProcessor" />
31+
<tag name="api_platform.state_processor" priority="-100" key="api_platform.doctrine_mongodb.odm.state.persist_processor" />
3032
</service>
3133
<service id="ApiPlatform\Doctrine\Common\State\PersistProcessor" alias="api_platform.doctrine_mongodb.odm.state.persist_processor" />
3234

@@ -127,6 +129,7 @@
127129
<argument type="tagged" tag="api_platform.doctrine_mongodb.odm.aggregation_extension.collection" />
128130

129131
<tag name="api_platform.state_provider" priority="-100" key="ApiPlatform\Doctrine\Odm\State\CollectionProvider" />
132+
<tag name="api_platform.state_provider" priority="-100" key="api_platform.doctrine_mongodb.odm.state.collection_provider" />
130133
</service>
131134
<service id="ApiPlatform\Doctrine\Odm\State\CollectionProvider" alias="api_platform.doctrine_mongodb.odm.state.collection_provider" />
132135

@@ -136,6 +139,7 @@
136139
<argument type="tagged" tag="api_platform.doctrine_mongodb.odm.aggregation_extension.item" />
137140

138141
<tag name="api_platform.state_provider" priority="-100" key="ApiPlatform\Doctrine\Odm\State\ItemProvider" />
142+
<tag name="api_platform.state_provider" priority="-100" key="api_platform.doctrine_mongodb.odm.state.item_provider" />
139143
</service>
140144
<service id="ApiPlatform\Doctrine\Odm\State\ItemProvider" alias="api_platform.doctrine_mongodb.odm.state.item_provider" />
141145
<service id="api_platform.state.item_provider" alias="ApiPlatform\Doctrine\Odm\State\ItemProvider" />

src/Symfony/Bundle/Resources/config/doctrine_orm.xml

+4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
<argument type="service" id="doctrine" />
1414

1515
<tag name="api_platform.state_processor" priority="-100" key="ApiPlatform\Doctrine\Common\State\RemoveProcessor" />
16+
<tag name="api_platform.state_processor" priority="-100" key="api_platform.doctrine.orm.state.remove_processor" />
1617
</service>
1718
<service id="ApiPlatform\Doctrine\Common\State\RemoveProcessor" alias="api_platform.doctrine.orm.state.remove_processor" />
1819

1920
<service id="api_platform.doctrine.orm.state.persist_processor" class="ApiPlatform\Doctrine\Common\State\PersistProcessor">
2021
<argument type="service" id="doctrine" />
2122

2223
<tag name="api_platform.state_processor" priority="-100" key="ApiPlatform\Doctrine\Common\State\PersistProcessor" />
24+
<tag name="api_platform.state_processor" priority="-100" key="api_platform.doctrine.orm.state.persist_processor" />
2325
</service>
2426
<service id="ApiPlatform\Doctrine\Common\State\PersistProcessor" alias="api_platform.doctrine.orm.state.persist_processor" />
2527

@@ -135,6 +137,7 @@
135137
<argument type="tagged" tag="api_platform.doctrine.orm.query_extension.collection" />
136138

137139
<tag name="api_platform.state_provider" priority="-100" key="ApiPlatform\Doctrine\Orm\State\CollectionProvider" />
140+
<tag name="api_platform.state_provider" priority="-100" key="api_platform.doctrine.orm.state.collection_provider" />
138141
</service>
139142
<service id="ApiPlatform\Doctrine\Orm\State\CollectionProvider" alias="api_platform.doctrine.orm.state.collection_provider" />
140143

@@ -144,6 +147,7 @@
144147
<argument type="tagged" tag="api_platform.doctrine.orm.query_extension.item" />
145148

146149
<tag name="api_platform.state_provider" priority="-100" key="ApiPlatform\Doctrine\Orm\State\ItemProvider" />
150+
<tag name="api_platform.state_provider" priority="-100" key="api_platform.doctrine.orm.state.item_provider" />
147151
</service>
148152
<service id="ApiPlatform\Doctrine\Orm\State\ItemProvider" alias="api_platform.doctrine.orm.state.item_provider" />
149153
<service id="api_platform.state.item_provider" alias="ApiPlatform\Doctrine\Orm\State\ItemProvider" />

tests/Doctrine/Odm/Metadata/Resource/DoctrineMongoDbOdmResourceCollectionMetadataFactoryTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
namespace ApiPlatform\Tests\Doctrine\Odm\Metadata\Resource;
1515

16-
use ApiPlatform\Doctrine\Common\State\PersistProcessor;
17-
use ApiPlatform\Doctrine\Common\State\RemoveProcessor;
1816
use ApiPlatform\Doctrine\Odm\Metadata\Resource\DoctrineMongoDbOdmResourceCollectionMetadataFactory;
1917
use ApiPlatform\Doctrine\Odm\State\CollectionProvider;
2018
use ApiPlatform\Doctrine\Odm\State\ItemProvider;
@@ -97,8 +95,8 @@ public function operationProvider(): iterable
9795
$default = (new Get())->withName('get')->withClass(Dummy::class);
9896

9997
yield [(new Get())->withProvider('has a provider')->withProcessor('and a processor')->withOperation($default), 'has a provider', 'and a processor'];
100-
yield [(new Get())->withOperation($default), ItemProvider::class, PersistProcessor::class];
101-
yield [(new GetCollection())->withOperation($default), CollectionProvider::class, PersistProcessor::class];
102-
yield [(new Delete())->withOperation($default), ItemProvider::class, RemoveProcessor::class];
98+
yield [(new Get())->withOperation($default), ItemProvider::class, 'api_platform.doctrine_mongodb.odm.state.persist_processor'];
99+
yield [(new GetCollection())->withOperation($default), CollectionProvider::class, 'api_platform.doctrine_mongodb.odm.state.persist_processor'];
100+
yield [(new Delete())->withOperation($default), ItemProvider::class, 'api_platform.doctrine_mongodb.odm.state.remove_processor'];
103101
}
104102
}

tests/Doctrine/Orm/Metadata/Resource/DoctrineOrmResourceCollectionMetadataFactoryTest.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
namespace ApiPlatform\Tests\Doctrine\Orm\Metadata\Resource;
1515

16-
use ApiPlatform\Doctrine\Common\State\PersistProcessor;
17-
use ApiPlatform\Doctrine\Common\State\RemoveProcessor;
1816
use ApiPlatform\Doctrine\Orm\Metadata\Resource\DoctrineOrmResourceCollectionMetadataFactory;
1917
use ApiPlatform\Doctrine\Orm\State\CollectionProvider;
2018
use ApiPlatform\Doctrine\Orm\State\ItemProvider;
@@ -85,8 +83,8 @@ public function operationProvider(): iterable
8583
$default = (new Get())->withName('get')->withClass(Dummy::class);
8684

8785
yield [(new Get())->withProvider('has a provider')->withProcessor('and a processor')->withOperation($default), 'has a provider', 'and a processor'];
88-
yield [(new Get())->withOperation($default), ItemProvider::class, PersistProcessor::class];
89-
yield [(new GetCollection())->withOperation($default), CollectionProvider::class, PersistProcessor::class];
90-
yield [(new Delete())->withOperation($default), ItemProvider::class, RemoveProcessor::class];
86+
yield [(new Get())->withOperation($default), ItemProvider::class, 'api_platform.doctrine.orm.state.persist_processor'];
87+
yield [(new GetCollection())->withOperation($default), CollectionProvider::class, 'api_platform.doctrine.orm.state.persist_processor'];
88+
yield [(new Delete())->withOperation($default), ItemProvider::class, 'api_platform.doctrine.orm.state.remove_processor'];
9189
}
9290
}

0 commit comments

Comments
 (0)