| Total Complexity | 64 |
| Total Lines | 319 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like CacheKey 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 CacheKey, and based on these observations, apply Extract Interface, too.
| 1 | <?php namespace GeneaLabs\LaravelModelCaching; |
||
| 8 | class CacheKey |
||
| 9 | { |
||
| 10 | use CachePrefixing; |
||
| 11 | |||
| 12 | protected $eagerLoad; |
||
| 13 | protected $model; |
||
| 14 | protected $query; |
||
| 15 | protected $currentBinding = 0; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 25 | } |
||
| 26 | |||
| 27 | public function make( |
||
| 28 | array $columns = ["*"], |
||
| 29 | $idColumn = null, |
||
| 30 | string $keyDifferentiator = "" |
||
| 31 | ) : string { |
||
| 32 | $key = $this->getCachePrefix(); |
||
| 33 | $key .= $this->getTableSlug(); |
||
| 34 | $key .= $this->getModelSlug(); |
||
| 35 | $key .= $this->getIdColumn($idColumn ?: ""); |
||
| 36 | $key .= $this->getQueryColumns($columns); |
||
| 37 | $key .= $this->getWhereClauses(); |
||
| 38 | $key .= $this->getWithModels(); |
||
| 39 | $key .= $this->getOrderByClauses(); |
||
| 40 | $key .= $this->getOffsetClause(); |
||
| 41 | $key .= $this->getLimitClause(); |
||
| 42 | $key .= $keyDifferentiator; |
||
| 43 | |||
| 44 | return $key; |
||
| 45 | } |
||
| 46 | |||
| 47 | protected function getIdColumn(string $idColumn) : string |
||
| 50 | } |
||
| 51 | |||
| 52 | protected function getLimitClause() : string |
||
| 53 | { |
||
| 54 | if (! property_exists($this->query, "limit") |
||
| 55 | || ! $this->query->limit |
||
| 56 | ) { |
||
| 57 | return ""; |
||
| 58 | } |
||
| 59 | |||
| 60 | return "-limit_{$this->query->limit}"; |
||
| 61 | } |
||
| 62 | |||
| 63 | protected function getTableSlug() : string |
||
| 64 | { |
||
| 65 | return (new Str)->slug($this->model->getTable()) |
||
| 66 | . ":"; |
||
| 67 | } |
||
| 68 | |||
| 69 | protected function getModelSlug() : string |
||
| 72 | } |
||
| 73 | |||
| 74 | protected function getOffsetClause() : string |
||
| 75 | { |
||
| 76 | if (! property_exists($this->query, "offset") |
||
| 77 | || ! $this->query->offset |
||
| 78 | ) { |
||
| 79 | return ""; |
||
| 80 | } |
||
| 81 | |||
| 82 | return "-offset_{$this->query->offset}"; |
||
| 83 | } |
||
| 84 | |||
| 85 | protected function getOrderByClauses() : string |
||
| 86 | { |
||
| 87 | if (! property_exists($this->query, "orders") |
||
| 88 | || ! $this->query->orders |
||
| 89 | ) { |
||
| 90 | return ""; |
||
| 91 | } |
||
| 92 | |||
| 93 | $orders = collect($this->query->orders); |
||
| 94 | |||
| 95 | return $orders |
||
| 96 | ->reduce(function ($carry, $order) { |
||
| 97 | if (($order["type"] ?? "") === "Raw") { |
||
| 98 | return $carry . "_orderByRaw_" . (new Str)->slug($order["sql"]); |
||
| 99 | } |
||
| 100 | |||
| 101 | return $carry . "_orderBy_" . $order["column"] . "_" . $order["direction"]; |
||
| 102 | }) |
||
| 103 | ?: ""; |
||
| 104 | } |
||
| 105 | |||
| 106 | protected function getQueryColumns(array $columns) : string |
||
| 107 | { |
||
| 108 | if (($columns === ["*"] |
||
| 109 | || $columns === []) |
||
| 110 | && (! property_exists($this->query, "columns") |
||
| 111 | || ! $this->query->columns) |
||
| 112 | ) { |
||
| 113 | return ""; |
||
| 114 | } |
||
| 115 | |||
| 116 | if (property_exists($this->query, "columns") |
||
| 117 | && $this->query->columns |
||
| 118 | ) { |
||
| 119 | return "_" . implode("_", $this->query->columns); |
||
| 120 | } |
||
| 121 | |||
| 122 | return "_" . implode("_", $columns); |
||
| 123 | } |
||
| 124 | |||
| 125 | protected function getTypeClause($where) : string |
||
| 126 | { |
||
| 127 | $type = in_array($where["type"], ["InRaw", "In", "NotIn", "Null", "NotNull", "between", "NotInSub", "InSub", "JsonContains"]) |
||
| 128 | ? strtolower($where["type"]) |
||
| 129 | : strtolower($where["operator"]); |
||
| 130 | |||
| 131 | return str_replace(" ", "_", $type); |
||
| 132 | } |
||
| 133 | |||
| 134 | protected function getValuesClause(array $where = []) : string |
||
| 135 | { |
||
| 136 | if (! $where |
||
| 137 | || in_array($where["type"], ["NotNull", "Null"]) |
||
| 138 | ) { |
||
| 139 | return ""; |
||
| 140 | } |
||
| 141 | |||
| 142 | $values = $this->getValuesFromWhere($where); |
||
| 143 | $values = $this->getValuesFromBindings($where, $values); |
||
| 144 | |||
| 145 | return "_" . $values; |
||
| 146 | } |
||
| 147 | |||
| 148 | protected function getValuesFromWhere(array $where) : string |
||
| 149 | { |
||
| 150 | if (array_key_exists("value", $where) |
||
| 151 | && is_object($where["value"]) |
||
| 152 | && get_class($where["value"]) === "DateTime" |
||
| 153 | ) { |
||
| 154 | return $where["value"]->format("Y-m-d-H-i-s"); |
||
| 155 | } |
||
| 156 | |||
| 157 | if (is_array((new Arr)->get($where, "values"))) { |
||
| 158 | return implode("_", collect($where["values"])->flatten()->toArray()); |
||
| 159 | } |
||
| 160 | |||
| 161 | return (new Arr)->get($where, "value", ""); |
||
| 162 | } |
||
| 163 | |||
| 164 | protected function getValuesFromBindings(array $where, string $values) : string |
||
| 165 | { |
||
| 166 | if (($this->query->bindings["where"][$this->currentBinding] ?? false) !== false) { |
||
| 167 | $values = $this->query->bindings["where"][$this->currentBinding]; |
||
| 168 | $this->currentBinding++; |
||
| 169 | |||
| 170 | if ($where["type"] === "between") { |
||
| 171 | $values .= "_" . $this->query->bindings["where"][$this->currentBinding]; |
||
| 172 | $this->currentBinding++; |
||
| 173 | } |
||
| 174 | } |
||
| 175 | |||
| 176 | if (is_object($values) |
||
| 177 | && get_class($values) === "DateTime" |
||
| 178 | ) { |
||
| 179 | $values = $values->format("Y-m-d-H-i-s"); |
||
| 180 | } |
||
| 181 | |||
| 182 | return $values; |
||
| 183 | } |
||
| 184 | |||
| 185 | protected function getWhereClauses(array $wheres = []) : string |
||
| 197 | }); |
||
| 198 | } |
||
| 199 | |||
| 200 | protected function getNestedClauses(array $where) : string |
||
| 207 | } |
||
| 208 | |||
| 209 | protected function getColumnClauses(array $where) : string |
||
| 216 | } |
||
| 217 | |||
| 218 | protected function getInAndNotInClauses(array $where) : string |
||
| 219 | { |
||
| 220 | if (! in_array($where["type"], ["In", "NotIn", "InRaw"])) { |
||
| 221 | return ""; |
||
| 222 | } |
||
| 223 | |||
| 224 | $type = strtolower($where["type"]); |
||
| 225 | $subquery = $this->getValuesFromWhere($where); |
||
| 226 | $values = collect($this->query->bindings["where"][$this->currentBinding] ?? []); |
||
| 227 | $this->currentBinding += count($where["values"]); |
||
| 228 | $subquery = collect(vsprintf(str_replace("?", "%s", $subquery), $values->toArray())); |
||
| 229 | $values = $this->recursiveImplode($subquery->toArray(), "_"); |
||
| 230 | |||
| 231 | return "-{$where["column"]}_{$type}{$values}"; |
||
| 232 | } |
||
| 233 | |||
| 234 | protected function recursiveImplode(array $items, string $glue = ",") : string |
||
| 235 | { |
||
| 236 | $result = ""; |
||
| 237 | |||
| 238 | foreach ($items as $value) { |
||
| 239 | if (is_string($value)) { |
||
| 240 | $value = str_replace('"', '', $value); |
||
| 241 | $value = explode(" ", $value); |
||
| 242 | |||
| 243 | if (count($value) === 1) { |
||
| 244 | $value = $value[0]; |
||
| 245 | } |
||
| 246 | } |
||
| 247 | |||
| 248 | if (is_array($value)) { |
||
| 249 | $result .= $this->recursiveImplode($value, $glue); |
||
| 250 | |||
| 251 | continue; |
||
| 252 | } |
||
| 253 | |||
| 254 | $result .= $glue . $value; |
||
| 255 | } |
||
| 256 | |||
| 257 | return $result; |
||
| 258 | } |
||
| 259 | |||
| 260 | protected function getRawClauses(array $where) : string |
||
| 261 | { |
||
| 262 | if (! in_array($where["type"], ["raw"])) { |
||
| 263 | return ""; |
||
| 264 | } |
||
| 265 | |||
| 266 | $queryParts = explode("?", $where["sql"]); |
||
| 267 | $clause = "_{$where["boolean"]}"; |
||
| 268 | |||
| 269 | while (count($queryParts) > 1) { |
||
| 270 | $clause .= "_" . array_shift($queryParts); |
||
| 271 | $clause .= $this->query->bindings["where"][$this->currentBinding]; |
||
| 272 | $this->currentBinding++; |
||
| 273 | } |
||
| 274 | |||
| 275 | $lastPart = array_shift($queryParts); |
||
| 276 | |||
| 277 | if ($lastPart) { |
||
| 278 | $clause .= "_" . $lastPart; |
||
| 279 | } |
||
| 280 | |||
| 281 | return "-" . str_replace(" ", "_", $clause); |
||
| 282 | } |
||
| 283 | |||
| 284 | protected function getOtherClauses(array $where) : string |
||
| 294 | } |
||
| 295 | |||
| 296 | protected function getWheres(array $wheres) : Collection |
||
| 297 | { |
||
| 307 | } |
||
| 308 | |||
| 309 | protected function getWithModels() : string |
||
| 327 | }); |
||
| 328 | } |
||
| 330 |