1 | <?php |
||
12 | class query_builder |
||
13 | { |
||
14 | /** @var \phpbb\auth\auth */ |
||
15 | protected $auth; |
||
16 | |||
17 | /** @var \phpbb\config\config */ |
||
18 | protected $config; |
||
19 | |||
20 | /** @var \phpbb\content_visibility */ |
||
21 | protected $content_visibility; |
||
22 | |||
23 | /** @var \phpbb\db\driver\driver_interface */ |
||
24 | protected $db; |
||
25 | |||
26 | /** @var \phpbb\user */ |
||
27 | protected $user; |
||
28 | |||
29 | /** @var array */ |
||
30 | protected $store; |
||
31 | |||
32 | /** @var array */ |
||
33 | protected $ex_fid_ary; |
||
34 | |||
35 | /** @var integer */ |
||
36 | protected $cache_time; |
||
37 | |||
38 | /** |
||
39 | * Constructor |
||
40 | * |
||
41 | * @param \phpbb\auth\auth $auth Auth object |
||
42 | * @param \phpbb\config\config $config Config object |
||
43 | * @param \phpbb\content_visibility $content_visibility Content visibility |
||
44 | * @param \phpbb\db\driver\driver_interface $db Database connection |
||
45 | * @param \phpbb\user $user User object |
||
46 | * @param integer $cache_time Cache results for 3 hours by default |
||
47 | */ |
||
48 | 26 | public function __construct(\phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\content_visibility $content_visibility, \phpbb\db\driver\driver_interface $db, \phpbb\user $user, $cache_time = 10800) |
|
59 | |||
60 | /** |
||
61 | * Begin query |
||
62 | * |
||
63 | * $param bool $track_topics |
||
64 | * @return $this |
||
65 | */ |
||
66 | 19 | public function query($track_topics = true) |
|
67 | { |
||
68 | 19 | $this->_reset(); |
|
69 | |||
70 | 19 | $this->store['sql_array'] = array( |
|
71 | 19 | 'SELECT' => array('t.*, f.*'), |
|
72 | |||
73 | 19 | 'FROM' => array(FORUMS_TABLE => 'f'), |
|
74 | |||
75 | 19 | 'LEFT_JOIN' => array(), |
|
76 | |||
77 | 19 | 'WHERE' => array(), |
|
78 | ); |
||
79 | |||
80 | // Topics table need to be the last in the chain |
||
81 | 19 | $this->store['sql_array']['FROM'][TOPICS_TABLE] = 't'; |
|
82 | |||
83 | if ($track_topics) |
||
84 | 19 | { |
|
85 | 18 | $this->fetch_tracking_info(); |
|
86 | 18 | } |
|
87 | |||
88 | 19 | return $this; |
|
89 | } |
||
90 | |||
91 | /** |
||
92 | * Fetch Forum by id(s) |
||
93 | * |
||
94 | * @param $forum_id |
||
95 | * @return $this |
||
96 | */ |
||
97 | 15 | public function fetch_forum($forum_id) |
|
98 | { |
||
99 | 15 | $this->_fetch($forum_id, 'f.forum_id'); |
|
100 | |||
101 | 15 | return $this; |
|
102 | } |
||
103 | |||
104 | /** |
||
105 | * Fetch Topic by id(s) |
||
106 | * |
||
107 | * @param mixed $topic_id Limit by topic id: single id or array of topic ids |
||
108 | * @return $this |
||
109 | */ |
||
110 | 3 | public function fetch_topic($topic_id) |
|
111 | { |
||
112 | 3 | $this->_fetch($topic_id, 't.topic_id'); |
|
113 | |||
114 | 3 | return $this; |
|
115 | } |
||
116 | |||
117 | /** |
||
118 | * Fetch Topic by Poster id(s) |
||
119 | * |
||
120 | * @param mixed $user_id User id of topic poster: single id or array of user ids |
||
121 | * @return $this |
||
122 | */ |
||
123 | 3 | public function fetch_topic_poster($user_id) |
|
124 | { |
||
125 | 3 | $this->_fetch($user_id, 't.topic_poster'); |
|
126 | |||
127 | 3 | return $this; |
|
128 | } |
||
129 | |||
130 | /** |
||
131 | * Fetch by Topic Type |
||
132 | * |
||
133 | * @param array $topic_type |
||
134 | * @return $this |
||
135 | */ |
||
136 | 15 | public function fetch_topic_type(array $topic_type) |
|
137 | { |
||
138 | 15 | if (sizeof($topic_type)) |
|
139 | 15 | { |
|
140 | 4 | $this->store['sql_array']['WHERE'][] = $this->db->sql_in_set('t.topic_type', $topic_type); |
|
141 | 4 | } |
|
142 | |||
143 | 15 | if (in_array($topic_type, array(POST_STICKY, POST_ANNOUNCE))) |
|
144 | 15 | { |
|
145 | $this->store['sql_array']['WHERE'][] = '(t.topic_time_limit > 0 AND (t.topic_time + t.topic_time_limit) < ' . time() . ')'; |
||
146 | } |
||
147 | |||
148 | 15 | return $this; |
|
149 | } |
||
150 | |||
151 | /** |
||
152 | * Fetch Topic Watch info |
||
153 | * |
||
154 | * @return $this |
||
155 | */ |
||
156 | public function fetch_watch_status() |
||
157 | { |
||
158 | if ($this->user->data['is_registered']) |
||
159 | { |
||
160 | $this->store['sql_array']['SELECT'][] = 'tw.notify_status'; |
||
161 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
||
162 | 'FROM' => array(TOPICS_WATCH_TABLE => 'tw'), |
||
163 | 'ON' => 'tw.user_id = ' . $this->user->data['user_id'] . ' AND t.topic_id = tw.topic_id' |
||
164 | ); |
||
165 | |||
166 | $this->store['sql_array']['SELECT'][] = 'fw.notify_status'; |
||
167 | $this->store['sql_array']['LEFT JOIN'][] = array( |
||
168 | 'FROM' => array(FORUMS_WATCH_TABLE => 'fw'), |
||
169 | 'ON' => '(fw.forum_id = f.forum_id AND fw.user_id = ' . $this->user->data['user_id'] . ')', |
||
170 | ); |
||
171 | } |
||
172 | |||
173 | return $this; |
||
174 | } |
||
175 | |||
176 | /** |
||
177 | * Fetch Topic Bookmark Info |
||
178 | * |
||
179 | * @return $this |
||
180 | */ |
||
181 | public function fetch_bookmark_status() |
||
182 | { |
||
183 | if ($this->user->data['is_registered'] && $this->config['allow_bookmarks']) |
||
184 | { |
||
185 | $this->store['sql_array']['SELECT'][] = 'bm.topic_id as bookmarked'; |
||
186 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
||
187 | 'FROM' => array(BOOKMARKS_TABLE => 'bm'), |
||
188 | 'ON' => 'bm.user_id = ' . $this->user->data['user_id'] . ' AND t.topic_id = bm.topic_id' |
||
189 | ); |
||
190 | } |
||
191 | |||
192 | return $this; |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * Fetch Topic Tracking Info |
||
197 | * |
||
198 | * @param bool $track |
||
|
|||
199 | * @return $this |
||
200 | */ |
||
201 | 18 | public function fetch_tracking_info() |
|
202 | { |
||
203 | 18 | if ($this->user->data['is_registered'] && $this->config['load_db_lastread']) |
|
204 | 18 | { |
|
205 | 7 | $this->cache_time = 0; |
|
206 | |||
207 | 7 | $this->store['sql_array']['SELECT'][] = 'tt.mark_time, ft.mark_time as forum_mark_time'; |
|
208 | 7 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
|
209 | 7 | 'FROM' => array(TOPICS_TRACK_TABLE => 'tt'), |
|
210 | 7 | 'ON' => 'tt.user_id = ' . $this->user->data['user_id'] . ' AND t.topic_id = tt.topic_id' |
|
211 | 7 | ); |
|
212 | |||
213 | 7 | $this->store['sql_array']['LEFT_JOIN'][] = array( |
|
214 | 7 | 'FROM' => array(FORUMS_TRACK_TABLE => 'ft'), |
|
215 | 7 | 'ON' => 'ft.user_id = ' . $this->user->data['user_id'] . ' AND t.forum_id = ft.forum_id' |
|
216 | 7 | ); |
|
217 | 7 | } |
|
218 | |||
219 | 18 | return $this; |
|
220 | } |
||
221 | |||
222 | /** |
||
223 | * Fetch by Date Range |
||
224 | * |
||
225 | * @param int $start Unix start time |
||
226 | * @param int $stop Unix stop time |
||
227 | * @param string $mode |
||
228 | * @return $this |
||
229 | */ |
||
230 | 12 | public function fetch_date_range($start, $stop, $mode = 'topic') |
|
231 | { |
||
232 | 12 | if ($start && $stop) |
|
233 | 12 | { |
|
234 | 2 | $this->store['sql_array']['WHERE'][] = (($mode == 'topic') ? 't.topic_time' : 'p.post_time') . " BETWEEN $start AND $stop"; |
|
235 | 2 | } |
|
236 | |||
237 | 12 | return $this; |
|
238 | } |
||
239 | |||
240 | /** |
||
241 | * Fetch by Custom Query |
||
242 | * |
||
243 | * @param array $sql_array Array of elements to merge into query |
||
244 | * array( |
||
245 | * 'SELECT' => array('p.*'), |
||
246 | * 'WHERE' => array('p.post_id = 2'), |
||
247 | * ) |
||
248 | * @return $this |
||
249 | */ |
||
250 | 7 | public function fetch_custom(array $sql_array) |
|
251 | { |
||
252 | 7 | $this->store['sql_array'] = array_merge_recursive($this->store['sql_array'], $sql_array); |
|
253 | |||
254 | 7 | return $this; |
|
255 | } |
||
256 | |||
257 | /** |
||
258 | * Set Sorting Order |
||
259 | * |
||
260 | * @param string $sort_key The sorting key e.g. t.topic_time |
||
261 | * @param string $sort_dir Sort direction: ASC/DESC |
||
262 | * @return $this |
||
263 | */ |
||
264 | 12 | public function set_sorting($sort_key, $sort_dir = 'DESC') |
|
265 | { |
||
266 | 12 | $this->store['sql_array']['ORDER_BY'] = $sort_key . ' ' . $sort_dir; |
|
267 | |||
268 | 12 | return $this; |
|
269 | } |
||
270 | |||
271 | /** |
||
272 | * Build the query |
||
273 | * |
||
274 | * @param bool|true $check_visibility Should we only return data from forums the user is allowed to see? |
||
275 | * @param bool|true $enable_caching Should the query be cached where possible? |
||
276 | * @param bool|true $displayed_on_index Only get forums that are displayed on index? |
||
277 | * @return $this |
||
278 | */ |
||
279 | 19 | public function build($check_visibility = true, $enable_caching = true, $displayed_on_index = true) |
|
280 | { |
||
281 | 19 | $this->_set_cache_time($enable_caching); |
|
282 | 19 | $this->_set_topic_visibility($check_visibility); |
|
283 | |||
284 | if ($displayed_on_index) |
||
285 | 19 | { |
|
286 | 19 | $this->store['sql_array']['WHERE'][] = 'f.display_on_index <> 0'; |
|
287 | 19 | } |
|
288 | |||
289 | 19 | $this->store['sql_array']['WHERE'][] = 'f.forum_id = t.forum_id'; |
|
290 | 19 | $this->store['sql_array']['WHERE'][] = 't.topic_moved_id = 0'; |
|
291 | |||
292 | 19 | $this->store['sql_array']['SELECT'] = join(', ', array_filter($this->store['sql_array']['SELECT'])); |
|
293 | 19 | $this->store['sql_array']['WHERE'] = join(' AND ', array_filter($this->store['sql_array']['WHERE'])); |
|
294 | |||
295 | 19 | return $this; |
|
296 | } |
||
297 | |||
298 | /** |
||
299 | * Get the query array |
||
300 | * |
||
301 | * @return array The sql array that can be used with sql_build_query |
||
302 | */ |
||
303 | 7 | public function get_sql_array() |
|
304 | { |
||
305 | 7 | return $this->store['sql_array']; |
|
306 | } |
||
307 | |||
308 | /** |
||
309 | * @param bool $enable_caching |
||
310 | */ |
||
311 | 19 | protected function _set_cache_time($enable_caching) |
|
318 | |||
319 | /** |
||
320 | * @param int $column_id |
||
321 | * @param string $column |
||
322 | */ |
||
323 | 15 | private function _fetch($column_id, $column) |
|
324 | { |
||
325 | 15 | if (!empty($column_id)) |
|
326 | 15 | { |
|
327 | 10 | $this->store['sql_array']['WHERE'][] = (is_array($column_id)) ? $this->db->sql_in_set($column, $column_id) : $column . ' = ' . (int) $column_id; |
|
328 | 10 | } |
|
329 | 15 | } |
|
330 | |||
331 | /** |
||
332 | * @param bool $check_visibility |
||
333 | */ |
||
334 | 19 | private function _set_topic_visibility($check_visibility) |
|
342 | |||
343 | /** |
||
344 | * Reset data |
||
345 | */ |
||
346 | 19 | private function _reset() |
|
357 | } |
||
358 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.