Go to the documentation of this file.
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`');
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');
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',
51 $order_by =
'ORDER BY `last_post_when` DESC';
57 $sCalcFoundRows =
'SQL_CALC_FOUND_ROWS';
68 if (
$gConf[
'fulltext_search']) {
71 if (
'msgs' == $type) {
72 $match =
"MATCH (`post_text`) AGAINST ('$s') > 1";
75 $match =
"MATCH (`topic_title`) AGAINST ('$s') > 1";
80 $order_by =
'ORDER BY `last_post_when` DESC';
81 $sql_w .=
" AND $match ";
85 $s = preg_replace(
'/\s+/',
'%',
$s);
88 $sql_w .=
" AND `post_text` LIKE '%$s%' ";
92 $sql_w .=
" AND `topic_title` LIKE '%$s%' ";
94 $order_by =
'ORDER BY `last_post_when` DESC';
99 $u = preg_replace(
'/\s+/',
'%', $u);
100 if (
'msgs' == $type) {
101 $sql_w .=
" AND `user` LIKE '$u%' ";
103 $sql_w .=
" AND `first_post_user` LIKE '$u%' ";
108 $sql_w .=
" AND t3.`forum_id` = '$f' ";
111 if (
'msgs' == $type) {
113 $fields .=
', `post_text` ';
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
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
122 LIMIT $start, {$gConf['topics_per_page']}";
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
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
131 LIMIT $start, {$gConf['topics_per_page']}";
137 $num = $this->
getOne(
'SELECT FOUND_ROWS()');
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");
150 return $this->
getOne(
"SELECT `cat_name` FROM " .
TF_FORUM_CAT .
" WHERE `cat_id` = ?", [$id]);
155 return $this->
getRow(
"SELECT `cat_id`, `cat_uri`, `cat_name`, `cat_order`, `cat_expanded` FROM " .
TF_FORUM_CAT .
" WHERE `cat_id` = ?",
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');
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');
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",
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",
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",
205 return $this->
getRow(
"SELECT `forum_id`, `topic_id` FROM " .
TF_FORUM_POST .
" WHERE `post_id` = ? LIMIT 1",
221 return $this->
getOne(
"SELECT COUNT(`topic_id`) FROM " .
TF_FORUM_TOPIC .
" WHERE 1 $sWhere", $aBindings);
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']}";
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`
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']}");
255 $sCalcFoundRows =
'';
257 $sCalcFoundRows =
'SQL_CALC_FOUND_ROWS';
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']}";
266 $aRows = $this->
getAll($sql);
268 $num = $this->
getOne(
'SELECT FOUND_ROWS()');
278 $sCalcFoundRows =
'';
280 $sCalcFoundRows =
'SQL_CALC_FOUND_ROWS';
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']}";
289 $aRows = $this->
getAll($sql, [$u]);
291 $num = $this->
getOne(
'SELECT FOUND_ROWS()');
299 return $this->
getAll(
"SELECT `user` FROM " .
TF_FORUM_FLAG .
" WHERE `topic_id` = ?", [$iTopicId]);
306 $sCalcFoundRows =
'';
308 $sCalcFoundRows =
'SQL_CALC_FOUND_ROWS';
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']}";
317 $aRows = $this->
getAll($sql, [$u]);
319 $num = $this->
getOne(
'SELECT FOUND_ROWS()');
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",
343 return $this->
getOne(
"SELECT `user` FROM " .
TF_FORUM_POST .
" WHERE `post_id` = ?", [$p]);
349 $sOrderDir = (
'last' == $x ?
'DESC' :
'ASC');
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",
357 return $this->
getOne(
"SELECT `post_text` FROM " .
TF_FORUM_POST .
" WHERE `topic_id` = ? ORDER BY `when` ASC LIMIT 1",
365 return $this->
query(
"UPDATE " .
TF_FORUM_POST .
" SET `post_text` = ? WHERE post_id = ?", [$text, $p]);
372 $sticky = $sticky ? $ts : 0;
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` = ?",
393 if (!($topic_id = $this->
getOne(
"SELECT `topic_id` FROM " .
TF_FORUM_TOPIC .
" WHERE `forum_id` = ? AND `when` = ?",
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])
409 if (!$this->
query(
"UPDATE" .
TF_FORUM .
" SET `forum_posts` = `forum_posts` + 1, `forum_topics` = `forum_topics` + 1, `forum_last` = ? WHERE `forum_id` = ?",
423 if (!$this->
query(
"UPDATE" .
TF_FORUM_TOPIC .
" SET `topic_sticky` = IF(`topic_sticky`, 0, ?) WHERE `topic_id` = ?",
436 if (!$this->
query(
"UPDATE" .
TF_FORUM_TOPIC .
" SET `topic_hidden` = '" . ($is_hide ? 1 : 0) .
"' WHERE `topic_id` = ?",
449 if (!$this->
query(
"UPDATE" .
TF_FORUM_POST .
" SET `hidden` = '" . ($is_hide ? 1 : 0) .
"' WHERE `post_id` = ?",
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",
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']])
492 if (0 == $this->
getOne(
"SELECT COUNT(*) FROM " .
TF_FORUM_POST .
" WHERE `topic_id` = ?", [$a[
'topic_id']])) {
493 $this->
delTopic($a[
'topic_id'],
'');
504 if (!$this->
query(
"DELETE FROM " .
TF_FORUM_POST .
" WHERE `post_id` = ?", [$post_id])) {
509 $this->
query(
"UPDATE" .
TF_FORUM .
" SET `forum_posts` = `forum_posts` - 1 WHERE `forum_id` = ?", [$forum_id]);
523 if (!$this->
query(
"DELETE FROM " .
TF_FORUM_TOPIC .
" WHERE `topic_id` = ?", [$topic_id])) {
530 $this->
query(
"UPDATE " .
TF_FORUM .
" SET `forum_topics` = `forum_topics` - 1 WHERE `forum_id` = ?",
537 $sql =
"SELECT `post_id` FROM " .
TF_FORUM_POST .
" WHERE `topic_id` = ?";
538 $p = $this->
getAll($sql, [$topic_id]);
549 [$forum_id, $topic_id])
560 $this->
query(
"UPDATE " .
TF_FORUM_POST .
" SET `forum_id` = ? WHERE `topic_id` = ?", [$forum_id, $topic_id]);
563 $this->
query(
"UPDATE " .
TF_FORUM .
" SET `forum_topics` = `forum_topics` - 1, `forum_posts` = `forum_posts` - {$t['topic_posts']} WHERE `forum_id` = ?",
567 $this->
query(
"UPDATE " .
TF_FORUM .
" SET `forum_topics` = `forum_topics` + 1, `forum_posts` = `forum_posts` + {$t['topic_posts']} WHERE `forum_id` = ?",
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])
584 $iReplyId = $this->
getOne(
"SELECT LAST_INSERT_ID()");
587 if (!$this->
query(
"UPDATE" .
TF_FORUM .
" SET `forum_posts` = `forum_posts` + 1, `forum_last` = ? WHERE `forum_id` = ?",
597 if (!$this->
query(
"UPDATE" .
TF_FORUM_TOPIC .
" SET `topic_posts` = `topic_posts` + 1, `last_post_user` = ?, `last_post_when` = ? WHERE `topic_id` = ?",
613 function getPosts($t, $u, $sOrder =
'ASC', $iLimit = 0)
615 return $this->
getPostsBy($u,
'`ft`.`topic_id`', $t, $sOrder, $iLimit);
620 return $this->
getPostsBy($u,
'`ft`.`topic_uri`', $t);
627 $sql_add1 =
", '-1' AS `voted`, 0 as `vote_user_point` ";
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`) ";
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 :
'');
637 return $this->
getAll($sql, [$sVal]);
642 foreach ($a
as $k => $v) {
643 if ($sPostTextField) {
644 $a[$k][$sPostTextField] =
orca_mb_substr($a[$k][$sPostTextField], 0, 255);
656 $order_by =
" t1.`votes` DESC ";
659 $order_by =
" RAND() ";
662 $order_by =
" t1.`when` DESC ";
666 SELECT t1.`forum_id`, t1.`topic_id`, t2.`topic_uri`, t2.`topic_title`, t1.`post_id`, t1.`user`, `post_text`, t1.`when`
669 ON (t1.`topic_id` = t2.`topic_id`)
670 WHERE t1.`user` = ? AND `t2`.`topic_hidden` = '0'
671 ORDER BY " . $order_by .
"
674 $a = $this->
getAll($sql, [$user]);
686 $order_by =
" t1.`votes` DESC ";
689 $order_by =
" RAND() ";
692 $order_by =
" t1.`when` DESC ";
696 SELECT t1.`forum_id`, t1.`topic_id`, t2.`topic_uri`, t2.`topic_title`, t1.`post_id`, t1.`user`, `post_text`, t1.`when`
699 ON (t1.`topic_id` = t2.`topic_id`)
700 WHERE `t2`.`topic_hidden` = '0'
701 ORDER BY " . $order_by .
"
714 $sql_add1 =
", '-1' AS `voted`, 0 as `vote_user_point` ";
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`) ";
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";
724 return $this->
getRow($sql, [$post_id]);
729 return $this->
getOne(
"SELECT `when` FROM " .
TF_FORUM_POST .
" WHERE `post_id` = ? LIMIT 1", [$post_id]);
740 $isOwnPost = $this->
getOne(
"SELECT `post_id` FROM " .
TF_FORUM_POST .
" WHERE `user` = ? AND `post_id` = ? LIMIT 1",
746 $vote_prev = $this->
getOne(
"SELECT `vote_point` FROM " .
TF_FORUM_VOTE .
" WHERE `user_name` = ? AND `post_id` = ?",
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])) {
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",
765 $sql =
"SELECT `topic_id`, `forum_id` FROM " .
TF_FORUM_POST .
" WHERE `post_id` = ?";
767 return $this->
getRow($sql, [$post_id]);
774 $sql =
"UPDATE " .
TF_FORUM_POST .
" SET `reports` = `reports` + 1 WHERE `post_id` = ? LIMIT 1";
776 return $this->
query($sql, [$post_id]);
781 $sql =
"SELECT `topic_id` FROM " .
TF_FORUM_FLAG .
" WHERE `user` = ? AND `topic_id` = ?";
783 return $this->
getOne($sql, [$u, $topic_id]);
788 $sql =
"INSERT INTO " .
TF_FORUM_FLAG .
" SET `user` = ?, `topic_id` = ?, `when` = UNIX_TIMESTAMP()";
790 return $this->
query($sql, [$u, $topic_id]);
795 $sql =
"DELETE FROM " .
TF_FORUM_FLAG .
" WHERE `user` = ? AND `topic_id` = ? LIMIT 1";
797 return $this->
query($sql, [$u, $topic_id]);
804 $sql =
"SELECT `act_current` FROM " .
TF_FORUM_USER_ACT .
" WHERE `user` = ? LIMIT 1";
805 $current = (int)$this->
getOne($sql, [$user]);
811 $sql =
"UPDATE " .
TF_FORUM_USER_ACT .
" SET `act_current`='" .
time() .
"', `act_last` = '$current' WHERE `user` = ?";
813 $sql =
"INSERT INTO " .
TF_FORUM_USER_ACT .
" (`user`,`act_current`,`act_last`) VALUES (?, '" .
time() .
"', '$current')";
819 return $this->
query($sql, [$user]);
828 $sql =
"UPDATE " .
TF_FORUM_USER_ACT .
" SET `act_current`= ?, `act_last` = ? WHERE `user` = ?";
830 return $this->
query($sql, [$t, $t, $user]);
835 $sql =
"SELECT `act_last` FROM " .
TF_FORUM_USER_ACT .
" WHERE `user` = ? LIMIT 1";
837 return (
int)$this->
getOne($sql, [$user]);
844 return $this->
getOne(
"SELECT `act_current` AS `act_current` FROM " .
TF_FORUM_USER_ACT .
" WHERE `user` = ? LIMIT 1",
852 $this->
query(
"UPDATE " .
TF_FORUM_USER_STAT .
" SET `posts` = `posts` + 1, `user_last_post` = ? WHERE `user` = ?",
867 $when = $this->
getOne(
"SELECT `when` FROM " .
TF_FORUM_POST .
" WHERE `user` = ? ORDER BY `when` DESC LIMIT 1",
870 return $this->
query(
"UPDATE " .
TF_FORUM_USER_STAT .
" SET `posts` = `posts` - 1, `user_last_post` = ? WHERE `user` = ?",
884 $iNow = $this->
getOne(
"SELECT UNIX_TIMESTAMP()");
885 foreach ($a
as $k => $v) {
887 $a[$k][
'sec'] = $iNow - $a[$k][
'ts'];
895 $where =
" `tt`.`topic_hidden` = '0' ";
898 $where .=
" AND tp.`when` > $ts";
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";
912 return $this->
getOne(
"SELECT `when` FROM " .
TF_FORUM_POST .
" WHERE `when` > ? ORDER BY `when` ASC LIMIT 1",
920 $sWhere =
" AND `action_when` >= (UNIX_TIMESTAMP() - $iPeriod)";
923 $sql =
"SELECT COUNT(*) FROM " .
TF_FORUM_ACTIONS_LOG .
" WHERE `user_name` = ? AND `action_name` = ? " . $sWhere;
930 $sql =
"INSERT INTO " .
TF_FORUM_ACTIONS_LOG .
" SET `user_name` = ?, `id` = ?, `action_name` = ?, `action_when` = UNIX_TIMESTAMP()";
937 $sql =
"UPDATE " .
TF_FORUM_ATTACHMENTS .
" SET `att_downloads` = `att_downloads` + 1 WHERE `att_hash` = ? LIMIT 1";
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";
951 $sql =
"SELECT `att_hash`, `att_name`, `att_type`, `att_size`, `att_downloads` FROM " .
TF_FORUM_ATTACHMENTS .
" WHERE `post_id` = ?";
953 return $this->
getAll($sql, [$post_id]);
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]);
966 foreach ($attachments
as $file) {
984 $sChars =
"abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
987 srand((
double)microtime() * 1000000);
988 for ($i = 0; $i < 10; $i++) {
989 $x = mt_rand(0, strlen($sChars) - 1);
1005 return $this->
query(
"INSERT INTO " .
TF_FORUM_SIGNATURES .
" SET `user` = ?, `signature` = ?, `when` = UNIX_TIMESTAMP() ON DUPLICATE KEY UPDATE `signature` = ?, `when` = UNIX_TIMESTAMP()",
1015 return $this->
getOne(
"SELECT `topic_locked` FROM " .
TF_FORUM_TOPIC .
" WHERE `topic_id` = ? LIMIT 1",
1021 if (!$this->
query(
"UPDATE " .
TF_FORUM_TOPIC .
" SET `topic_locked` = IF(`topic_locked`, 0, 1) WHERE `topic_id` = ? LIMIT 1",
1040 if ($sUserNew ==
$gConf[
'anonymous']) {
1041 unset($aTables2Field[
'forum_actions_log']);
1042 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] .
"forum_flag` WHERE `user` = ?",
1044 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] .
"forum_signatures` WHERE `user` = ?",
1046 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] .
"forum_user_activity` WHERE `user` = ?",
1048 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] .
"forum_user_stat` WHERE `user` = ?",
1050 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] .
"forum_vote` WHERE `user_name` = ?",
1054 foreach ($aTables2Field
as $sTable => $sField) {
1055 $iAffectedRows += $this->
query(
"UPDATE `" . $gConf[
'db'][
'prefix'] . $sTable .
"` SET `" . $sField .
"` = ? WHERE `" . $sField .
"` = ?",
1056 [$sUserNew, $sUserOld]);
1058 $iAffectedRows += $this->
query(
"UPDATE `" . $gConf[
'db'][
'prefix'] .
"forum_topic` SET `last_post_user` = ? WHERE `last_post_user` = ?",
1059 [$sUserNew, $sUserOld]);
1061 return $iAffectedRows;
1069 $iAffectedRowsForumPosts = 0;
1073 unset($aTables2Field[
'forum_topic']);
1074 unset($aTables2Field[
'forum_post']);
1076 foreach ($aTables2Field
as $sTable => $sField) {
1077 $iAffectedRows += $this->
query(
"DELETE FROM `" . $gConf[
'db'][
'prefix'] . $sTable .
"` WHERE `" . $sField .
"` = ?",
1082 foreach ($aPosts
as $r) {
1083 $iAffectedRows += $this->
deletePost($r[
'post_id']);
1086 return $iAffectedRows;
getMyFlaggedTopics($u, $start=0, &$num=null)
hideTopic($is_hide, $topic_id, $user)
updateUserLastActivity($user)
getTopicByPostId($post_id)
getAll($query, $bindings=[], $arr_type=PDO::FETCH_ASSOC)
moveTopic($topic_id, $forum_id, $old_forum_id)
insertAttachment($post_id, $hash, $name, $type, $size)
deletePost($post_id, $user='')
logAction($id, $u, $action)
updateUserActivity($user)
_cutPostText(&$a, $sPostTextField='post_text')
orca_mb_substr($s, $iStart, $iLen)
getHiddenTopics($u, $start=0, &$num=null)
getOne($query, $bindings=[])
getPostsBy($u, $sName, $sVal, $sOrder='ASC', $iLimit=0)
_deletePostWithoutUpdatingTopic($post_id, $forum_id)
hidePost($is_hide, $post_id, $user)
removeAttachments($post_id)
const TF_ACTION_EDIT_POST
userStatsInc($user, $when)
getTopicBy($sName, $sVal)
getForumByTopicId($topic_id)
newTopic($f, $title, $text, $sticky, $user, $uri)
insertVote($post_id, $u, $vote)
const TF_ACTION_UNHIDE_POST
const TF_FORUM_SIGNATURES
getUserLastOnlineTime($user)
renameUser($sUserOld, $sUserNew)
const TF_ACTION_DEL_TOPIC
_getTopicsNumWithCondition($sWhere='', $aBindings=[])
updateAttachmentDownloads($hash)
const TF_ACTION_UNHIDE_TOPIC
const TF_ACTION_HIDE_TOPIC
getSubscribersToTopic($iTopicId)
getLogActionsCount($u, $sAction, $iPeriod=0)
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
const TF_ACTION_RESET_VOTES
getMyThreadsTopics($u, $start=0, &$num=null)
getRow($query, $bindings=[], $arr_type=PDO::FETCH_ASSOC)
const TF_ACTION_HIDE_POST
query($query, $bindings=[])
delTopic($topic_id, $user)
getForumBy($sName, $sVal)
getAllPostsList($sort, $limit=10)
updateSignature($signature, $user)
getUserPostsList($user, $sort, $limit=10)
getTopicPost($t, $x='last')
getUserLastActivity($user)
editPost($p, $text, $user)
const TF_FORUM_ATTACHMENTS
postReply($forum_id, $topic_id, $text, $user)
getForumByPostId($post_id)
searchMessages($s, $u, $f, $type, $posts, $start, &$num=null)
getPosts($t, $u, $sOrder='ASC', $iLimit=0)
const TF_FORUM_ACTIONS_LOG