Passed
Pull Request — develop (#130)
by Laurent
02:51 queued 01:23
created

DoctrineSettingsRepository   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 118
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 45
dl 0
loc 118
rs 10
c 0
b 0
f 0
wmc 12

9 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A settingsExist() 0 8 1
A findByCurrency() 0 15 2
A add() 0 4 1
A remove() 0 3 1
A findByLocale() 0 15 2
A findOneByUuid() 0 7 1
A createSettings() 0 9 1
A findOne() 0 13 2
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the G.L.S.R. Apps package.
7
 *
8
 * (c) Dev-Int Création <[email protected]>.
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Administration\Infrastructure\Persistence\DoctrineOrm\Repositories;
15
16
use Administration\Application\Settings\ReadModel\Settings as SettingsReadModel;
17
use Administration\Domain\Protocol\Repository\SettingsRepositoryProtocol;
18
use Administration\Domain\Settings\Model\Settings;
19
use Administration\Domain\Settings\Model\VO\Currency;
20
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
0 ignored issues
show
Bug introduced by
The type Doctrine\Bundle\Doctrine...ServiceEntityRepository was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
21
use Doctrine\ORM\NonUniqueResultException;
0 ignored issues
show
Bug introduced by
The type Doctrine\ORM\NonUniqueResultException was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
22
use Doctrine\ORM\OptimisticLockException;
0 ignored issues
show
Bug introduced by
The type Doctrine\ORM\OptimisticLockException was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
use Doctrine\ORM\ORMException;
0 ignored issues
show
Bug introduced by
The type Doctrine\ORM\ORMException was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
24
use Doctrine\Persistence\ManagerRegistry;
0 ignored issues
show
Bug introduced by
The type Doctrine\Persistence\ManagerRegistry was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
26
class DoctrineSettingsRepository extends ServiceEntityRepository implements SettingsRepositoryProtocol
27
{
28
    public function __construct(ManagerRegistry $registry)
29
    {
30
        parent::__construct($registry, Settings::class);
31
    }
32
33
    /**
34
     * @throws ORMException
35
     * @throws OptimisticLockException
36
     */
37
    final public function add(Settings $settings): void
38
    {
39
        $this->getEntityManager()->persist($settings);
40
        $this->getEntityManager()->flush();
41
    }
42
43
    /**
44
     * @throws ORMException
45
     */
46
    final public function remove(Settings $settings): void
47
    {
48
        $this->getEntityManager()->remove($settings);
49
    }
50
51
    /**
52
     * @throws NonUniqueResultException
53
     */
54
    final public function findOneByUuid(string $uuid): ?Settings
55
    {
56
        return $this->createQueryBuilder('ds')
57
            ->where('ds.uuid = :uuid')
58
            ->setParameter('uuid', $uuid)
59
            ->getQuery()
60
            ->getOneOrNullResult()
61
            ;
62
    }
63
64
    /**
65
     * @throws NonUniqueResultException
66
     */
67
    final public function findByLocale(string $locale): ?SettingsReadModel
68
    {
69
        $statement = $this->createQueryBuilder('ds')
70
            ->where('ds.locale = :locale')
71
            ->setParameter('locale', $locale)
72
            ->getQuery()
73
            ->getOneOrNullResult()
74
            ;
75
        if (null !== $statement) {
76
            \assert($statement instanceof Settings);
77
78
            return $this->createSettings($statement);
79
        }
80
81
        return null;
82
    }
83
84
    /**
85
     * @throws NonUniqueResultException
86
     */
87
    final public function findByCurrency(string $currency): ?SettingsReadModel
88
    {
89
        $statement = $this->createQueryBuilder('ds')
90
            ->where('ds.currency = :currency')
91
            ->setParameter('currency', $currency)
92
            ->getQuery()
93
            ->getOneOrNullResult()
94
        ;
95
        if (null !== $statement) {
96
            \assert($statement instanceof Settings);
97
98
            return $this->createSettings($statement);
99
        }
100
101
        return null;
102
    }
103
104
    /**
105
     * @throws NonUniqueResultException
106
     */
107
    final public function settingsExist(): bool
108
    {
109
        $statement = $this->createQueryBuilder('ds')
110
            ->getQuery()
111
            ->getOneOrNullResult()
112
        ;
113
114
        return null !== $statement;
115
    }
116
117
    /**
118
     * @throws NonUniqueResultException
119
     */
120
    final public function findOne(): ?SettingsReadModel
121
    {
122
        $statement = $this->createQueryBuilder('ds')
123
            ->getQuery()
124
            ->getOneOrNullResult()
125
        ;
126
        if (null !== $statement) {
127
            \assert($statement instanceof Settings);
128
129
            return $this->createSettings($statement);
130
        }
131
132
        return null;
133
    }
134
135
    private function createSettings(Settings $statement): SettingsReadModel
136
    {
137
        $symbol = Currency::fromString($statement->currency());
138
139
        return new SettingsReadModel(
140
            $statement->currency(),
141
            $statement->locale(),
142
            $symbol->symbol(),
143
            $statement->uuid()
144
        );
145
    }
146
}
147