Просмотр файла fetchposts.php

Размер файла: 7.71Kb
  1. <?php
  2. /***************************************************************************
  3. * mides.ru
  4. * -------------------
  5. * fetchposts.php © MyFORUM.us - MANЬЯК
  6. ***************************************************************************/
  7.  
  8. if ( !defined('IN_PHPBB') )
  9. {
  10. die("Hacking attempt");
  11. }
  12.  
  13. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  14. set_magic_quotes_runtime(0);
  15.  
  16. include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx);
  17.  
  18.  
  19. function phpbb_fetch_posts($forum_sql, $number_of_posts, $text_length)
  20. {
  21. global $db, $board_config;
  22.  
  23. $sql = 'SELECT
  24. t.topic_id,
  25. t.topic_time,
  26. t.topic_title,
  27. pt.post_text,
  28. u.username,
  29. u.user_id,
  30. t.topic_replies,
  31. pt.bbcode_uid,
  32. t.forum_id,
  33. t.topic_poster,
  34. t.topic_first_post_id,
  35. t.topic_status,
  36. pt.post_id,
  37. p.post_id,
  38. p.enable_smilies
  39. FROM
  40. ' . TOPICS_TABLE . ' AS t,
  41. ' . USERS_TABLE . ' AS u,
  42. ' . POSTS_TEXT_TABLE . ' AS pt,
  43. ' . POSTS_TABLE . ' AS p
  44. WHERE
  45. t.forum_id IN (' . $forum_sql . ') AND
  46. t.topic_time <= ' . time() . ' AND
  47. t.topic_poster = u.user_id AND
  48. t.topic_first_post_id = pt.post_id AND
  49. t.topic_first_post_id = p.post_id AND
  50. t.topic_status <> 2
  51. ORDER BY
  52. t.topic_time DESC';
  53. if ($number_of_posts != 0)
  54. {
  55. $sql .= '
  56. LIMIT
  57. 0,' . $number_of_posts;
  58. }
  59. //
  60. // query the database
  61. //
  62. if(!($result = $db->sql_query($sql)))
  63. {
  64. message_die(GENERAL_ERROR, 'Could not query announcements information', '', __LINE__, __FILE__, $sql);
  65. }
  66. //
  67. // fetch all postings
  68. //
  69. $posts = array();
  70. if ($row = $db->sql_fetchrow($result))
  71. {
  72. $i = 0;
  73. do
  74. {
  75. $posts[$i]['bbcode_uid'] = $row['bbcode_uid'];
  76. $posts[$i]['enable_smilies'] = $row['enable_smilies'];
  77. $posts[$i]['post_text'] = $row['post_text'];
  78. $posts[$i]['topic_id'] = $row['topic_id'];
  79. $posts[$i]['topic_replies'] = $row['topic_replies'];
  80. $posts[$i]['topic_time'] = create_date($board_config['default_dateformat'], $row['topic_time'], $board_config['board_timezone']);
  81. $posts[$i]['topic_title'] = $row['topic_title'];
  82. $posts[$i]['user_id'] = $row['user_id'];
  83. $posts[$i]['username'] = $row['username'];
  84.  
  85. //
  86. // do a little magic
  87. // note: part of this comes from mds' news script and some additional magics from Smartor
  88. //
  89. stripslashes($posts[$i]['post_text']);
  90. if (($text_length == 0) or (strlen($posts[$i]['post_text']) <= $text_length))
  91. {
  92. $posts[$i]['post_text'] = bbencode_second_pass($posts[$i]['post_text'], $posts[$i]['bbcode_uid']);
  93. $posts[$i]['striped'] = 0;
  94. }
  95. else // strip text for news
  96. {
  97. $posts[$i]['post_text'] = bbencode_strip($posts[$i]['post_text'], $posts[$i]['bbcode_uid']);
  98. $posts[$i]['post_text'] = substr($posts[$i]['post_text'], 0, $text_length) . '...';
  99. $posts[$i]['striped'] = 1;
  100. }
  101. //
  102. // Smilies
  103. //
  104. if ($posts[$i]['enable_smilies'] == 1)
  105. {
  106. $posts[$i]['post_text'] = smilies_pass($posts[$i]['post_text']);
  107. }
  108. $posts[$i]['post_text'] = make_clickable($posts[$i]['post_text']);
  109. //
  110. // define censored word matches
  111. //
  112. $orig_word = array();
  113. $replacement_word = array();
  114. obtain_word_list($orig_word, $replacement_word);
  115. //
  116. // censor text and title
  117. //
  118. if (count($orig_word))
  119.  
  120. $posts[$i]['post_text'] = nl2br($posts[$i]['post_text']);
  121. $i++;
  122. }
  123. while ($row = $db->sql_fetchrow($result));
  124. }
  125. //
  126. // return the result
  127. //
  128. return $posts;
  129. } // phpbb_fetch_posts
  130.  
  131. function phpbb_fetch_poll($forum_sql)
  132. {
  133. global $db;
  134.  
  135. $sql = 'SELECT
  136. t.*,
  137. vd.*
  138. FROM
  139. ' . TOPICS_TABLE . ' AS t,
  140. ' . VOTE_DESC_TABLE . ' AS vd
  141. WHERE
  142. t.forum_id IN (' . $forum_sql . ') AND
  143. t.topic_status <> 1 AND
  144. t.topic_status <> 2 AND
  145. t.topic_vote = 1 AND
  146. t.topic_id = vd.topic_id
  147. ORDER BY
  148. t.topic_time DESC
  149. LIMIT
  150. 0,1';
  151.  
  152. if (!$query = $db->sql_query($sql))
  153. {
  154. message_die(GENERAL_ERROR, 'Could not query poll information', '', __LINE__, __FILE__, $sql);
  155. }
  156.  
  157. $result = $db->sql_fetchrow($query);
  158.  
  159. if ($result)
  160. {
  161. $sql = 'SELECT
  162. *
  163. FROM
  164. ' . VOTE_RESULTS_TABLE . '
  165. WHERE
  166. vote_id = ' . $result['vote_id'] . '
  167. ORDER BY
  168. vote_option_id';
  169.  
  170. if (!$query = $db->sql_query($sql))
  171. {
  172. message_die(GENERAL_ERROR, 'Could not query vote result information', '', __LINE__, __FILE__, $sql);
  173. }
  174.  
  175. while ($row = $db->sql_fetchrow($query))
  176. {
  177. $result['options'][] = $row;
  178. }
  179. }
  180.  
  181. return $result;
  182. } // end func phpbb_fetch_poll
  183.  
  184. //
  185. // Function strip all BBcodes (borrowed from Mouse Hover Topic Preview MOD)
  186. //
  187. function bbencode_strip($text, $uid)
  188. {
  189. // pad it with a space so we can distinguish between FALSE and matching the 1st char (index 0).
  190. // This is important; bbencode_quote(), bbencode_list(), and bbencode_code() all depend on it.
  191. $text = " " . $text;
  192.  
  193. // First: If there isn't a "[" and a "]" in the message, don't bother.
  194. if (! (strpos($text, "[") && strpos($text, "]")) )
  195. {
  196. // Remove padding, return.
  197. $text = substr($text, 1);
  198. return $text;
  199. }
  200.  
  201. // [CODE] and [ /CODE ] for posting code (HTML, PHP, C etc etc) in your posts.
  202. $text = str_replace("[code:1:$uid]","", $text);
  203. $text = str_replace("[/code:1:$uid]", "", $text);
  204. $text = str_replace("[code:$uid]", "", $text);
  205. $text = str_replace("[/code:$uid]", "", $text);
  206.  
  207. // [QUOTE] and [/QUOTE] for posting replies with quote, or just for quoting stuff.
  208. $text = str_replace("[quote:1:$uid]","", $text);
  209. $text = str_replace("[/quote:1:$uid]", "", $text);
  210. $text = str_replace("[quote:$uid]", "", $text);
  211. $text = str_replace("[/quote:$uid]", "", $text);
  212. // New one liner to deal with opening quotes with usernames...
  213. // replaces the two line version that I had here before..
  214. $text = preg_replace("/\[quote:$uid=(?:\"?([^\"]*)\"?)\]/si", "", $text);
  215. $text = preg_replace("/\[quote:1:$uid=(?:\"?([^\"]*)\"?)\]/si", "", $text);
  216. // [list] and [list=x] for (un)ordered lists.
  217. // unordered lists
  218. $text = str_replace("[list:$uid]", "", $text);
  219. // li tags
  220. $text = str_replace("[*:$uid]", "", $text);
  221. // ending tags
  222. $text = str_replace("[/list:u:$uid]", "", $text);
  223. $text = str_replace("[/list:o:$uid]", "", $text);
  224. // Ordered lists
  225. $text = preg_replace("/\[list=([a1]):$uid\]/si", "", $text);
  226.  
  227. // colours
  228. $text = preg_replace("/\[color=(\#[0-9A-F]{6}|[a-z]+):$uid\]/si", "", $text);
  229. $text = str_replace("[/color:$uid]", "", $text);
  230.  
  231. // url #2
  232. $text = preg_replace("/\[url\]/i","", $text);
  233. $text = preg_replace("/\[\/url\]/i", "", $text);
  234.  
  235. // url /\[url=([a-z0-9\-\.,\?!%\*_\/:;~\\&$@\/=\+]+)\](.*?)\[/url\]/si
  236. $text = preg_replace("/\[url=([a-z0-9\-\.,\?!%\*_\/:;~\\&$@\/=\+]+)\]/si", "", $text);
  237. $text = preg_replace("/\[\/url:$uid\]/i", "", $text);
  238.  
  239. // img
  240. $text = str_replace("[img:$uid]","", $text);
  241. $text = str_replace("[/img:$uid]", "", $text);
  242.  
  243. // email
  244. $text = str_replace("[email:$uid]","", $text);
  245. $text = str_replace("[/email:$uid]", "", $text);
  246.  
  247. // size
  248. $text = preg_replace("/\[size=([\-\+]?[1-2]?[0-9]):$uid\]/si", "", $text);
  249. $text = str_replace("[/size:$uid]", "", $text);
  250. // [b] and [/b] for bolding text.
  251. $text = str_replace("[b:$uid]","", $text);
  252. $text = str_replace("[/b:$uid]", "", $text);
  253.  
  254. // [u] and [/u] for underlining text.
  255. $text = str_replace("[u:$uid]", "", $text);
  256. $text = str_replace("[/u:$uid]", "", $text);
  257.  
  258. // [i] and [/i] for italicizing text.
  259. $text = str_replace("[i:$uid]", "", $text);
  260. $text = str_replace("[/i:$uid]", "", $text);
  261. // Remove our padding from the string..
  262. $text = substr($text, 1);
  263.  
  264. return $text;
  265. }
  266.  
  267. ?>