News.php 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. <?php
  2. /**
  3. * This file contains the files necessary to display news as an XML feed.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * Outputs xml data representing recent information or a profile.
  18. * Can be passed 4 subactions which decide what is output:
  19. * 'recent' for recent posts,
  20. * 'news' for news topics,
  21. * 'members' for recently registered members,
  22. * 'profile' for a member's profile.
  23. * To display a member's profile, a user id has to be given. (;u=1)
  24. * Outputs an rss feed instead of a proprietary one if the 'type' $_GET
  25. * parameter is 'rss' or 'rss2'.
  26. * Accessed via ?action=.xml.
  27. * Does not use any templates, sub templates, or template layers.
  28. *
  29. * @uses Stats language file.
  30. */
  31. function ShowXmlFeed()
  32. {
  33. global $board, $board_info, $context, $scripturl, $txt, $modSettings, $user_info;
  34. global $query_this_board, $smcFunc, $forum_version, $cdata_override;
  35. // If it's not enabled, die.
  36. if (empty($modSettings['xmlnews_enable']))
  37. obExit(false);
  38. loadLanguage('Stats');
  39. // Default to latest 5. No more than 255, please.
  40. $_GET['limit'] = empty($_GET['limit']) || (int) $_GET['limit'] < 1 ? 5 : min((int) $_GET['limit'], 255);
  41. // Handle the cases where a board, boards, or category is asked for.
  42. $query_this_board = 1;
  43. $context['optimize_msg'] = array(
  44. 'highest' => 'm.id_msg <= b.id_last_msg',
  45. );
  46. if (!empty($_REQUEST['c']) && empty($board))
  47. {
  48. $_REQUEST['c'] = explode(',', $_REQUEST['c']);
  49. foreach ($_REQUEST['c'] as $i => $c)
  50. $_REQUEST['c'][$i] = (int) $c;
  51. if (count($_REQUEST['c']) == 1)
  52. {
  53. $request = $smcFunc['db_query']('', '
  54. SELECT name
  55. FROM {db_prefix}categories
  56. WHERE id_cat = {int:current_category}',
  57. array(
  58. 'current_category' => (int) $_REQUEST['c'][0],
  59. )
  60. );
  61. list ($feed_title) = $smcFunc['db_fetch_row']($request);
  62. $smcFunc['db_free_result']($request);
  63. $feed_title = ' - ' . strip_tags($feed_title);
  64. }
  65. $request = $smcFunc['db_query']('', '
  66. SELECT b.id_board, b.num_posts
  67. FROM {db_prefix}boards AS b
  68. WHERE b.id_cat IN ({array_int:current_category_list})
  69. AND {query_see_board}',
  70. array(
  71. 'current_category_list' => $_REQUEST['c'],
  72. )
  73. );
  74. $total_cat_posts = 0;
  75. $boards = array();
  76. while ($row = $smcFunc['db_fetch_assoc']($request))
  77. {
  78. $boards[] = $row['id_board'];
  79. $total_cat_posts += $row['num_posts'];
  80. }
  81. $smcFunc['db_free_result']($request);
  82. if (!empty($boards))
  83. $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')';
  84. // Try to limit the number of messages we look through.
  85. if ($total_cat_posts > 100 && $total_cat_posts > $modSettings['totalMessages'] / 15)
  86. $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 400 - $_GET['limit'] * 5);
  87. }
  88. elseif (!empty($_REQUEST['boards']))
  89. {
  90. $_REQUEST['boards'] = explode(',', $_REQUEST['boards']);
  91. foreach ($_REQUEST['boards'] as $i => $b)
  92. $_REQUEST['boards'][$i] = (int) $b;
  93. $request = $smcFunc['db_query']('', '
  94. SELECT b.id_board, b.num_posts, b.name
  95. FROM {db_prefix}boards AS b
  96. WHERE b.id_board IN ({array_int:board_list})
  97. AND {query_see_board}
  98. LIMIT ' . count($_REQUEST['boards']),
  99. array(
  100. 'board_list' => $_REQUEST['boards'],
  101. )
  102. );
  103. // Either the board specified doesn't exist or you have no access.
  104. $num_boards = $smcFunc['db_num_rows']($request);
  105. if ($num_boards == 0)
  106. fatal_lang_error('no_board');
  107. $total_posts = 0;
  108. $boards = array();
  109. while ($row = $smcFunc['db_fetch_assoc']($request))
  110. {
  111. if ($num_boards == 1)
  112. $feed_title = ' - ' . strip_tags($row['name']);
  113. $boards[] = $row['id_board'];
  114. $total_posts += $row['num_posts'];
  115. }
  116. $smcFunc['db_free_result']($request);
  117. if (!empty($boards))
  118. $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')';
  119. // The more boards, the more we're going to look through...
  120. if ($total_posts > 100 && $total_posts > $modSettings['totalMessages'] / 12)
  121. $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 500 - $_GET['limit'] * 5);
  122. }
  123. elseif (!empty($board))
  124. {
  125. $request = $smcFunc['db_query']('', '
  126. SELECT num_posts
  127. FROM {db_prefix}boards
  128. WHERE id_board = {int:current_board}
  129. LIMIT 1',
  130. array(
  131. 'current_board' => $board,
  132. )
  133. );
  134. list ($total_posts) = $smcFunc['db_fetch_row']($request);
  135. $smcFunc['db_free_result']($request);
  136. $feed_title = ' - ' . strip_tags($board_info['name']);
  137. $query_this_board = 'b.id_board = ' . $board;
  138. // Try to look through just a few messages, if at all possible.
  139. if ($total_posts > 80 && $total_posts > $modSettings['totalMessages'] / 10)
  140. $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 600 - $_GET['limit'] * 5);
  141. }
  142. else
  143. {
  144. $query_this_board = '{query_see_board}' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? '
  145. AND b.id_board != ' . $modSettings['recycle_board'] : '');
  146. $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 100 - $_GET['limit'] * 5);
  147. }
  148. // Show in rss or proprietary format?
  149. $xml_format = isset($_GET['type']) && in_array($_GET['type'], array('smf', 'rss', 'rss2', 'atom', 'rdf', 'webslice')) ? $_GET['type'] : 'smf';
  150. // @todo Birthdays?
  151. // List all the different types of data they can pull.
  152. $subActions = array(
  153. 'recent' => array('getXmlRecent', 'recent-post'),
  154. 'news' => array('getXmlNews', 'article'),
  155. 'members' => array('getXmlMembers', 'member'),
  156. 'profile' => array('getXmlProfile', null),
  157. );
  158. if (empty($_GET['sa']) || !isset($subActions[$_GET['sa']]))
  159. $_GET['sa'] = 'recent';
  160. // @todo Temp - webslices doesn't do everything yet.
  161. if ($xml_format == 'webslice' && $_GET['sa'] != 'recent')
  162. $xml_format = 'rss2';
  163. // If this is webslices we kinda cheat - we allow a template that we call direct for the HTML, and we override the CDATA.
  164. elseif ($xml_format == 'webslice')
  165. {
  166. $context['user'] += $user_info;
  167. $cdata_override = true;
  168. loadTemplate('Xml');
  169. }
  170. // We only want some information, not all of it.
  171. $cachekey = array($xml_format, $_GET['action'], $_GET['limit'], $_GET['sa']);
  172. foreach (array('board', 'boards', 'c') as $var)
  173. if (isset($_REQUEST[$var]))
  174. $cachekey[] = $_REQUEST[$var];
  175. $cachekey = md5(serialize($cachekey) . (!empty($query_this_board) ? $query_this_board : ''));
  176. $cache_t = microtime();
  177. // Get the associative array representing the xml.
  178. if (!empty($modSettings['cache_enable']) && (!$user_info['is_guest'] || $modSettings['cache_enable'] >= 3))
  179. $xml = cache_get_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, 240);
  180. if (empty($xml))
  181. {
  182. $xml = $subActions[$_GET['sa']][0]($xml_format);
  183. if (!empty($modSettings['cache_enable']) && (($user_info['is_guest'] && $modSettings['cache_enable'] >= 3)
  184. || (!$user_info['is_guest'] && (array_sum(explode(' ', microtime())) - array_sum(explode(' ', $cache_t)) > 0.2))))
  185. cache_put_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, $xml, 240);
  186. }
  187. $feed_title = htmlspecialchars(strip_tags($context['forum_name'])) . (isset($feed_title) ? $feed_title : '');
  188. // This is an xml file....
  189. ob_end_clean();
  190. if (!empty($modSettings['enableCompressedOutput']))
  191. @ob_start('ob_gzhandler');
  192. else
  193. ob_start();
  194. if ($xml_format == 'smf' || isset($_REQUEST['debug']))
  195. header('Content-Type: text/xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
  196. elseif ($xml_format == 'rss' || $xml_format == 'rss2' || $xml_format == 'webslice')
  197. header('Content-Type: application/rss+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
  198. elseif ($xml_format == 'atom')
  199. header('Content-Type: application/atom+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
  200. elseif ($xml_format == 'rdf')
  201. header('Content-Type: ' . (isBrowser('ie') ? 'text/xml' : 'application/rdf+xml') . '; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
  202. // First, output the xml header.
  203. echo '<?xml version="1.0" encoding="', $context['character_set'], '"?' . '>';
  204. // Are we outputting an rss feed or one with more information?
  205. if ($xml_format == 'rss' || $xml_format == 'rss2')
  206. {
  207. // Start with an RSS 2.0 header.
  208. echo '
  209. <rss version=', $xml_format == 'rss2' ? '"2.0"' : '"0.92"', ' xml:lang="', strtr($txt['lang_locale'], '_', '-'), '">
  210. <channel>
  211. <title>', $feed_title, '</title>
  212. <link>', $scripturl, '</link>
  213. <description><![CDATA[', strip_tags($txt['xml_rss_desc']), ']]></description>';
  214. // Output all of the associative array, start indenting with 2 tabs, and name everything "item".
  215. dumpTags($xml, 2, 'item', $xml_format);
  216. // Output the footer of the xml.
  217. echo '
  218. </channel>
  219. </rss>';
  220. }
  221. elseif ($xml_format == 'webslice')
  222. {
  223. $context['recent_posts_data'] = $xml;
  224. // This always has RSS 2
  225. echo '
  226. <rss version="2.0" xmlns:mon="http://www.microsoft.com/schemas/rss/monitoring/2007" xml:lang="', strtr($txt['lang_locale'], '_', '-'), '">
  227. <channel>
  228. <title>', $feed_title, ' - ', $txt['recent_posts'], '</title>
  229. <link>', $scripturl, '?action=recent</link>
  230. <description><![CDATA[', strip_tags($txt['xml_rss_desc']), ']]></description>
  231. <item>
  232. <title>', $feed_title, ' - ', $txt['recent_posts'], '</title>
  233. <link>', $scripturl, '?action=recent</link>
  234. <description><![CDATA[
  235. ', template_webslice_header_above(), '
  236. ', template_webslice_recent_posts(), '
  237. ', template_webslice_header_below(), '
  238. ]]></description>
  239. </item>
  240. </channel>
  241. </rss>';
  242. }
  243. elseif ($xml_format == 'atom')
  244. {
  245. echo '
  246. <feed xmlns="http://www.w3.org/2005/Atom">
  247. <title>', $feed_title, '</title>
  248. <link rel="alternate" type="text/html" href="', $scripturl, '" />
  249. <modified>', gmstrftime('%Y-%m-%dT%H:%M:%SZ'), '</modified>
  250. <tagline><![CDATA[', strip_tags($txt['xml_rss_desc']), ']]></tagline>
  251. <generator uri="http://www.simplemachines.org" version="', strtr($forum_version, array('SMF' => '')), '">SMF</generator>
  252. <author>
  253. <name>', strip_tags($context['forum_name']), '</name>
  254. </author>';
  255. dumpTags($xml, 2, 'entry', $xml_format);
  256. echo '
  257. </feed>';
  258. }
  259. elseif ($xml_format == 'rdf')
  260. {
  261. echo '
  262. <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
  263. <channel rdf:about="', $scripturl, '">
  264. <title>', $feed_title, '</title>
  265. <link>', $scripturl, '</link>
  266. <description><![CDATA[', strip_tags($txt['xml_rss_desc']), ']]></description>
  267. <items>
  268. <rdf:Seq>';
  269. foreach ($xml as $item)
  270. echo '
  271. <rdf:li rdf:resource="', $item['link'], '" />';
  272. echo '
  273. </rdf:Seq>
  274. </items>
  275. </channel>
  276. ';
  277. dumpTags($xml, 1, 'item', $xml_format);
  278. echo '
  279. </rdf:RDF>';
  280. }
  281. // Otherwise, we're using our proprietary formats - they give more data, though.
  282. else
  283. {
  284. echo '
  285. <smf:xml-feed xmlns:smf="http://www.simplemachines.org/" xmlns="http://www.simplemachines.org/xml/', $_GET['sa'], '" xml:lang="', strtr($txt['lang_locale'], '_', '-'), '">';
  286. // Dump out that associative array. Indent properly.... and use the right names for the base elements.
  287. dumpTags($xml, 1, $subActions[$_GET['sa']][1], $xml_format);
  288. echo '
  289. </smf:xml-feed>';
  290. }
  291. obExit(false);
  292. }
  293. function fix_possible_url($val)
  294. {
  295. global $modSettings, $context, $scripturl;
  296. if (substr($val, 0, strlen($scripturl)) != $scripturl)
  297. return $val;
  298. call_integration_hook('integrate_fix_url', array(&$val));
  299. if (empty($modSettings['queryless_urls']) || ($context['server']['is_cgi'] && ini_get('cgi.fix_pathinfo') == 0 && @get_cfg_var('cgi.fix_pathinfo') == 0) || (!$context['server']['is_apache'] && !$context['server']['is_lighttpd']))
  300. return $val;
  301. $val = preg_replace('/^' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+)(#[^"]*)?$/e', '\'\' . $scripturl . \'/\' . strtr(\'$1\', \'&;=\', \'//,\') . \'.html$2\'', $val);
  302. return $val;
  303. }
  304. function cdata_parse($data, $ns = '')
  305. {
  306. global $smcFunc, $cdata_override;
  307. // Are we not doing it?
  308. if (!empty($cdata_override))
  309. return $data;
  310. $cdata = '<![CDATA[';
  311. for ($pos = 0, $n = $smcFunc['strlen']($data); $pos < $n; null)
  312. {
  313. $positions = array(
  314. $smcFunc['strpos']($data, '&', $pos),
  315. $smcFunc['strpos']($data, ']', $pos),
  316. );
  317. if ($ns != '')
  318. $positions[] = $smcFunc['strpos']($data, '<', $pos);
  319. foreach ($positions as $k => $dummy)
  320. {
  321. if ($dummy === false)
  322. unset($positions[$k]);
  323. }
  324. $old = $pos;
  325. $pos = empty($positions) ? $n : min($positions);
  326. if ($pos - $old > 0)
  327. $cdata .= $smcFunc['substr']($data, $old, $pos - $old);
  328. if ($pos >= $n)
  329. break;
  330. if ($smcFunc['substr']($data, $pos, 1) == '<')
  331. {
  332. $pos2 = $smcFunc['strpos']($data, '>', $pos);
  333. if ($pos2 === false)
  334. $pos2 = $n;
  335. if ($smcFunc['substr']($data, $pos + 1, 1) == '/')
  336. $cdata .= ']]></' . $ns . ':' . $smcFunc['substr']($data, $pos + 2, $pos2 - $pos - 1) . '<![CDATA[';
  337. else
  338. $cdata .= ']]><' . $ns . ':' . $smcFunc['substr']($data, $pos + 1, $pos2 - $pos) . '<![CDATA[';
  339. $pos = $pos2 + 1;
  340. }
  341. elseif ($smcFunc['substr']($data, $pos, 1) == ']')
  342. {
  343. $cdata .= ']]>&#093;<![CDATA[';
  344. $pos++;
  345. }
  346. elseif ($smcFunc['substr']($data, $pos, 1) == '&')
  347. {
  348. $pos2 = $smcFunc['strpos']($data, ';', $pos);
  349. if ($pos2 === false)
  350. $pos2 = $n;
  351. $ent = $smcFunc['substr']($data, $pos + 1, $pos2 - $pos - 1);
  352. if ($smcFunc['substr']($data, $pos + 1, 1) == '#')
  353. $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '<![CDATA[';
  354. elseif (in_array($ent, array('amp', 'lt', 'gt', 'quot')))
  355. $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '<![CDATA[';
  356. $pos = $pos2 + 1;
  357. }
  358. }
  359. $cdata .= ']]>';
  360. return strtr($cdata, array('<![CDATA[]]>' => ''));
  361. }
  362. /**
  363. * Formats data retrieved in other functions into xml format.
  364. * Additionally formats data based on the specific format passed.
  365. * This function is recursively called to handle sub arrays of data.
  366. * @param array $data, the array to output as xml data
  367. * @param int $i, the amount of indentation to use.
  368. * @param string $tag, if specified, it will be used instead of the keys of data.
  369. * @param string $xml_format
  370. */
  371. function dumpTags($data, $i, $tag = null, $xml_format = '')
  372. {
  373. global $modSettings, $context, $scripturl;
  374. // For every array in the data...
  375. foreach ($data as $key => $val)
  376. {
  377. // Skip it, it's been set to null.
  378. if ($val === null)
  379. continue;
  380. // If a tag was passed, use it instead of the key.
  381. $key = isset($tag) ? $tag : $key;
  382. // First let's indent!
  383. echo "\n", str_repeat("\t", $i);
  384. // Grr, I hate kludges... almost worth doing it properly, here, but not quite.
  385. if ($xml_format == 'atom' && $key == 'link')
  386. {
  387. echo '<link rel="alternate" type="text/html" href="', fix_possible_url($val), '" />';
  388. continue;
  389. }
  390. // If it's empty/0/nothing simply output an empty tag.
  391. if ($val == '')
  392. echo '<', $key, ' />';
  393. else
  394. {
  395. // Beginning tag.
  396. if ($xml_format == 'rdf' && $key == 'item' && isset($val['link']))
  397. {
  398. echo '<', $key, ' rdf:about="', fix_possible_url($val['link']), '">';
  399. echo "\n", str_repeat("\t", $i + 1);
  400. echo '<dc:format>text/html</dc:format>';
  401. }
  402. elseif ($xml_format == 'atom' && $key == 'summary')
  403. echo '<', $key, ' type="html">';
  404. else
  405. echo '<', $key, '>';
  406. if (is_array($val))
  407. {
  408. // An array. Dump it, and then indent the tag.
  409. dumpTags($val, $i + 1, null, $xml_format);
  410. echo "\n", str_repeat("\t", $i), '</', $key, '>';
  411. }
  412. // A string with returns in it.... show this as a multiline element.
  413. elseif (strpos($val, "\n") !== false || strpos($val, '<br />') !== false)
  414. echo "\n", fix_possible_url($val), "\n", str_repeat("\t", $i), '</', $key, '>';
  415. // A simple string.
  416. else
  417. echo fix_possible_url($val), '</', $key, '>';
  418. }
  419. }
  420. }
  421. /**
  422. * Retrieve the list of members from database.
  423. * The array will be generated to match the format.
  424. * @todo get the list of members from Subs-Members.
  425. *
  426. * @param string $xml_format
  427. * @return array
  428. */
  429. function getXmlMembers($xml_format)
  430. {
  431. global $scripturl, $smcFunc;
  432. if (!allowedTo('view_mlist'))
  433. return array();
  434. // Find the most recent members.
  435. $request = $smcFunc['db_query']('', '
  436. SELECT id_member, member_name, real_name, date_registered, last_login
  437. FROM {db_prefix}members
  438. ORDER BY id_member DESC
  439. LIMIT {int:limit}',
  440. array(
  441. 'limit' => $_GET['limit'],
  442. )
  443. );
  444. $data = array();
  445. while ($row = $smcFunc['db_fetch_assoc']($request))
  446. {
  447. // Make the data look rss-ish.
  448. if ($xml_format == 'rss' || $xml_format == 'rss2')
  449. $data[] = array(
  450. 'title' => cdata_parse($row['real_name']),
  451. 'link' => $scripturl . '?action=profile;u=' . $row['id_member'],
  452. 'comments' => $scripturl . '?action=pm;sa=send;u=' . $row['id_member'],
  453. 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['date_registered']),
  454. 'guid' => $scripturl . '?action=profile;u=' . $row['id_member'],
  455. );
  456. elseif ($xml_format == 'rdf')
  457. $data[] = array(
  458. 'title' => cdata_parse($row['real_name']),
  459. 'link' => $scripturl . '?action=profile;u=' . $row['id_member'],
  460. );
  461. elseif ($xml_format == 'atom')
  462. $data[] = array(
  463. 'title' => cdata_parse($row['real_name']),
  464. 'link' => $scripturl . '?action=profile;u=' . $row['id_member'],
  465. 'published' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['date_registered']),
  466. 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['last_login']),
  467. 'id' => $scripturl . '?action=profile;u=' . $row['id_member'],
  468. );
  469. // More logical format for the data, but harder to apply.
  470. else
  471. $data[] = array(
  472. 'name' => cdata_parse($row['real_name']),
  473. 'time' => htmlspecialchars(strip_tags(timeformat($row['date_registered']))),
  474. 'id' => $row['id_member'],
  475. 'link' => $scripturl . '?action=profile;u=' . $row['id_member']
  476. );
  477. }
  478. $smcFunc['db_free_result']($request);
  479. return $data;
  480. }
  481. /**
  482. * Get the latest topics information from a specific board,
  483. * to display later.
  484. * The returned array will be generated to match the xmf_format.
  485. * @todo does not belong here
  486. *
  487. * @param $xml_format
  488. * @return array, array of topics
  489. */
  490. function getXmlNews($xml_format)
  491. {
  492. global $user_info, $scripturl, $modSettings, $board;
  493. global $query_this_board, $smcFunc, $settings, $context;
  494. /* Find the latest posts that:
  495. - are the first post in their topic.
  496. - are on an any board OR in a specified board.
  497. - can be seen by this user.
  498. - are actually the latest posts. */
  499. $done = false;
  500. $loops = 0;
  501. while (!$done)
  502. {
  503. $optimize_msg = implode(' AND ', $context['optimize_msg']);
  504. $request = $smcFunc['db_query']('', '
  505. SELECT
  506. m.smileys_enabled, m.poster_time, m.id_msg, m.subject, m.body, m.modified_time,
  507. m.icon, t.id_topic, t.id_board, t.num_replies,
  508. b.name AS bname,
  509. mem.hide_email, IFNULL(mem.id_member, 0) AS id_member,
  510. IFNULL(mem.email_address, m.poster_email) AS poster_email,
  511. IFNULL(mem.real_name, m.poster_name) AS poster_name
  512. FROM {db_prefix}topics AS t
  513. INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
  514. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  515. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
  516. WHERE ' . $query_this_board . (empty($optimize_msg) ? '' : '
  517. AND {raw:optimize_msg}') . (empty($board) ? '' : '
  518. AND t.id_board = {int:current_board}') . ($modSettings['postmod_active'] ? '
  519. AND t.approved = {int:is_approved}' : '') . '
  520. ORDER BY t.id_first_msg DESC
  521. LIMIT {int:limit}',
  522. array(
  523. 'current_board' => $board,
  524. 'is_approved' => 1,
  525. 'limit' => $_GET['limit'],
  526. 'optimize_msg' => $optimize_msg,
  527. )
  528. );
  529. // If we don't have $_GET['limit'] results, try again with an unoptimized version covering all rows.
  530. if ($loops < 2 && $smcFunc['db_num_rows']($request) < $_GET['limit'])
  531. {
  532. $smcFunc['db_free_result']($request);
  533. if (empty($_REQUEST['boards']) && empty($board))
  534. unset($context['optimize_msg']['lowest']);
  535. else
  536. $context['optimize_msg']['lowest'] = 'm.id_msg >= t.id_first_msg';
  537. $context['optimize_msg']['highest'] = 'm.id_msg <= t.id_last_msg';
  538. $loops++;
  539. }
  540. else
  541. $done = true;
  542. }
  543. $data = array();
  544. while ($row = $smcFunc['db_fetch_assoc']($request))
  545. {
  546. // Limit the length of the message, if the option is set.
  547. if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br />', "\n", $row['body'])) > $modSettings['xmlnews_maxlen'])
  548. $row['body'] = strtr($smcFunc['substr'](str_replace('<br />', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br />')) . '...';
  549. $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']);
  550. censorText($row['body']);
  551. censorText($row['subject']);
  552. // Being news, this actually makes sense in rss format.
  553. if ($xml_format == 'rss' || $xml_format == 'rss2')
  554. $data[] = array(
  555. 'title' => cdata_parse($row['subject']),
  556. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  557. 'description' => cdata_parse($row['body']),
  558. 'author' => in_array(showEmailAddress(!empty($row['hide_email']), $row['id_member']), array('yes', 'yes_permission_override')) ? $row['poster_email'] : null,
  559. 'comments' => $scripturl . '?action=post;topic=' . $row['id_topic'] . '.0',
  560. 'category' => '<![CDATA[' . $row['bname'] . ']]>',
  561. 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['poster_time']),
  562. 'guid' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  563. );
  564. elseif ($xml_format == 'rdf')
  565. $data[] = array(
  566. 'title' => cdata_parse($row['subject']),
  567. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  568. 'description' => cdata_parse($row['body']),
  569. );
  570. elseif ($xml_format == 'atom')
  571. $data[] = array(
  572. 'title' => cdata_parse($row['subject']),
  573. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  574. 'summary' => cdata_parse($row['body']),
  575. 'category' => array('term' => $row['id_board'], 'label' => cdata_parse($row['bname'])),
  576. 'author' => array(
  577. 'name' => $row['poster_name'],
  578. 'email' => in_array(showEmailAddress(!empty($row['hide_email']), $row['id_member']), array('yes', 'yes_permission_override')) ? $row['poster_email'] : null,
  579. 'uri' => !empty($row['id_member']) ? $scripturl . '?action=profile;u=' . $row['id_member'] : '',
  580. ),
  581. 'published' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['poster_time']),
  582. 'modified' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', empty($row['modified_time']) ? $row['poster_time'] : $row['modified_time']),
  583. 'id' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  584. 'icon' => $settings['images_url'] . '/icons/' . $row['icon'] . '.png',
  585. );
  586. // The biggest difference here is more information.
  587. else
  588. $data[] = array(
  589. 'time' => htmlspecialchars(strip_tags(timeformat($row['poster_time']))),
  590. 'id' => $row['id_topic'],
  591. 'subject' => cdata_parse($row['subject']),
  592. 'body' => cdata_parse($row['body']),
  593. 'poster' => array(
  594. 'name' => cdata_parse($row['poster_name']),
  595. 'id' => $row['id_member'],
  596. 'link' => !empty($row['id_member']) ? $scripturl . '?action=profile;u=' . $row['id_member'] : '',
  597. ),
  598. 'topic' => $row['id_topic'],
  599. 'board' => array(
  600. 'name' => cdata_parse($row['bname']),
  601. 'id' => $row['id_board'],
  602. 'link' => $scripturl . '?board=' . $row['id_board'] . '.0',
  603. ),
  604. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  605. );
  606. }
  607. $smcFunc['db_free_result']($request);
  608. return $data;
  609. }
  610. /**
  611. * Get the recent topics to display.
  612. * The returned array will be generated to match the xml_format.
  613. * @todo does not belong here.
  614. *
  615. * @param $xml_format
  616. * @return array, of recent posts
  617. */
  618. function getXmlRecent($xml_format)
  619. {
  620. global $user_info, $scripturl, $modSettings, $board;
  621. global $query_this_board, $smcFunc, $settings, $context;
  622. $done = false;
  623. $loops = 0;
  624. while (!$done)
  625. {
  626. $optimize_msg = implode(' AND ', $context['optimize_msg']);
  627. $request = $smcFunc['db_query']('', '
  628. SELECT m.id_msg
  629. FROM {db_prefix}messages AS m
  630. INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
  631. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
  632. WHERE ' . $query_this_board . (empty($optimize_msg) ? '' : '
  633. AND {raw:optimize_msg}') . (empty($board) ? '' : '
  634. AND m.id_board = {int:current_board}') . ($modSettings['postmod_active'] ? '
  635. AND m.approved = {int:is_approved}' : '') . '
  636. ORDER BY m.id_msg DESC
  637. LIMIT {int:limit}',
  638. array(
  639. 'limit' => $_GET['limit'],
  640. 'current_board' => $board,
  641. 'is_approved' => 1,
  642. 'optimize_msg' => $optimize_msg,
  643. )
  644. );
  645. // If we don't have $_GET['limit'] results, try again with an unoptimized version covering all rows.
  646. if ($loops < 2 && $smcFunc['db_num_rows']($request) < $_GET['limit'])
  647. {
  648. $smcFunc['db_free_result']($request);
  649. if (empty($_REQUEST['boards']) && empty($board))
  650. unset($context['optimize_msg']['lowest']);
  651. else
  652. $context['optimize_msg']['lowest'] = $loops ? 'm.id_msg >= t.id_first_msg' : 'm.id_msg >= (t.id_last_msg - t.id_first_msg) / 2';
  653. $loops++;
  654. }
  655. else
  656. $done = true;
  657. }
  658. $messages = array();
  659. while ($row = $smcFunc['db_fetch_assoc']($request))
  660. $messages[] = $row['id_msg'];
  661. $smcFunc['db_free_result']($request);
  662. if (empty($messages))
  663. return array();
  664. // Find the most recent posts this user can see.
  665. $request = $smcFunc['db_query']('', '
  666. SELECT
  667. m.smileys_enabled, m.poster_time, m.id_msg, m.subject, m.body, m.id_topic, t.id_board,
  668. b.name AS bname, t.num_replies, m.id_member, m.icon, mf.id_member AS id_first_member,
  669. IFNULL(mem.real_name, m.poster_name) AS poster_name, mf.subject AS first_subject,
  670. IFNULL(memf.real_name, mf.poster_name) AS first_poster_name, mem.hide_email,
  671. IFNULL(mem.email_address, m.poster_email) AS poster_email, m.modified_time
  672. FROM {db_prefix}messages AS m
  673. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
  674. INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)
  675. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  676. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
  677. LEFT JOIN {db_prefix}members AS memf ON (memf.id_member = mf.id_member)
  678. WHERE m.id_msg IN ({array_int:message_list})
  679. ' . (empty($board) ? '' : 'AND t.id_board = {int:current_board}') . '
  680. ORDER BY m.id_msg DESC
  681. LIMIT {int:limit}',
  682. array(
  683. 'limit' => $_GET['limit'],
  684. 'current_board' => $board,
  685. 'message_list' => $messages,
  686. )
  687. );
  688. $data = array();
  689. while ($row = $smcFunc['db_fetch_assoc']($request))
  690. {
  691. // Limit the length of the message, if the option is set.
  692. if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br />', "\n", $row['body'])) > $modSettings['xmlnews_maxlen'])
  693. $row['body'] = strtr($smcFunc['substr'](str_replace('<br />', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br />')) . '...';
  694. $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']);
  695. censorText($row['body']);
  696. censorText($row['subject']);
  697. // Doesn't work as well as news, but it kinda does..
  698. if ($xml_format == 'rss' || $xml_format == 'rss2')
  699. $data[] = array(
  700. 'title' => $row['subject'],
  701. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'],
  702. 'description' => cdata_parse($row['body']),
  703. 'author' => in_array(showEmailAddress(!empty($row['hide_email']), $row['id_member']), array('yes', 'yes_permission_override')) ? $row['poster_email'] : null,
  704. 'category' => cdata_parse($row['bname']),
  705. 'comments' => $scripturl . '?action=post;topic=' . $row['id_topic'] . '.0',
  706. 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['poster_time']),
  707. 'guid' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg']
  708. );
  709. elseif ($xml_format == 'rdf')
  710. $data[] = array(
  711. 'title' => $row['subject'],
  712. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'],
  713. 'description' => cdata_parse($row['body']),
  714. );
  715. elseif ($xml_format == 'atom')
  716. $data[] = array(
  717. 'title' => $row['subject'],
  718. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'],
  719. 'summary' => cdata_parse($row['body']),
  720. 'category' => array(
  721. 'term' => $row['id_board'],
  722. 'label' => cdata_parse($row['bname'])
  723. ),
  724. 'author' => array(
  725. 'name' => $row['poster_name'],
  726. 'email' => in_array(showEmailAddress(!empty($row['hide_email']), $row['id_member']), array('yes', 'yes_permission_override')) ? $row['poster_email'] : null,
  727. 'uri' => !empty($row['id_member']) ? $scripturl . '?action=profile;u=' . $row['id_member'] : ''
  728. ),
  729. 'published' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['poster_time']),
  730. 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', empty($row['modified_time']) ? $row['poster_time'] : $row['modified_time']),
  731. 'id' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'],
  732. 'icon' => $settings['images_url'] . '/icons/' . $row['icon'] . '.png',
  733. );
  734. // A lot of information here. Should be enough to please the rss-ers.
  735. else
  736. $data[] = array(
  737. 'time' => htmlspecialchars(strip_tags(timeformat($row['poster_time']))),
  738. 'id' => $row['id_msg'],
  739. 'subject' => cdata_parse($row['subject']),
  740. 'body' => cdata_parse($row['body']),
  741. 'starter' => array(
  742. 'name' => cdata_parse($row['first_poster_name']),
  743. 'id' => $row['id_first_member'],
  744. 'link' => !empty($row['id_first_member']) ? $scripturl . '?action=profile;u=' . $row['id_first_member'] : ''
  745. ),
  746. 'poster' => array(
  747. 'name' => cdata_parse($row['poster_name']),
  748. 'id' => $row['id_member'],
  749. 'link' => !empty($row['id_member']) ? $scripturl . '?action=profile;u=' . $row['id_member'] : ''
  750. ),
  751. 'topic' => array(
  752. 'subject' => cdata_parse($row['first_subject']),
  753. 'id' => $row['id_topic'],
  754. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.new#new'
  755. ),
  756. 'board' => array(
  757. 'name' => cdata_parse($row['bname']),
  758. 'id' => $row['id_board'],
  759. 'link' => $scripturl . '?board=' . $row['id_board'] . '.0'
  760. ),
  761. 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg']
  762. );
  763. }
  764. $smcFunc['db_free_result']($request);
  765. return $data;
  766. }
  767. /**
  768. * Get the profile information for member into an array,
  769. * which will be generated to match the xml_format.
  770. * @todo refactor.
  771. *
  772. * @param $xml_format
  773. * @return array, of profile data.
  774. */
  775. function getXmlProfile($xml_format)
  776. {
  777. global $scripturl, $memberContext, $user_profile, $modSettings, $user_info;
  778. // You must input a valid user....
  779. if (empty($_GET['u']) || loadMemberData((int) $_GET['u']) === false)
  780. return array();
  781. // Make sure the id is a number and not "I like trying to hack the database".
  782. $_GET['u'] = (int) $_GET['u'];
  783. // Load the member's contextual information!
  784. if (!loadMemberContext($_GET['u']) || !allowedTo('profile_view_any'))
  785. return array();
  786. // Okay, I admit it, I'm lazy. Stupid $_GET['u'] is long and hard to type.
  787. $profile = &$memberContext[$_GET['u']];
  788. if ($xml_format == 'rss' || $xml_format == 'rss2')
  789. $data = array(array(
  790. 'title' => cdata_parse($profile['name']),
  791. 'link' => $scripturl . '?action=profile;u=' . $profile['id'],
  792. 'description' => cdata_parse(isset($profile['group']) ? $profile['group'] : $profile['post_group']),
  793. 'comments' => $scripturl . '?action=pm;sa=send;u=' . $profile['id'],
  794. 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $user_profile[$profile['id']]['date_registered']),
  795. 'guid' => $scripturl . '?action=profile;u=' . $profile['id'],
  796. ));
  797. elseif ($xml_format == 'rdf')
  798. $data = array(array(
  799. 'title' => cdata_parse($profile['name']),
  800. 'link' => $scripturl . '?action=profile;u=' . $profile['id'],
  801. 'description' => cdata_parse(isset($profile['group']) ? $profile['group'] : $profile['post_group']),
  802. ));
  803. elseif ($xml_format == 'atom')
  804. $data[] = array(
  805. 'title' => cdata_parse($profile['name']),
  806. 'link' => $scripturl . '?action=profile;u=' . $profile['id'],
  807. 'summary' => cdata_parse(isset($profile['group']) ? $profile['group'] : $profile['post_group']),
  808. 'author' => array(
  809. 'name' => $profile['real_name'],
  810. 'email' => in_array(showEmailAddress(!empty($profile['hide_email']), $profile['id']), array('yes', 'yes_permission_override')) ? $profile['email'] : null,
  811. 'uri' => !empty($profile['website']) ? $profile['website']['url'] : ''
  812. ),
  813. 'published' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $user_profile[$profile['id']]['date_registered']),
  814. 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $user_profile[$profile['id']]['last_login']),
  815. 'id' => $scripturl . '?action=profile;u=' . $profile['id'],
  816. 'logo' => !empty($profile['avatar']) ? $profile['avatar']['url'] : '',
  817. );
  818. else
  819. {
  820. $data = array(
  821. 'username' => $user_info['is_admin'] || $user_info['id'] == $profile['id'] ? cdata_parse($profile['username']) : '',
  822. 'name' => cdata_parse($profile['name']),
  823. 'link' => $scripturl . '?action=profile;u=' . $profile['id'],
  824. 'posts' => $profile['posts'],
  825. 'post-group' => cdata_parse($profile['post_group']),
  826. 'language' => cdata_parse($profile['language']),
  827. 'last-login' => gmdate('D, d M Y H:i:s \G\M\T', $user_profile[$profile['id']]['last_login']),
  828. 'registered' => gmdate('D, d M Y H:i:s \G\M\T', $user_profile[$profile['id']]['date_registered'])
  829. );
  830. // Everything below here might not be set, and thus maybe shouldn't be displayed.
  831. if ($profile['gender']['name'] != '')
  832. $data['gender'] = cdata_parse($profile['gender']['name']);
  833. if ($profile['avatar']['name'] != '')
  834. $data['avatar'] = $profile['avatar']['url'];
  835. // If they are online, show an empty tag... no reason to put anything inside it.
  836. if ($profile['online']['is_online'])
  837. $data['online'] = '';
  838. if ($profile['signature'] != '')
  839. $data['signature'] = cdata_parse($profile['signature']);
  840. if ($profile['blurb'] != '')
  841. $data['blurb'] = cdata_parse($profile['blurb']);
  842. if ($profile['location'] != '')
  843. $data['location'] = cdata_parse($profile['location']);
  844. if ($profile['title'] != '')
  845. $data['title'] = cdata_parse($profile['title']);
  846. if (!empty($profile['icq']['name']) && !(!empty($modSettings['guest_hideContacts']) && $user_info['is_guest']))
  847. $data['icq'] = $profile['icq']['name'];
  848. if ($profile['aim']['name'] != '' && !(!empty($modSettings['guest_hideContacts']) && $user_info['is_guest']))
  849. $data['aim'] = $profile['aim']['name'];
  850. if ($profile['msn']['name'] != '' && !(!empty($modSettings['guest_hideContacts']) && $user_info['is_guest']))
  851. $data['msn'] = $profile['msn']['name'];
  852. if ($profile['yim']['name'] != '' && !(!empty($modSettings['guest_hideContacts']) && $user_info['is_guest']))
  853. $data['yim'] = $profile['yim']['name'];
  854. if ($profile['website']['title'] != '')
  855. $data['website'] = array(
  856. 'title' => cdata_parse($profile['website']['title']),
  857. 'link' => $profile['website']['url']
  858. );
  859. if ($profile['group'] != '')
  860. $data['position'] = cdata_parse($profile['group']);
  861. if (!empty($modSettings['karmaMode']))
  862. $data['karma'] = array(
  863. 'good' => $profile['karma']['good'],
  864. 'bad' => $profile['karma']['bad']
  865. );
  866. if (in_array($profile['show_email'], array('yes', 'yes_permission_override')))
  867. $data['email'] = $profile['email'];
  868. if (!empty($profile['birth_date']) && substr($profile['birth_date'], 0, 4) != '0000')
  869. {
  870. list ($birth_year, $birth_month, $birth_day) = sscanf($profile['birth_date'], '%d-%d-%d');
  871. $datearray = getdate(forum_time());
  872. $data['age'] = $datearray['year'] - $birth_year - (($datearray['mon'] > $birth_month || ($datearray['mon'] == $birth_month && $datearray['mday'] >= $birth_day)) ? 0 : 1);
  873. }
  874. }
  875. // Save some memory.
  876. unset($profile, $memberContext[$_GET['u']]);
  877. return $data;
  878. }
  879. ?>