| Total Complexity | 63 |
| Total Lines | 530 |
| Duplicated Lines | 0 % |
| Changes | 9 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Query often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Query, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 9 | abstract class Query |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $silentErrors; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var \PDOException|null |
||
| 19 | */ |
||
| 20 | protected $fail; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string $entity database table |
||
| 24 | */ |
||
| 25 | protected $entity; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var array |
||
| 29 | */ |
||
| 30 | protected $columns = []; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $where; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var array |
||
| 39 | */ |
||
| 40 | protected $params = []; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var string |
||
| 44 | */ |
||
| 45 | protected $order; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @var string |
||
| 49 | */ |
||
| 50 | protected $limit; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @var string |
||
| 54 | */ |
||
| 55 | protected $offset; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @var string |
||
| 59 | */ |
||
| 60 | protected $joins; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @var string |
||
| 64 | */ |
||
| 65 | protected $query; |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @var string |
||
| 69 | */ |
||
| 70 | protected $groupBy; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @var string |
||
| 74 | */ |
||
| 75 | protected $having; |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @var \PDO|null |
||
| 79 | */ |
||
| 80 | protected $db; |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @var array|null |
||
| 84 | */ |
||
| 85 | protected $connectionConfig; |
||
| 86 | |||
| 87 | public function __construct(string $connectionName = 'default', bool $regenerateConnection = false) |
||
| 88 | { |
||
| 89 | $this->db = Connect::getInstance($connectionName, $regenerateConnection); |
||
| 90 | $this->connectionConfig = Connect::getConfig($connectionName); |
||
| 91 | } |
||
| 92 | |||
| 93 | |||
| 94 | public function from(string $entity) |
||
| 95 | { |
||
| 96 | $this->entity = $entity; |
||
| 97 | return $this; |
||
| 98 | } |
||
| 99 | |||
| 100 | public function setSilentErrors(bool $silentErrors = false) |
||
| 101 | { |
||
| 102 | $this->silentErrors = $silentErrors; |
||
| 103 | } |
||
| 104 | |||
| 105 | public function fromSubQuery(Query $query, string $alias = 'sub') |
||
| 106 | { |
||
| 107 | $this->entity = "(" . $query->toSQL() . ") as $alias"; |
||
| 108 | return $this; |
||
| 109 | } |
||
| 110 | |||
| 111 | |||
| 112 | /** |
||
| 113 | * @param string $columns |
||
| 114 | * @return $this |
||
| 115 | */ |
||
| 116 | public function selectRaw(string $columns = "*", array $params = []): Query |
||
| 117 | { |
||
| 118 | $this->columns = array_merge($this->columns, explode(',', $columns)); |
||
| 119 | $this->params($params); |
||
| 120 | return $this; |
||
| 121 | } |
||
| 122 | |||
| 123 | public function select(array $columns = [], array $params = []): Query |
||
| 130 | } |
||
| 131 | |||
| 132 | /** |
||
| 133 | * @param string $where |
||
| 134 | * @return $this |
||
| 135 | */ |
||
| 136 | public function where(string $where, array $params = []): Query |
||
| 137 | { |
||
| 138 | $this->params($params); |
||
| 139 | |||
| 140 | if (!empty($this->where)) { |
||
| 141 | $this->where .= " AND {$where}"; |
||
| 142 | return $this; |
||
| 143 | } |
||
| 144 | |||
| 145 | $this->where = "WHERE $where"; |
||
| 146 | return $this; |
||
| 147 | } |
||
| 148 | |||
| 149 | /** |
||
| 150 | * @param string $where |
||
| 151 | * @return $this |
||
| 152 | */ |
||
| 153 | public function orWhere(string $where, array $params = []): Query |
||
| 154 | { |
||
| 155 | $this->params($params); |
||
| 156 | |||
| 157 | if (!empty($this->where)) { |
||
| 158 | $this->where .= " OR {$where}"; |
||
| 159 | return $this; |
||
| 160 | } |
||
| 161 | |||
| 162 | $this->where = "WHERE $where"; |
||
| 163 | return $this; |
||
| 164 | } |
||
| 165 | |||
| 166 | public function whereIn(string $column, array $data): Query |
||
| 167 | { |
||
| 168 | $inPlaceHolder = []; |
||
| 169 | foreach ($data as $d) { |
||
| 170 | $paramNum = count($this->params) + 1; |
||
| 171 | $paramName = "in{$paramNum}"; |
||
| 172 | $inPlaceHolder[] = ":{$paramName}"; |
||
| 173 | $this->params([ |
||
| 174 | $paramName => $d |
||
| 175 | ]); |
||
| 176 | } |
||
| 177 | |||
| 178 | $inString = implode(",", $inPlaceHolder); |
||
| 179 | |||
| 180 | if (!empty($this->where)) { |
||
| 181 | $this->where .= " AND {$column} IN ({$inString})"; |
||
| 182 | return $this; |
||
| 183 | } |
||
| 184 | |||
| 185 | $this->where = "WHERE {$column} IN ({$inString})"; |
||
| 186 | return $this; |
||
| 187 | } |
||
| 188 | |||
| 189 | public function orWhereIn(string $column, array $data): Query |
||
| 190 | { |
||
| 191 | $columnUppercase = ucfirst($column); |
||
| 192 | |||
| 193 | $inPlaceHolder = []; |
||
| 194 | foreach ($data as $d) { |
||
| 195 | $paramNum = count($this->params) + 1; |
||
| 196 | $paramName = "in{$columnUppercase}{$paramNum}"; |
||
| 197 | $inPlaceHolder[] = ":{$paramName}"; |
||
| 198 | $this->params([ |
||
| 199 | $paramName => $d |
||
| 200 | ]); |
||
| 201 | } |
||
| 202 | |||
| 203 | $inString = implode(",", $inPlaceHolder); |
||
| 204 | |||
| 205 | if (!empty($this->where)) { |
||
| 206 | $this->where .= " OR {$column} IN ($inString)"; |
||
| 207 | return $this; |
||
| 208 | } |
||
| 209 | |||
| 210 | $this->where = "WHERE {$column} IN ($inString)"; |
||
| 211 | return $this; |
||
| 212 | } |
||
| 213 | |||
| 214 | |||
| 215 | /** |
||
| 216 | * @param string $columnOrder |
||
| 217 | */ |
||
| 218 | public function order(string $columnOrder): Query |
||
| 219 | { |
||
| 220 | $this->order = "ORDER BY :order"; |
||
| 221 | $this->params(['order' => $columnOrder]); |
||
| 222 | return $this; |
||
| 223 | } |
||
| 224 | |||
| 225 | /** |
||
| 226 | * @param int $limit |
||
| 227 | */ |
||
| 228 | public function limit(int $limit): Query |
||
| 229 | { |
||
| 230 | $this->limit = "LIMIT :limit"; |
||
| 231 | $this->params(['limit' => $limit]); |
||
| 232 | return $this; |
||
| 233 | } |
||
| 234 | |||
| 235 | /** |
||
| 236 | * @param int $offset |
||
| 237 | * @return DB |
||
| 238 | */ |
||
| 239 | public function offset(int $offset): Query |
||
| 240 | { |
||
| 241 | $this->offset = "OFFSET :offset"; |
||
| 242 | $this->params(['offset' => $offset]); |
||
| 243 | return $this; |
||
| 244 | } |
||
| 245 | |||
| 246 | /** |
||
| 247 | * @param array $group |
||
| 248 | * @return DB |
||
| 249 | */ |
||
| 250 | public function groupBy(array $group): Query |
||
| 251 | { |
||
| 252 | $groupBind = implode(',', array_fill(0, count($group), '?')); |
||
| 253 | foreach ($group as $key => $g) { |
||
| 254 | $this->params(["group_{$key}" => $g]); |
||
| 255 | } |
||
| 256 | $this->groupBy = "GROUP BY $groupBind"; |
||
| 257 | return $this; |
||
| 258 | } |
||
| 259 | |||
| 260 | /** |
||
| 261 | * @param string $having |
||
| 262 | * @return DB |
||
| 263 | */ |
||
| 264 | public function having(string $having): Query |
||
| 265 | { |
||
| 266 | $this->having = "HAVING $having"; |
||
| 267 | return $this; |
||
| 268 | } |
||
| 269 | |||
| 270 | /** |
||
| 271 | * @param array $params |
||
| 272 | * @return $this |
||
| 273 | */ |
||
| 274 | public function params(array $params = []): Query |
||
| 275 | { |
||
| 276 | $this->params = array_merge($this->params, $params); |
||
| 277 | |||
| 278 | return $this; |
||
| 279 | } |
||
| 280 | |||
| 281 | /** |
||
| 282 | * @param string $join |
||
| 283 | * @return $this |
||
| 284 | */ |
||
| 285 | public function leftJoin(string $join, array $params = []): Query |
||
| 286 | { |
||
| 287 | $this->params($params); |
||
| 288 | |||
| 289 | if (!empty($this->joins)) { |
||
| 290 | $this->joins .= PHP_EOL; |
||
| 291 | } |
||
| 292 | $this->joins .= "LEFT JOIN $join"; |
||
| 293 | return $this; |
||
| 294 | } |
||
| 295 | |||
| 296 | /** |
||
| 297 | * @param string $join |
||
| 298 | * @return $this |
||
| 299 | */ |
||
| 300 | public function rightJoin(string $join, array $params = []): Query |
||
| 301 | { |
||
| 302 | $this->params($params); |
||
| 303 | |||
| 304 | if (!empty($this->joins)) { |
||
| 305 | $this->joins .= PHP_EOL; |
||
| 306 | } |
||
| 307 | $this->joins .= "RIGHT JOIN $join"; |
||
| 308 | |||
| 309 | return $this; |
||
| 310 | } |
||
| 311 | |||
| 312 | /** |
||
| 313 | * @param string $join |
||
| 314 | * @return $this |
||
| 315 | */ |
||
| 316 | public function join(string $join, array $params = []): Query |
||
| 317 | { |
||
| 318 | $this->params($params); |
||
| 319 | |||
| 320 | if (!empty($this->joins)) { |
||
| 321 | $this->joins .= PHP_EOL; |
||
| 322 | } |
||
| 323 | $this->joins .= "INNER JOIN $join"; |
||
| 324 | return $this; |
||
| 325 | } |
||
| 326 | |||
| 327 | public function joinSub(Query $subquery, string $alias, $condition) |
||
| 328 | { |
||
| 329 | if (!empty($this->joins)) { |
||
| 330 | $this->joins .= PHP_EOL; |
||
| 331 | } |
||
| 332 | $this->joins .= "INNER JOIN ({$subquery->toSQL()}) AS $alias ON $condition"; |
||
| 333 | return $this; |
||
| 334 | } |
||
| 335 | |||
| 336 | public function leftJoinSub(Query $subquery, string $alias, $condition) |
||
| 337 | { |
||
| 338 | if (!empty($this->joins)) { |
||
| 339 | $this->joins .= PHP_EOL; |
||
| 340 | } |
||
| 341 | $this->joins .= "LEFT JOIN ({$subquery->toSQL()}) AS $alias ON $condition"; |
||
| 342 | return $this; |
||
| 343 | } |
||
| 344 | |||
| 345 | public function rightJoinSub(Query $subquery, string $alias, $condition) |
||
| 346 | { |
||
| 347 | if (!empty($this->joins)) { |
||
| 348 | $this->joins .= PHP_EOL; |
||
| 349 | } |
||
| 350 | $this->joins .= "RIGHT JOIN ({$subquery->toSQL()}) AS $alias ON $condition"; |
||
| 351 | return $this; |
||
| 352 | } |
||
| 353 | |||
| 354 | public function get(): ?array |
||
| 355 | { |
||
| 356 | $this->mountQuery(); |
||
| 357 | |||
| 358 | try { |
||
| 359 | $stmt = $this->db->prepare($this->query); |
||
|
|
|||
| 360 | QueryHelpers::bind($stmt, $this->prepareParams()); |
||
| 361 | $stmt->execute(); |
||
| 362 | |||
| 363 | if (!$stmt->rowCount()) { |
||
| 364 | return []; |
||
| 365 | } |
||
| 366 | |||
| 367 | return $stmt->fetchAll(\PDO::FETCH_CLASS); |
||
| 368 | } catch (\PDOException $exception) { |
||
| 369 | $this->handleError($exception); |
||
| 370 | } |
||
| 371 | } |
||
| 372 | |||
| 373 | public function first(): ?stdClass |
||
| 374 | { |
||
| 375 | $this->mountQuery(); |
||
| 376 | |||
| 377 | try { |
||
| 378 | $stmt = $this->db->prepare($this->query); |
||
| 379 | QueryHelpers::bind($stmt, $this->prepareParams()); |
||
| 380 | $stmt->execute(); |
||
| 381 | |||
| 382 | if (!$stmt->rowCount()) { |
||
| 383 | return null; |
||
| 384 | } |
||
| 385 | |||
| 386 | return $stmt->fetchObject(); |
||
| 387 | } catch (\PDOException $exception) { |
||
| 388 | $this->handleError($exception); |
||
| 389 | } |
||
| 390 | } |
||
| 391 | |||
| 392 | public function count(): ?int |
||
| 393 | { |
||
| 394 | $this->mountQuery(); |
||
| 395 | |||
| 396 | try { |
||
| 397 | $stmt = $this->db->prepare($this->query); |
||
| 398 | QueryHelpers::bind($stmt, $this->prepareParams()); |
||
| 399 | $stmt->execute(); |
||
| 400 | |||
| 401 | return $stmt->rowCount(); |
||
| 402 | } catch (\PDOException $exception) { |
||
| 403 | $this->handleError($exception); |
||
| 404 | } |
||
| 405 | } |
||
| 406 | |||
| 407 | |||
| 408 | /** |
||
| 409 | * @param array $data |
||
| 410 | * @return string|null |
||
| 411 | */ |
||
| 412 | public function create(array $data) |
||
| 413 | { |
||
| 414 | try { |
||
| 415 | $columns = implode(", ", array_keys($data)); |
||
| 416 | $values = ":" . implode(", :", array_keys($data)); |
||
| 417 | |||
| 418 | $stmt = $this->db->prepare("INSERT INTO {$this->entity} ({$columns}) VALUES ({$values})"); |
||
| 419 | $this->params($data); |
||
| 420 | |||
| 421 | QueryHelpers::bind($stmt, $this->prepareParams()); |
||
| 422 | |||
| 423 | $stmt->execute(); |
||
| 424 | |||
| 425 | return $this->db->lastInsertId(); |
||
| 426 | } catch (\PDOException $exception) { |
||
| 427 | $this->handleError($exception); |
||
| 428 | } |
||
| 429 | } |
||
| 430 | |||
| 431 | /** |
||
| 432 | * @param array $data |
||
| 433 | */ |
||
| 434 | public function update(array $data): ?int |
||
| 454 | } |
||
| 455 | } |
||
| 456 | |||
| 457 | public function delete(): ?int |
||
| 458 | { |
||
| 459 | try { |
||
| 460 | $stmt = $this->db->prepare("DELETE FROM {$this->entity} {$this->where}"); |
||
| 461 | QueryHelpers::bind($stmt, $this->prepareParams()); |
||
| 462 | $stmt->execute(); |
||
| 463 | return $stmt->rowCount() ?? 1; |
||
| 464 | } catch (\PDOException $exception) { |
||
| 465 | $this->handleError($exception); |
||
| 466 | } |
||
| 467 | } |
||
| 468 | |||
| 469 | |||
| 470 | public function beginTransaction(): bool |
||
| 471 | { |
||
| 472 | return $this->db->beginTransaction(); |
||
| 473 | } |
||
| 474 | |||
| 475 | |||
| 476 | public function commit(): bool |
||
| 477 | { |
||
| 478 | return $this->db->commit(); |
||
| 479 | } |
||
| 480 | |||
| 481 | |||
| 482 | public function rollback(): bool |
||
| 483 | { |
||
| 484 | return $this->db->rollBack(); |
||
| 485 | } |
||
| 486 | |||
| 487 | /** |
||
| 488 | * @param $exception |
||
| 489 | * @throws Exception |
||
| 490 | */ |
||
| 491 | private function handleError(\Exception $exception) |
||
| 492 | { |
||
| 493 | if (!$this->silentErrors) { |
||
| 494 | throw $exception; |
||
| 495 | } |
||
| 496 | |||
| 497 | $this->fail = $exception; |
||
| 498 | } |
||
| 499 | |||
| 500 | |||
| 501 | private function mountQuery(): void |
||
| 502 | { |
||
| 503 | |||
| 504 | $columns = !empty($this->columns) ? $this->columns : ['*']; |
||
| 505 | $columns = implode(',', $columns); |
||
| 506 | $this->query = "SELECT $columns FROM $this->entity $this->joins $this->where $this->groupBy $this->having $this->order $this->limit $this->offset"; |
||
| 507 | } |
||
| 508 | |||
| 509 | |||
| 510 | public function dump(): array |
||
| 511 | { |
||
| 512 | $this->mountQuery(); |
||
| 513 | |||
| 514 | return [ |
||
| 515 | "query" => $this->query, |
||
| 516 | "raw_params" => $this->params(), |
||
| 517 | "filtered_params" => QueryHelpers::applyDefaultFilter($this->prepareParams()) |
||
| 518 | ]; |
||
| 519 | } |
||
| 520 | |||
| 521 | public function toSQL() |
||
| 525 | } |
||
| 526 | |||
| 527 | |||
| 528 | private function prepareParams() |
||
| 539 | } |
||
| 540 | |||
| 541 | } |
||
| 542 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.