@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $con = NOSQLParserTrait::initConnection($model, $con); |
29 | 29 | $collection = $con->selectCollection($model->getSchema()->name); |
30 | 30 | $result = $collection->findOne(['_id' => new ObjectId($pk)]); |
31 | - if(null !== $result) { |
|
31 | + if (null !== $result) { |
|
32 | 32 | $model->feed($result->getArrayCopy()); |
33 | 33 | } else { |
34 | 34 | throw new ApiException(t('Document not found'), 404); |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | |
56 | 56 | $resultSet->count = $collection->countDocuments($filters, $nosqlOptions); |
57 | 57 | |
58 | - $nosqlOptions["limit"] = (integer)(array_key_exists(self::NOSQL_LIMIT_FIELD, $criteria) ? $criteria[self::NOSQL_LIMIT_FIELD] : Config::getParam('pagination.limit', 50)); |
|
59 | - $nosqlOptions["skip"] = (integer)(array_key_exists(self::NOSQL_PAGE_FIELD, $criteria) ? $criteria[self::NOSQL_PAGE_FIELD] : 0); |
|
58 | + $nosqlOptions["limit"] = (integer) (array_key_exists(self::NOSQL_LIMIT_FIELD, $criteria) ? $criteria[self::NOSQL_LIMIT_FIELD] : Config::getParam('pagination.limit', 50)); |
|
59 | + $nosqlOptions["skip"] = (integer) (array_key_exists(self::NOSQL_PAGE_FIELD, $criteria) ? $criteria[self::NOSQL_PAGE_FIELD] : 0); |
|
60 | 60 | |
61 | 61 | if (array_key_exists(self::NOSQL_SORT_FIELD, $criteria)) { |
62 | 62 | $nosqlOptions["sort"] = []; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $results = $collection->find($filters, $nosqlOptions); |
68 | 68 | /** @var $result */ |
69 | 69 | $items = $results->toArray(); |
70 | - foreach($items as $item) { |
|
70 | + foreach ($items as $item) { |
|
71 | 71 | $model->feed($item->getArrayCopy(), true); |
72 | 72 | $resultSet->items[] = $model->getDtoCopy(true); |
73 | 73 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | // Check index collation |
93 | 93 | $options = []; |
94 | 94 | $indexes = $collection->listIndexes(); |
95 | - foreach($indexes as $index) { |
|
95 | + foreach ($indexes as $index) { |
|
96 | 96 | $indexInfo = $index->__debugInfo(); |
97 | 97 | if (empty(array_diff(array_keys($index["key"]), array_keys($filters)))) { |
98 | 98 | if (array_key_exists("collation", $indexInfo)) { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | } |
105 | 105 | |
106 | 106 | if (array_key_exists("collation", $options)) { |
107 | - foreach($filters as $key=>$filter) { |
|
107 | + foreach ($filters as $key=>$filter) { |
|
108 | 108 | if (is_string($criteria[$key])) { |
109 | 109 | $filters[$key] = $criteria[$key]; |
110 | 110 | } |
@@ -143,9 +143,9 @@ discard block |
||
143 | 143 | break; |
144 | 144 | } |
145 | 145 | } elseif (NOSQLBase::NOSQL_TYPE_INTEGER === $property->type) { |
146 | - $filterValue = (integer)$filterValue; |
|
146 | + $filterValue = (integer) $filterValue; |
|
147 | 147 | } else { |
148 | - $filterValue = (float)$filterValue; |
|
148 | + $filterValue = (float) $filterValue; |
|
149 | 149 | } |
150 | 150 | $filterValue = [ |
151 | 151 | '$eq' => $filterValue, |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public function getDtoCopy($cleanPk = false) { |
46 | 46 | $copy = clone $this->dto; |
47 | - if($cleanPk) { |
|
47 | + if ($cleanPk) { |
|
48 | 48 | $this->dto->resetPk(); |
49 | 49 | } |
50 | 50 | return $copy; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function save(Database $con = null) { |
62 | 62 | $saved = false; |
63 | - if(null === $con) { |
|
63 | + if (null === $con) { |
|
64 | 64 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
65 | 65 | } |
66 | 66 | $collection = $con->selectCollection($this->getSchema()->name); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $isInsert = $isUpdate = false; |
69 | 69 | $this->prepareData(); |
70 | 70 | $this->dto->setLastUpdate(); |
71 | - if($this->isNew()) { |
|
71 | + if ($this->isNew()) { |
|
72 | 72 | $this->preInsert($con); |
73 | 73 | $isInsert = true; |
74 | 74 | } elseif ($this->isModified()) { |
@@ -76,19 +76,19 @@ discard block |
||
76 | 76 | $isUpdate = true; |
77 | 77 | } |
78 | 78 | $result = $collection->insertOne($this->toArray()); |
79 | - if($result->getInsertedCount() > 0) { |
|
79 | + if ($result->getInsertedCount() > 0) { |
|
80 | 80 | $id = $result->getInsertedId(); |
81 | 81 | $this->dto->setPk($id->jsonSerialize()['$oid']); |
82 | - if($isInsert) { |
|
82 | + if ($isInsert) { |
|
83 | 83 | $this->postInsert($con); |
84 | - } elseif($isUpdate) { |
|
84 | + } elseif ($isUpdate) { |
|
85 | 85 | $this->postUpdate($con); |
86 | 86 | } |
87 | 87 | $saved = true; |
88 | 88 | $this->countAction(); |
89 | 89 | } |
90 | - } catch(\Exception $exception) { |
|
91 | - if($exception instanceof NOSQLValidationException) { |
|
90 | + } catch (\Exception $exception) { |
|
91 | + if ($exception instanceof NOSQLValidationException) { |
|
92 | 92 | throw $exception; |
93 | 93 | } else { |
94 | 94 | Logger::log($exception->getMessage(), LOG_CRIT, $this->toArray()); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function update(Database $con = null) { |
105 | 105 | $updated = false; |
106 | - if(null === $con) { |
|
106 | + if (null === $con) { |
|
107 | 107 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
108 | 108 | } |
109 | 109 | $collection = $con->selectCollection($this->getSchema()->name); |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | $this->postUpdate($con); |
118 | 118 | $updated = true; |
119 | 119 | $this->countAction(); |
120 | - } catch(\Exception $exception) { |
|
121 | - if($exception instanceof NOSQLValidationException) { |
|
120 | + } catch (\Exception $exception) { |
|
121 | + if ($exception instanceof NOSQLValidationException) { |
|
122 | 122 | throw $exception; |
123 | 123 | } else { |
124 | 124 | Logger::log($exception->getMessage(), LOG_CRIT, $this->toArray()); |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function bulkInsert(array $data, Database $con = null) { |
136 | 136 | $inserts = 0; |
137 | - if(null === $con) { |
|
137 | + if (null === $con) { |
|
138 | 138 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
139 | 139 | } |
140 | 140 | $collection = $con->selectCollection($this->getSchema()->name); |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $ids = $result->getInsertedIds(); |
145 | 145 | $inserts = $this->parseInsertedDtos($con, $ids, $dtos); |
146 | 146 | $this->setActionCount($inserts); |
147 | - } catch(\Exception $exception) { |
|
147 | + } catch (\Exception $exception) { |
|
148 | 148 | Logger::log($exception->getMessage(), LOG_CRIT, $this->toArray()); |
149 | 149 | } |
150 | 150 | return $inserts; |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return int |
159 | 159 | */ |
160 | 160 | public function bulkUpsert(array $data, $id, Database $con = null) { |
161 | - if(null === $con) { |
|
161 | + if (null === $con) { |
|
162 | 162 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
163 | 163 | } |
164 | 164 | $collection = $con->selectCollection($this->getSchema()->name); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | try { |
169 | 169 | // Check index collation |
170 | 170 | $indexes = $collection->listIndexes(); |
171 | - foreach($indexes as $index) { |
|
171 | + foreach ($indexes as $index) { |
|
172 | 172 | $indexInfo = $index->__debugInfo(); |
173 | 173 | $keys = array_keys($index["key"]); |
174 | 174 | if ((count($keys) === 1) && ($keys[0] === $id) && (array_key_exists("collation", $indexInfo))) { |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
181 | - foreach($data as $item) { |
|
181 | + foreach ($data as $item) { |
|
182 | 182 | $filter[$id] = ['$eq' => $item[$id]]; |
183 | 183 | $update = []; |
184 | 184 | $update['$set'] = $item; |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | */ |
205 | 205 | public function delete(Database $con = null) { |
206 | 206 | $deleted = false; |
207 | - if(null === $con) { |
|
207 | + if (null === $con) { |
|
208 | 208 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
209 | 209 | } |
210 | 210 | $collection = $con->selectCollection($this->getSchema()->name); |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $deleted = true; |
216 | 216 | $this->dto = null; |
217 | 217 | $this->countAction(); |
218 | - } catch(\Exception $exception) { |
|
218 | + } catch (\Exception $exception) { |
|
219 | 219 | Logger::log($exception->getMessage(), LOG_CRIT, $this->toArray()); |
220 | 220 | } |
221 | 221 | return $deleted; |
@@ -229,14 +229,14 @@ discard block |
||
229 | 229 | */ |
230 | 230 | public function bulkDelete(array $filters, Database $con = null) { |
231 | 231 | $deletedCount = 0; |
232 | - if(null === $con) { |
|
232 | + if (null === $con) { |
|
233 | 233 | $con = ParserService::getInstance()->createConnection($this->getDomain()); |
234 | 234 | } |
235 | 235 | $collection = $con->selectCollection($this->getSchema()->name); |
236 | 236 | try { |
237 | 237 | $result = $collection->deleteMany($filters); |
238 | 238 | $deletedCount = $result->getDeletedCount(); |
239 | - } catch(\Exception $exception) { |
|
239 | + } catch (\Exception $exception) { |
|
240 | 240 | Logger::log($exception->getMessage(), LOG_CRIT, $this->toArray()); |
241 | 241 | } |
242 | 242 | return $deletedCount; |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | $dtos = []; |
254 | 254 | /** @var NOSQLModelDto $dto */ |
255 | 255 | foreach ($data as &$insertData) { |
256 | - if(is_object($insertData) && $insertData instanceof NOSQLModelDto) { |
|
256 | + if (is_object($insertData) && $insertData instanceof NOSQLModelDto) { |
|
257 | 257 | $dto = clone $insertData; |
258 | 258 | } else { |
259 | 259 | $dto = $this->getDtoCopy(true); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | foreach ($ids as $index => $insertedId) { |
284 | 284 | $id = $insertedId->jsonSerialize(); |
285 | 285 | $dto = $dtos[$index]; |
286 | - if($dto instanceof NOSQLModelDto) { |
|
286 | + if ($dto instanceof NOSQLModelDto) { |
|
287 | 287 | $dto->setPk($id['$oid']); |
288 | 288 | } else { |
289 | 289 |