|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
use Doctrine\DBAL\Connection; |
|
4
|
|
|
use Oc\Repository\Exception\RecordAlreadyExistsException; |
|
5
|
|
|
use Oc\Repository\Exception\RecordNotFoundException; |
|
6
|
|
|
use Oc\Repository\Exception\RecordNotPersistedException; |
|
7
|
|
|
use Oc\Repository\Exception\RecordsNotFoundException; |
|
8
|
|
|
|
|
9
|
|
View Code Duplication |
class OkapiTileStatusRepository |
|
|
|
|
|
|
10
|
|
|
{ |
|
11
|
|
|
const TABLE = 'okapi_tile_status'; |
|
12
|
|
|
|
|
13
|
|
|
/** @var Connection */ |
|
14
|
|
|
private $connection; |
|
15
|
|
|
|
|
16
|
|
|
public function __construct(Connection $connection) |
|
17
|
|
|
{ |
|
18
|
|
|
$this->connection = $connection; |
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @return OkapiTileStatusEntity[] |
|
23
|
|
|
*/ |
|
24
|
|
|
public function fetchAll() |
|
25
|
|
|
{ |
|
26
|
|
|
$statement = $this->connection->createQueryBuilder() |
|
27
|
|
|
->select('*') |
|
28
|
|
|
->from(self::TABLE) |
|
29
|
|
|
->execute(); |
|
30
|
|
|
|
|
31
|
|
|
$result = $statement->fetchAll(); |
|
32
|
|
|
|
|
33
|
|
|
if ($statement->rowCount() === 0) { |
|
34
|
|
|
throw new RecordsNotFoundException('No records found'); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
$records = []; |
|
38
|
|
|
|
|
39
|
|
|
foreach ($result as $item) { |
|
40
|
|
|
$records[] = $this->getEntityFromDatabaseArray($item); |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
return $records; |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* @param array $where |
|
48
|
|
|
* @return OkapiTileStatusEntity |
|
49
|
|
|
*/ |
|
50
|
|
|
public function fetchOneBy(array $where = []) |
|
51
|
|
|
{ |
|
52
|
|
|
$queryBuilder = $this->connection->createQueryBuilder() |
|
53
|
|
|
->select('*') |
|
54
|
|
|
->from(self::TABLE) |
|
55
|
|
|
->setMaxResults(1); |
|
56
|
|
|
|
|
57
|
|
|
if (count($where) > 0) { |
|
58
|
|
|
foreach ($where as $column => $value) { |
|
59
|
|
|
$queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
60
|
|
|
} |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
$statement = $queryBuilder->execute(); |
|
64
|
|
|
|
|
65
|
|
|
$result = $statement->fetch(); |
|
66
|
|
|
|
|
67
|
|
|
if ($statement->rowCount() === 0) { |
|
68
|
|
|
throw new RecordNotFoundException('Record with given where clause not found'); |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
return $this->getEntityFromDatabaseArray($result); |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* @param array $where |
|
76
|
|
|
* @return OkapiTileStatusEntity[] |
|
77
|
|
|
*/ |
|
78
|
|
|
public function fetchBy(array $where = []) |
|
79
|
|
|
{ |
|
80
|
|
|
$queryBuilder = $this->connection->createQueryBuilder() |
|
81
|
|
|
->select('*') |
|
82
|
|
|
->from(self::TABLE); |
|
83
|
|
|
|
|
84
|
|
|
if (count($where) > 0) { |
|
85
|
|
|
foreach ($where as $column => $value) { |
|
86
|
|
|
$queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
87
|
|
|
} |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
$statement = $queryBuilder->execute(); |
|
91
|
|
|
|
|
92
|
|
|
$result = $statement->fetchAll(); |
|
93
|
|
|
|
|
94
|
|
|
if ($statement->rowCount() === 0) { |
|
95
|
|
|
throw new RecordsNotFoundException('No records with given where clause found'); |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
$entities = []; |
|
99
|
|
|
|
|
100
|
|
|
foreach ($result as $item) { |
|
101
|
|
|
$entities[] = $this->getEntityFromDatabaseArray($item); |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
return $entities; |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
|
|
/** |
|
108
|
|
|
* @param OkapiTileStatusEntity $entity |
|
109
|
|
|
* @return OkapiTileStatusEntity |
|
110
|
|
|
*/ |
|
111
|
|
|
public function create(OkapiTileStatusEntity $entity) |
|
112
|
|
|
{ |
|
113
|
|
|
if (!$entity->isNew()) { |
|
114
|
|
|
throw new RecordAlreadyExistsException('The entity does already exist.'); |
|
115
|
|
|
} |
|
116
|
|
|
|
|
117
|
|
|
$databaseArray = $this->getDatabaseArrayFromEntity($entity); |
|
118
|
|
|
|
|
119
|
|
|
$this->connection->insert( |
|
120
|
|
|
self::TABLE, |
|
121
|
|
|
$databaseArray |
|
122
|
|
|
); |
|
123
|
|
|
|
|
124
|
|
|
$entity->z = (int) $this->connection->lastInsertId(); |
|
125
|
|
|
|
|
126
|
|
|
return $entity; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
/** |
|
130
|
|
|
* @param OkapiTileStatusEntity $entity |
|
131
|
|
|
* @return OkapiTileStatusEntity |
|
132
|
|
|
*/ |
|
133
|
|
|
public function update(OkapiTileStatusEntity $entity) |
|
134
|
|
|
{ |
|
135
|
|
|
if ($entity->isNew()) { |
|
136
|
|
|
throw new RecordNotPersistedException('The entity does not exist.'); |
|
137
|
|
|
} |
|
138
|
|
|
|
|
139
|
|
|
$databaseArray = $this->getDatabaseArrayFromEntity($entity); |
|
140
|
|
|
|
|
141
|
|
|
$this->connection->update( |
|
142
|
|
|
self::TABLE, |
|
143
|
|
|
$databaseArray, |
|
144
|
|
|
['z' => $entity->z] |
|
145
|
|
|
); |
|
146
|
|
|
|
|
147
|
|
|
return $entity; |
|
148
|
|
|
} |
|
149
|
|
|
|
|
150
|
|
|
/** |
|
151
|
|
|
* @param OkapiTileStatusEntity $entity |
|
152
|
|
|
* @return OkapiTileStatusEntity |
|
153
|
|
|
*/ |
|
154
|
|
|
public function remove(OkapiTileStatusEntity $entity) |
|
155
|
|
|
{ |
|
156
|
|
|
if ($entity->isNew()) { |
|
157
|
|
|
throw new RecordNotPersistedException('The entity does not exist.'); |
|
158
|
|
|
} |
|
159
|
|
|
|
|
160
|
|
|
$this->connection->delete( |
|
161
|
|
|
self::TABLE, |
|
162
|
|
|
['z' => $entity->z] |
|
163
|
|
|
); |
|
164
|
|
|
|
|
165
|
|
|
$entity->cacheId = null; |
|
|
|
|
|
|
166
|
|
|
|
|
167
|
|
|
return $entity; |
|
168
|
|
|
} |
|
169
|
|
|
|
|
170
|
|
|
/** |
|
171
|
|
|
* @param OkapiTileStatusEntity $entity |
|
172
|
|
|
* @return [] |
|
|
|
|
|
|
173
|
|
|
*/ |
|
174
|
|
|
public function getDatabaseArrayFromEntity(OkapiTileStatusEntity $entity) |
|
175
|
|
|
{ |
|
176
|
|
|
return [ |
|
177
|
|
|
'z' => $entity->z, |
|
178
|
|
|
'x' => $entity->x, |
|
179
|
|
|
'y' => $entity->y, |
|
180
|
|
|
'status' => $entity->status, |
|
181
|
|
|
]; |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
/** |
|
185
|
|
|
* @param array $data |
|
186
|
|
|
* @return OkapiTileStatusEntity |
|
187
|
|
|
*/ |
|
188
|
|
|
public function getEntityFromDatabaseArray(array $data) |
|
189
|
|
|
{ |
|
190
|
|
|
$entity = new OkapiTileStatusEntity(); |
|
191
|
|
|
$entity->z = $data['z']; |
|
192
|
|
|
$entity->x = $data['x']; |
|
193
|
|
|
$entity->y = $data['y']; |
|
194
|
|
|
$entity->status = $data['status']; |
|
195
|
|
|
|
|
196
|
|
|
return $entity; |
|
197
|
|
|
} |
|
198
|
|
|
} |
|
199
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.