|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* |
|
4
|
|
|
* @package sitemaker |
|
5
|
|
|
* @copyright (c) 2013 Daniel A. (blitze) |
|
6
|
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 |
|
7
|
|
|
* |
|
8
|
|
|
*/ |
|
9
|
|
|
|
|
10
|
|
|
namespace blitze\sitemaker\services\forum; |
|
11
|
|
|
|
|
12
|
|
|
class data extends 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 \blitze\sitemaker\services\users\data */ |
|
30
|
|
|
protected $user_data; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* Constructor |
|
34
|
|
|
* |
|
35
|
|
|
* @param \phpbb\auth\auth $auth Auth object |
|
36
|
|
|
* @param \phpbb\config\config $config Config object |
|
37
|
|
|
* @param \phpbb\content_visibility $content_visibility Content visibility |
|
38
|
|
|
* @param \phpbb\db\driver\driver_interface $db Database connection |
|
39
|
|
|
* @param \phpbb\user $user User object |
|
40
|
|
|
* @param \blitze\sitemaker\services\users\data $user_data Sitemaker User data object |
|
41
|
|
|
* @param integer $cache_time Cache results for 3 hours by default |
|
42
|
|
|
*/ |
|
43
|
29 |
|
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, \blitze\sitemaker\services\users\data $user_data, $cache_time = 10800) |
|
44
|
|
|
{ |
|
45
|
29 |
|
parent::__construct($auth, $config, $content_visibility, $db, $user, $cache_time); |
|
46
|
|
|
|
|
47
|
29 |
|
$this->auth = $auth; |
|
48
|
29 |
|
$this->config = $config; |
|
49
|
29 |
|
$this->content_visibility = $content_visibility; |
|
50
|
29 |
|
$this->db = $db; |
|
51
|
29 |
|
$this->user = $user; |
|
52
|
29 |
|
$this->user_data = $user_data; |
|
53
|
29 |
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* Get topics count |
|
57
|
|
|
* |
|
58
|
|
|
* @return integer |
|
59
|
|
|
*/ |
|
60
|
1 |
|
public function get_topics_count() |
|
61
|
|
|
{ |
|
62
|
|
|
$sql_array = array( |
|
63
|
1 |
|
'SELECT' => 'COUNT(*) AS total_topics', |
|
64
|
1 |
|
'FROM' => $this->store['sql_array']['FROM'], |
|
65
|
1 |
|
'WHERE' => $this->store['sql_array']['WHERE'], |
|
66
|
1 |
|
); |
|
67
|
1 |
|
$sql = $this->db->sql_build_query('SELECT', $sql_array); |
|
68
|
1 |
|
$result = $this->db->sql_query($sql); |
|
69
|
1 |
|
$total_topics = $this->db->sql_fetchfield('total_topics'); |
|
70
|
1 |
|
$this->db->sql_freeresult($result); |
|
71
|
|
|
|
|
72
|
1 |
|
return $total_topics; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
/** |
|
76
|
|
|
* Get topic data |
|
77
|
|
|
* |
|
78
|
|
|
* @param mixed|false $limit |
|
79
|
|
|
* @param int $start |
|
80
|
|
|
* @return array |
|
81
|
|
|
*/ |
|
82
|
12 |
|
public function get_topic_data($limit = false, $start = 0) |
|
83
|
|
|
{ |
|
84
|
12 |
|
$sql = $this->db->sql_build_query('SELECT', $this->store['sql_array']); |
|
85
|
12 |
|
$result = $this->db->sql_query_limit($sql, $limit, $start, $this->cache_time); |
|
86
|
|
|
|
|
87
|
12 |
|
while ($row = $this->db->sql_fetchrow($result)) |
|
88
|
|
|
{ |
|
89
|
10 |
|
$this->store['topic'][$row['topic_id']] = $row; |
|
90
|
|
|
|
|
91
|
10 |
|
$this->store['tracking'][$row['forum_id']]['topic_list'][] = $row['topic_id']; |
|
92
|
10 |
|
$this->store['tracking'][$row['forum_id']]['mark_time'] =& $row['forum_mark_time']; |
|
93
|
10 |
|
$this->store['post_ids']['first'][] = $row['topic_first_post_id']; |
|
94
|
10 |
|
$this->store['post_ids']['last'][] = $row['topic_last_post_id']; |
|
95
|
10 |
|
} |
|
96
|
12 |
|
$this->db->sql_freeresult($result); |
|
97
|
|
|
|
|
98
|
12 |
|
return $this->store['topic']; |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* Get post data |
|
103
|
|
|
* |
|
104
|
|
|
* @param mixed|false $topic_first_or_last_post (first|last) |
|
105
|
|
|
* @param array $post_ids |
|
106
|
|
|
* @param bool|false $limit |
|
107
|
|
|
* @param int $start |
|
108
|
|
|
* @param array $sql_array |
|
109
|
|
|
* @return array |
|
110
|
|
|
*/ |
|
111
|
10 |
|
public function get_post_data($topic_first_or_last_post = false, $post_ids = array(), $limit = false, $start = 0, $sql_array = array()) |
|
112
|
|
|
{ |
|
113
|
10 |
|
$sql = $this->db->sql_build_query('SELECT_DISTINCT', $this->_get_posts_sql_array($topic_first_or_last_post, $post_ids, $sql_array)); |
|
114
|
10 |
|
$result = $this->db->sql_query_limit($sql, $limit, $start, $this->cache_time); |
|
115
|
|
|
|
|
116
|
10 |
|
$post_data = array(); |
|
117
|
10 |
|
while ($row = $this->db->sql_fetchrow($result)) |
|
118
|
|
|
{ |
|
119
|
9 |
|
$post_data[$row['topic_id']][$row['post_id']] = $row; |
|
120
|
9 |
|
$this->store['poster_ids'][] = $row['poster_id']; |
|
121
|
9 |
|
$this->store['poster_ids'][] = $row['post_edit_user']; |
|
122
|
9 |
|
$this->store['poster_ids'][] = $row['post_delete_user']; |
|
123
|
9 |
|
$this->store['attachments'][] = $row['post_id']; |
|
124
|
9 |
|
} |
|
125
|
10 |
|
$this->db->sql_freeresult($result); |
|
126
|
|
|
|
|
127
|
10 |
|
return $post_data; |
|
128
|
|
|
} |
|
129
|
|
|
|
|
130
|
|
|
/** |
|
131
|
|
|
* Get attachments... |
|
132
|
|
|
* |
|
133
|
|
|
* @param int $forum_id |
|
134
|
|
|
* @param array $allowed_extensions |
|
135
|
|
|
* @param mixed|bool $limit |
|
136
|
|
|
* @param bool $exclude_in_message |
|
137
|
|
|
* @param string $order_by |
|
138
|
|
|
* @return array |
|
139
|
|
|
*/ |
|
140
|
7 |
|
public function get_attachments($forum_id = 0, $allowed_extensions = array(), $limit = false, $exclude_in_message = true, $order_by = 'filetime DESC') |
|
141
|
|
|
{ |
|
142
|
7 |
|
$attach_ids = array_filter($this->store['attachments']); |
|
143
|
|
|
|
|
144
|
7 |
|
$data = array(); |
|
145
|
7 |
|
if (sizeof($attach_ids)) |
|
146
|
7 |
|
{ |
|
147
|
6 |
|
$attachments = new attachments($this->auth, $this->db); |
|
148
|
6 |
|
$data = $attachments->get_attachments($forum_id, $attach_ids, $allowed_extensions, $limit, $exclude_in_message, $order_by); |
|
149
|
6 |
|
} |
|
150
|
|
|
|
|
151
|
7 |
|
return $data; |
|
152
|
|
|
} |
|
153
|
|
|
|
|
154
|
|
|
/** |
|
155
|
|
|
* Get topic tracking info |
|
156
|
|
|
* |
|
157
|
|
|
* @param int $forum_id |
|
158
|
|
|
* @return array |
|
159
|
|
|
*/ |
|
160
|
5 |
|
public function get_topic_tracking_info($forum_id = 0) |
|
161
|
|
|
{ |
|
162
|
5 |
|
if (!sizeof($this->store['tracking'])) |
|
163
|
5 |
|
{ |
|
164
|
|
|
return array(); |
|
165
|
|
|
} |
|
166
|
|
|
|
|
167
|
5 |
|
$tracker = new tracker($this->config, $this->user); |
|
168
|
5 |
|
$tracking_info = $tracker->get_tracking_info($this->store['tracking'], $this->store['topic']); |
|
169
|
|
|
|
|
170
|
5 |
|
return ($forum_id) ? (isset($tracking_info[$forum_id]) ? $tracking_info[$forum_id] : array()) : $tracking_info; |
|
171
|
|
|
} |
|
172
|
|
|
|
|
173
|
|
|
/** |
|
174
|
|
|
* Returns an array of topic first post or last post ids |
|
175
|
|
|
* |
|
176
|
|
|
* @param string $first_or_last_post |
|
177
|
|
|
* @return array |
|
178
|
|
|
*/ |
|
179
|
3 |
|
public function get_topic_post_ids($first_or_last_post = 'first') |
|
180
|
|
|
{ |
|
181
|
3 |
|
return (isset($this->store['post_ids'][$first_or_last_post])) ? $this->store['post_ids'][$first_or_last_post] : array(); |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
/** |
|
185
|
|
|
* Returns an array of topic first post or last post ids |
|
186
|
|
|
*/ |
|
187
|
|
|
public function get_posters_info() |
|
188
|
|
|
{ |
|
189
|
|
|
$this->store['poster_ids'] = array_filter(array_unique($this->store['poster_ids'])); |
|
190
|
|
|
|
|
191
|
|
|
if (!sizeof($this->store['poster_ids'])) |
|
192
|
|
|
{ |
|
193
|
|
|
return array(); |
|
194
|
|
|
} |
|
195
|
|
|
|
|
196
|
|
|
return $this->user_data->get_users($this->store['poster_ids']); |
|
197
|
|
|
} |
|
198
|
|
|
|
|
199
|
|
|
/** |
|
200
|
|
|
* @param mixed $topic_first_or_last_post |
|
201
|
|
|
* @param array $post_ids |
|
202
|
|
|
* @param array $sql_array |
|
203
|
|
|
* @return array |
|
204
|
|
|
*/ |
|
205
|
10 |
|
private function _get_posts_sql_array($topic_first_or_last_post, array $post_ids, array $sql_array) |
|
206
|
|
|
{ |
|
207
|
10 |
|
$sql_array = array_merge_recursive( |
|
208
|
|
|
array( |
|
209
|
10 |
|
'SELECT' => array('p.*'), |
|
210
|
10 |
|
'FROM' => array(POSTS_TABLE => 'p'), |
|
211
|
10 |
|
'WHERE' => $this->_get_post_data_where($post_ids, $topic_first_or_last_post), |
|
212
|
10 |
|
'ORDER_BY' => 'p.post_time DESC', |
|
213
|
10 |
|
), |
|
214
|
|
|
$sql_array |
|
215
|
10 |
|
); |
|
216
|
|
|
|
|
217
|
10 |
|
$sql_array['SELECT'] = join(', ', array_filter($sql_array['SELECT'])); |
|
218
|
10 |
|
$sql_array['WHERE'] = join(' AND ', array_filter($sql_array['WHERE'])); |
|
219
|
|
|
|
|
220
|
10 |
|
return $sql_array; |
|
221
|
|
|
} |
|
222
|
|
|
|
|
223
|
|
|
/** |
|
224
|
|
|
* @param array $post_ids |
|
225
|
|
|
* @param string $topic_first_or_last_post |
|
226
|
|
|
* @return array |
|
227
|
|
|
*/ |
|
228
|
10 |
|
private function _get_post_data_where(array $post_ids, $topic_first_or_last_post) |
|
229
|
|
|
{ |
|
230
|
10 |
|
$sql_where = array(); |
|
231
|
|
|
|
|
232
|
10 |
|
if (sizeof($post_ids)) |
|
233
|
10 |
|
{ |
|
234
|
2 |
|
$sql_where[] = $this->db->sql_in_set('p.post_id', $post_ids); |
|
235
|
2 |
|
} |
|
236
|
8 |
|
else if (sizeof($this->store['topic'])) |
|
237
|
8 |
|
{ |
|
238
|
3 |
|
$this->_limit_posts_by_topic($sql_where, $topic_first_or_last_post); |
|
239
|
3 |
|
} |
|
240
|
|
|
|
|
241
|
10 |
|
$sql_where[] = $this->content_visibility->get_global_visibility_sql('post', $this->ex_fid_ary, 'p.'); |
|
242
|
|
|
|
|
243
|
10 |
|
return $sql_where; |
|
244
|
|
|
} |
|
245
|
|
|
|
|
246
|
|
|
/** |
|
247
|
|
|
* @param array $sql_where |
|
248
|
|
|
* @param string $topic_first_or_last_post |
|
249
|
|
|
*/ |
|
250
|
3 |
|
private function _limit_posts_by_topic(array &$sql_where, $topic_first_or_last_post) |
|
251
|
|
|
{ |
|
252
|
3 |
|
$sql_where[] = $this->db->sql_in_set('p.topic_id', array_keys($this->store['topic'])); |
|
253
|
|
|
|
|
254
|
|
|
if ($topic_first_or_last_post) |
|
255
|
3 |
|
{ |
|
256
|
3 |
|
$sql_where[] = $this->db->sql_in_set('p.post_id', $this->get_topic_post_ids($topic_first_or_last_post)); |
|
257
|
3 |
|
} |
|
258
|
3 |
|
} |
|
259
|
|
|
} |
|
260
|
|
|
|