-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathColumns.php
More file actions
150 lines (123 loc) · 3.48 KB
/
Copy pathColumns.php
File metadata and controls
150 lines (123 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
namespace AjCastro\Searchable;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Str;
/**
* A smart columns object that let you reference actual table columns with key names.
*/
class Columns
{
/**
* [
* 'posts.title',
* 'description',
* 'author_name' => 'authors.name',
* 'authors.age as author_age',
* ]
*
* @var array
*/
protected array $columns;
protected array $selects = [];
protected array $actual = [];
protected array $keys = [];
protected array $cache;
public function __construct(array $columns)
{
$this->columns = $columns;
}
public static function make(array $columns)
{
return new static($columns);
}
/**
* Find the real actual column representing the column in the database table.
*
* @param string $key
* @return mixed
*/
public function find($key)
{
if (array_key_exists($key, $this->columns)) {
return $this->columns[$key];
}
if ($this->cache[$key] ?? null) {
return $this->cache[$key];
}
foreach ($this->columns as $column) {
if ($column === $key || Str::endsWith($column, ".{$key}")) {
return $this->cache[$key] = $column;
}
if (Str::endsWith($column, " as {$key}")) {
return $this->cache[$key] = str_replace(" as {$key}", '', $column);
}
}
}
/**
* Return the columns as a valid select array for query builder's select() method.
*/
public function selects(): array
{
if (!empty($this->selects)) return $this->selects;
foreach ($this->columns as $key => $select) {
if (is_string($key)) {
$select = $select . ' as ' . $key;
}
if (Str::contains($select, ' as ')) {
$select = DB::raw($select);
}
$this->selects[] = $select;
}
return $this->selects;
}
/**
* Get the actual columns that are in the database table.
*
* @return array
*/
public function actual(): array
{
if (! empty($this->actual)) return $this->actual;
foreach ($this->selects() as $select) {
$this->actual[] = static::extractActualFromSelect($select);
}
return $this->actual;
}
/**
* Return the valid column keys which can be used as reference name for query sort.
*
* @return array
*/
public function keys(): array
{
if (! empty($this->keys)) return $this->keys;
foreach ($this->selects() as $select) {
$this->keys[] = static::extractKeyFromSelect($select);
}
return $this->keys;
}
public static function extractKeyFromSelect(string $select): string
{
if (Str::contains($select, ' as ')) {
[$rawSelect, $alias] = explode(' as ', $select);
return $alias;
}
if (Str::contains($select, '.')) {
[$table, $column] = explode('.', $select);
return $column;
}
return $select;
}
public static function extractActualFromSelect(string $select): string
{
if (Str::contains($select, ' as ')) {
[$rawSelect, $alias] = explode(' as ', $select);
return $rawSelect;
}
return $select;
}
public function __get($key)
{
return $this->find($key);
}
}