Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
e1bb96c4f9 | |||
2d883bb9c4 | |||
f7cc8b99f6 | |||
a9f184e898 | |||
953d0872d7 |
@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
"name": "rinsvent/data2dto-doctrine-docuemnt-bundle",
|
"name": "rinsvent/data2dto-doctrine-document-bundle",
|
||||||
"description": "Doctrine entity bridge for data2dto bundle",
|
"description": "Doctrine entity bridge for data2dto bundle",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.0",
|
"php": "^8.1",
|
||||||
"ext-ctype": "*",
|
"ext-ctype": "*",
|
||||||
"ext-iconv": "*",
|
"ext-iconv": "*",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"rinsvent/data2dto": "^0.0",
|
"rinsvent/data2dto": "^0.0",
|
||||||
"rinsvent/data2dto-bundle": "^0.0",
|
"symfony/http-kernel": "^5.4",
|
||||||
"symfony/http-kernel": "^5.3",
|
"symfony/config": "^5.4",
|
||||||
"symfony/config": "^5.3",
|
"symfony/dependency-injection": "^5.4",
|
||||||
"symfony/dependency-injection": "^5.3",
|
"doctrine/mongodb-odm": "^2",
|
||||||
"doctrine/mongodb-odm": "^2"
|
"rinsvent/transformer-bundle": "^0.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"codeception/codeception": "^4.1",
|
"codeception/codeception": "^4.1",
|
||||||
|
6338
composer.lock
generated
6338
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -8,5 +8,5 @@ services:
|
|||||||
resource: '../../../src/Service'
|
resource: '../../../src/Service'
|
||||||
|
|
||||||
_instanceof:
|
_instanceof:
|
||||||
Rinsvent\Data2DTOBundle\Service\AbstractTransformer:
|
Rinsvent\TransformerBundle\Service\AbstractTransformer:
|
||||||
tags: [ 'rinsvent.transformer' ]
|
tags: [ 'rinsvent.transformer.transformer' ]
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace Rinsvent\Data2DTODoctrineDocumentBundle\Service;
|
namespace Rinsvent\Data2DTODoctrineDocumentBundle\Service;
|
||||||
|
|
||||||
use Rinsvent\Data2DTO\Transformer\Meta;
|
use Rinsvent\Transformer\Transformer\Meta;
|
||||||
|
|
||||||
#[\Attribute]
|
#[\Attribute]
|
||||||
class Document extends Meta
|
class Document extends Meta
|
||||||
@ -11,6 +11,8 @@ class Document extends Meta
|
|||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
public string $class,
|
public string $class,
|
||||||
public string $primaryType = 'id',
|
public array $tags = ['default'],
|
||||||
) {}
|
) {
|
||||||
|
parent::__construct($tags);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,28 +3,27 @@
|
|||||||
namespace Rinsvent\Data2DTODoctrineDocumentBundle\Service;
|
namespace Rinsvent\Data2DTODoctrineDocumentBundle\Service;
|
||||||
|
|
||||||
use Doctrine\ODM\MongoDB\DocumentManager;
|
use Doctrine\ODM\MongoDB\DocumentManager;
|
||||||
use Rinsvent\Data2DTO\Transformer\Meta;
|
use Rinsvent\Transformer\Transformer\Meta;
|
||||||
use Rinsvent\Data2DTOBundle\Service\AbstractTransformer;
|
use Rinsvent\TransformerBundle\Service\AbstractTransformer;
|
||||||
|
|
||||||
class DocumentTransformer extends AbstractTransformer
|
class DocumentTransformer extends AbstractTransformer
|
||||||
{
|
{
|
||||||
public function __construct(
|
public function __construct(
|
||||||
protected DocumentManager $dm
|
protected DocumentManager $dm
|
||||||
) {}
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $data
|
* @param $data
|
||||||
* @param Document $meta
|
* @param Document $meta
|
||||||
*/
|
*/
|
||||||
public function transform(&$data, Meta $meta): void
|
public function transform(mixed $data, Meta $meta): mixed
|
||||||
{
|
{
|
||||||
if ($meta->primaryType === 'id' && !is_int($data)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ($meta->primaryType === 'uuid' && !is_string($data)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$repository = $this->dm->getRepository($meta->class);
|
$repository = $this->dm->getRepository($meta->class);
|
||||||
$data = $repository->find($data);
|
try {
|
||||||
|
return $repository->find($data);
|
||||||
|
} catch (\Throwable) {
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user