Cheetah
DbForum.php
Go to the documentation of this file.
1 <?php
2 
8 define('TF_FORUM', '`' . $gConf['db']['prefix'] . 'forum`');
9 define('TF_FORUM_CAT', '`' . $gConf['db']['prefix'] . 'forum_cat`');
10 define('TF_FORUM_POST', '`' . $gConf['db']['prefix'] . 'forum_post`');
11 define('TF_FORUM_TOPIC', '`' . $gConf['db']['prefix'] . 'forum_topic`');
12 define('TF_FORUM_VOTE', '`' . $gConf['db']['prefix'] . 'forum_vote`');
13 define('TF_FORUM_FLAG', '`' . $gConf['db']['prefix'] . 'forum_flag`');
14 define('TF_FORUM_USER_ACT', '`' . $gConf['db']['prefix'] . 'forum_user_activity`');
15 define('TF_FORUM_USER_STAT', '`' . $gConf['db']['prefix'] . 'forum_user_stat`');
16 define('TF_FORUM_ACTIONS_LOG', '`' . $gConf['db']['prefix'] . 'forum_actions_log`');
17 define('TF_FORUM_ATTACHMENTS', '`' . $gConf['db']['prefix'] . 'forum_attachments`');
18 define('TF_FORUM_SIGNATURES', '`' . $gConf['db']['prefix'] . 'forum_signatures`');
19 
20 define('TF_ACTION_REPORT', 'report');
21 define('TF_ACTION_STICK', 'stick');
22 define('TF_ACTION_LOCK', 'lock');
23 define('TF_ACTION_HIDE_TOPIC', 'hide topic');
24 define('TF_ACTION_HIDE_POST', 'hide post');
25 define('TF_ACTION_UNHIDE_TOPIC', 'unhide topic');
26 define('TF_ACTION_UNHIDE_POST', 'unhide post');
27 define('TF_ACTION_DEL_TOPIC', 'del topic');
28 define('TF_ACTION_DEL_POST', 'del post');
29 define('TF_ACTION_EDIT_POST', 'edit post');
30 define('TF_ACTION_RESET_VOTES', 'reset votes');
31 
32 // forum database functions
33 
34 class DbForum extends ChDb
35 {
36  var $_aUserTables2Field = array(
37  'forum_actions_log' => 'user_name',
38  'forum_flag' => 'user',
39  'forum_post' => 'user',
40  'forum_signatures' => 'user',
41  'forum_topic' => 'first_post_user',
42  'forum_user_activity' => 'user',
43  'forum_user_stat' => 'user',
44  'forum_vote' => 'user_name',
45  );
46 
47  function searchMessages($s, $u, $f, $type, $posts, $start, &$num = null)
48  {
49  global $gConf;
50 
51  $order_by = 'ORDER BY `last_post_when` DESC';
52  $sql_w = '';
53  $fields = '';
54 
55  $sCalcFoundRows = '';
56  if ($num !== null) {
57  $sCalcFoundRows = 'SQL_CALC_FOUND_ROWS';
58  }
59 
60  if ($start < 0) {
61  $start = 0;
62  }
63 
64  $u = trim($u);
65  $s = trim($s);
66 
67  if (strlen($s) > 2) {
68  if ($gConf['fulltext_search']) {
69 
70  $match = '';
71  if ('msgs' == $type) {
72  $match = "MATCH (`post_text`) AGAINST ('$s') > 1";
73  } else // titles
74  {
75  $match = "MATCH (`topic_title`) AGAINST ('$s') > 1";
76  }
77 
78  //$fields .= ", $match AS `score`";
79  //$order_by = 'ORDER BY `score` DESC, `last_post_when` DESC';
80  $order_by = 'ORDER BY `last_post_when` DESC';
81  $sql_w .= " AND $match ";
82 
83  } else {
84 
85  $s = preg_replace('/\s+/', '%', $s);
86  if ('msgs' == $type) // messages
87  {
88  $sql_w .= " AND `post_text` LIKE '%$s%' ";
89  }
90  else // titles
91  {
92  $sql_w .= " AND `topic_title` LIKE '%$s%' ";
93  }
94  $order_by = 'ORDER BY `last_post_when` DESC';
95  }
96  }
97 
98  if (strlen($u) > 2) {
99  $u = preg_replace('/\s+/', '%', $u);
100  if ('msgs' == $type) {
101  $sql_w .= " AND `user` LIKE '$u%' ";
102  } else {
103  $sql_w .= " AND `first_post_user` LIKE '$u%' ";
104  }
105  }
106 
107  if ($f > 0) {
108  $sql_w .= " AND t3.`forum_id` = '$f' ";
109  }
110 
111  if ('msgs' == $type) {
112  if ($posts)
113  $fields .= ', `post_text` ';
114  $sSQL = "
115  SELECT DISTINCTROW $sCalcFoundRows t4.`cat_id`, t4.`cat_uri`, `cat_name`, t3.`forum_id`, t3.`forum_uri`, t3.`forum_type`, `forum_title`, t2.`topic_id`, t2.`topic_uri`, `topic_title`, `post_id`, t1.`when` AS `date`, `user` $fields
116  FROM " . TF_FORUM_POST . " AS t1
117  INNER JOIN " . TF_FORUM_TOPIC . " AS t2 ON (t2.`topic_id` = t1.`topic_id`)
118  INNER JOIN " . TF_FORUM . " AS t3 ON (t1.`forum_id` = t3.`forum_id`)
119  INNER JOIN " . TF_FORUM_CAT . " AS t4 ON (t3.`cat_id` = t4.`cat_id`)
120  WHERE t2.`topic_hidden` = '0' $sql_w
121  $order_by
122  LIMIT $start, {$gConf['topics_per_page']}";
123  } else { // search titles
124  $sSQL = "
125  SELECT DISTINCTROW $sCalcFoundRows t4.`cat_id`, t4.`cat_uri`, `cat_name`, t3.`forum_id`, t3.`forum_uri`, t3.`forum_type`, `forum_title`, t2.`topic_id`, t2.`topic_uri`, `topic_title`, `first_post_when` AS `date`, `first_post_user` AS `user` $fields
126  FROM " . TF_FORUM_TOPIC . " AS t2
127  INNER JOIN " . TF_FORUM . " AS t3 ON (t2.`forum_id` = t3.`forum_id`)
128  INNER JOIN " . TF_FORUM_CAT . " AS t4 ON (t3.`cat_id` = t4.`cat_id`)
129  WHERE t2.`topic_hidden` = '0' $sql_w
130  $order_by
131  LIMIT $start, {$gConf['topics_per_page']}";
132  }
133 
134  $aRows = $this->getAll($sSQL);
135 
136  if ($num !== null) {
137  $num = $this->getOne('SELECT FOUND_ROWS()');
138  }
139 
140  return $aRows;
141  }
142 
143  function getCategs()
144  {
145  return $this->getAll("SELECT `tc`.`cat_id`, `tc`.`cat_uri`, `tc`.`cat_name`, `tc`.`cat_icon`, `tc`.`cat_expanded`, SUM(`tf`.`forum_posts`) AS `count_posts`, SUM(`tf`.`forum_topics`) AS `count_topics`, COUNT(`tf`.`forum_id`) AS `count_forums` FROM " . TF_FORUM_CAT . " AS `tc` LEFT JOIN " . TF_FORUM . " AS `tf` ON (`tc`.`cat_id` = `tf`.`cat_id`) GROUP BY `tc`.`cat_id` ORDER BY `tc`.`cat_order` ASC");
146  }
147 
148  function getCatTitle($id)
149  {
150  return $this->getOne("SELECT `cat_name` FROM " . TF_FORUM_CAT . " WHERE `cat_id` = ?", [$id]);
151  }
152 
153  function getCat($id)
154  {
155  return $this->getRow("SELECT `cat_id`, `cat_uri`, `cat_name`, `cat_order`, `cat_expanded` FROM " . TF_FORUM_CAT . " WHERE `cat_id` = ?",
156  [$id]);
157  }
158 
159  function getForums($c)
160  {
161  global $gConf;
162 
163  return $this->getAll("SELECT `forum_id`, `forum_uri`, `cat_id`, `forum_title`, `forum_desc`, `forum_type`, `forum_posts`, `forum_topics`, `forum_last` AS `forum_last`, `forum_last` AS `forum_last_ts` FROM " . TF_FORUM . ($c ? " WHERE `cat_id` = '$c'" : '') . ' ORDER BY `forum_order` ASC');
164  }
165 
166  function getForumsByCatUri($c)
167  {
168  global $gConf;
169 
170  return $this->getAll("SELECT `forum_id`, `forum_uri`, `tc`.`cat_id`, `tc`.`cat_uri`, `forum_title`, `forum_desc`, `forum_type`, `forum_posts`, `forum_topics`, `forum_last` AS `forum_last`, `forum_last` AS `forum_last_ts` FROM " . TF_FORUM . " AS `tf` INNER JOIN " . TF_FORUM_CAT . " AS `tc` ON (`tf`.`cat_id` = `tc`.`cat_id`) " . ($c ? " WHERE `cat_uri` = '$c'" : '') . ' ORDER BY `forum_order` ASC');
171  }
172 
173  function getForum($f)
174  {
175  return $this->getForumBy('forum_id', $f);
176  }
177 
178  function getForumByUri($f)
179  {
180  return $this->getForumBy('forum_uri', $f);
181  }
182 
183  function getForumBy($sName, $sVal)
184  {
185  global $gConf;
186 
187  return $this->getRow("SELECT `cat_id`, `forum_id`, `forum_uri`, `forum_title`, `forum_desc`, `forum_order`, `forum_type`, `forum_posts`, `forum_last` AS `forum_last` FROM " . TF_FORUM . " WHERE `$sName` = ? LIMIT 1",
188  [$sVal]);
189  }
190 
191  function getForumByPostId($post_id)
192  {
193  return $this->getRow("SELECT `tf`.`forum_id`, `tf`.`forum_uri`, `tf`.`forum_type` FROM " . TF_FORUM . " AS `tf` INNER JOIN " . TF_FORUM_POST . " USING(`forum_id`) WHERE `post_id` = ? LIMIT 1",
194  [$post_id]);
195  }
196 
197  function getForumByTopicId($topic_id)
198  {
199  return $this->getRow("SELECT `tf`.`forum_id`, `tf`.`forum_uri`, `tf`.`forum_type` FROM " . TF_FORUM . " AS `tf` INNER JOIN " . TF_FORUM_TOPIC . " USING(`forum_id`) WHERE `topic_id` = ? LIMIT 1",
200  [$topic_id]);
201  }
202 
203  function getPostIds($p)
204  {
205  return $this->getRow("SELECT `forum_id`, `topic_id` FROM " . TF_FORUM_POST . " WHERE `post_id` = ? LIMIT 1",
206  [$p]);
207  }
208 
209  function getTopicsNum($f)
210  {
211  return $this->_getTopicsNumWithCondition(" AND `topic_hidden` = '0' AND `forum_id` = ? ", [$f]);
212  }
213 
215  {
216  return $this->_getTopicsNumWithCondition(" AND `topic_hidden` = '0' ");
217  }
218 
219  function _getTopicsNumWithCondition($sWhere = '', $aBindings = [])
220  {
221  return $this->getOne("SELECT COUNT(`topic_id`) FROM " . TF_FORUM_TOPIC . " WHERE 1 $sWhere", $aBindings);
222  }
223 
224  function getTopics($f, $start)
225  {
226  global $gConf;
227 
228  $sql = "SELECT f1.`topic_id`, f1.`topic_uri`, `topic_title`, `first_post_user`, `first_post_when` AS `first_when`, `last_post_user`, `last_post_when` AS `last_when`, `last_post_when`, `topic_posts` AS `count_posts`, `topic_sticky`, `topic_locked` FROM " . TF_FORUM_TOPIC . " AS f1 WHERE f1.`topic_hidden` = '0' AND f1.`forum_id` = ? ORDER BY `topic_sticky` DESC, `last_post_when` DESC, f1.`topic_id` DESC LIMIT $start, {$gConf['topics_per_page']}";
229 
230  return $this->getAll($sql, [$f]);
231  }
232 
233  function getRecentTopics($start)
234  {
235  global $gConf;
236 
237  return $this->getAll("SELECT
238  f1.`topic_id`, f1.`topic_uri`, `topic_title`, `first_post_user`, `topic_posts` AS `count_posts`, `topic_sticky`, `topic_locked`,
239  `first_post_when` AS `first_when`, `last_post_user`,
240  `last_post_when` AS `last_when`, `last_post_when`,
241  `tf`.`forum_id`, `tf`.`forum_uri`, `tf`.`forum_title`, `tf`.`forum_type`,
242  `tc`.`cat_id`, `tc`.`cat_uri`, `tc`.`cat_name`
243  FROM " . TF_FORUM_TOPIC . " AS f1
244  INNER JOIN " . TF_FORUM . " AS `tf` ON (`tf`.`forum_id` = `f1`.`forum_id`)
245  INNER JOIN " . TF_FORUM_CAT . " AS `tc` ON (`tc`.`cat_id` = `tf`.`cat_id`)
246  WHERE f1.`topic_hidden` = '0'
247  ORDER BY `last_post_when` DESC, f1.`topic_id` DESC
248  LIMIT $start, {$gConf['topics_per_page']}");
249  }
250 
251  function getHiddenTopics($u, $start = 0, &$num = null)
252  {
253  global $gConf;
254 
255  $sCalcFoundRows = '';
256  if ($num !== null) {
257  $sCalcFoundRows = 'SQL_CALC_FOUND_ROWS';
258  }
259 
260  if ($start < 0) {
261  $start = 0;
262  }
263 
264  $sql = "SELECT $sCalcFoundRows f1.`topic_id`, f1.`topic_uri`, `topic_title`, `last_post_when`, `topic_posts` AS `count_posts` FROM " . TF_FORUM_TOPIC . " AS f1 WHERE f1.`topic_hidden` = '1' ORDER BY `last_post_when` DESC LIMIT $start, {$gConf['topics_per_page']}";
265 
266  $aRows = $this->getAll($sql);
267  if ($num !== null) {
268  $num = $this->getOne('SELECT FOUND_ROWS()');
269  }
270 
271  return $aRows;
272  }
273 
274  function getMyFlaggedTopics($u, $start = 0, &$num = null)
275  {
276  global $gConf;
277 
278  $sCalcFoundRows = '';
279  if ($num !== null) {
280  $sCalcFoundRows = 'SQL_CALC_FOUND_ROWS';
281  }
282 
283  if ($start < 0) {
284  $start = 0;
285  }
286 
287  $sql = "SELECT $sCalcFoundRows f1.`topic_id`, f1.`topic_uri`, `topic_title`, `last_post_when`, `topic_posts` AS `count_posts` FROM " . TF_FORUM_TOPIC . " AS f1 INNER JOIN " . TF_FORUM_FLAG . " AS f2 USING (`topic_id`) WHERE f2.`user` = ? ORDER BY `last_post_when` DESC LIMIT $start, {$gConf['topics_per_page']}";
288 
289  $aRows = $this->getAll($sql, [$u]);
290  if ($num !== null) {
291  $num = $this->getOne('SELECT FOUND_ROWS()');
292  }
293 
294  return $aRows;
295  }
296 
297  function getSubscribersToTopic($iTopicId)
298  {
299  return $this->getAll("SELECT `user` FROM " . TF_FORUM_FLAG . " WHERE `topic_id` = ?", [$iTopicId]);
300  }
301 
302  function getMyThreadsTopics($u, $start = 0, &$num = null)
303  {
304  global $gConf;
305 
306  $sCalcFoundRows = '';
307  if ($num !== null) {
308  $sCalcFoundRows = 'SQL_CALC_FOUND_ROWS';
309  }
310 
311  if ($start < 0) {
312  $start = 0;
313  }
314 
315  $sql = "SELECT DISTINCTROW $sCalcFoundRows f1.`topic_id`, f1.`topic_uri`, `topic_title`, `last_post_when`, `topic_posts` AS `count_posts` FROM " . TF_FORUM_TOPIC . " AS f1 INNER JOIN " . TF_FORUM_POST . " AS f2 USING (`topic_id`) WHERE f2.`user` = ? ORDER BY `last_post_when` DESC LIMIT $start, {$gConf['topics_per_page']}";
316 
317  $aRows = $this->getAll($sql, [$u]);
318  if ($num !== null) {
319  $num = $this->getOne('SELECT FOUND_ROWS()');
320  }
321 
322  return $aRows;
323  }
324 
325  function getTopic($t)
326  {
327  return $this->getTopicBy('topic_id', $t);
328  }
329 
330  function getTopicByUri($t)
331  {
332  return $this->getTopicBy('topic_uri', $t);
333  }
334 
335  function getTopicBy($sName, $sVal)
336  {
337  return $this->getRow("SELECT `topic_id`, `topic_uri`, `topic_title`, `topic_posts`, `forum_title`, `forum_desc`, `forum_type`, `forum_uri`, f1.`forum_id`, `cat_id`, `topic_locked`, `topic_sticky`, `topic_hidden` FROM " . TF_FORUM_TOPIC . " AS f1 INNER JOIN " . TF_FORUM . " USING (`forum_id`) WHERE f1.`$sName` = ? LIMIT 1",
338  [$sVal]);
339  }
340 
341  function getPostUser($p)
342  {
343  return $this->getOne("SELECT `user` FROM " . TF_FORUM_POST . " WHERE `post_id` = ?", [$p]);
344  }
345 
346  function getTopicPost($t, $x = 'last')
347  {
348  global $gConf;
349  $sOrderDir = ('last' == $x ? 'DESC' : 'ASC');
350 
351  return $this->getRow("SELECT `user`, t1.`when` AS `when2`, `when` FROM " . TF_FORUM_POST . " AS t1 WHERE `topic_id` = ? ORDER BY t1.`when` $sOrderDir, t1.`post_id` $sOrderDir LIMIT 1",
352  [$t]);
353  }
354 
355  function getTopicDesc($t)
356  {
357  return $this->getOne("SELECT `post_text` FROM " . TF_FORUM_POST . " WHERE `topic_id` = ? ORDER BY `when` ASC LIMIT 1",
358  [$t]);
359  }
360 
361  function editPost($p, $text, $user)
362  {
363  $this->logAction($p, $user, TF_ACTION_EDIT_POST);
364 
365  return $this->query("UPDATE " . TF_FORUM_POST . " SET `post_text` = ? WHERE post_id = ?", [$text, $p]);
366  }
367 
368  function newTopic($f, $title, $text, $sticky, $user, $uri)
369  {
370  $ts = time();
371 
372  $sticky = $sticky ? $ts : 0;
373 
374  // add topic title
375  if (!$this->query("INSERT INTO" . TF_FORUM_TOPIC . " SET `topic_posts` = 1, `forum_id` = ?, `topic_title` = ?, `when` = ?, `first_post_user` = ?, `first_post_when` = ?, `last_post_user` = ?, `last_post_when` = ?, `topic_sticky` = ?, `topic_uri` = ?",
376  [
377  $f,
378  $title,
379  $ts,
380  $user,
381  $ts,
382  $user,
383  $ts,
384  $sticky,
385  $uri
386  ])
387  ) {
388  return false;
389  }
390 
391 
392  // get topic_id
393  if (!($topic_id = $this->getOne("SELECT `topic_id` FROM " . TF_FORUM_TOPIC . " WHERE `forum_id` = ? AND `when` = ?",
394  [$f, $ts]))
395  ) {
396  return false;
397  }
398 
399  // add topic post
400  if (!$this->query("INSERT INTO" . TF_FORUM_POST . " SET `topic_id` = ?, `forum_id` = ?, `user` = ?, `post_text` = ?, `when` = ?",
401  [$topic_id, $f, $user, $text, $ts])
402  ) {
403  return false;
404  }
405 
406  $iPostId = $this->getLastId();
407 
408  // increase number of forum posts and set timeof last post
409  if (!$this->query("UPDATE" . TF_FORUM . " SET `forum_posts` = `forum_posts` + 1, `forum_topics` = `forum_topics` + 1, `forum_last` = ? WHERE `forum_id` = ?",
410  [$ts, $f])
411  ) {
412  return false;
413  }
414 
415  // update user stats
416  $this->userStatsInc($user, $ts);
417 
418  return $iPostId;
419  }
420 
421  function stick($topic_id, $user)
422  {
423  if (!$this->query("UPDATE" . TF_FORUM_TOPIC . " SET `topic_sticky` = IF(`topic_sticky`, 0, ?) WHERE `topic_id` = ?",
424  [time(), $topic_id])
425  ) {
426  return false;
427  }
428 
429  $this->logAction($topic_id, $user, TF_ACTION_STICK);
430 
431  return true;
432  }
433 
434  function hideTopic($is_hide, $topic_id, $user)
435  {
436  if (!$this->query("UPDATE" . TF_FORUM_TOPIC . " SET `topic_hidden` = '" . ($is_hide ? 1 : 0) . "' WHERE `topic_id` = ?",
437  [$topic_id])
438  ) {
439  return false;
440  }
441 
442  $this->logAction($topic_id, $user, $is_hide ? TF_ACTION_HIDE_TOPIC : TF_ACTION_UNHIDE_TOPIC);
443 
444  return true;
445  }
446 
447  function hidePost($is_hide, $post_id, $user)
448  {
449  if (!$this->query("UPDATE" . TF_FORUM_POST . " SET `hidden` = '" . ($is_hide ? 1 : 0) . "' WHERE `post_id` = ?",
450  [$post_id])
451  ) {
452  return false;
453  }
454 
455  $this->logAction($post_id, $user, $is_hide ? TF_ACTION_HIDE_POST : TF_ACTION_UNHIDE_POST);
456 
457  if (!$is_hide) {
458  $p = $this->getPost($post_id, '');
459  if ($p['votes'] < 0 && $this->query("UPDATE " . TF_FORUM_POST . " SET `votes` = 0 WHERE `post_id` = ? LIMIT 1",
460  [$post_id])
461  ) {
462  $this->logAction($post_id, $user, TF_ACTION_RESET_VOTES);
463  }
464  }
465 
466  return true;
467  }
468 
469  function deletePost($post_id, $user = '')
470  {
471  $a = $this->getPostIds($post_id);
472 
473  if (!$this->_deletePostWithoutUpdatingTopic($post_id, $a['forum_id'])) {
474  return false;
475  }
476 
477  if ($user) {
478  $this->logAction($post_id, $user, TF_ACTION_DEL_POST);
479  }
480 
481  // update last post
482  $last = $this->getTopicPost($a['topic_id'], 'last');
483 
484  // decrease number of topic posts
485  if (!$this->query("UPDATE" . TF_FORUM_TOPIC . " SET `topic_posts` = `topic_posts` - 1, `last_post_user` = ?, `last_post_when` = ? WHERE `topic_id` = ?",
486  [$last['user'], $last['when2'], $a['topic_id']])
487  ) {
488  return false;
489  }
490 
491  // delete topic
492  if (0 == $this->getOne("SELECT COUNT(*) FROM " . TF_FORUM_POST . " WHERE `topic_id` = ?", [$a['topic_id']])) {
493  $this->delTopic($a['topic_id'], '');
494  }
495 
496  return true;
497  }
498 
499  function _deletePostWithoutUpdatingTopic($post_id, $forum_id)
500  {
501  $user = $this->getPostUser($post_id);
502 
503  // delete post
504  if (!$this->query("DELETE FROM " . TF_FORUM_POST . " WHERE `post_id` = ?", [$post_id])) {
505  return false;
506  }
507 
508  // decrease number of forum posts
509  $this->query("UPDATE" . TF_FORUM . " SET `forum_posts` = `forum_posts` - 1 WHERE `forum_id` = ?", [$forum_id]);
510 
511  // update user stats
512  $this->userStatsDec($user);
513 
514  $this->removeAttachments($post_id);
515 
516  return true;
517  }
518 
519  function delTopic($topic_id, $user)
520  {
521  $t = $this->getTopic($topic_id);
522 
523  if (!$this->query("DELETE FROM " . TF_FORUM_TOPIC . " WHERE `topic_id` = ?", [$topic_id])) {
524  return false;
525  }
526 
527  $this->logAction($topic_id, $user, TF_ACTION_DEL_TOPIC);
528 
529  // descrease number of topics
530  $this->query("UPDATE " . TF_FORUM . " SET `forum_topics` = `forum_topics` - 1 WHERE `forum_id` = ?",
531  [$t['forum_id']]);
532 
533  // delete flags/subscriptions
534  $this->query("DELETE FROM " . TF_FORUM_FLAG . " WHERE `topic_id` = ?", [$topic_id]);
535 
536  // delete posts
537  $sql = "SELECT `post_id` FROM " . TF_FORUM_POST . " WHERE `topic_id` = ?";
538  $p = $this->getAll($sql, [$topic_id]);
539  foreach ($p as $r) {
540  $this->_deletePostWithoutUpdatingTopic($r['post_id'], $t['forum_id']);
541  }
542 
543  return true;
544  }
545 
546  function moveTopic($topic_id, $forum_id, $old_forum_id)
547  {
548  if (!$this->query("UPDATE " . TF_FORUM_TOPIC . " SET `forum_id` = ? WHERE `topic_id` = ?",
549  [$forum_id, $topic_id])
550  ) {
551  return false;
552  }
553 
554  $t = $this->getTopic($topic_id);
555  if (!$t) {
556  return false;
557  }
558 
559  // update topic posts
560  $this->query("UPDATE " . TF_FORUM_POST . " SET `forum_id` = ? WHERE `topic_id` = ?", [$forum_id, $topic_id]);
561 
562  // descrease number of topics/posts in old forum
563  $this->query("UPDATE " . TF_FORUM . " SET `forum_topics` = `forum_topics` - 1, `forum_posts` = `forum_posts` - {$t['topic_posts']} WHERE `forum_id` = ?",
564  [$old_forum_id]);
565 
566  // increase number of topics/posts in new forum
567  $this->query("UPDATE " . TF_FORUM . " SET `forum_topics` = `forum_topics` + 1, `forum_posts` = `forum_posts` + {$t['topic_posts']} WHERE `forum_id` = ?",
568  [$forum_id]);
569 
570  return true;
571  }
572 
573  function postReply($forum_id, $topic_id, $text, $user)
574  {
575  $ts = time();
576 
577  // add topic post
578  if (!$this->query("INSERT INTO" . TF_FORUM_POST . " SET `topic_id` = ?, `forum_id` = ?, `user` = ?, `post_text` = ?, `when` = ?",
579  [$topic_id, $forum_id, $user, $text, $ts])
580  ) {
581  return false;
582  }
583 
584  $iReplyId = $this->getOne("SELECT LAST_INSERT_ID()");
585 
586  // increase number of forum posts and set timeof last post
587  if (!$this->query("UPDATE" . TF_FORUM . " SET `forum_posts` = `forum_posts` + 1, `forum_last` = ? WHERE `forum_id` = ?",
588  [$ts, $forum_id])
589  ) {
590  return $iReplyId;
591  }
592 
593  // update last post
594  $last = $this->getPost($iReplyId, '');
595 
596  // increase number of topic posts
597  if (!$this->query("UPDATE" . TF_FORUM_TOPIC . " SET `topic_posts` = `topic_posts` + 1, `last_post_user` = ?, `last_post_when` = ? WHERE `topic_id` = ?",
598  [
599  $last['user'],
600  $last['when'],
601  $topic_id
602  ])
603  ) {
604  return $iReplyId;
605  }
606 
607  // update user stats
608  $this->userStatsInc($user, $ts);
609 
610  return $iReplyId;
611  }
612 
613  function getPosts($t, $u, $sOrder = 'ASC', $iLimit = 0)
614  {
615  return $this->getPostsBy($u, '`ft`.`topic_id`', $t, $sOrder, $iLimit);
616  }
617 
618  function getPostsByUri($t, $u)
619  {
620  return $this->getPostsBy($u, '`ft`.`topic_uri`', $t);
621  }
622 
623  function getPostsBy($u, $sName, $sVal, $sOrder = 'ASC', $iLimit = 0)
624  {
625  global $gConf;
626 
627  $sql_add1 = ", '-1' AS `voted`, 0 as `vote_user_point` ";
628  $sql_add2 = '';
629 
630  if ($u) {
631  $sql_add1 = ", (1 - ISNULL(t2.`post_id`)) AS `voted`, t2.`vote_point` as `vote_user_point` ";
632  $sql_add2 = " LEFT JOIN " . TF_FORUM_VOTE . " AS t2 ON ( t2.`user_name` = '$u' AND t1.`post_id` = t2.`post_id`) ";
633  }
634 
635  $sql = "SELECT `ft`.`forum_id`, `t1`.`topic_id`, `t1`.`post_id`, `user`, `post_text`, `votes`, `hidden`, t1.`when` $sql_add1 FROM " . TF_FORUM_POST . " AS t1 $sql_add2 INNER JOIN " . TF_FORUM_TOPIC . " AS `ft` ON (`ft`.`topic_id` = `t1`.`topic_id`) WHERE $sName = ? ORDER BY t1.`when` " . ('ASC' == $sOrder ? 'ASC' : 'DESC') . ((int)$iLimit ? ' LIMIT ' . (int)$iLimit : '');
636 
637  return $this->getAll($sql, [$sVal]);
638  }
639 
640  function _cutPostText(&$a, $sPostTextField = 'post_text')
641  {
642  foreach ($a as $k => $v) {
643  if ($sPostTextField) {
644  $a[$k][$sPostTextField] = orca_mb_substr($a[$k][$sPostTextField], 0, 255);
645  }
646  }
647 
648  }
649 
650  function getUserPostsList($user, $sort, $limit = 10)
651  {
652  global $gConf;
653 
654  switch ($sort) {
655  case 'top':
656  $order_by = " t1.`votes` DESC ";
657  break;
658  case 'rnd':
659  $order_by = " RAND() ";
660  break;
661  default:
662  $order_by = " t1.`when` DESC ";
663  }
664 
665  $sql = "
666  SELECT t1.`forum_id`, t1.`topic_id`, t2.`topic_uri`, t2.`topic_title`, t1.`post_id`, t1.`user`, `post_text`, t1.`when`
667  FROM " . TF_FORUM_POST . " AS t1
668  INNER JOIN " . TF_FORUM_TOPIC . " AS t2
669  ON (t1.`topic_id` = t2.`topic_id`)
670  WHERE t1.`user` = ? AND `t2`.`topic_hidden` = '0'
671  ORDER BY " . $order_by . "
672  LIMIT $limit";
673 
674  $a = $this->getAll($sql, [$user]);
675  $this->_cutPostText($a);
676 
677  return $a;
678  }
679 
680  function getAllPostsList($sort, $limit = 10)
681  {
682  global $gConf;
683 
684  switch ($sort) {
685  case 'top':
686  $order_by = " t1.`votes` DESC ";
687  break;
688  case 'rnd':
689  $order_by = " RAND() ";
690  break;
691  default:
692  $order_by = " t1.`when` DESC ";
693  }
694 
695  $sql = "
696  SELECT t1.`forum_id`, t1.`topic_id`, t2.`topic_uri`, t2.`topic_title`, t1.`post_id`, t1.`user`, `post_text`, t1.`when`
697  FROM " . TF_FORUM_POST . " AS t1
698  INNER JOIN " . TF_FORUM_TOPIC . " AS t2
699  ON (t1.`topic_id` = t2.`topic_id`)
700  WHERE `t2`.`topic_hidden` = '0'
701  ORDER BY " . $order_by . "
702  LIMIT $limit";
703 
704  $a = $this->getAll($sql);
705  $this->_cutPostText($a);
706 
707  return $a;
708  }
709 
710  function getPost($post_id, $u)
711  {
712  global $gConf;
713 
714  $sql_add1 = ", '-1' AS `voted`, 0 as `vote_user_point` ";
715  $sql_add2 = '';
716 
717  if ($u) {
718  $sql_add1 = ", (1 - ISNULL(t2.`post_id`)) AS `voted`, t2.`vote_point` as `vote_user_point` ";
719  $sql_add2 = " LEFT JOIN " . TF_FORUM_VOTE . " AS t2 ON ( t2.`user_name` = '$u' AND t1.`post_id` = t2.`post_id`) ";
720  }
721 
722  $sql = "SELECT `forum_id`, `topic_id`, t1.`post_id`, `user`, `post_text`, `votes`, `hidden`, t1.`when` $sql_add1 FROM " . TF_FORUM_POST . " AS t1 $sql_add2 WHERE t1.`post_id` = ? LIMIT 1";
723 
724  return $this->getRow($sql, [$post_id]);
725  }
726 
727  function getPostWhen($post_id)
728  {
729  return $this->getOne("SELECT `when` FROM " . TF_FORUM_POST . " WHERE `post_id` = ? LIMIT 1", [$post_id]);
730  }
731 
732  function getUserPosts($u)
733  {
734  //return $this->getOne ("SELECT COUNT(`post_id`) FROM " . TF_FORUM_POST . " WHERE `user` = '$u'");
735  return (int)$this->getOne("SELECT `posts` FROM " . TF_FORUM_USER_STAT . " WHERE `user` = ?", [$u]);
736  }
737 
738  function insertVote($post_id, $u, $vote)
739  {
740  $isOwnPost = $this->getOne("SELECT `post_id` FROM " . TF_FORUM_POST . " WHERE `user` = ? AND `post_id` = ? LIMIT 1",
741  [$u, $post_id]);
742  if ($isOwnPost) {
743  return false;
744  }
745 
746  $vote_prev = $this->getOne("SELECT `vote_point` FROM " . TF_FORUM_VOTE . " WHERE `user_name` = ? AND `post_id` = ?",
747  [$u, $post_id]);
748 
749  $sql = "INSERT INTO " . TF_FORUM_VOTE . " SET `user_name` = ?, `post_id` = ?, `vote_point` = " . ($vote > 0 ? '1' : '-1') . ", `vote_when` = UNIX_TIMESTAMP() ON DUPLICATE KEY UPDATE `vote_point` = " . ($vote > 0 ? '1' : '-1') . ", `vote_when` = UNIX_TIMESTAMP()";
750  if (!$this->query($sql, [$u, $post_id])) {
751  return false;
752  }
753 
754  $diff = $vote - $vote_prev;
755  if ($diff > 0 || $diff < -1) {
756  return $this->query("UPDATE " . TF_FORUM_POST . " SET `votes` = `votes` + " . ($diff < -1 ? -1 : 1) . " WHERE `post_id` = ? LIMIT 1",
757  [$post_id]);
758  } else {
759  return true;
760  }
761  }
762 
763  function getTopicByPostId($post_id)
764  {
765  $sql = "SELECT `topic_id`, `forum_id` FROM " . TF_FORUM_POST . " WHERE `post_id` = ?";
766 
767  return $this->getRow($sql, [$post_id]);
768  }
769 
770  function report($post_id, $u)
771  {
772  $this->logAction($post_id, $u, TF_ACTION_REPORT);
773 
774  $sql = "UPDATE " . TF_FORUM_POST . " SET `reports` = `reports` + 1 WHERE `post_id` = ? LIMIT 1";
775 
776  return $this->query($sql, [$post_id]);
777  }
778 
779  function isFlagged($topic_id, $u)
780  {
781  $sql = "SELECT `topic_id` FROM " . TF_FORUM_FLAG . " WHERE `user` = ? AND `topic_id` = ?";
782 
783  return $this->getOne($sql, [$u, $topic_id]);
784  }
785 
786  function flag($topic_id, $u)
787  {
788  $sql = "INSERT INTO " . TF_FORUM_FLAG . " SET `user` = ?, `topic_id` = ?, `when` = UNIX_TIMESTAMP()";
789 
790  return $this->query($sql, [$u, $topic_id]);
791  }
792 
793  function unflag($topic_id, $u)
794  {
795  $sql = "DELETE FROM " . TF_FORUM_FLAG . " WHERE `user` = ? AND `topic_id` = ? LIMIT 1";
796 
797  return $this->query($sql, [$u, $topic_id]);
798  }
799 
800  function updateUserActivity($user)
801  {
802  global $gConf;
803 
804  $sql = "SELECT `act_current` FROM " . TF_FORUM_USER_ACT . " WHERE `user` = ? LIMIT 1";
805  $current = (int)$this->getOne($sql, [$user]);
806 
807  if ((time() - $current) > $gConf['online']) {
808  if ((int)$this->getOne("SELECT COUNT(*) FROM " . TF_FORUM_USER_ACT . " WHERE `user` = ? LIMIT 1",
809  [$user])
810  ) {
811  $sql = "UPDATE " . TF_FORUM_USER_ACT . " SET `act_current`='" . time() . "', `act_last` = '$current' WHERE `user` = ?";
812  } else {
813  $sql = "INSERT INTO " . TF_FORUM_USER_ACT . " (`user`,`act_current`,`act_last`) VALUES (?, '" . time() . "', '$current')";
814  }
815  } else {
816  $sql = "UPDATE " . TF_FORUM_USER_ACT . " SET `act_current`='" . time() . "' WHERE `user` = ?";
817  }
818 
819  return $this->query($sql, [$user]);
820  }
821 
822  function updateUserLastActivity($user)
823  {
824  global $gConf;
825 
826  $t = time();
827 
828  $sql = "UPDATE " . TF_FORUM_USER_ACT . " SET `act_current`= ?, `act_last` = ? WHERE `user` = ?";
829 
830  return $this->query($sql, [$t, $t, $user]);
831  }
832 
833  function getUserLastActivity($user)
834  {
835  $sql = "SELECT `act_last` FROM " . TF_FORUM_USER_ACT . " WHERE `user` = ? LIMIT 1";
836 
837  return (int)$this->getOne($sql, [$user]);
838  }
839 
840  function getUserLastOnlineTime($user)
841  {
842  global $gConf;
843 
844  return $this->getOne("SELECT `act_current` AS `act_current` FROM " . TF_FORUM_USER_ACT . " WHERE `user` = ? LIMIT 1",
845  [$user]);
846  }
847 
848  function userStatsInc($user, $when)
849  {
850  $u = $this->getOne("SELECT `user` FROM " . TF_FORUM_USER_STAT . " WHERE `user` = ?", [$user]);
851  if ($u) {
852  $this->query("UPDATE " . TF_FORUM_USER_STAT . " SET `posts` = `posts` + 1, `user_last_post` = ? WHERE `user` = ?",
853  [$when, $user]);
854  } else {
855  $this->query("INSERT INTO " . TF_FORUM_USER_STAT . " SET `posts` = 1, `user_last_post` = ?, `user` = ?",
856  [$when, $user]);
857  }
858  }
859 
860  function userStatsDec($user)
861  {
862  $u = $this->getOne("SELECT `user` FROM " . TF_FORUM_USER_STAT . " WHERE `user` = ?", [$user]);
863  if (!$u) {
864  return;
865  }
866 
867  $when = $this->getOne("SELECT `when` FROM " . TF_FORUM_POST . " WHERE `user` = ? ORDER BY `when` DESC LIMIT 1",
868  [$user]);
869 
870  return $this->query("UPDATE " . TF_FORUM_USER_STAT . " SET `posts` = `posts` - 1, `user_last_post` = ? WHERE `user` = ?",
871  [$when, $user]);
872  }
873 
874  function getUserStat($u)
875  {
876  global $gConf;
877 
878  return $this->getRow("SELECT `posts`, `user_last_post` FROM " . TF_FORUM_USER_STAT . " WHERE `user` = ?", [$u]);
879  }
880 
881  function _cutLivePosts(&$a)
882  {
883  global $gConf;
884  $iNow = $this->getOne("SELECT UNIX_TIMESTAMP()");
885  foreach ($a as $k => $v) {
886  $a[$k]['post_text'] = orca_mb_substr($a[$k]['post_text'], 0, $gConf['live_tracker_desc_len']);
887  $a[$k]['sec'] = $iNow - $a[$k]['ts'];
888  }
889  }
890 
891  function getLivePosts($c, $ts)
892  {
893  global $gConf;
894 
895  $where = " `tt`.`topic_hidden` = '0' ";
896  $order = 'DESC';
897  if ($ts) {
898  $where .= " AND tp.`when` > $ts";
899  $order = 'ASC';
900  }
901 
902  $sql = "SELECT tp.`when` AS `ts`, `tp`.`user`, `tp`.`post_id`, `tp`.`post_text`, tt.`topic_id`, tt.`topic_uri`, `tt`.`topic_title`, tf.`forum_id`, tf.`forum_uri`, `tf`.`forum_title`, tc.`cat_id`, tc.`cat_uri`, `tc`.`cat_name` FROM " . TF_FORUM_POST . " AS tp INNER JOIN " . TF_FORUM_TOPIC . " AS tt USING(`topic_id`) INNER JOIN " . TF_FORUM . " AS tf ON (tf.`forum_id` = tp.`forum_id` AND `tt`.`forum_id` = tf.`forum_id` AND tf.`forum_type` = 'public') INNER JOIN " . TF_FORUM_CAT . " AS tc USING(`cat_id`) WHERE $where ORDER BY tp.`when` $order LIMIT $c";
903 
904  $a = $this->getAll($sql);
905  $this->_cutLivePosts($a);
906 
907  return $a;
908  }
909 
910  function getNewPostTs($ts)
911  {
912  return $this->getOne("SELECT `when` FROM " . TF_FORUM_POST . " WHERE `when` > ? ORDER BY `when` ASC LIMIT 1",
913  [$ts]);
914  }
915 
916  function getLogActionsCount($u, $sAction, $iPeriod = 0)
917  {
918  $sWhere = '';
919  if ($iPeriod) {
920  $sWhere = " AND `action_when` >= (UNIX_TIMESTAMP() - $iPeriod)";
921  }
922 
923  $sql = "SELECT COUNT(*) FROM " . TF_FORUM_ACTIONS_LOG . " WHERE `user_name` = ? AND `action_name` = ? " . $sWhere;
924 
925  return $this->getOne($sql, [$u, $sAction]);
926  }
927 
928  function logAction($id, $u, $action)
929  {
930  $sql = "INSERT INTO " . TF_FORUM_ACTIONS_LOG . " SET `user_name` = ?, `id` = ?, `action_name` = ?, `action_when` = UNIX_TIMESTAMP()";
931 
932  return $this->query($sql, [$u, $id, $action]);
933  }
934 
936  {
937  $sql = "UPDATE " . TF_FORUM_ATTACHMENTS . " SET `att_downloads` = `att_downloads` + 1 WHERE `att_hash` = ? LIMIT 1";
938 
939  return $this->query($sql, [$hash]);
940  }
941 
943  {
944  $sql = "SELECT `a`.`att_hash`, `a`.`att_name`, `a`.`att_type`, `a`.`att_size`, `a`.`att_downloads`, `p`.`forum_id` FROM " . TF_FORUM_ATTACHMENTS . " AS `a` LEFT JOIN " . TF_FORUM_POST . " AS `p` ON (`a`.`post_id` = `p`.`post_id`) WHERE `att_hash` = ? LIMIT 1";
945 
946  return $this->getRow($sql, [$hash]);
947  }
948 
949  function getAttachments($post_id)
950  {
951  $sql = "SELECT `att_hash`, `att_name`, `att_type`, `att_size`, `att_downloads` FROM " . TF_FORUM_ATTACHMENTS . " WHERE `post_id` = ?";
952 
953  return $this->getAll($sql, [$post_id]);
954  }
955 
956  function insertAttachment($post_id, $hash, $name, $type, $size)
957  {
958  return $this->query("INSERT INTO " . TF_FORUM_ATTACHMENTS . " SET `att_hash` = ?, `post_id` = ?, `att_name` = ?, `att_type` = ?, `att_when` = UNIX_TIMESTAMP(), `att_size` = ?",
959  [$hash, $post_id, $name, $type, $size]);
960  }
961 
962  function removeAttachments($post_id)
963  {
964  $ret = 0;
965  $attachments = $this->getAttachments($post_id);
966  foreach ($attachments as $file) {
967  $ret += $this->removeAttachment($file['att_hash']);
968  }
969 
970  return $ret;
971  }
972 
974  {
975  global $gConf;
976  $ret = $this->query("DELETE FROM " . TF_FORUM_ATTACHMENTS . " WHERE `att_hash` = ?", [$hash]);
977  @unlink($gConf['dir']['attachments'] . orca_build_path($hash) . $hash);
978 
979  return $ret;
980  }
981 
982  function genFileHash()
983  {
984  $sChars = "abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
985  do {
986  $s = '';
987  srand((double)microtime() * 1000000);
988  for ($i = 0; $i < 10; $i++) {
989  $x = mt_rand(0, strlen($sChars) - 1);
990  $s .= $sChars{$x};
991  }
992  } while ($this->getOne("SELECT `post_id` FROM " . TF_FORUM_ATTACHMENTS . " WHERE `att_hash` = ? LIMIT 1",
993  [$s]));
994 
995  return $s;
996  }
997 
998  function getSignature($user)
999  {
1000  return $this->getOne("SELECT `signature` FROM " . TF_FORUM_SIGNATURES . " WHERE `user` = ?", [$user]);
1001  }
1002 
1003  function updateSignature($signature, $user)
1004  {
1005  return $this->query("INSERT INTO " . TF_FORUM_SIGNATURES . " SET `user` = ?, `signature` = ?, `when` = UNIX_TIMESTAMP() ON DUPLICATE KEY UPDATE `signature` = ?, `when` = UNIX_TIMESTAMP()",
1006  [
1007  $user,
1008  $signature,
1009  $signature
1010  ]);
1011  }
1012 
1013  function isLocked($topic_id)
1014  {
1015  return $this->getOne("SELECT `topic_locked` FROM " . TF_FORUM_TOPIC . " WHERE `topic_id` = ? LIMIT 1",
1016  [$topic_id]);
1017  }
1018 
1019  function lock($topic_id, $user)
1020  {
1021  if (!$this->query("UPDATE " . TF_FORUM_TOPIC . " SET `topic_locked` = IF(`topic_locked`, 0, 1) WHERE `topic_id` = ? LIMIT 1",
1022  [$topic_id])
1023  ) {
1024  return false;
1025  }
1026 
1027  $this->logAction($topic_id, $user, TF_ACTION_LOCK);
1028 
1029  return true;
1030  }
1031 
1032  function renameUser($sUserOld, $sUserNew)
1033  {
1034  global $gConf;
1035 
1036  $iAffectedRows = 0;
1037 
1038  $aTables2Field = $this->_aUserTables2Field;
1039 
1040  if ($sUserNew == $gConf['anonymous']) {
1041  unset($aTables2Field['forum_actions_log']);
1042  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . "forum_flag` WHERE `user` = ?",
1043  [$sUserOld]);
1044  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . "forum_signatures` WHERE `user` = ?",
1045  [$sUserOld]);
1046  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . "forum_user_activity` WHERE `user` = ?",
1047  [$sUserOld]);
1048  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . "forum_user_stat` WHERE `user` = ?",
1049  [$sUserOld]);
1050  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . "forum_vote` WHERE `user_name` = ?",
1051  [$sUserOld]);
1052  }
1053 
1054  foreach ($aTables2Field as $sTable => $sField) {
1055  $iAffectedRows += $this->query("UPDATE `" . $gConf['db']['prefix'] . $sTable . "` SET `" . $sField . "` = ? WHERE `" . $sField . "` = ?",
1056  [$sUserNew, $sUserOld]);
1057  }
1058  $iAffectedRows += $this->query("UPDATE `" . $gConf['db']['prefix'] . "forum_topic` SET `last_post_user` = ? WHERE `last_post_user` = ?",
1059  [$sUserNew, $sUserOld]);
1060 
1061  return $iAffectedRows;
1062  }
1063 
1064  function deleteUser($sUser)
1065  {
1066  global $gConf;
1067 
1068  $iAffectedRows = 0;
1069  $iAffectedRowsForumPosts = 0;
1070 
1071  $aTables2Field = $this->_aUserTables2Field;
1072 
1073  unset($aTables2Field['forum_topic']);
1074  unset($aTables2Field['forum_post']);
1075 
1076  foreach ($aTables2Field as $sTable => $sField) {
1077  $iAffectedRows += $this->query("DELETE FROM `" . $gConf['db']['prefix'] . $sTable . "` WHERE `" . $sField . "` = ?",
1078  [$sUser]);
1079  }
1080 
1081  $aPosts = $this->getAll("SELECT `post_id` FROM " . TF_FORUM_POST . " WHERE `user` = ?", [$sUser]);
1082  foreach ($aPosts as $r) {
1083  $iAffectedRows += $this->deletePost($r['post_id']);
1084  }
1085 
1086  return $iAffectedRows;
1087  }
1088 }
DbForum\getPostWhen
getPostWhen($post_id)
Definition: DbForum.php:727
DbForum\getMyFlaggedTopics
getMyFlaggedTopics($u, $start=0, &$num=null)
Definition: DbForum.php:274
DbForum\hideTopic
hideTopic($is_hide, $topic_id, $user)
Definition: DbForum.php:434
DbForum\getForumsByCatUri
getForumsByCatUri($c)
Definition: DbForum.php:166
DbForum\userStatsDec
userStatsDec($user)
Definition: DbForum.php:860
DbForum\updateUserLastActivity
updateUserLastActivity($user)
Definition: DbForum.php:822
DbForum\getTopicByPostId
getTopicByPostId($post_id)
Definition: DbForum.php:763
DbForum\report
report($post_id, $u)
Definition: DbForum.php:770
ChDb\getAll
getAll($query, $bindings=[], $arr_type=PDO::FETCH_ASSOC)
Definition: ChDb.php:108
DbForum\moveTopic
moveTopic($topic_id, $forum_id, $old_forum_id)
Definition: DbForum.php:546
DbForum\insertAttachment
insertAttachment($post_id, $hash, $name, $type, $size)
Definition: DbForum.php:956
DbForum\deletePost
deletePost($post_id, $user='')
Definition: DbForum.php:469
DbForum\logAction
logAction($id, $u, $action)
Definition: DbForum.php:928
DbForum\getTopic
getTopic($t)
Definition: DbForum.php:325
TF_FORUM_POST
const TF_FORUM_POST
Definition: DbForum.php:10
TF_ACTION_STICK
const TF_ACTION_STICK
Definition: DbForum.php:21
DbForum\getTopicsNum
getTopicsNum($f)
Definition: DbForum.php:209
DbForum\stick
stick($topic_id, $user)
Definition: DbForum.php:421
DbForum\updateUserActivity
updateUserActivity($user)
Definition: DbForum.php:800
DbForum\getPostUser
getPostUser($p)
Definition: DbForum.php:341
$f
global $f
Definition: callback.php:13
DbForum\_cutPostText
_cutPostText(&$a, $sPostTextField='post_text')
Definition: DbForum.php:640
TF_FORUM_USER_ACT
const TF_FORUM_USER_ACT
Definition: DbForum.php:14
orca_mb_substr
orca_mb_substr($s, $iStart, $iLen)
Definition: util.inc.php:296
TF_FORUM_VOTE
const TF_FORUM_VOTE
Definition: DbForum.php:12
DbForum\getHiddenTopics
getHiddenTopics($u, $start=0, &$num=null)
Definition: DbForum.php:251
DbForum\lock
lock($topic_id, $user)
Definition: DbForum.php:1019
ChDb\getOne
getOne($query, $bindings=[])
Definition: ChDb.php:32
$ret
$ret
Definition: index.php:39
DbForum\getPostsBy
getPostsBy($u, $sName, $sVal, $sOrder='ASC', $iLimit=0)
Definition: DbForum.php:623
orca_build_path
orca_build_path($s)
Definition: util.inc.php:278
ChDb\getLastId
getLastId()
Definition: ChDb.php:83
DbForum\_deletePostWithoutUpdatingTopic
_deletePostWithoutUpdatingTopic($post_id, $forum_id)
Definition: DbForum.php:499
DbForum\hidePost
hidePost($is_hide, $post_id, $user)
Definition: DbForum.php:447
DbForum\getForumByUri
getForumByUri($f)
Definition: DbForum.php:178
DbForum\removeAttachments
removeAttachments($post_id)
Definition: DbForum.php:962
$sSQL
$sSQL
Definition: ads_get_list.php:11
$hash
$hash
Definition: Filter.ExtractStyleBlocks.txt:46
TF_ACTION_EDIT_POST
const TF_ACTION_EDIT_POST
Definition: DbForum.php:29
php
TF_FORUM_USER_STAT
const TF_FORUM_USER_STAT
Definition: DbForum.php:15
DbForum
Definition: DbForum.php:35
DbForum\userStatsInc
userStatsInc($user, $when)
Definition: DbForum.php:848
DbForum\getTopicBy
getTopicBy($sName, $sVal)
Definition: DbForum.php:335
DbForum\getForumByTopicId
getForumByTopicId($topic_id)
Definition: DbForum.php:197
DbForum\getCategs
getCategs()
Definition: DbForum.php:143
DbForum\getNewPostTs
getNewPostTs($ts)
Definition: DbForum.php:910
DbForum\newTopic
newTopic($f, $title, $text, $sticky, $user, $uri)
Definition: DbForum.php:368
DbForum\insertVote
insertVote($post_id, $u, $vote)
Definition: DbForum.php:738
TF_ACTION_UNHIDE_POST
const TF_ACTION_UNHIDE_POST
Definition: DbForum.php:26
TF_FORUM_SIGNATURES
const TF_FORUM_SIGNATURES
Definition: DbForum.php:18
DbForum\getPostsByUri
getPostsByUri($t, $u)
Definition: DbForum.php:618
TF_ACTION_LOCK
const TF_ACTION_LOCK
Definition: DbForum.php:22
DbForum\removeAttachment
removeAttachment($hash)
Definition: DbForum.php:973
DbForum\getUserLastOnlineTime
getUserLastOnlineTime($user)
Definition: DbForum.php:840
DbForum\renameUser
renameUser($sUserOld, $sUserNew)
Definition: DbForum.php:1032
TF_ACTION_DEL_TOPIC
const TF_ACTION_DEL_TOPIC
Definition: DbForum.php:27
DbForum\getUserPosts
getUserPosts($u)
Definition: DbForum.php:732
DbForum\_getTopicsNumWithCondition
_getTopicsNumWithCondition($sWhere='', $aBindings=[])
Definition: DbForum.php:219
DbForum\flag
flag($topic_id, $u)
Definition: DbForum.php:786
DbForum\updateAttachmentDownloads
updateAttachmentDownloads($hash)
Definition: DbForum.php:935
TF_ACTION_UNHIDE_TOPIC
const TF_ACTION_UNHIDE_TOPIC
Definition: DbForum.php:25
DbForum\getTopicByUri
getTopicByUri($t)
Definition: DbForum.php:330
DbForum\getAttachments
getAttachments($post_id)
Definition: DbForum.php:949
TF_ACTION_HIDE_TOPIC
const TF_ACTION_HIDE_TOPIC
Definition: DbForum.php:23
DbForum\getSubscribersToTopic
getSubscribersToTopic($iTopicId)
Definition: DbForum.php:297
DbForum\getLivePosts
getLivePosts($c, $ts)
Definition: DbForum.php:891
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
TF_FORUM_FLAG
const TF_FORUM_FLAG
Definition: DbForum.php:13
DbForum\getLogActionsCount
getLogActionsCount($u, $sAction, $iPeriod=0)
Definition: DbForum.php:916
DbForum\isLocked
isLocked($topic_id)
Definition: DbForum.php:1013
DbForum\isFlagged
isFlagged($topic_id, $u)
Definition: DbForum.php:779
$last
$last
Definition: index.php:25
time
that in the case of a Adaptation or at a minimum such credit will if a credit for all contributing authors of the Adaptation or Collection then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors For the avoidance of You may only use the credit required by this Section for the purpose of attribution in the manner set out above by exercising Your rights under this You may not implicitly or explicitly assert or imply any connection sponsorship or endorsement by the Original Licensor and or Attribution as of You or Your use of the without the express prior written permission of the Original Licensor and or Attribution Parties Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable if You Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or You must not modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author s honor or reputation Licensor agrees that in those in which any exercise of the right granted in modification or other derogatory action prejudicial to the Original Author s honor and the Licensor will waive or not as this to the fullest extent permitted by the applicable national to enable You to reasonably exercise Your right under Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN LICENSOR OFFERS THE WORK AS IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE STATUTORY OR WITHOUT WARRANTIES OF FITNESS FOR A PARTICULAR OR THE ABSENCE OF LATENT OR OTHER OR THE PRESENCE OF ABSENCE OF WHETHER OR NOT DISCOVERABLE SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED SO SUCH EXCLUSION MAY NOT APPLY TO YOU Limitation on Liability EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES Termination This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License Individuals or entities who have received Adaptations or Collections from You under this will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses and will survive any termination of this License Subject to the above terms and the license granted here is Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time
Definition: license.txt:56
TF_ACTION_RESET_VOTES
const TF_ACTION_RESET_VOTES
Definition: DbForum.php:30
TF_ACTION_REPORT
const TF_ACTION_REPORT
Definition: DbForum.php:20
DbForum\getMyThreadsTopics
getMyThreadsTopics($u, $start=0, &$num=null)
Definition: DbForum.php:302
ChDb\getRow
getRow($query, $bindings=[], $arr_type=PDO::FETCH_ASSOC)
Definition: ChDb.php:20
TF_ACTION_HIDE_POST
const TF_ACTION_HIDE_POST
Definition: DbForum.php:24
DbForum\getRecentTopics
getRecentTopics($start)
Definition: DbForum.php:233
DbForum\getCat
getCat($id)
Definition: DbForum.php:153
ChDb\query
query($query, $bindings=[])
Definition: ChDb.php:95
DbForum\deleteUser
deleteUser($sUser)
Definition: DbForum.php:1064
ChDb
Definition: ChDb.php:11
DbForum\getForum
getForum($f)
Definition: DbForum.php:173
DbForum\getPostIds
getPostIds($p)
Definition: DbForum.php:203
DbForum\delTopic
delTopic($topic_id, $user)
Definition: DbForum.php:519
$action
$action
Definition: index.php:66
$s
$s
Definition: embed.php:13
TF_FORUM
const TF_FORUM
Definition: DbForum.php:8
TF_FORUM_CAT
const TF_FORUM_CAT
Definition: DbForum.php:9
DbForum\getForumBy
getForumBy($sName, $sVal)
Definition: DbForum.php:183
DbForum\genFileHash
genFileHash()
Definition: DbForum.php:982
DbForum\getSignature
getSignature($user)
Definition: DbForum.php:998
TF_ACTION_DEL_POST
const TF_ACTION_DEL_POST
Definition: DbForum.php:28
DbForum\getUserStat
getUserStat($u)
Definition: DbForum.php:874
DbForum\getAllPostsList
getAllPostsList($sort, $limit=10)
Definition: DbForum.php:680
DbForum\updateSignature
updateSignature($signature, $user)
Definition: DbForum.php:1003
DbForum\_cutLivePosts
_cutLivePosts(&$a)
Definition: DbForum.php:881
DbForum\getForums
getForums($c)
Definition: DbForum.php:159
DbForum\getCatTitle
getCatTitle($id)
Definition: DbForum.php:148
$gConf
global $gConf
Definition: header.inc.php:8
TF_FORUM_TOPIC
const TF_FORUM_TOPIC
Definition: DbForum.php:11
DbForum\getUserPostsList
getUserPostsList($user, $sort, $limit=10)
Definition: DbForum.php:650
DbForum\getTopicDesc
getTopicDesc($t)
Definition: DbForum.php:355
$sAction
$sAction
Definition: categories.php:274
DbForum\getTopicPost
getTopicPost($t, $x='last')
Definition: DbForum.php:346
DbForum\getAttachment
getAttachment($hash)
Definition: DbForum.php:942
DbForum\getUserLastActivity
getUserLastActivity($user)
Definition: DbForum.php:833
DbForum\editPost
editPost($p, $text, $user)
Definition: DbForum.php:361
TF_FORUM_ATTACHMENTS
const TF_FORUM_ATTACHMENTS
Definition: DbForum.php:17
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
DbForum\postReply
postReply($forum_id, $topic_id, $text, $user)
Definition: DbForum.php:573
DbForum\getForumByPostId
getForumByPostId($post_id)
Definition: DbForum.php:191
$sName
$sName
Definition: ChWsbAdminTools.php:853
DbForum\getRecentTopicsNum
getRecentTopicsNum()
Definition: DbForum.php:214
DbForum\unflag
unflag($topic_id, $u)
Definition: DbForum.php:793
DbForum\getPost
getPost($post_id, $u)
Definition: DbForum.php:710
DbForum\searchMessages
searchMessages($s, $u, $f, $type, $posts, $start, &$num=null)
Definition: DbForum.php:47
DbForum\getTopics
getTopics($f, $start)
Definition: DbForum.php:224
DbForum\getPosts
getPosts($t, $u, $sOrder='ASC', $iLimit=0)
Definition: DbForum.php:613
DbForum\$_aUserTables2Field
$_aUserTables2Field
Definition: DbForum.php:36
$sUser
$sUser
Definition: r.php:13
TF_FORUM_ACTIONS_LOG
const TF_FORUM_ACTIONS_LOG
Definition: DbForum.php:16