|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace GeminiLabs\SiteReviews\Database; |
|
4
|
|
|
|
|
5
|
|
|
use GeminiLabs\SiteReviews\Helper; |
|
6
|
|
|
use GeminiLabs\SiteReviews\Helpers\Str; |
|
7
|
|
|
|
|
8
|
|
|
trait QuerySql |
|
9
|
|
|
{ |
|
10
|
|
|
public $args; |
|
11
|
|
|
public $db; |
|
12
|
|
|
|
|
13
|
|
|
public function escFieldsForInsert(array $fields) |
|
14
|
|
|
{ |
|
15
|
|
|
return sprintf('(`%s`)', implode('`,`', $fields)); |
|
16
|
|
|
} |
|
17
|
|
|
|
|
18
|
|
|
public function escValuesForInsert(array $values) |
|
19
|
|
|
{ |
|
20
|
|
|
$values = array_map('esc_sql', $values); |
|
21
|
|
|
return sprintf("('%s')", implode("','", array_values($values))); |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* @param string $clause |
|
26
|
|
|
* @return array |
|
27
|
|
|
*/ |
|
28
|
|
|
public function sqlClauses(array $values, $clause) |
|
29
|
|
|
{ |
|
30
|
|
|
$prefix = Str::restrictTo('and, join', $clause); |
|
31
|
|
|
foreach (array_keys($this->args) as $key) { |
|
32
|
|
|
$method = Helper::buildMethodName($key, 'clause-'.$prefix); |
|
33
|
|
|
if (method_exists($this, $method)) { |
|
34
|
|
|
$values[] = call_user_func([$this, $method]); |
|
35
|
|
|
} |
|
36
|
|
|
} |
|
37
|
|
|
return $values; |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @return string |
|
42
|
|
|
*/ |
|
43
|
|
|
public function sqlFrom() |
|
44
|
|
|
{ |
|
45
|
|
|
$from = "FROM {$this->table('ratings')} r"; |
|
46
|
|
|
$from = glsr()->filterString('query/sql/from', $from, $this); |
|
47
|
|
|
return $from; |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @return string |
|
52
|
|
|
*/ |
|
53
|
|
|
public function sqlGroupBy() |
|
54
|
|
|
{ |
|
55
|
|
|
$groupBy = 'GROUP BY p.ID'; |
|
56
|
|
|
return glsr()->filterString('query/sql/group-by', $groupBy, $this); |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* @return string |
|
61
|
|
|
*/ |
|
62
|
|
|
public function sqlJoin() |
|
63
|
|
|
{ |
|
64
|
|
|
$join = [ |
|
65
|
|
|
"INNER JOIN {$this->db->posts} AS p ON r.review_id = p.ID", |
|
66
|
|
|
]; |
|
67
|
|
|
$join = glsr()->filterArray('query/sql/join', $join, $this); |
|
68
|
|
|
return implode(' ', $join); |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* @return string |
|
73
|
|
|
*/ |
|
74
|
|
|
public function sqlJoinClauses() |
|
75
|
|
|
{ |
|
76
|
|
|
$join = $this->sqlClauses([], 'join'); |
|
77
|
|
|
$join = glsr()->filterArray('query/sql/join-clauses', $join, $this); |
|
78
|
|
|
return trim($this->sqlJoin().' '.implode(' ', $join)); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* @return string |
|
83
|
|
|
*/ |
|
84
|
|
|
public function sqlJoinPivots() |
|
85
|
|
|
{ |
|
86
|
|
|
$join = [ |
|
87
|
|
|
"LEFT JOIN {$this->table('assigned_posts')} apt on r.ID = apt.rating_id", |
|
88
|
|
|
"LEFT JOIN {$this->table('assigned_terms')} att on r.ID = att.rating_id", |
|
89
|
|
|
"LEFT JOIN {$this->table('assigned_users')} aut on r.ID = aut.rating_id", |
|
90
|
|
|
]; |
|
91
|
|
|
$join = glsr()->filterArray('query/sql/join-pivots', $join, $this); |
|
92
|
|
|
return implode(' ', $join); |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
/** |
|
96
|
|
|
* @return string |
|
97
|
|
|
*/ |
|
98
|
|
|
public function sqlLimit() |
|
99
|
|
|
{ |
|
100
|
|
|
$limit = $this->args['per_page'] > 0 |
|
101
|
|
|
? $this->db->prepare('LIMIT %d', $this->args['per_page']) |
|
102
|
|
|
: ''; |
|
103
|
|
|
return glsr()->filterString('query/sql/limit', $limit, $this); |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
|
|
/** |
|
107
|
|
|
* @return string |
|
108
|
|
|
*/ |
|
109
|
|
|
public function sqlOffset() |
|
110
|
|
|
{ |
|
111
|
|
|
$offsetBy = (($this->args['page'] - 1) * $this->args['per_page']) + $this->args['offset']; |
|
112
|
|
|
$offset = ($offsetBy > 0) |
|
113
|
|
|
? $this->db->prepare('OFFSET %d', $offsetBy) |
|
114
|
|
|
: ''; |
|
115
|
|
|
return glsr()->filterString('query/sql/offset', $offset, $this); |
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
/** |
|
119
|
|
|
* @return string |
|
120
|
|
|
*/ |
|
121
|
|
|
public function sqlOrderBy() |
|
122
|
|
|
{ |
|
123
|
|
|
$values = [ |
|
124
|
|
|
'none' => '', |
|
125
|
|
|
'rand' => 'ORDER BY RAND()', |
|
126
|
|
|
'relevance' => '', |
|
127
|
|
|
]; |
|
128
|
|
|
$order = $this->args['order']; |
|
129
|
|
|
$orderby = $this->args['orderby']; |
|
130
|
|
|
if (Str::startsWith('p.', $orderby)) { |
|
131
|
|
|
$orderBy = "ORDER BY r.is_pinned {$order}, {$orderby} {$order}"; |
|
132
|
|
|
} elseif (array_key_exists($orderby, $values)) { |
|
133
|
|
|
$orderBy = $orderby; |
|
134
|
|
|
} else { |
|
135
|
|
|
$orderBy = ''; |
|
136
|
|
|
} |
|
137
|
|
|
return glsr()->filterString('query/sql/order-by', $orderBy, $this); |
|
138
|
|
|
} |
|
139
|
|
|
|
|
140
|
|
|
/** |
|
141
|
|
|
* @return string |
|
142
|
|
|
*/ |
|
143
|
|
|
public function sqlSelect() |
|
144
|
|
|
{ |
|
145
|
|
|
$select = [ |
|
146
|
|
|
'r.*', |
|
147
|
|
|
'p.post_author as author_id', |
|
148
|
|
|
'p.post_date as date', |
|
149
|
|
|
'p.post_content as content', |
|
150
|
|
|
'p.post_title as title', |
|
151
|
|
|
'p.post_status as status', |
|
152
|
|
|
'GROUP_CONCAT(DISTINCT apt.post_id) as post_ids', |
|
153
|
|
|
'GROUP_CONCAT(DISTINCT att.term_id) as term_ids', |
|
154
|
|
|
'GROUP_CONCAT(DISTINCT aut.user_id) as user_ids', |
|
155
|
|
|
]; |
|
156
|
|
|
$select = glsr()->filterArray('query/sql/select', $select, $this); |
|
157
|
|
|
$select = implode(', ', $select); |
|
158
|
|
|
return "SELECT {$select}"; |
|
159
|
|
|
} |
|
160
|
|
|
|
|
161
|
|
|
/** |
|
162
|
|
|
* @return string |
|
163
|
|
|
*/ |
|
164
|
|
|
public function sqlWhere() |
|
165
|
|
|
{ |
|
166
|
|
|
$where = [ |
|
167
|
|
|
$this->db->prepare('AND p.post_type = %s', glsr()->post_type), |
|
168
|
|
|
"AND p.post_status = 'publish'", |
|
169
|
|
|
]; |
|
170
|
|
|
$where = $this->sqlClauses($where, 'and'); |
|
171
|
|
|
$where = glsr()->filterArray('query/sql/where', $where, $this); |
|
172
|
|
|
$where = implode(' ', $where); |
|
173
|
|
|
return "WHERE 1=1 {$where}"; |
|
174
|
|
|
} |
|
175
|
|
|
|
|
176
|
|
|
/** |
|
177
|
|
|
* @return string |
|
178
|
|
|
*/ |
|
179
|
|
|
public function table($table) |
|
180
|
|
|
{ |
|
181
|
|
|
return glsr(SqlSchema::class)->table($table); |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
/** |
|
185
|
|
|
* This takes care of assigned_to, category, and user. |
|
186
|
|
|
* @return string |
|
187
|
|
|
*/ |
|
188
|
|
|
protected function clauseAndAssignedTo() |
|
189
|
|
|
{ |
|
190
|
|
|
$clauses = []; |
|
191
|
|
|
if ($postIds = $this->args['assigned_to']) { |
|
192
|
|
|
$clauses[] = $this->db->prepare('(apt.post_id IN (%s) AND apt.is_published = 1)', implode(',', $postIds)); |
|
193
|
|
|
} |
|
194
|
|
|
if ($termIds = $this->args['category']) { |
|
195
|
|
|
$clauses[] = $this->db->prepare('(att.term_id IN (%s))', implode(',', $termIds)); |
|
196
|
|
|
} |
|
197
|
|
|
if ($userIds = $this->args['user']) { |
|
198
|
|
|
$clauses[] = $this->db->prepare('(aut.user_id IN (%s))', implode(',', $userIds)); |
|
199
|
|
|
} |
|
200
|
|
|
if ($clauses = implode(' OR ', $clauses)) { |
|
201
|
|
|
return "AND ($clauses)"; |
|
202
|
|
|
} |
|
203
|
|
|
return ''; |
|
204
|
|
|
} |
|
205
|
|
|
|
|
206
|
|
|
/** |
|
207
|
|
|
* @return string |
|
208
|
|
|
*/ |
|
209
|
|
|
protected function clauseAndRating() |
|
210
|
|
|
{ |
|
211
|
|
|
return $this->args['rating'] |
|
212
|
|
|
? $this->db->prepare('AND r.rating > %d', --$this->args['rating']) |
|
213
|
|
|
: ''; |
|
214
|
|
|
} |
|
215
|
|
|
|
|
216
|
|
|
/** |
|
217
|
|
|
* @return string |
|
218
|
|
|
*/ |
|
219
|
|
|
protected function clauseAndType() |
|
220
|
|
|
{ |
|
221
|
|
|
return $this->args['type'] |
|
222
|
|
|
? $this->db->prepare('AND r.type = %s', $this->args['type']) |
|
223
|
|
|
: ''; |
|
224
|
|
|
} |
|
225
|
|
|
|
|
226
|
|
|
/** |
|
227
|
|
|
* @return string |
|
228
|
|
|
*/ |
|
229
|
|
|
protected function clauseJoinAssignedTo() |
|
230
|
|
|
{ |
|
231
|
|
|
return !empty($this->args['assigned_to']) |
|
232
|
|
|
? "INNER JOIN {$this->table('assigned_posts')} AS apt ON r.ID = apt.rating_id" |
|
233
|
|
|
: ''; |
|
234
|
|
|
} |
|
235
|
|
|
|
|
236
|
|
|
/** |
|
237
|
|
|
* @return string |
|
238
|
|
|
*/ |
|
239
|
|
|
protected function clauseJoinCategory() |
|
240
|
|
|
{ |
|
241
|
|
|
return !empty($this->args['category']) |
|
242
|
|
|
? "INNER JOIN {$this->table('assigned_terms')} AS att ON r.ID = att.rating_id" |
|
243
|
|
|
: ''; |
|
244
|
|
|
} |
|
245
|
|
|
|
|
246
|
|
|
/** |
|
247
|
|
|
* @return string |
|
248
|
|
|
*/ |
|
249
|
|
|
protected function clauseJoinUser() |
|
250
|
|
|
{ |
|
251
|
|
|
return !empty($this->args['user']) |
|
252
|
|
|
? "INNER JOIN {$this->table('assigned_users')} AS aut ON r.ID = aut.rating_id" |
|
253
|
|
|
: ''; |
|
254
|
|
|
} |
|
255
|
|
|
} |
|
256
|
|
|
|