PageRenderTime 64ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 1ms

/Sources/Subs-Post.php

https://github.com/smf-portal/SMF2.1
PHP | 2968 lines | 2071 code | 365 blank | 532 comment | 436 complexity | b53b3ea73005ea52bbcf7bb7719bebfd MD5 | raw file
  1. <?php
  2. /**
  3. * This file contains those functions pertaining to posting, and other such
  4. * operations, including sending emails, ims, blocking spam, preparsing posts,
  5. * spell checking, and the post box.
  6. *
  7. * Simple Machines Forum (SMF)
  8. *
  9. * @package SMF
  10. * @author Simple Machines http://www.simplemachines.org
  11. * @copyright 2012 Simple Machines
  12. * @license http://www.simplemachines.org/about/smf/license.php BSD
  13. *
  14. * @version 2.1 Alpha 1
  15. */
  16. if (!defined('SMF'))
  17. die('Hacking attempt...');
  18. /**
  19. * Takes a message and parses it, returning nothing.
  20. * Cleans up links (javascript, etc.) and code/quote sections.
  21. * Won't convert \n's and a few other things if previewing is true.
  22. *
  23. * @param $message
  24. * @param $previewing
  25. */
  26. function preparsecode(&$message, $previewing = false)
  27. {
  28. global $user_info, $modSettings, $smcFunc, $context;
  29. // This line makes all languages *theoretically* work even with the wrong charset ;).
  30. $message = preg_replace('~&amp;#(\d{4,5}|[2-9]\d{2,4}|1[2-9]\d);~', '&#$1;', $message);
  31. // Clean up after nobbc ;).
  32. $message = preg_replace('~\[nobbc\](.+?)\[/nobbc\]~ie', '\'[nobbc]\' . strtr(\'$1\', array(\'[\' => \'&#91;\', \']\' => \'&#93;\', \':\' => \'&#58;\', \'@\' => \'&#64;\')) . \'[/nobbc]\'', $message);
  33. // Remove \r's... they're evil!
  34. $message = strtr($message, array("\r" => ''));
  35. // You won't believe this - but too many periods upsets apache it seems!
  36. $message = preg_replace('~\.{100,}~', '...', $message);
  37. // Trim off trailing quotes - these often happen by accident.
  38. while (substr($message, -7) == '[quote]')
  39. $message = substr($message, 0, -7);
  40. while (substr($message, 0, 8) == '[/quote]')
  41. $message = substr($message, 8);
  42. // Find all code blocks, work out whether we'd be parsing them, then ensure they are all closed.
  43. $in_tag = false;
  44. $had_tag = false;
  45. $codeopen = 0;
  46. if (preg_match_all('~(\[(/)*code(?:=[^\]]+)?\])~is', $message, $matches))
  47. foreach ($matches[0] as $index => $dummy)
  48. {
  49. // Closing?
  50. if (!empty($matches[2][$index]))
  51. {
  52. // If it's closing and we're not in a tag we need to open it...
  53. if (!$in_tag)
  54. $codeopen = true;
  55. // Either way we ain't in one any more.
  56. $in_tag = false;
  57. }
  58. // Opening tag...
  59. else
  60. {
  61. $had_tag = true;
  62. // If we're in a tag don't do nought!
  63. if (!$in_tag)
  64. $in_tag = true;
  65. }
  66. }
  67. // If we have an open tag, close it.
  68. if ($in_tag)
  69. $message .= '[/code]';
  70. // Open any ones that need to be open, only if we've never had a tag.
  71. if ($codeopen && !$had_tag)
  72. $message = '[code]' . $message;
  73. // Now that we've fixed all the code tags, let's fix the img and url tags...
  74. $parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $message, -1, PREG_SPLIT_DELIM_CAPTURE);
  75. // The regular expression non breaking space has many versions.
  76. $non_breaking_space = $context['utf8'] ? '\x{A0}' : '\xA0';
  77. // Only mess with stuff outside [code] tags.
  78. for ($i = 0, $n = count($parts); $i < $n; $i++)
  79. {
  80. // It goes 0 = outside, 1 = begin tag, 2 = inside, 3 = close tag, repeat.
  81. if ($i % 4 == 0)
  82. {
  83. fixTags($parts[$i]);
  84. // Replace /me.+?\n with [me=name]dsf[/me]\n.
  85. if (strpos($user_info['name'], '[') !== false || strpos($user_info['name'], ']') !== false || strpos($user_info['name'], '\'') !== false || strpos($user_info['name'], '"') !== false)
  86. $parts[$i] = preg_replace('~(\A|\n)/me(?: |&nbsp;)([^\n]*)(?:\z)?~i', '$1[me=&quot;' . $user_info['name'] . '&quot;]$2[/me]', $parts[$i]);
  87. else
  88. $parts[$i] = preg_replace('~(\A|\n)/me(?: |&nbsp;)([^\n]*)(?:\z)?~i', '$1[me=' . $user_info['name'] . ']$2[/me]', $parts[$i]);
  89. if (!$previewing && strpos($parts[$i], '[html]') !== false)
  90. {
  91. if (allowedTo('admin_forum'))
  92. $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ise', '\'[html]\' . strtr(un_htmlspecialchars(\'$1\'), array("\n" => \'&#13;\', \' \' => \' &#32;\', \'[\' => \'&#91;\', \']\' => \'&#93;\')) . \'[/html]\'', $parts[$i]);
  93. // We should edit them out, or else if an admin edits the message they will get shown...
  94. else
  95. {
  96. while (strpos($parts[$i], '[html]') !== false)
  97. $parts[$i] = preg_replace('~\[[/]?html\]~i', '', $parts[$i]);
  98. }
  99. }
  100. // Let's look at the time tags...
  101. $parts[$i] = preg_replace('~\[time(?:=(absolute))*\](.+?)\[/time\]~ie', '\'[time]\' . (is_numeric(\'$2\') || @strtotime(\'$2\') == 0 ? \'$2\' : strtotime(\'$2\') - (\'$1\' == \'absolute\' ? 0 : (($modSettings[\'time_offset\'] + $user_info[\'time_offset\']) * 3600))) . \'[/time]\'', $parts[$i]);
  102. // Change the color specific tags to [color=the color].
  103. $parts[$i] = preg_replace('~\[(black|blue|green|red|white)\]~', '[color=$1]', $parts[$i]); // First do the opening tags.
  104. $parts[$i] = preg_replace('~\[/(black|blue|green|red|white)\]~', '[/color]', $parts[$i]); // And now do the closing tags
  105. // Make sure all tags are lowercase.
  106. $parts[$i] = preg_replace('~\[([/]?)(list|li|table|tr|td)((\s[^\]]+)*)\]~ie', '\'[$1\' . strtolower(\'$2\') . \'$3]\'', $parts[$i]);
  107. $list_open = substr_count($parts[$i], '[list]') + substr_count($parts[$i], '[list ');
  108. $list_close = substr_count($parts[$i], '[/list]');
  109. if ($list_close - $list_open > 0)
  110. $parts[$i] = str_repeat('[list]', $list_close - $list_open) . $parts[$i];
  111. if ($list_open - $list_close > 0)
  112. $parts[$i] = $parts[$i] . str_repeat('[/list]', $list_open - $list_close);
  113. $mistake_fixes = array(
  114. // Find [table]s not followed by [tr].
  115. '~\[table\](?![\s' . $non_breaking_space . ']*\[tr\])~s' . ($context['utf8'] ? 'u' : '') => '[table][tr]',
  116. // Find [tr]s not followed by [td].
  117. '~\[tr\](?![\s' . $non_breaking_space . ']*\[td\])~s' . ($context['utf8'] ? 'u' : '') => '[tr][td]',
  118. // Find [/td]s not followed by something valid.
  119. '~\[/td\](?![\s' . $non_breaking_space . ']*(?:\[td\]|\[/tr\]|\[/table\]))~s' . ($context['utf8'] ? 'u' : '') => '[/td][/tr]',
  120. // Find [/tr]s not followed by something valid.
  121. '~\[/tr\](?![\s' . $non_breaking_space . ']*(?:\[tr\]|\[/table\]))~s' . ($context['utf8'] ? 'u' : '') => '[/tr][/table]',
  122. // Find [/td]s incorrectly followed by [/table].
  123. '~\[/td\][\s' . $non_breaking_space . ']*\[/table\]~s' . ($context['utf8'] ? 'u' : '') => '[/td][/tr][/table]',
  124. // Find [table]s, [tr]s, and [/td]s (possibly correctly) followed by [td].
  125. '~\[(table|tr|/td)\]([\s' . $non_breaking_space . ']*)\[td\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_td_]',
  126. // Now, any [td]s left should have a [tr] before them.
  127. '~\[td\]~s' => '[tr][td]',
  128. // Look for [tr]s which are correctly placed.
  129. '~\[(table|/tr)\]([\s' . $non_breaking_space . ']*)\[tr\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_tr_]',
  130. // Any remaining [tr]s should have a [table] before them.
  131. '~\[tr\]~s' => '[table][tr]',
  132. // Look for [/td]s followed by [/tr].
  133. '~\[/td\]([\s' . $non_breaking_space . ']*)\[/tr\]~s' . ($context['utf8'] ? 'u' : '') => '[/td]$1[_/tr_]',
  134. // Any remaining [/tr]s should have a [/td].
  135. '~\[/tr\]~s' => '[/td][/tr]',
  136. // Look for properly opened [li]s which aren't closed.
  137. '~\[li\]([^\[\]]+?)\[li\]~s' => '[li]$1[_/li_][_li_]',
  138. '~\[li\]([^\[\]]+?)\[/list\]~s' => '[_li_]$1[_/li_][/list]',
  139. '~\[li\]([^\[\]]+?)$~s' => '[li]$1[/li]',
  140. // Lists - find correctly closed items/lists.
  141. '~\[/li\]([\s' . $non_breaking_space . ']*)\[/list\]~s' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[/list]',
  142. // Find list items closed and then opened.
  143. '~\[/li\]([\s' . $non_breaking_space . ']*)\[li\]~s' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[_li_]',
  144. // Now, find any [list]s or [/li]s followed by [li].
  145. '~\[(list(?: [^\]]*?)?|/li)\]([\s' . $non_breaking_space . ']*)\[li\]~s' . ($context['utf8'] ? 'u' : '') => '[$1]$2[_li_]',
  146. // Allow for sub lists.
  147. '~\[/li\]([\s' . $non_breaking_space . ']*)\[list\]~' . ($context['utf8'] ? 'u' : '') => '[_/li_]$1[list]',
  148. '~\[/list\]([\s' . $non_breaking_space . ']*)\[li\]~' . ($context['utf8'] ? 'u' : '') => '[/list]$1[_li_]',
  149. // Any remaining [li]s weren't inside a [list].
  150. '~\[li\]~' => '[list][li]',
  151. // Any remaining [/li]s weren't before a [/list].
  152. '~\[/li\]~' => '[/li][/list]',
  153. // Put the correct ones back how we found them.
  154. '~\[_(li|/li|td|tr|/tr)_\]~' => '[$1]',
  155. // Images with no real url.
  156. '~\[img\]https?://.{0,7}\[/img\]~' => '',
  157. );
  158. // Fix up some use of tables without [tr]s, etc. (it has to be done more than once to catch it all.)
  159. for ($j = 0; $j < 3; $j++)
  160. $parts[$i] = preg_replace(array_keys($mistake_fixes), $mistake_fixes, $parts[$i]);
  161. // Now we're going to do full scale table checking...
  162. $table_check = $parts[$i];
  163. $table_offset = 0;
  164. $table_array = array();
  165. $table_order = array(
  166. 'table' => 'td',
  167. 'tr' => 'table',
  168. 'td' => 'tr',
  169. );
  170. while (preg_match('~\[(/)*(table|tr|td)\]~', $table_check, $matches) != false)
  171. {
  172. // Keep track of where this is.
  173. $offset = strpos($table_check, $matches[0]);
  174. $remove_tag = false;
  175. // Is it opening?
  176. if ($matches[1] != '/')
  177. {
  178. // If the previous table tag isn't correct simply remove it.
  179. if ((!empty($table_array) && $table_array[0] != $table_order[$matches[2]]) || (empty($table_array) && $matches[2] != 'table'))
  180. $remove_tag = true;
  181. // Record this was the last tag.
  182. else
  183. array_unshift($table_array, $matches[2]);
  184. }
  185. // Otherwise is closed!
  186. else
  187. {
  188. // Only keep the tag if it's closing the right thing.
  189. if (empty($table_array) || ($table_array[0] != $matches[2]))
  190. $remove_tag = true;
  191. else
  192. array_shift($table_array);
  193. }
  194. // Removing?
  195. if ($remove_tag)
  196. {
  197. $parts[$i] = substr($parts[$i], 0, $table_offset + $offset) . substr($parts[$i], $table_offset + strlen($matches[0]) + $offset);
  198. // We've lost some data.
  199. $table_offset -= strlen($matches[0]);
  200. }
  201. // Remove everything up to here.
  202. $table_offset += $offset + strlen($matches[0]);
  203. $table_check = substr($table_check, $offset + strlen($matches[0]));
  204. }
  205. // Close any remaining table tags.
  206. foreach ($table_array as $tag)
  207. $parts[$i] .= '[/' . $tag . ']';
  208. // Remove empty bbc from the sections outside the code tags
  209. $parts[$i] = preg_replace('~\[[bisu]\]\s*\[/[bisu]\]~', '', $parts[$i]);
  210. $parts[$i] = preg_replace('~\[quote\]\s*\[/quote\]~', '', $parts[$i]);
  211. $parts[$i] = preg_replace('~\[color=(?:#[\da-fA-F]{3}|#[\da-fA-F]{6}|[A-Za-z]{1,20}|rgb\(\d{1,3}, ?\d{1,3}, ?\d{1,3}\))\]\s*\[/color\]~', '', $parts[$i]);
  212. }
  213. }
  214. // Put it back together!
  215. if (!$previewing)
  216. $message = strtr(implode('', $parts), array(' ' => '&nbsp; ', "\n" => '<br />', $context['utf8'] ? "\xC2\xA0" : "\xA0" => '&nbsp;'));
  217. else
  218. $message = strtr(implode('', $parts), array(' ' => '&nbsp; ', $context['utf8'] ? "\xC2\xA0" : "\xA0" => '&nbsp;'));
  219. // Now let's quickly clean up things that will slow our parser (which are common in posted code.)
  220. $message = strtr($message, array('[]' => '&#91;]', '[&#039;' => '&#91;&#039;'));
  221. }
  222. /**
  223. * This is very simple, and just removes things done by preparsecode.
  224. *
  225. * @param $message
  226. */
  227. function un_preparsecode($message)
  228. {
  229. global $smcFunc;
  230. $parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $message, -1, PREG_SPLIT_DELIM_CAPTURE);
  231. // We're going to unparse only the stuff outside [code]...
  232. for ($i = 0, $n = count($parts); $i < $n; $i++)
  233. {
  234. // If $i is a multiple of four (0, 4, 8, ...) then it's not a code section...
  235. if ($i % 4 == 0)
  236. {
  237. $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ie', '\'[html]\' . strtr(htmlspecialchars(\'$1\', ENT_QUOTES), array(\'\\&quot;\' => \'&quot;\', \'&amp;#13;\' => \'<br />\', \'&amp;#32;\' => \' \', \'&amp;#91;\' => \'[\', \'&amp;#93;\' => \']\')) . \'[/html]\'', $parts[$i]);
  238. // $parts[$i] = preg_replace('~\[html\](.+?)\[/html\]~ie', '\'[html]\' . strtr(htmlspecialchars(\'$1\', ENT_QUOTES), array(\'\\&quot;\' => \'&quot;\', \'&amp;#13;\' => \'<br />\', \'&amp;#32;\' => \' \', \'&amp;#38;\' => \'&#38;\', \'&amp;#91;\' => \'[\', \'&amp;#93;\' => \']\')) . \'[/html]\'', $parts[$i]);
  239. // Attempt to un-parse the time to something less awful.
  240. $parts[$i] = preg_replace('~\[time\](\d{0,10})\[/time\]~ie', '\'[time]\' . timeformat(\'$1\', false) . \'[/time]\'', $parts[$i]);
  241. }
  242. }
  243. // Change breaks back to \n's and &nsbp; back to spaces.
  244. return preg_replace('~<br( /)?' . '>~', "\n", str_replace('&nbsp;', ' ', implode('', $parts)));
  245. }
  246. /**
  247. * Fix any URLs posted - ie. remove 'javascript:'.
  248. * Used by preparsecode, fixes links in message and returns nothing.
  249. *
  250. * @param string $message
  251. */
  252. function fixTags(&$message)
  253. {
  254. global $modSettings;
  255. // WARNING: Editing the below can cause large security holes in your forum.
  256. // Edit only if you are sure you know what you are doing.
  257. $fixArray = array(
  258. // [img]http://...[/img] or [img width=1]http://...[/img]
  259. array(
  260. 'tag' => 'img',
  261. 'protocols' => array('http', 'https'),
  262. 'embeddedUrl' => false,
  263. 'hasEqualSign' => false,
  264. 'hasExtra' => true,
  265. ),
  266. // [url]http://...[/url]
  267. array(
  268. 'tag' => 'url',
  269. 'protocols' => array('http', 'https'),
  270. 'embeddedUrl' => true,
  271. 'hasEqualSign' => false,
  272. ),
  273. // [url=http://...]name[/url]
  274. array(
  275. 'tag' => 'url',
  276. 'protocols' => array('http', 'https'),
  277. 'embeddedUrl' => true,
  278. 'hasEqualSign' => true,
  279. ),
  280. // [iurl]http://...[/iurl]
  281. array(
  282. 'tag' => 'iurl',
  283. 'protocols' => array('http', 'https'),
  284. 'embeddedUrl' => true,
  285. 'hasEqualSign' => false,
  286. ),
  287. // [iurl=http://...]name[/iurl]
  288. array(
  289. 'tag' => 'iurl',
  290. 'protocols' => array('http', 'https'),
  291. 'embeddedUrl' => true,
  292. 'hasEqualSign' => true,
  293. ),
  294. // [ftp]ftp://...[/ftp]
  295. array(
  296. 'tag' => 'ftp',
  297. 'protocols' => array('ftp', 'ftps'),
  298. 'embeddedUrl' => true,
  299. 'hasEqualSign' => false,
  300. ),
  301. // [ftp=ftp://...]name[/ftp]
  302. array(
  303. 'tag' => 'ftp',
  304. 'protocols' => array('ftp', 'ftps'),
  305. 'embeddedUrl' => true,
  306. 'hasEqualSign' => true,
  307. ),
  308. // [flash]http://...[/flash]
  309. array(
  310. 'tag' => 'flash',
  311. 'protocols' => array('http', 'https'),
  312. 'embeddedUrl' => false,
  313. 'hasEqualSign' => false,
  314. 'hasExtra' => true,
  315. ),
  316. );
  317. // Fix each type of tag.
  318. foreach ($fixArray as $param)
  319. fixTag($message, $param['tag'], $param['protocols'], $param['embeddedUrl'], $param['hasEqualSign'], !empty($param['hasExtra']));
  320. // Now fix possible security problems with images loading links automatically...
  321. $message = preg_replace('~(\[img.*?\])(.+?)\[/img\]~eis', '\'$1\' . preg_replace(\'~action(=|%3d)(?!dlattach)~i\', \'action-\', \'$2\') . \'[/img]\'', $message);
  322. // Limit the size of images posted?
  323. if (!empty($modSettings['max_image_width']) || !empty($modSettings['max_image_height']))
  324. {
  325. // Find all the img tags - with or without width and height.
  326. preg_match_all('~\[img(\s+width=\d+)?(\s+height=\d+)?(\s+width=\d+)?\](.+?)\[/img\]~is', $message, $matches, PREG_PATTERN_ORDER);
  327. $replaces = array();
  328. foreach ($matches[0] as $match => $dummy)
  329. {
  330. // If the width was after the height, handle it.
  331. $matches[1][$match] = !empty($matches[3][$match]) ? $matches[3][$match] : $matches[1][$match];
  332. // Now figure out if they had a desired height or width...
  333. $desired_width = !empty($matches[1][$match]) ? (int) substr(trim($matches[1][$match]), 6) : 0;
  334. $desired_height = !empty($matches[2][$match]) ? (int) substr(trim($matches[2][$match]), 7) : 0;
  335. // One was omitted, or both. We'll have to find its real size...
  336. if (empty($desired_width) || empty($desired_height))
  337. {
  338. list ($width, $height) = url_image_size(un_htmlspecialchars($matches[4][$match]));
  339. // They don't have any desired width or height!
  340. if (empty($desired_width) && empty($desired_height))
  341. {
  342. $desired_width = $width;
  343. $desired_height = $height;
  344. }
  345. // Scale it to the width...
  346. elseif (empty($desired_width) && !empty($height))
  347. $desired_width = (int) (($desired_height * $width) / $height);
  348. // Scale if to the height.
  349. elseif (!empty($width))
  350. $desired_height = (int) (($desired_width * $height) / $width);
  351. }
  352. // If the width and height are fine, just continue along...
  353. if ($desired_width <= $modSettings['max_image_width'] && $desired_height <= $modSettings['max_image_height'])
  354. continue;
  355. // Too bad, it's too wide. Make it as wide as the maximum.
  356. if ($desired_width > $modSettings['max_image_width'] && !empty($modSettings['max_image_width']))
  357. {
  358. $desired_height = (int) (($modSettings['max_image_width'] * $desired_height) / $desired_width);
  359. $desired_width = $modSettings['max_image_width'];
  360. }
  361. // Now check the height, as well. Might have to scale twice, even...
  362. if ($desired_height > $modSettings['max_image_height'] && !empty($modSettings['max_image_height']))
  363. {
  364. $desired_width = (int) (($modSettings['max_image_height'] * $desired_width) / $desired_height);
  365. $desired_height = $modSettings['max_image_height'];
  366. }
  367. $replaces[$matches[0][$match]] = '[img' . (!empty($desired_width) ? ' width=' . $desired_width : '') . (!empty($desired_height) ? ' height=' . $desired_height : '') . ']' . $matches[4][$match] . '[/img]';
  368. }
  369. // If any img tags were actually changed...
  370. if (!empty($replaces))
  371. $message = strtr($message, $replaces);
  372. }
  373. }
  374. /**
  375. * Fix a specific class of tag - ie. url with =.
  376. * Used by fixTags, fixes a specific tag's links.
  377. *
  378. * @param string $message
  379. * @param string $myTag - the tag
  380. * @param string $protocols - http or ftp
  381. * @param bool $embeddedUrl = false - whether it *can* be set to something
  382. * @param bool $hasEqualSign = false, whether it *is* set to something
  383. * @param bool $hasExtra = false - whether it can have extra cruft after the begin tag.
  384. */
  385. function fixTag(&$message, $myTag, $protocols, $embeddedUrl = false, $hasEqualSign = false, $hasExtra = false)
  386. {
  387. global $boardurl, $scripturl;
  388. if (preg_match('~^([^:]+://[^/]+)~', $boardurl, $match) != 0)
  389. $domain_url = $match[1];
  390. else
  391. $domain_url = $boardurl . '/';
  392. $replaces = array();
  393. if ($hasEqualSign)
  394. preg_match_all('~\[(' . $myTag . ')=([^\]]*?)\](?:(.+?)\[/(' . $myTag . ')\])?~is', $message, $matches);
  395. else
  396. preg_match_all('~\[(' . $myTag . ($hasExtra ? '(?:[^\]]*?)' : '') . ')\](.+?)\[/(' . $myTag . ')\]~is', $message, $matches);
  397. foreach ($matches[0] as $k => $dummy)
  398. {
  399. // Remove all leading and trailing whitespace.
  400. $replace = trim($matches[2][$k]);
  401. $this_tag = $matches[1][$k];
  402. $this_close = $hasEqualSign ? (empty($matches[4][$k]) ? '' : $matches[4][$k]) : $matches[3][$k];
  403. $found = false;
  404. foreach ($protocols as $protocol)
  405. {
  406. $found = strncasecmp($replace, $protocol . '://', strlen($protocol) + 3) === 0;
  407. if ($found)
  408. break;
  409. }
  410. if (!$found && $protocols[0] == 'http')
  411. {
  412. if (substr($replace, 0, 1) == '/')
  413. $replace = $domain_url . $replace;
  414. elseif (substr($replace, 0, 1) == '?')
  415. $replace = $scripturl . $replace;
  416. elseif (substr($replace, 0, 1) == '#' && $embeddedUrl)
  417. {
  418. $replace = '#' . preg_replace('~[^A-Za-z0-9_\-#]~', '', substr($replace, 1));
  419. $this_tag = 'iurl';
  420. $this_close = 'iurl';
  421. }
  422. else
  423. $replace = $protocols[0] . '://' . $replace;
  424. }
  425. elseif (!$found && $protocols[0] == 'ftp')
  426. $replace = $protocols[0] . '://' . preg_replace('~^(?!ftps?)[^:]+://~', '', $replace);
  427. elseif (!$found)
  428. $replace = $protocols[0] . '://' . $replace;
  429. if ($hasEqualSign && $embeddedUrl)
  430. $replaces[$matches[0][$k]] = '[' . $this_tag . '=' . $replace . ']' . (empty($matches[4][$k]) ? '' : $matches[3][$k] . '[/' . $this_close . ']');
  431. elseif ($hasEqualSign)
  432. $replaces['[' . $matches[1][$k] . '=' . $matches[2][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']';
  433. elseif ($embeddedUrl)
  434. $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']' . $matches[2][$k] . '[/' . $this_close . ']';
  435. else
  436. $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . ']' . $replace . '[/' . $this_close . ']';
  437. }
  438. foreach ($replaces as $k => $v)
  439. {
  440. if ($k == $v)
  441. unset($replaces[$k]);
  442. }
  443. if (!empty($replaces))
  444. $message = strtr($message, $replaces);
  445. }
  446. /**
  447. * This function sends an email to the specified recipient(s).
  448. * It uses the mail_type settings and webmaster_email variable.
  449. *
  450. * @param array $to - the email(s) to send to
  451. * @param string $subject - email subject, expected to have entities, and slashes, but not be parsed
  452. * @param string $message - email body, expected to have slashes, no htmlentities
  453. * @param string $from = null - the address to use for replies
  454. * @param string $message_id = null - if specified, it will be used as local part of the Message-ID header.
  455. * @param bool $send_html = false, whether or not the message is HTML vs. plain text
  456. * @param int $priority = 3
  457. * @param bool $hotmail_fix = null
  458. * @param $is_private
  459. * @return boolean, whether ot not the email was sent properly.
  460. */
  461. function sendmail($to, $subject, $message, $from = null, $message_id = null, $send_html = false, $priority = 3, $hotmail_fix = null, $is_private = false)
  462. {
  463. global $webmaster_email, $context, $modSettings, $txt, $scripturl;
  464. global $smcFunc;
  465. // Use sendmail if it's set or if no SMTP server is set.
  466. $use_sendmail = empty($modSettings['mail_type']) || $modSettings['smtp_host'] == '';
  467. // Line breaks need to be \r\n only in windows or for SMTP.
  468. $line_break = $context['server']['is_windows'] || !$use_sendmail ? "\r\n" : "\n";
  469. // So far so good.
  470. $mail_result = true;
  471. // If the recipient list isn't an array, make it one.
  472. $to_array = is_array($to) ? $to : array($to);
  473. // Once upon a time, Hotmail could not interpret non-ASCII mails.
  474. // In honour of those days, it's still called the 'hotmail fix'.
  475. if ($hotmail_fix === null)
  476. {
  477. $hotmail_to = array();
  478. foreach ($to_array as $i => $to_address)
  479. {
  480. if (preg_match('~@(att|comcast|bellsouth)\.[a-zA-Z\.]{2,6}$~i', $to_address) === 1)
  481. {
  482. $hotmail_to[] = $to_address;
  483. $to_array = array_diff($to_array, array($to_address));
  484. }
  485. }
  486. // Call this function recursively for the hotmail addresses.
  487. if (!empty($hotmail_to))
  488. $mail_result = sendmail($hotmail_to, $subject, $message, $from, $message_id, $send_html, $priority, true, $is_private);
  489. // The remaining addresses no longer need the fix.
  490. $hotmail_fix = false;
  491. // No other addresses left? Return instantly.
  492. if (empty($to_array))
  493. return $mail_result;
  494. }
  495. // Get rid of entities.
  496. $subject = un_htmlspecialchars($subject);
  497. // Make the message use the proper line breaks.
  498. $message = str_replace(array("\r", "\n"), array('', $line_break), $message);
  499. // Make sure hotmail mails are sent as HTML so that HTML entities work.
  500. if ($hotmail_fix && !$send_html)
  501. {
  502. $send_html = true;
  503. $message = strtr($message, array($line_break => '<br />' . $line_break));
  504. $message = preg_replace('~(' . preg_quote($scripturl, '~') . '(?:[?/][\w\-_%\.,\?&;=#]+)?)~', '<a href="$1">$1</a>', $message);
  505. }
  506. list (, $from_name) = mimespecialchars(addcslashes($from !== null ? $from : $context['forum_name'], '<>()\'\\"'), true, $hotmail_fix, $line_break);
  507. list (, $subject) = mimespecialchars($subject, true, $hotmail_fix, $line_break);
  508. // Construct the mail headers...
  509. $headers = 'From: "' . $from_name . '" <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>' . $line_break;
  510. $headers .= $from !== null ? 'Reply-To: <' . $from . '>' . $line_break : '';
  511. $headers .= 'Return-Path: ' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . $line_break;
  512. $headers .= 'Date: ' . gmdate('D, d M Y H:i:s') . ' -0000' . $line_break;
  513. if ($message_id !== null && empty($modSettings['mail_no_message_id']))
  514. $headers .= 'Message-ID: <' . md5($scripturl . microtime()) . '-' . $message_id . strstr(empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from'], '@') . '>' . $line_break;
  515. $headers .= 'X-Mailer: SMF' . $line_break;
  516. // Pass this to the integration before we start modifying the output -- it'll make it easier later.
  517. if (in_array(false, call_integration_hook('integrate_outgoing_email', array(&$subject, &$message, &$headers)), true))
  518. return false;
  519. // Save the original message...
  520. $orig_message = $message;
  521. // The mime boundary separates the different alternative versions.
  522. $mime_boundary = 'SMF-' . md5($message . time());
  523. // Using mime, as it allows to send a plain unencoded alternative.
  524. $headers .= 'Mime-Version: 1.0' . $line_break;
  525. $headers .= 'Content-Type: multipart/alternative; boundary="' . $mime_boundary . '"' . $line_break;
  526. $headers .= 'Content-Transfer-Encoding: 7bit' . $line_break;
  527. // Sending HTML? Let's plop in some basic stuff, then.
  528. if ($send_html)
  529. {
  530. $no_html_message = un_htmlspecialchars(strip_tags(strtr($orig_message, array('</title>' => $line_break))));
  531. // But, then, dump it and use a plain one for dinosaur clients.
  532. list(, $plain_message) = mimespecialchars($no_html_message, false, true, $line_break);
  533. $message = $plain_message . $line_break . '--' . $mime_boundary . $line_break;
  534. // This is the plain text version. Even if no one sees it, we need it for spam checkers.
  535. list($charset, $plain_charset_message, $encoding) = mimespecialchars($no_html_message, false, false, $line_break);
  536. $message .= 'Content-Type: text/plain; charset=' . $charset . $line_break;
  537. $message .= 'Content-Transfer-Encoding: ' . $encoding . $line_break . $line_break;
  538. $message .= $plain_charset_message . $line_break . '--' . $mime_boundary . $line_break;
  539. // This is the actual HTML message, prim and proper. If we wanted images, they could be inlined here (with multipart/related, etc.)
  540. list($charset, $html_message, $encoding) = mimespecialchars($orig_message, false, $hotmail_fix, $line_break);
  541. $message .= 'Content-Type: text/html; charset=' . $charset . $line_break;
  542. $message .= 'Content-Transfer-Encoding: ' . ($encoding == '' ? '7bit' : $encoding) . $line_break . $line_break;
  543. $message .= $html_message . $line_break . '--' . $mime_boundary . '--';
  544. }
  545. // Text is good too.
  546. else
  547. {
  548. // Send a plain message first, for the older web clients.
  549. list(, $plain_message) = mimespecialchars($orig_message, false, true, $line_break);
  550. $message = $plain_message . $line_break . '--' . $mime_boundary . $line_break;
  551. // Now add an encoded message using the forum's character set.
  552. list ($charset, $encoded_message, $encoding) = mimespecialchars($orig_message, false, false, $line_break);
  553. $message .= 'Content-Type: text/plain; charset=' . $charset . $line_break;
  554. $message .= 'Content-Transfer-Encoding: ' . $encoding . $line_break . $line_break;
  555. $message .= $encoded_message . $line_break . '--' . $mime_boundary . '--';
  556. }
  557. // Are we using the mail queue, if so this is where we butt in...
  558. if (!empty($modSettings['mail_queue']) && $priority != 0)
  559. return AddMailQueue(false, $to_array, $subject, $message, $headers, $send_html, $priority, $is_private);
  560. // If it's a priority mail, send it now - note though that this should NOT be used for sending many at once.
  561. elseif (!empty($modSettings['mail_queue']) && !empty($modSettings['mail_limit']))
  562. {
  563. list ($last_mail_time, $mails_this_minute) = @explode('|', $modSettings['mail_recent']);
  564. if (empty($mails_this_minute) || time() > $last_mail_time + 60)
  565. $new_queue_stat = time() . '|' . 1;
  566. else
  567. $new_queue_stat = $last_mail_time . '|' . ((int) $mails_this_minute + 1);
  568. updateSettings(array('mail_recent' => $new_queue_stat));
  569. }
  570. // SMTP or sendmail?
  571. if ($use_sendmail)
  572. {
  573. $subject = strtr($subject, array("\r" => '', "\n" => ''));
  574. if (!empty($modSettings['mail_strip_carriage']))
  575. {
  576. $message = strtr($message, array("\r" => ''));
  577. $headers = strtr($headers, array("\r" => ''));
  578. }
  579. foreach ($to_array as $to)
  580. {
  581. if (!mail(strtr($to, array("\r" => '', "\n" => '')), $subject, $message, $headers))
  582. {
  583. log_error(sprintf($txt['mail_send_unable'], $to));
  584. $mail_result = false;
  585. }
  586. // Wait, wait, I'm still sending here!
  587. @set_time_limit(300);
  588. if (function_exists('apache_reset_timeout'))
  589. @apache_reset_timeout();
  590. }
  591. }
  592. else
  593. $mail_result = $mail_result && smtp_mail($to_array, $subject, $message, $headers);
  594. // Everything go smoothly?
  595. return $mail_result;
  596. }
  597. /**
  598. * Add an email to the mail queue.
  599. *
  600. * @param bool $flush = false
  601. * @param array $to_array = array()
  602. * @param string $subject = ''
  603. * @param string $message = ''
  604. * @param string $headers = ''
  605. * @param bool $send_html = false
  606. * @param int $priority = 3
  607. * @param $is_private
  608. * @return boolean
  609. */
  610. function AddMailQueue($flush = false, $to_array = array(), $subject = '', $message = '', $headers = '', $send_html = false, $priority = 3, $is_private = false)
  611. {
  612. global $context, $modSettings, $smcFunc;
  613. static $cur_insert = array();
  614. static $cur_insert_len = 0;
  615. if ($cur_insert_len == 0)
  616. $cur_insert = array();
  617. // If we're flushing, make the final inserts - also if we're near the MySQL length limit!
  618. if (($flush || $cur_insert_len > 800000) && !empty($cur_insert))
  619. {
  620. // Only do these once.
  621. $cur_insert_len = 0;
  622. // Dump the data...
  623. $smcFunc['db_insert']('',
  624. '{db_prefix}mail_queue',
  625. array(
  626. 'time_sent' => 'int', 'recipient' => 'string-255', 'body' => 'string', 'subject' => 'string-255',
  627. 'headers' => 'string-65534', 'send_html' => 'int', 'priority' => 'int', 'private' => 'int',
  628. ),
  629. $cur_insert,
  630. array('id_mail')
  631. );
  632. $cur_insert = array();
  633. $context['flush_mail'] = false;
  634. }
  635. // If we're flushing we're done.
  636. if ($flush)
  637. {
  638. $nextSendTime = time() + 10;
  639. $smcFunc['db_query']('', '
  640. UPDATE {db_prefix}settings
  641. SET value = {string:nextSendTime}
  642. WHERE variable = {string:mail_next_send}
  643. AND value = {string:no_outstanding}',
  644. array(
  645. 'nextSendTime' => $nextSendTime,
  646. 'mail_next_send' => 'mail_next_send',
  647. 'no_outstanding' => '0',
  648. )
  649. );
  650. return true;
  651. }
  652. // Ensure we tell obExit to flush.
  653. $context['flush_mail'] = true;
  654. foreach ($to_array as $to)
  655. {
  656. // Will this insert go over MySQL's limit?
  657. $this_insert_len = strlen($to) + strlen($message) + strlen($headers) + 700;
  658. // Insert limit of 1M (just under the safety) is reached?
  659. if ($this_insert_len + $cur_insert_len > 1000000)
  660. {
  661. // Flush out what we have so far.
  662. $smcFunc['db_insert']('',
  663. '{db_prefix}mail_queue',
  664. array(
  665. 'time_sent' => 'int', 'recipient' => 'string-255', 'body' => 'string', 'subject' => 'string-255',
  666. 'headers' => 'string-65534', 'send_html' => 'int', 'priority' => 'int', 'private' => 'int',
  667. ),
  668. $cur_insert,
  669. array('id_mail')
  670. );
  671. // Clear this out.
  672. $cur_insert = array();
  673. $cur_insert_len = 0;
  674. }
  675. // Now add the current insert to the array...
  676. $cur_insert[] = array(time(), (string) $to, (string) $message, (string) $subject, (string) $headers, ($send_html ? 1 : 0), $priority, (int) $is_private);
  677. $cur_insert_len += $this_insert_len;
  678. }
  679. // If they are using SSI there is a good chance obExit will never be called. So lets be nice and flush it for them.
  680. if (SMF === 'SSI')
  681. return AddMailQueue(true);
  682. return true;
  683. }
  684. /**
  685. * Sends an personal message from the specified person to the specified people
  686. * ($from defaults to the user)
  687. *
  688. * @param array $recipients - an array containing the arrays 'to' and 'bcc', both containing id_member's.
  689. * @param string $subject - should have no slashes and no html entities
  690. * @param string $message - should have no slashes and no html entities
  691. * @param bool $store_outbox
  692. * @param array $from - an array with the id, name, and username of the member.
  693. * @param int $pm_head - the ID of the chain being replied to - if any.
  694. * @return array, an array with log entries telling how many recipients were successful and which recipients it failed to send to.
  695. */
  696. function sendpm($recipients, $subject, $message, $store_outbox = false, $from = null, $pm_head = 0)
  697. {
  698. global $scripturl, $txt, $user_info, $language;
  699. global $modSettings, $smcFunc;
  700. // Make sure the PM language file is loaded, we might need something out of it.
  701. loadLanguage('PersonalMessage');
  702. $onBehalf = $from !== null;
  703. // Initialize log array.
  704. $log = array(
  705. 'failed' => array(),
  706. 'sent' => array()
  707. );
  708. if ($from === null)
  709. $from = array(
  710. 'id' => $user_info['id'],
  711. 'name' => $user_info['name'],
  712. 'username' => $user_info['username']
  713. );
  714. // Probably not needed. /me something should be of the typer.
  715. else
  716. $user_info['name'] = $from['name'];
  717. // This is the one that will go in their inbox.
  718. $htmlmessage = $smcFunc['htmlspecialchars']($message, ENT_QUOTES);
  719. preparsecode($htmlmessage);
  720. $htmlsubject = strtr($smcFunc['htmlspecialchars']($subject), array("\r" => '', "\n" => '', "\t" => ''));
  721. if ($smcFunc['strlen']($htmlsubject) > 100)
  722. $htmlsubject = $smcFunc['substr']($htmlsubject, 0, 100);
  723. // Make sure is an array
  724. if (!is_array($recipients))
  725. $recipients = array($recipients);
  726. // Integrated PMs
  727. call_integration_hook('integrate_personal_message', array(&$recipients, &$from, &$subject, &$message));
  728. // Get a list of usernames and convert them to IDs.
  729. $usernames = array();
  730. foreach ($recipients as $rec_type => $rec)
  731. {
  732. foreach ($rec as $id => $member)
  733. {
  734. if (!is_numeric($recipients[$rec_type][$id]))
  735. {
  736. $recipients[$rec_type][$id] = $smcFunc['strtolower'](trim(preg_replace('/[<>&"\'=\\\]/', '', $recipients[$rec_type][$id])));
  737. $usernames[$recipients[$rec_type][$id]] = 0;
  738. }
  739. }
  740. }
  741. if (!empty($usernames))
  742. {
  743. $request = $smcFunc['db_query']('pm_find_username', '
  744. SELECT id_member, member_name
  745. FROM {db_prefix}members
  746. WHERE ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(member_name)' : 'member_name') . ' IN ({array_string:usernames})',
  747. array(
  748. 'usernames' => array_keys($usernames),
  749. )
  750. );
  751. while ($row = $smcFunc['db_fetch_assoc']($request))
  752. if (isset($usernames[$smcFunc['strtolower']($row['member_name'])]))
  753. $usernames[$smcFunc['strtolower']($row['member_name'])] = $row['id_member'];
  754. $smcFunc['db_free_result']($request);
  755. // Replace the usernames with IDs. Drop usernames that couldn't be found.
  756. foreach ($recipients as $rec_type => $rec)
  757. foreach ($rec as $id => $member)
  758. {
  759. if (is_numeric($recipients[$rec_type][$id]))
  760. continue;
  761. if (!empty($usernames[$member]))
  762. $recipients[$rec_type][$id] = $usernames[$member];
  763. else
  764. {
  765. $log['failed'][$id] = sprintf($txt['pm_error_user_not_found'], $recipients[$rec_type][$id]);
  766. unset($recipients[$rec_type][$id]);
  767. }
  768. }
  769. }
  770. // Make sure there are no duplicate 'to' members.
  771. $recipients['to'] = array_unique($recipients['to']);
  772. // Only 'bcc' members that aren't already in 'to'.
  773. $recipients['bcc'] = array_diff(array_unique($recipients['bcc']), $recipients['to']);
  774. // Combine 'to' and 'bcc' recipients.
  775. $all_to = array_merge($recipients['to'], $recipients['bcc']);
  776. // Check no-one will want it deleted right away!
  777. $request = $smcFunc['db_query']('', '
  778. SELECT
  779. id_member, criteria, is_or
  780. FROM {db_prefix}pm_rules
  781. WHERE id_member IN ({array_int:to_members})
  782. AND delete_pm = {int:delete_pm}',
  783. array(
  784. 'to_members' => $all_to,
  785. 'delete_pm' => 1,
  786. )
  787. );
  788. $deletes = array();
  789. // Check whether we have to apply anything...
  790. while ($row = $smcFunc['db_fetch_assoc']($request))
  791. {
  792. $criteria = unserialize($row['criteria']);
  793. // Note we don't check the buddy status, cause deletion from buddy = madness!
  794. $delete = false;
  795. foreach ($criteria as $criterium)
  796. {
  797. $match = false;
  798. if (($criterium['t'] == 'mid' && $criterium['v'] == $from['id']) || ($criterium['t'] == 'gid' && in_array($criterium['v'], $user_info['groups'])) || ($criterium['t'] == 'sub' && strpos($subject, $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($message, $criterium['v']) !== false))
  799. $delete = true;
  800. // If we're adding and one criteria don't match then we stop!
  801. elseif (!$row['is_or'])
  802. {
  803. $delete = false;
  804. break;
  805. }
  806. }
  807. if ($delete)
  808. $deletes[$row['id_member']] = 1;
  809. }
  810. $smcFunc['db_free_result']($request);
  811. // Load the membergrounp message limits.
  812. // @todo Consider caching this?
  813. static $message_limit_cache = array();
  814. if (!allowedTo('moderate_forum') && empty($message_limit_cache))
  815. {
  816. $request = $smcFunc['db_query']('', '
  817. SELECT id_group, max_messages
  818. FROM {db_prefix}membergroups',
  819. array(
  820. )
  821. );
  822. while ($row = $smcFunc['db_fetch_assoc']($request))
  823. $message_limit_cache[$row['id_group']] = $row['max_messages'];
  824. $smcFunc['db_free_result']($request);
  825. }
  826. // Load the groups that are allowed to read PMs.
  827. // @todo move into a separate function on $permission.
  828. $allowed_groups = array();
  829. $disallowed_groups = array();
  830. $request = $smcFunc['db_query']('', '
  831. SELECT id_group, add_deny
  832. FROM {db_prefix}permissions
  833. WHERE permission = {string:read_permission}',
  834. array(
  835. 'read_permission' => 'pm_read',
  836. )
  837. );
  838. while ($row = $smcFunc['db_fetch_assoc']($request))
  839. {
  840. if (empty($row['add_deny']))
  841. $disallowed_groups[] = $row['id_group'];
  842. else
  843. $allowed_groups[] = $row['id_group'];
  844. }
  845. $smcFunc['db_free_result']($request);
  846. if (empty($modSettings['permission_enable_deny']))
  847. $disallowed_groups = array();
  848. $request = $smcFunc['db_query']('', '
  849. SELECT
  850. member_name, real_name, id_member, email_address, lngfile,
  851. pm_email_notify, instant_messages,' . (allowedTo('moderate_forum') ? ' 0' : '
  852. (pm_receive_from = {int:admins_only}' . (empty($modSettings['enable_buddylist']) ? '' : ' OR
  853. (pm_receive_from = {int:buddies_only} AND FIND_IN_SET({string:from_id}, buddy_list) = 0) OR
  854. (pm_receive_from = {int:not_on_ignore_list} AND FIND_IN_SET({string:from_id}, pm_ignore_list) != 0)') . ')') . ' AS ignored,
  855. FIND_IN_SET({string:from_id}, buddy_list) != 0 AS is_buddy, is_activated,
  856. additional_groups, id_group, id_post_group
  857. FROM {db_prefix}members
  858. WHERE id_member IN ({array_int:recipients})
  859. ORDER BY lngfile
  860. LIMIT {int:count_recipients}',
  861. array(
  862. 'not_on_ignore_list' => 1,
  863. 'buddies_only' => 2,
  864. 'admins_only' => 3,
  865. 'recipients' => $all_to,
  866. 'count_recipients' => count($all_to),
  867. 'from_id' => $from['id'],
  868. )
  869. );
  870. $notifications = array();
  871. while ($row = $smcFunc['db_fetch_assoc']($request))
  872. {
  873. // Don't do anything for members to be deleted!
  874. if (isset($deletes[$row['id_member']]))
  875. continue;
  876. // We need to know this members groups.
  877. $groups = explode(',', $row['additional_groups']);
  878. $groups[] = $row['id_group'];
  879. $groups[] = $row['id_post_group'];
  880. $message_limit = -1;
  881. // For each group see whether they've gone over their limit - assuming they're not an admin.
  882. if (!in_array(1, $groups))
  883. {
  884. foreach ($groups as $id)
  885. {
  886. if (isset($message_limit_cache[$id]) && $message_limit != 0 && $message_limit < $message_limit_cache[$id])
  887. $message_limit = $message_limit_cache[$id];
  888. }
  889. if ($message_limit > 0 && $message_limit <= $row['instant_messages'])
  890. {
  891. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_data_limit_reached'], $row['real_name']);
  892. unset($all_to[array_search($row['id_member'], $all_to)]);
  893. continue;
  894. }
  895. // Do they have any of the allowed groups?
  896. if (count(array_intersect($allowed_groups, $groups)) == 0 || count(array_intersect($disallowed_groups, $groups)) != 0)
  897. {
  898. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_user_cannot_read'], $row['real_name']);
  899. unset($all_to[array_search($row['id_member'], $all_to)]);
  900. continue;
  901. }
  902. }
  903. // Note that PostgreSQL can return a lowercase t/f for FIND_IN_SET
  904. if (!empty($row['ignored']) && $row['ignored'] != 'f' && $row['id_member'] != $from['id'])
  905. {
  906. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_ignored_by_user'], $row['real_name']);
  907. unset($all_to[array_search($row['id_member'], $all_to)]);
  908. continue;
  909. }
  910. // If the receiving account is banned (>=10) or pending deletion (4), refuse to send the PM.
  911. if ($row['is_activated'] >= 10 || ($row['is_activated'] == 4 && !$user_info['is_admin']))
  912. {
  913. $log['failed'][$row['id_member']] = sprintf($txt['pm_error_user_cannot_read'], $row['real_name']);
  914. unset($all_to[array_search($row['id_member'], $all_to)]);
  915. continue;
  916. }
  917. // Send a notification, if enabled - taking the buddy list into account.
  918. if (!empty($row['email_address']) && ($row['pm_email_notify'] == 1 || ($row['pm_email_notify'] > 1 && (!empty($modSettings['enable_buddylist']) && $row['is_buddy']))) && $row['is_activated'] == 1)
  919. $notifications[empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']][] = $row['email_address'];
  920. $log['sent'][$row['id_member']] = sprintf(isset($txt['pm_successfully_sent']) ? $txt['pm_successfully_sent'] : '', $row['real_name']);
  921. }
  922. $smcFunc['db_free_result']($request);
  923. // Only 'send' the message if there are any recipients left.
  924. if (empty($all_to))
  925. return $log;
  926. // Insert the message itself and then grab the last insert id.
  927. $smcFunc['db_insert']('',
  928. '{db_prefix}personal_messages',
  929. array(
  930. 'id_pm_head' => 'int', 'id_member_from' => 'int', 'deleted_by_sender' => 'int',
  931. 'from_name' => 'string-255', 'msgtime' => 'int', 'subject' => 'string-255', 'body' => 'string-65534',
  932. ),
  933. array(
  934. $pm_head, $from['id'], ($store_outbox ? 0 : 1),
  935. $from['username'], time(), $htmlsubject, $htmlmessage,
  936. ),
  937. array('id_pm')
  938. );
  939. $id_pm = $smcFunc['db_insert_id']('{db_prefix}personal_messages', 'id_pm');
  940. // Add the recipients.
  941. if (!empty($id_pm))
  942. {
  943. // If this is new we need to set it part of it's own conversation.
  944. if (empty($pm_head))
  945. $smcFunc['db_query']('', '
  946. UPDATE {db_prefix}personal_messages
  947. SET id_pm_head = {int:id_pm_head}
  948. WHERE id_pm = {int:id_pm_head}',
  949. array(
  950. 'id_pm_head' => $id_pm,
  951. )
  952. );
  953. // Some people think manually deleting personal_messages is fun... it's not. We protect against it though :)
  954. $smcFunc['db_query']('', '
  955. DELETE FROM {db_prefix}pm_recipients
  956. WHERE id_pm = {int:id_pm}',
  957. array(
  958. 'id_pm' => $id_pm,
  959. )
  960. );
  961. $insertRows = array();
  962. $to_list = array();
  963. foreach ($all_to as $to)
  964. {
  965. $insertRows[] = array($id_pm, $to, in_array($to, $recipients['bcc']) ? 1 : 0, isset($deletes[$to]) ? 1 : 0, 1);
  966. if (!in_array($to, $recipients['bcc']))
  967. $to_list[] = $to;
  968. }
  969. $smcFunc['db_insert']('insert',
  970. '{db_prefix}pm_recipients',
  971. array(
  972. 'id_pm' => 'int', 'id_member' => 'int', 'bcc' => 'int', 'deleted' => 'int', 'is_new' => 'int'
  973. ),
  974. $insertRows,
  975. array('id_pm', 'id_member')
  976. );
  977. }
  978. censorText($subject);
  979. if (empty($modSettings['disallow_sendBody']))
  980. {
  981. censorText($message);
  982. $message = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc(htmlspecialchars($message), false), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  983. }
  984. else
  985. $message = '';
  986. $to_names = array();
  987. if (count($to_list) > 1)
  988. {
  989. $request = $smcFunc['db_query']('', '
  990. SELECT real_name
  991. FROM {db_prefix}members
  992. WHERE id_member IN ({array_int:to_members})',
  993. array(
  994. 'to_members' => $to_list,
  995. )
  996. );
  997. while ($row = $smcFunc['db_fetch_assoc']($request))
  998. $to_names[] = un_htmlspecialchars($row['real_name']);
  999. $smcFunc['db_free_result']($request);
  1000. }
  1001. $replacements = array(
  1002. 'SUBJECT' => $subject,
  1003. 'MESSAGE' => $message,
  1004. 'SENDER' => un_htmlspecialchars($from['name']),
  1005. 'READLINK' => $scripturl . '?action=pm;pmsg=' . $id_pm . '#msg' . $id_pm,
  1006. 'REPLYLINK' => $scripturl . '?action=pm;sa=send;f=inbox;pmsg=' . $id_pm . ';quote;u=' . $from['id'],
  1007. 'TOLIST' => implode(', ', $to_names),
  1008. );
  1009. $email_template = 'new_pm' . (empty($modSettings['disallow_sendBody']) ? '_body' : '') . (!empty($to_names) ? '_tolist' : '');
  1010. foreach ($notifications as $lang => $notification_list)
  1011. {
  1012. $mail = loadEmailTemplate($email_template, $replacements, $lang);
  1013. // Off the notification email goes!
  1014. sendmail($notification_list, $mail['subject'], $mail['body'], null, 'p' . $id_pm, false, 2, null, true);
  1015. }
  1016. // Integrated After PMs
  1017. call_integration_hook('integrate_personal_message_after', array(&$id_pm, &$log, &$recipients, &$from, &$subject, &$message));
  1018. // Back to what we were on before!
  1019. loadLanguage('index+PersonalMessage');
  1020. // Add one to their unread and read message counts.
  1021. foreach ($all_to as $k => $id)
  1022. if (isset($deletes[$id]))
  1023. unset($all_to[$k]);
  1024. if (!empty($all_to))
  1025. updateMemberData($all_to, array('instant_messages' => '+', 'unread_messages' => '+', 'new_pm' => 1));
  1026. return $log;
  1027. }
  1028. /**
  1029. * Prepare text strings for sending as email body or header.
  1030. * In case there are higher ASCII characters in the given string, this
  1031. * function will attempt the transport method 'quoted-printable'.
  1032. * Otherwise the transport method '7bit' is used.
  1033. *
  1034. * @param string $string
  1035. * @param bool $with_charset = true
  1036. * @param bool $hotmail_fix = false, with hotmail_fix set all higher ASCII
  1037. * characters are converted to HTML entities to assure proper display of the mail
  1038. * @param $line_break
  1039. * @param string $custom_charset = null, if set, it uses this character set
  1040. * @return array an array containing the character set, the converted string and the transport method.
  1041. */
  1042. function mimespecialchars($string, $with_charset = true, $hotmail_fix = false, $line_break = "\r\n", $custom_charset = null)
  1043. {
  1044. global $context;
  1045. $charset = $custom_charset !== null ? $custom_charset : $context['character_set'];
  1046. // This is the fun part....
  1047. if (preg_match_all('~&#(\d{3,8});~', $string, $matches) !== 0 && !$hotmail_fix)
  1048. {
  1049. // Let's, for now, assume there are only &#021;'ish characters.
  1050. $simple = true;
  1051. foreach ($matches[1] as $entity)
  1052. if ($entity > 128)
  1053. $simple = false;
  1054. unset($matches);
  1055. if ($simple)
  1056. $string = preg_replace('~&#(\d{3,8});~e', 'chr(\'$1\')', $string);
  1057. else
  1058. {
  1059. // Try to convert the string to UTF-8.
  1060. if (!$context['utf8'] && function_exists('iconv'))
  1061. {
  1062. $newstring = @iconv($context['character_set'], 'UTF-8', $string);
  1063. if ($newstring)
  1064. $string = $newstring;
  1065. }
  1066. $string = preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $string);
  1067. // Unicode, baby.
  1068. $charset = 'UTF-8';
  1069. }
  1070. }
  1071. // Convert all special characters to HTML entities...just for Hotmail :-\
  1072. if ($hotmail_fix && ($context['utf8'] || function_exists('iconv') || $context['character_set'] === 'ISO-8859-1'))
  1073. {
  1074. if (!$context['utf8'] && function_exists('iconv'))
  1075. {
  1076. $newstring = @iconv($context['character_set'], 'UTF-8', $string);
  1077. if ($newstring)
  1078. $string = $newstring;
  1079. }
  1080. $entityConvert = create_function('$c', '
  1081. if (strlen($c) === 1 && ord($c[0]) <= 0x7F)
  1082. return $c;
  1083. elseif (strlen($c) === 2 && ord($c[0]) >= 0xC0 && ord($c[0]) <= 0xDF)
  1084. return "&#" . (((ord($c[0]) ^ 0xC0) << 6) + (ord($c[1]) ^ 0x80)) . ";";
  1085. elseif (strlen($c) === 3 && ord($c[0]) >= 0xE0 && ord($c[0]) <= 0xEF)
  1086. return "&#" . (((ord($c[0]) ^ 0xE0) << 12) + ((ord($c[1]) ^ 0x80) << 6) + (ord($c[2]) ^ 0x80)) . ";";
  1087. elseif (strlen($c) === 4 && ord($c[0]) >= 0xF0 && ord($c[0]) <= 0xF7)
  1088. return "&#" . (((ord($c[0]) ^ 0xF0) << 18) + ((ord($c[1]) ^ 0x80) << 12) + ((ord($c[2]) ^ 0x80) << 6) + (ord($c[3]) ^ 0x80)) . ";";
  1089. else
  1090. return "";');
  1091. // Convert all 'special' characters to HTML entities.
  1092. return array($charset, preg_replace('~([\x80-\x{10FFFF}])~eu', '$entityConvert(\'\1\')', $string), '7bit');
  1093. }
  1094. // We don't need to mess with the subject line if no special characters were in it..
  1095. elseif (!$hotmail_fix && preg_match('~([^\x09\x0A\x0D\x20-\x7F])~', $string) === 1)
  1096. {
  1097. // Base64 encode.
  1098. $string = base64_encode($string);
  1099. // Show the characterset and the transfer-encoding for header strings.
  1100. if ($with_charset)
  1101. $string = '=?' . $charset . '?B?' . $string . '?=';
  1102. // Break it up in lines (mail body).
  1103. else
  1104. $string = chunk_split($string, 76, $line_break);
  1105. return array($charset, $string, 'base64');
  1106. }
  1107. else
  1108. return array($charset, $string, '7bit');
  1109. }
  1110. /**
  1111. * Sends mail, like mail() but over SMTP.
  1112. * It expects no slashes or entities.
  1113. * @internal
  1114. *
  1115. * @param array $mail_to_array - array of strings (email addresses)
  1116. * @param string $subject email subject
  1117. * @param string $message email message
  1118. * @param string $headers
  1119. * @return boolean whether it sent or not.
  1120. */
  1121. function smtp_mail($mail_to_array, $subject, $message, $headers)
  1122. {
  1123. global $modSettings, $webmaster_email, $txt;
  1124. $modSettings['smtp_host'] = trim($modSettings['smtp_host']);
  1125. // Try POP3 before SMTP?
  1126. // @todo There's no interface for this yet.
  1127. if ($modSettings['mail_type'] == 2 && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '')
  1128. {
  1129. $socket = fsockopen($modSettings['smtp_host'], 110, $errno, $errstr, 2);
  1130. if (!$socket && (substr($modSettings['smtp_host'], 0, 5) == 'smtp.' || substr($modSettings['smtp_host'], 0, 11) == 'ssl://smtp.'))
  1131. $socket = fsockopen(strtr($modSettings['smtp_host'], array('smtp.' => 'pop.')), 110, $errno, $errstr, 2);
  1132. if ($socket)
  1133. {
  1134. fgets($socket, 256);
  1135. fputs($socket, 'USER ' . $modSettings['smtp_username'] . "\r\n");
  1136. fgets($socket, 256);
  1137. fputs($socket, 'PASS ' . base64_decode($modSettings['smtp_password']) . "\r\n");
  1138. fgets($socket, 256);
  1139. fputs($socket, 'QUIT' . "\r\n");
  1140. fclose($socket);
  1141. }
  1142. }
  1143. // Try to connect to the SMTP server... if it doesn't exist, only wait three seconds.
  1144. if (!$socket = fsockopen($modSettings['smtp_host'], empty($modSettings['smtp_port']) ? 25 : $modSettings['smtp_port'], $errno, $errstr, 3))
  1145. {
  1146. // Maybe we can still save this? The port might be wrong.
  1147. if (substr($modSettings['smtp_host'], 0, 4) == 'ssl:' && (empty($modSettings['smtp_port']) || $modSettings['smtp_port'] == 25))
  1148. {
  1149. if ($socket = fsockopen($modSettings['smtp_host'], 465, $errno, $errstr, 3))
  1150. log_error($txt['smtp_port_ssl']);
  1151. }
  1152. // Unable to connect! Don't show any error message, but just log one and try to continue anyway.
  1153. if (!$socket)
  1154. {
  1155. log_error($txt['smtp_no_connect'] . ': ' . $errno . ' : ' . $errstr);
  1156. return false;
  1157. }
  1158. }
  1159. // Wait for a response of 220, without "-" continuer.
  1160. if (!server_parse(null, $socket, '220'))
  1161. return false;
  1162. if ($modSettings['mail_type'] == 1 && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '')
  1163. {
  1164. // @todo These should send the CURRENT server's name, not the mail server's!
  1165. // EHLO could be understood to mean encrypted hello...
  1166. if (server_parse('EHLO ' . $modSettings['smtp_host'], $socket, null) == '250')
  1167. {
  1168. if (!server_parse('AUTH LOGIN', $socket, '334'))
  1169. return false;
  1170. // Send the username and password, encoded.
  1171. if (!server_parse(base64_encode($modSettings['smtp_username']), $socket, '334'))
  1172. return false;
  1173. // The password is already encoded ;)
  1174. if (!server_parse($modSettings['smtp_password'], $socket, '235'))
  1175. return false;
  1176. }
  1177. elseif (!server_parse('HELO ' . $modSettings['smtp_host'], $socket, '250'))
  1178. return false;
  1179. }
  1180. else
  1181. {
  1182. // Just say "helo".
  1183. if (!server_parse('HELO ' . $modSettings['smtp_host'], $socket, '250'))
  1184. return false;
  1185. }
  1186. // Fix the message for any lines beginning with a period! (the first is ignored, you see.)
  1187. $message = strtr($message, array("\r\n" . '.' => "\r\n" . '..'));
  1188. // !! Theoretically, we should be able to just loop the RCPT TO.
  1189. $mail_to_array = array_values($mail_to_array);
  1190. foreach ($mail_to_array as $i => $mail_to)
  1191. {
  1192. // Reset the connection to send another email.
  1193. if ($i != 0)
  1194. {
  1195. if (!server_parse('RSET', $socket, '250'))
  1196. return false;
  1197. }
  1198. // From, to, and then start the data...
  1199. if (!server_parse('MAIL FROM: <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>', $socket, '250'))
  1200. return false;
  1201. if (!server_parse('RCPT TO: <' . $mail_to . '>', $socket, '250'))
  1202. return false;
  1203. if (!server_parse('DATA', $socket, '354'))
  1204. return false;
  1205. fputs($socket, 'Subject: ' . $subject . "\r\n");
  1206. if (strlen($mail_to) > 0)
  1207. fputs($socket, 'To: <' . $mail_to . '>' . "\r\n");
  1208. fputs($socket, $headers . "\r\n\r\n");
  1209. fputs($socket, $message . "\r\n");
  1210. // Send a ., or in other words "end of data".
  1211. if (!server_parse('.', $socket, '250'))
  1212. return false;
  1213. // Almost done, almost done... don't stop me just yet!
  1214. @set_time_limit(300);
  1215. if (function_exists('apache_reset_timeout'))
  1216. @apache_reset_timeout();
  1217. }
  1218. fputs($socket, 'QUIT' . "\r\n");
  1219. fclose($socket);
  1220. return true;
  1221. }
  1222. /**
  1223. * Parse a message to the SMTP server.
  1224. * Sends the specified message to the server, and checks for the
  1225. * expected response.
  1226. * @internal
  1227. *
  1228. * @param string $message - the message to send
  1229. * @param resource $socket - socket to send on
  1230. * @param string $response - the expected response code
  1231. * @return whether it responded as such.
  1232. */
  1233. function server_parse($message, $socket, $response)
  1234. {
  1235. global $txt;
  1236. if ($message !== null)
  1237. fputs($socket, $message . "\r\n");
  1238. // No response yet.
  1239. $server_response = '';
  1240. while (substr($server_response, 3, 1) != ' ')
  1241. if (!($server_response = fgets($socket, 256)))
  1242. {
  1243. // @todo Change this message to reflect that it may mean bad user/password/server issues/etc.
  1244. log_error($txt['smtp_bad_response']);
  1245. return false;
  1246. }
  1247. if ($response === null)
  1248. return substr($server_response, 0, 3);
  1249. if (substr($server_response, 0, 3) != $response)
  1250. {
  1251. log_error($txt['smtp_error'] . $server_response);
  1252. return false;
  1253. }
  1254. return true;
  1255. }
  1256. /**
  1257. * Spell checks the post for typos ;).
  1258. * It uses the pspell library, which MUST be installed.
  1259. * It has problems with internationalization.
  1260. * It is accessed via ?action=spellcheck.
  1261. */
  1262. function SpellCheck()
  1263. {
  1264. global $txt, $context, $smcFunc;
  1265. // A list of "words" we know about but pspell doesn't.
  1266. $known_words = array('smf', 'php', 'mysql', 'www', 'gif', 'jpeg', 'png', 'http', 'smfisawesome', 'grandia', 'terranigma', 'rpgs');
  1267. loadLanguage('Post');
  1268. loadTemplate('Post');
  1269. // Okay, this looks funny, but it actually fixes a weird bug.
  1270. ob_start();
  1271. $old = error_reporting(0);
  1272. // See, first, some windows machines don't load pspell properly on the first try. Dumb, but this is a workaround.
  1273. pspell_new('en');
  1274. // Next, the dictionary in question may not exist. So, we try it... but...
  1275. $pspell_link = pspell_new($txt['lang_dictionary'], $txt['lang_spelling'], '', strtr($context['character_set'], array('iso-' => 'iso', 'ISO-' => 'iso')), PSPELL_FAST | PSPELL_RUN_TOGETHER);
  1276. // Most people don't have anything but English installed... So we use English as a last resort.
  1277. if (!$pspell_link)
  1278. $pspell_link = pspell_new('en', '', '', '', PSPELL_FAST | PSPELL_RUN_TOGETHER);
  1279. error_reporting($old);
  1280. ob_end_clean();
  1281. if (!isset($_POST['spellstring']) || !$pspell_link)
  1282. die;
  1283. // Construct a bit of Javascript code.
  1284. $context['spell_js'] = '
  1285. var txt = {"done": "' . $txt['spellcheck_done'] . '"};
  1286. var mispstr = window.opener.spellCheckGetText(spell_fieldname);
  1287. var misps = Array(';
  1288. // Get all the words (Javascript already separated them).
  1289. $alphas = explode("\n", strtr($_POST['spellstring'], array("\r" => '')));
  1290. $found_words = false;
  1291. for ($i = 0, $n = count($alphas); $i < $n; $i++)
  1292. {
  1293. // Words are sent like 'word|offset_begin|offset_end'.
  1294. $check_word = explode('|', $alphas[$i]);
  1295. // If the word is a known word, or spelled right...
  1296. if (in_array($smcFunc['strtolower']($check_word[0]), $known_words) || pspell_check($pspell_link, $check_word[0]) || !isset($check_word[2]))
  1297. continue;
  1298. // Find the word, and move up the "last occurance" to here.
  1299. $found_words = true;
  1300. // Add on the javascript for this misspelling.
  1301. $context['spell_js'] .= '
  1302. new misp("' . strtr($check_word[0], array('\\' => '\\\\', '"' => '\\"', '<' => '', '&gt;' => '')) . '", ' . (int) $check_word[1] . ', ' . (int) $check_word[2] . ', [';
  1303. // If there are suggestions, add them in...
  1304. $suggestions = pspell_suggest($pspell_link, $check_word[0]);
  1305. if (!empty($suggestions))
  1306. {
  1307. // But first check they aren't going to be censored - no naughty words!
  1308. foreach ($suggestions as $k => $word)
  1309. if ($suggestions[$k] != censorText($word))
  1310. unset($suggestions[$k]);
  1311. if (!empty($suggestions))
  1312. $context['spell_js'] .= '"' . implode('", "', $suggestions) . '"';
  1313. }
  1314. $context['spell_js'] .= ']),';
  1315. }
  1316. // If words were found, take off the last comma.
  1317. if ($found_words)
  1318. $context['spell_js'] = substr($context['spell_js'], 0, -1);
  1319. $context['spell_js'] .= '
  1320. );';
  1321. // And instruct the template system to just show the spellcheck sub template.
  1322. $context['template_layers'] = array();
  1323. $context['sub_template'] = 'spellcheck';
  1324. }
  1325. /**
  1326. * Sends a notification to members who have elected to receive emails
  1327. * when things happen to a topic, such as replies are posted.
  1328. * The function automatically finds the subject and its board, and
  1329. * checks permissions for each member who is "signed up" for notifications.
  1330. * It will not send 'reply' notifications more than once in a row.
  1331. *
  1332. * @param array $topics - represents the topics the action is happening to.
  1333. * @param string $type - can be any of reply, sticky, lock, unlock, remove,
  1334. * move, merge, and split. An appropriate message will be sent for each.
  1335. * @param array $exclude = array() - members in the exclude array will not be
  1336. * processed for the topic with the same key.
  1337. * @param array $members_only = array() - are the only ones that will be sent the notification if they have it on.
  1338. * @uses Post language file
  1339. */
  1340. function sendNotifications($topics, $type, $exclude = array(), $members_only = array())
  1341. {
  1342. global $txt, $scripturl, $language, $user_info;
  1343. global $modSettings, $sourcedir, $context, $smcFunc;
  1344. // Can't do it if there's no topics.
  1345. if (empty($topics))
  1346. return;
  1347. // It must be an array - it must!
  1348. if (!is_array($topics))
  1349. $topics = array($topics);
  1350. // Get the subject and body...
  1351. $result = $smcFunc['db_query']('', '
  1352. SELECT mf.subject, ml.body, ml.id_member, t.id_last_msg, t.id_topic,
  1353. IFNULL(mem.real_name, ml.poster_name) AS poster_name
  1354. FROM {db_prefix}topics AS t
  1355. INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)
  1356. INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)
  1357. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = ml.id_member)
  1358. WHERE t.id_topic IN ({array_int:topic_list})
  1359. LIMIT 1',
  1360. array(
  1361. 'topic_list' => $topics,
  1362. )
  1363. );
  1364. $topicData = array();
  1365. while ($row = $smcFunc['db_fetch_assoc']($result))
  1366. {
  1367. // Clean it up.
  1368. censorText($row['subject']);
  1369. censorText($row['body']);
  1370. $row['subject'] = un_htmlspecialchars($row['subject']);
  1371. $row['body'] = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($row['body'], false, $row['id_last_msg']), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  1372. $topicData[$row['id_topic']] = array(
  1373. 'subject' => $row['subject'],
  1374. 'body' => $row['body'],
  1375. 'last_id' => $row['id_last_msg'],
  1376. 'topic' => $row['id_topic'],
  1377. 'name' => $user_info['name'],
  1378. 'exclude' => '',
  1379. );
  1380. }
  1381. $smcFunc['db_free_result']($result);
  1382. // Work out any exclusions...
  1383. foreach ($topics as $key => $id)
  1384. if (isset($topicData[$id]) && !empty($exclude[$key]))
  1385. $topicData[$id]['exclude'] = (int) $exclude[$key];
  1386. // Nada?
  1387. if (empty($topicData))
  1388. trigger_error('sendNotifications(): topics not found', E_USER_NOTICE);
  1389. $topics = array_keys($topicData);
  1390. // Just in case they've gone walkies.
  1391. if (empty($topics))
  1392. return;
  1393. // Insert all of these items into the digest log for those who want notifications later.
  1394. $digest_insert = array();
  1395. foreach ($topicData as $id => $data)
  1396. $digest_insert[] = array($data['topic'], $data['last_id'], $type, (int) $data['exclude']);
  1397. $smcFunc['db_insert']('',
  1398. '{db_prefix}log_digest',
  1399. array(
  1400. 'id_topic' => 'int', 'id_msg' => 'int', 'note_type' => 'string', 'exclude' => 'int',
  1401. ),
  1402. $digest_insert,
  1403. array()
  1404. );
  1405. // Find the members with notification on for this topic.
  1406. $members = $smcFunc['db_query']('', '
  1407. SELECT
  1408. mem.id_member, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile,
  1409. ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started,
  1410. ln.id_topic
  1411. FROM {db_prefix}log_notify AS ln
  1412. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = ln.id_member)
  1413. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)
  1414. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  1415. WHERE ln.id_topic IN ({array_int:topic_list})
  1416. AND mem.notify_types < {int:notify_types}
  1417. AND mem.notify_regularity < {int:notify_regularity}
  1418. AND mem.is_activated = {int:is_activated}
  1419. AND ln.id_member != {int:current_member}' .
  1420. (empty($members_only) ? '' : ' AND ln.id_member IN ({array_int:members_only})') . '
  1421. ORDER BY mem.lngfile',
  1422. array(
  1423. 'current_member' => $user_info['id'],
  1424. 'topic_list' => $topics,
  1425. 'notify_types' => $type == 'reply' ? '4' : '3',
  1426. 'notify_regularity' => 2,
  1427. 'is_activated' => 1,
  1428. 'members_only' => is_array($members_only) ? $members_only : array($members_only),
  1429. )
  1430. );
  1431. $sent = 0;
  1432. $current_language = '';
  1433. while ($row = $smcFunc['db_fetch_assoc']($members))
  1434. {
  1435. // Don't do the excluded...
  1436. if ($topicData[$row['id_topic']]['exclude'] == $row['id_member'])
  1437. continue;
  1438. // Easier to check this here... if they aren't the topic poster do they really want to know?
  1439. if ($type != 'reply' && $row['notify_types'] == 2 && $row['id_member'] != $row['id_member_started'])
  1440. continue;
  1441. if ($row['id_group'] != 1)
  1442. {
  1443. $allowed = explode(',', $row['member_groups']);
  1444. $row['additional_groups'] = explode(',', $row['additional_groups']);
  1445. $row['additional_groups'][] = $row['id_group'];
  1446. $row['additional_groups'][] = $row['id_post_group'];
  1447. if (count(array_intersect($allowed, $row['additional_groups'])) == 0)
  1448. continue;
  1449. }
  1450. $needed_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  1451. if (empty($current_language) || $current_language != $needed_language)
  1452. $current_language = loadLanguage('Post', $needed_language, false);
  1453. $message_type = 'notification_' . $type;
  1454. $replacements = array(
  1455. 'TOPICSUBJECT' => $topicData[$row['id_topic']]['subject'],
  1456. 'POSTERNAME' => un_htmlspecialchars($topicData[$row['id_topic']]['name']),
  1457. 'TOPICLINK' => $scripturl . '?topic=' . $row['id_topic'] . '.new;topicseen#new',
  1458. 'UNSUBSCRIBELINK' => $scripturl . '?action=notify;topic=' . $row['id_topic'] . '.0',
  1459. );
  1460. if ($type == 'remove')
  1461. unset($replacements['TOPICLINK'], $replacements['UNSUBSCRIBELINK']);
  1462. // Do they want the body of the message sent too?
  1463. if (!empty($row['notify_send_body']) && $type == 'reply' && empty($modSettings['disallow_sendBody']))
  1464. {
  1465. $message_type .= '_body';
  1466. $replacements['MESSAGE'] = $topicData[$row['id_topic']]['body'];
  1467. }
  1468. if (!empty($row['notify_regularity']) && $type == 'reply')
  1469. $message_type .= '_once';
  1470. // Send only if once is off or it's on and it hasn't been sent.
  1471. if ($type != 'reply' || empty($row['notify_regularity']) || empty($row['sent']))
  1472. {
  1473. $emaildata = loadEmailTemplate($message_type, $replacements, $needed_language);
  1474. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'm' . $topicData[$row['id_topic']]['last_id']);
  1475. $sent++;
  1476. }
  1477. }
  1478. $smcFunc['db_free_result']($members);
  1479. if (isset($current_language) && $current_language != $user_info['language'])
  1480. loadLanguage('Post');
  1481. // Sent!
  1482. if ($type == 'reply' && !empty($sent))
  1483. $smcFunc['db_query']('', '
  1484. UPDATE {db_prefix}log_notify
  1485. SET sent = {int:is_sent}
  1486. WHERE id_topic IN ({array_int:topic_list})
  1487. AND id_member != {int:current_member}',
  1488. array(
  1489. 'current_member' => $user_info['id'],
  1490. 'topic_list' => $topics,
  1491. 'is_sent' => 1,
  1492. )
  1493. );
  1494. // For approvals we need to unsend the exclusions (This *is* the quickest way!)
  1495. if (!empty($sent) && !empty($exclude))
  1496. {
  1497. foreach ($topicData as $id => $data)
  1498. if ($data['exclude'])
  1499. $smcFunc['db_query']('', '
  1500. UPDATE {db_prefix}log_notify
  1501. SET sent = {int:not_sent}
  1502. WHERE id_topic = {int:id_topic}
  1503. AND id_member = {int:id_member}',
  1504. array(
  1505. 'not_sent' => 0,
  1506. 'id_topic' => $id,
  1507. 'id_member' => $data['exclude'],
  1508. )
  1509. );
  1510. }
  1511. }
  1512. /**
  1513. * Create a post, either as new topic (id_topic = 0) or in an existing one.
  1514. * The input parameters of this function assume:
  1515. * - Strings have been escaped.
  1516. * - Integers have been cast to integer.
  1517. * - Mandatory parameters are set.
  1518. *
  1519. * @param array $msgOptions
  1520. * @param array $topicOptions
  1521. * @param array $posterOptions
  1522. */
  1523. function createPost(&$msgOptions, &$topicOptions, &$posterOptions)
  1524. {
  1525. global $user_info, $txt, $modSettings, $smcFunc, $context, $sourcedir;
  1526. // Set optional parameters to the default value.
  1527. $msgOptions['icon'] = empty($msgOptions['icon']) ? 'xx' : $msgOptions['icon'];
  1528. $msgOptions['smileys_enabled'] = !empty($msgOptions['smileys_enabled']);
  1529. $msgOptions['attachments'] = empty($msgOptions['attachments']) ? array() : $msgOptions['attachments'];
  1530. $msgOptions['approved'] = isset($msgOptions['approved']) ? (int) $msgOptions['approved'] : 1;
  1531. $topicOptions['id'] = empty($topicOptions['id']) ? 0 : (int) $topicOptions['id'];
  1532. $topicOptions['poll'] = isset($topicOptions['poll']) ? (int) $topicOptions['poll'] : null;
  1533. $topicOptions['lock_mode'] = isset($topicOptions['lock_mode']) ? $topicOptions['lock_mode'] : null;
  1534. $topicOptions['sticky_mode'] = isset($topicOptions['sticky_mode']) ? $topicOptions['sticky_mode'] : null;
  1535. $topicOptions['redirect_expires'] = isset($topicOptions['redirect_expires']) ? $topicOptions['redirect_expires'] : null;
  1536. $topicOptions['redirect_topic'] = isset($topicOptions['redirect_topic']) ? $topicOptions['redirect_topic'] : null;
  1537. $posterOptions['id'] = empty($posterOptions['id']) ? 0 : (int) $posterOptions['id'];
  1538. $posterOptions['ip'] = empty($posterOptions['ip']) ? $user_info['ip'] : $posterOptions['ip'];
  1539. // We need to know if the topic is approved. If we're told that's great - if not find out.
  1540. if (!$modSettings['postmod_active'])
  1541. $topicOptions['is_approved'] = true;
  1542. elseif (!empty($topicOptions['id']) && !isset($topicOptions['is_approved']))
  1543. {
  1544. $request = $smcFunc['db_query']('', '
  1545. SELECT approved
  1546. FROM {db_prefix}topics
  1547. WHERE id_topic = {int:id_topic}
  1548. LIMIT 1',
  1549. array(
  1550. 'id_topic' => $topicOptions['id'],
  1551. )
  1552. );
  1553. list ($topicOptions['is_approved']) = $smcFunc['db_fetch_row']($request);
  1554. $smcFunc['db_free_result']($request);
  1555. }
  1556. // If nothing was filled in as name/e-mail address, try the member table.
  1557. if (!isset($posterOptions['name']) || $posterOptions['name'] == '' || (empty($posterOptions['email']) && !empty($posterOptions['id'])))
  1558. {
  1559. if (empty($posterOptions['id']))
  1560. {
  1561. $posterOptions['id'] = 0;
  1562. $posterOptions['name'] = $txt['guest_title'];
  1563. $posterOptions['email'] = '';
  1564. }
  1565. elseif ($posterOptions['id'] != $user_info['id'])
  1566. {
  1567. $request = $smcFunc['db_query']('', '
  1568. SELECT member_name, email_address
  1569. FROM {db_prefix}members
  1570. WHERE id_member = {int:id_member}
  1571. LIMIT 1',
  1572. array(
  1573. 'id_member' => $posterOptions['id'],
  1574. )
  1575. );
  1576. // Couldn't find the current poster?
  1577. if ($smcFunc['db_num_rows']($request) == 0)
  1578. {
  1579. trigger_error('createPost(): Invalid member id ' . $posterOptions['id'], E_USER_NOTICE);
  1580. $posterOptions['id'] = 0;
  1581. $posterOptions['name'] = $txt['guest_title'];
  1582. $posterOptions['email'] = '';
  1583. }
  1584. else
  1585. list ($posterOptions['name'], $posterOptions['email']) = $smcFunc['db_fetch_row']($request);
  1586. $smcFunc['db_free_result']($request);
  1587. }
  1588. else
  1589. {
  1590. $posterOptions['name'] = $user_info['name'];
  1591. $posterOptions['email'] = $user_info['email'];
  1592. }
  1593. }
  1594. // It's do or die time: forget any user aborts!
  1595. $previous_ignore_user_abort = ignore_user_abort(true);
  1596. $new_topic = empty($topicOptions['id']);
  1597. $message_columns = array(
  1598. 'id_board' => 'int', 'id_topic' => 'int', 'id_member' => 'int', 'subject' => 'string-255', 'body' => (!empty($modSettings['max_messageLength']) && $modSettings['max_messageLength'] > 65534 ? 'string-' . $modSettings['max_messageLength'] : (empty($modSettings['max_messageLength']) ? 'string' : 'string-65534')),
  1599. 'poster_name' => 'string-255', 'poster_email' => 'string-255', 'poster_time' => 'int', 'poster_ip' => 'string-255',
  1600. 'smileys_enabled' => 'int', 'modified_name' => 'string', 'icon' => 'string-16', 'approved' => 'int',
  1601. );
  1602. $message_parameters = array(
  1603. $topicOptions['board'], $topicOptions['id'], $posterOptions['id'], $msgOptions['subject'], $msgOptions['body'],
  1604. $posterOptions['name'], $posterOptions['email'], time(), $posterOptions['ip'],
  1605. $msgOptions['smileys_enabled'] ? 1 : 0, '', $msgOptions['icon'], $msgOptions['approved'],
  1606. );
  1607. // What if we want to do anything with posts?
  1608. call_integration_hook('integrate_create_post', array($msgOptions, $topicOptions, $posterOptions, $message_columns, $message_parameters));
  1609. // Insert the post.
  1610. $smcFunc['db_insert']('',
  1611. '{db_prefix}messages',
  1612. $message_columns,
  1613. $message_parameters,
  1614. array('id_msg')
  1615. );
  1616. $msgOptions['id'] = $smcFunc['db_insert_id']('{db_prefix}messages', 'id_msg');
  1617. // Something went wrong creating the message...
  1618. if (empty($msgOptions['id']))
  1619. return false;
  1620. // Fix the attachments.
  1621. if (!empty($msgOptions['attachments']))
  1622. $smcFunc['db_query']('', '
  1623. UPDATE {db_prefix}attachments
  1624. SET id_msg = {int:id_msg}
  1625. WHERE id_attach IN ({array_int:attachment_list})',
  1626. array(
  1627. 'attachment_list' => $msgOptions['attachments'],
  1628. 'id_msg' => $msgOptions['id'],
  1629. )
  1630. );
  1631. // Insert a new topic (if the topicID was left empty.)
  1632. if ($new_topic)
  1633. {
  1634. $topic_columns = array(
  1635. 'id_board' => 'int', 'id_member_started' => 'int', 'id_member_updated' => 'int', 'id_first_msg' => 'int',
  1636. 'id_last_msg' => 'int', 'locked' => 'int', 'is_sticky' => 'int', 'num_views' => 'int',
  1637. 'id_poll' => 'int', 'unapproved_posts' => 'int', 'approved' => 'int',
  1638. 'redirect_expires' => 'int', 'id_redirect_topic' => 'int',
  1639. );
  1640. $topic_parameters = array(
  1641. $topicOptions['board'], $posterOptions['id'], $posterOptions['id'], $msgOptions['id'],
  1642. $msgOptions['id'], $topicOptions['lock_mode'] === null ? 0 : $topicOptions['lock_mode'], $topicOptions['sticky_mode'] === null ? 0 : $topicOptions['sticky_mode'], 0,
  1643. $topicOptions['poll'] === null ? 0 : $topicOptions['poll'], $msgOptions['approved'] ? 0 : 1, $msgOptions['approved'],
  1644. $topicOptions['redirect_expires'] === null ? 0 : $topicOptions['redirect_expires'], $topicOptions['redirect_topic'] === null ? 0 : $topicOptions['redirect_topic'],
  1645. );
  1646. call_integration_hook('integrate_before_create_topic', array($msgOptions, $topicOptions, $posterOptions, $topic_columns, $topic_parameters));
  1647. $smcFunc['db_insert']('',
  1648. '{db_prefix}topics',
  1649. $topic_columns,
  1650. $topic_parameters,
  1651. array('id_topic')
  1652. );
  1653. $topicOptions['id'] = $smcFunc['db_insert_id']('{db_prefix}topics', 'id_topic');
  1654. // The topic couldn't be created for some reason.
  1655. if (empty($topicOptions['id']))
  1656. {
  1657. // We should delete the post that did work, though...
  1658. $smcFunc['db_query']('', '
  1659. DELETE FROM {db_prefix}messages
  1660. WHERE id_msg = {int:id_msg}',
  1661. array(
  1662. 'id_msg' => $msgOptions['id'],
  1663. )
  1664. );
  1665. return false;
  1666. }
  1667. // Fix the message with the topic.
  1668. $smcFunc['db_query']('', '
  1669. UPDATE {db_prefix}messages
  1670. SET id_topic = {int:id_topic}
  1671. WHERE id_msg = {int:id_msg}',
  1672. array(
  1673. 'id_topic' => $topicOptions['id'],
  1674. 'id_msg' => $msgOptions['id'],
  1675. )
  1676. );
  1677. // There's been a new topic AND a new post today.
  1678. trackStats(array('topics' => '+', 'posts' => '+'));
  1679. updateStats('topic', true);
  1680. updateStats('subject', $topicOptions['id'], $msgOptions['subject']);
  1681. // What if we want to export new topics out to a CMS?
  1682. call_integration_hook('integrate_create_topic', array($msgOptions, $topicOptions, $posterOptions));
  1683. }
  1684. // The topic already exists, it only needs a little updating.
  1685. else
  1686. {
  1687. $update_parameters = array(
  1688. 'poster_id' => $posterOptions['id'],
  1689. 'id_msg' => $msgOptions['id'],
  1690. 'locked' => $topicOptions['lock_mode'],
  1691. 'is_sticky' => $topicOptions['sticky_mode'],
  1692. 'id_topic' => $topicOptions['id'],
  1693. 'counter_increment' => 1,
  1694. );
  1695. $topics_columns = array();
  1696. if ($msgOptions['approved'])
  1697. $topics_columns = array(
  1698. 'id_member_updated = {int:poster_id}',
  1699. 'id_last_msg = {int:id_msg}',
  1700. 'num_replies = num_replies + {int:counter_increment}',
  1701. );
  1702. else
  1703. $topics_columns = array(
  1704. 'unapproved_posts = unapproved_posts + {int:counter_increment}',
  1705. );
  1706. if ($topicOptions['lock_mode'] !== null)
  1707. $topics_columns = array(
  1708. 'locked = {int:locked}',
  1709. );
  1710. if ($topicOptions['sticky_mode'] !== null)
  1711. $topics_columns = array(
  1712. 'is_sticky = {int:is_sticky}',
  1713. );
  1714. call_integration_hook('integrate_modify_topic', array($topics_columns, $update_parameters, $msgOptions, $topicOptions, $posterOptions));
  1715. // Update the number of replies and the lock/sticky status.
  1716. $smcFunc['db_query']('', '
  1717. UPDATE {db_prefix}topics
  1718. SET
  1719. ' . implode(', ', $topics_columns) . '
  1720. WHERE id_topic = {int:id_topic}',
  1721. $update_parameters
  1722. );
  1723. // One new post has been added today.
  1724. trackStats(array('posts' => '+'));
  1725. }
  1726. // Creating is modifying...in a way.
  1727. // @todo Why not set id_msg_modified on the insert?
  1728. $smcFunc['db_query']('', '
  1729. UPDATE {db_prefix}messages
  1730. SET id_msg_modified = {int:id_msg}
  1731. WHERE id_msg = {int:id_msg}',
  1732. array(
  1733. 'id_msg' => $msgOptions['id'],
  1734. )
  1735. );
  1736. // Increase the number of posts and topics on the board.
  1737. if ($msgOptions['approved'])
  1738. $smcFunc['db_query']('', '
  1739. UPDATE {db_prefix}boards
  1740. SET num_posts = num_posts + 1' . ($new_topic ? ', num_topics = num_topics + 1' : '') . '
  1741. WHERE id_board = {int:id_board}',
  1742. array(
  1743. 'id_board' => $topicOptions['board'],
  1744. )
  1745. );
  1746. else
  1747. {
  1748. $smcFunc['db_query']('', '
  1749. UPDATE {db_prefix}boards
  1750. SET unapproved_posts = unapproved_posts + 1' . ($new_topic ? ', unapproved_topics = unapproved_topics + 1' : '') . '
  1751. WHERE id_board = {int:id_board}',
  1752. array(
  1753. 'id_board' => $topicOptions['board'],
  1754. )
  1755. );
  1756. // Add to the approval queue too.
  1757. $smcFunc['db_insert']('',
  1758. '{db_prefix}approval_queue',
  1759. array(
  1760. 'id_msg' => 'int',
  1761. ),
  1762. array(
  1763. $msgOptions['id'],
  1764. ),
  1765. array()
  1766. );
  1767. }
  1768. // Mark inserted topic as read (only for the user calling this function).
  1769. if (!empty($topicOptions['mark_as_read']) && !$user_info['is_guest'])
  1770. {
  1771. // Since it's likely they *read* it before replying, let's try an UPDATE first.
  1772. if (!$new_topic)
  1773. {
  1774. $smcFunc['db_query']('', '
  1775. UPDATE {db_prefix}log_topics
  1776. SET id_msg = {int:id_msg}
  1777. WHERE id_member = {int:current_member}
  1778. AND id_topic = {int:id_topic}',
  1779. array(
  1780. 'current_member' => $posterOptions['id'],
  1781. 'id_msg' => $msgOptions['id'],
  1782. 'id_topic' => $topicOptions['id'],
  1783. )
  1784. );
  1785. $flag = $smcFunc['db_affected_rows']() != 0;
  1786. }
  1787. if (empty($flag))
  1788. {
  1789. $smcFunc['db_insert']('ignore',
  1790. '{db_prefix}log_topics',
  1791. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  1792. array($topicOptions['id'], $posterOptions['id'], $msgOptions['id']),
  1793. array('id_topic', 'id_member')
  1794. );
  1795. }
  1796. }
  1797. // If there's a custom search index, it may need updating...
  1798. require_once($sourcedir . '/Search.php');
  1799. $searchAPI = findSearchAPI();
  1800. if (is_callable(array($searchAPI, 'postCreated')))
  1801. $searchAPI->postCreated($msgOptions, $topicOptions, $posterOptions);
  1802. // Increase the post counter for the user that created the post.
  1803. if (!empty($posterOptions['update_post_count']) && !empty($posterOptions['id']) && $msgOptions['approved'])
  1804. {
  1805. // Are you the one that happened to create this post?
  1806. if ($user_info['id'] == $posterOptions['id'])
  1807. $user_info['posts']++;
  1808. updateMemberData($posterOptions['id'], array('posts' => '+'));
  1809. }
  1810. // They've posted, so they can make the view count go up one if they really want. (this is to keep views >= replies...)
  1811. $_SESSION['last_read_topic'] = 0;
  1812. // Better safe than sorry.
  1813. if (isset($_SESSION['topicseen_cache'][$topicOptions['board']]))
  1814. $_SESSION['topicseen_cache'][$topicOptions['board']]--;
  1815. // Update all the stats so everyone knows about this new topic and message.
  1816. updateStats('message', true, $msgOptions['id']);
  1817. // Update the last message on the board assuming it's approved AND the topic is.
  1818. if ($msgOptions['approved'])
  1819. updateLastMessages($topicOptions['board'], $new_topic || !empty($topicOptions['is_approved']) ? $msgOptions['id'] : 0);
  1820. // Alright, done now... we can abort now, I guess... at least this much is done.
  1821. ignore_user_abort($previous_ignore_user_abort);
  1822. // Success.
  1823. return true;
  1824. }
  1825. /**
  1826. * Modifying a post...
  1827. *
  1828. * @param array &$msgOptions
  1829. * @param array &$topicOptions
  1830. * @param array &$posterOptions
  1831. */
  1832. function modifyPost(&$msgOptions, &$topicOptions, &$posterOptions)
  1833. {
  1834. global $user_info, $modSettings, $smcFunc, $context, $sourcedir;
  1835. $topicOptions['poll'] = isset($topicOptions['poll']) ? (int) $topicOptions['poll'] : null;
  1836. $topicOptions['lock_mode'] = isset($topicOptions['lock_mode']) ? $topicOptions['lock_mode'] : null;
  1837. $topicOptions['sticky_mode'] = isset($topicOptions['sticky_mode']) ? $topicOptions['sticky_mode'] : null;
  1838. // This is longer than it has to be, but makes it so we only set/change what we have to.
  1839. $messages_columns = array();
  1840. if (isset($posterOptions['name']))
  1841. $messages_columns['poster_name'] = $posterOptions['name'];
  1842. if (isset($posterOptions['email']))
  1843. $messages_columns['poster_email'] = $posterOptions['email'];
  1844. if (isset($msgOptions['icon']))
  1845. $messages_columns['icon'] = $msgOptions['icon'];
  1846. if (isset($msgOptions['subject']))
  1847. $messages_columns['subject'] = $msgOptions['subject'];
  1848. if (isset($msgOptions['body']))
  1849. {
  1850. $messages_columns['body'] = $msgOptions['body'];
  1851. // using a custom search index, then lets get the old message so we can update our index as needed
  1852. if (!empty($modSettings['search_custom_index_config']))
  1853. {
  1854. $request = $smcFunc['db_query']('', '
  1855. SELECT body
  1856. FROM {db_prefix}messages
  1857. WHERE id_msg = {int:id_msg}',
  1858. array(
  1859. 'id_msg' => $msgOptions['id'],
  1860. )
  1861. );
  1862. list ($msgOptions['old_body']) = $smcFunc['db_fetch_row']($request);
  1863. $smcFunc['db_free_result']($request);
  1864. }
  1865. }
  1866. if (!empty($msgOptions['modify_time']))
  1867. {
  1868. $messages_columns['modified_time'] = $msgOptions['modify_time'];
  1869. $messages_columns['modified_name'] = $msgOptions['modify_name'];
  1870. $messages_columns['id_msg_modified'] = $modSettings['maxMsgID'];
  1871. }
  1872. if (isset($msgOptions['smileys_enabled']))
  1873. $messages_columns['smileys_enabled'] = empty($msgOptions['smileys_enabled']) ? 0 : 1;
  1874. // Which columns need to be ints?
  1875. $messageInts = array('modified_time', 'id_msg_modified', 'smileys_enabled');
  1876. $update_parameters = array(
  1877. 'id_msg' => $msgOptions['id'],
  1878. );
  1879. call_integration_hook('integrate_modify_post', array($messages_columns, $update_parameters, $msgOptions, $topicOptions, $posterOptions, $messageInts));
  1880. foreach ($messages_columns as $var => $val)
  1881. {
  1882. $messages_columns[$var] = $var . ' = {' . (in_array($var, $messageInts) ? 'int' : 'string') . ':var_' . $var . '}';
  1883. $update_parameters['var_' . $var] = $val;
  1884. }
  1885. // Nothing to do?
  1886. if (empty($messages_columns))
  1887. return true;
  1888. // Change the post.
  1889. $smcFunc['db_query']('', '
  1890. UPDATE {db_prefix}messages
  1891. SET ' . implode(', ', $messages_columns) . '
  1892. WHERE id_msg = {int:id_msg}',
  1893. $update_parameters
  1894. );
  1895. // Lock and or sticky the post.
  1896. if ($topicOptions['sticky_mode'] !== null || $topicOptions['lock_mode'] !== null || $topicOptions['poll'] !== null)
  1897. {
  1898. $smcFunc['db_query']('', '
  1899. UPDATE {db_prefix}topics
  1900. SET
  1901. is_sticky = {raw:is_sticky},
  1902. locked = {raw:locked},
  1903. id_poll = {raw:id_poll}
  1904. WHERE id_topic = {int:id_topic}',
  1905. array(
  1906. 'is_sticky' => $topicOptions['sticky_mode'] === null ? 'is_sticky' : (int) $topicOptions['sticky_mode'],
  1907. 'locked' => $topicOptions['lock_mode'] === null ? 'locked' : (int) $topicOptions['lock_mode'],
  1908. 'id_poll' => $topicOptions['poll'] === null ? 'id_poll' : (int) $topicOptions['poll'],
  1909. 'id_topic' => $topicOptions['id'],
  1910. )
  1911. );
  1912. }
  1913. // Mark the edited post as read.
  1914. if (!empty($topicOptions['mark_as_read']) && !$user_info['is_guest'])
  1915. {
  1916. // Since it's likely they *read* it before editing, let's try an UPDATE first.
  1917. $smcFunc['db_query']('', '
  1918. UPDATE {db_prefix}log_topics
  1919. SET id_msg = {int:id_msg}
  1920. WHERE id_member = {int:current_member}
  1921. AND id_topic = {int:id_topic}',
  1922. array(
  1923. 'current_member' => $user_info['id'],
  1924. 'id_msg' => $modSettings['maxMsgID'],
  1925. 'id_topic' => $topicOptions['id'],
  1926. )
  1927. );
  1928. $flag = $smcFunc['db_affected_rows']() != 0;
  1929. if (empty($flag))
  1930. {
  1931. $smcFunc['db_insert']('ignore',
  1932. '{db_prefix}log_topics',
  1933. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  1934. array($topicOptions['id'], $user_info['id'], $modSettings['maxMsgID']),
  1935. array('id_topic', 'id_member')
  1936. );
  1937. }
  1938. }
  1939. // If there's a custom search index, it needs to be modified...
  1940. require_once($sourcedir . '/Search.php');
  1941. $searchAPI = findSearchAPI();
  1942. if (is_callable(array($searchAPI, 'postModified')))
  1943. $searchAPI->postModified($msgOptions, $topicOptions, $posterOptions);
  1944. if (isset($msgOptions['subject']))
  1945. {
  1946. // Only update the subject if this was the first message in the topic.
  1947. $request = $smcFunc['db_query']('', '
  1948. SELECT id_topic
  1949. FROM {db_prefix}topics
  1950. WHERE id_first_msg = {int:id_first_msg}
  1951. LIMIT 1',
  1952. array(
  1953. 'id_first_msg' => $msgOptions['id'],
  1954. )
  1955. );
  1956. if ($smcFunc['db_num_rows']($request) == 1)
  1957. updateStats('subject', $topicOptions['id'], $msgOptions['subject']);
  1958. $smcFunc['db_free_result']($request);
  1959. }
  1960. // Finally, if we are setting the approved state we need to do much more work :(
  1961. if ($modSettings['postmod_active'] && isset($msgOptions['approved']))
  1962. approvePosts($msgOptions['id'], $msgOptions['approved']);
  1963. return true;
  1964. }
  1965. /**
  1966. * Approve (or not) some posts... without permission checks...
  1967. *
  1968. * @param array $msgs - array of message ids
  1969. * @param bool $approve = true
  1970. */
  1971. function approvePosts($msgs, $approve = true)
  1972. {
  1973. global $sourcedir, $smcFunc;
  1974. if (!is_array($msgs))
  1975. $msgs = array($msgs);
  1976. if (empty($msgs))
  1977. return false;
  1978. // May as well start at the beginning, working out *what* we need to change.
  1979. $request = $smcFunc['db_query']('', '
  1980. SELECT m.id_msg, m.approved, m.id_topic, m.id_board, t.id_first_msg, t.id_last_msg,
  1981. m.body, m.subject, IFNULL(mem.real_name, m.poster_name) AS poster_name, m.id_member,
  1982. t.approved AS topic_approved, b.count_posts
  1983. FROM {db_prefix}messages AS m
  1984. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
  1985. INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
  1986. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
  1987. WHERE m.id_msg IN ({array_int:message_list})
  1988. AND m.approved = {int:approved_state}',
  1989. array(
  1990. 'message_list' => $msgs,
  1991. 'approved_state' => $approve ? 0 : 1,
  1992. )
  1993. );
  1994. $msgs = array();
  1995. $topics = array();
  1996. $topic_changes = array();
  1997. $board_changes = array();
  1998. $notification_topics = array();
  1999. $notification_posts = array();
  2000. $member_post_changes = array();
  2001. while ($row = $smcFunc['db_fetch_assoc']($request))
  2002. {
  2003. // Easy...
  2004. $msgs[] = $row['id_msg'];
  2005. $topics[] = $row['id_topic'];
  2006. // Ensure our change array exists already.
  2007. if (!isset($topic_changes[$row['id_topic']]))
  2008. $topic_changes[$row['id_topic']] = array(
  2009. 'id_last_msg' => $row['id_last_msg'],
  2010. 'approved' => $row['topic_approved'],
  2011. 'replies' => 0,
  2012. 'unapproved_posts' => 0,
  2013. );
  2014. if (!isset($board_changes[$row['id_board']]))
  2015. $board_changes[$row['id_board']] = array(
  2016. 'posts' => 0,
  2017. 'topics' => 0,
  2018. 'unapproved_posts' => 0,
  2019. 'unapproved_topics' => 0,
  2020. );
  2021. // If it's the first message then the topic state changes!
  2022. if ($row['id_msg'] == $row['id_first_msg'])
  2023. {
  2024. $topic_changes[$row['id_topic']]['approved'] = $approve ? 1 : 0;
  2025. $board_changes[$row['id_board']]['unapproved_topics'] += $approve ? -1 : 1;
  2026. $board_changes[$row['id_board']]['topics'] += $approve ? 1 : -1;
  2027. // Note we need to ensure we announce this topic!
  2028. $notification_topics[] = array(
  2029. 'body' => $row['body'],
  2030. 'subject' => $row['subject'],
  2031. 'name' => $row['poster_name'],
  2032. 'board' => $row['id_board'],
  2033. 'topic' => $row['id_topic'],
  2034. 'msg' => $row['id_first_msg'],
  2035. 'poster' => $row['id_member'],
  2036. );
  2037. }
  2038. else
  2039. {
  2040. $topic_changes[$row['id_topic']]['replies'] += $approve ? 1 : -1;
  2041. // This will be a post... but don't notify unless it's not followed by approved ones.
  2042. if ($row['id_msg'] > $row['id_last_msg'])
  2043. $notification_posts[$row['id_topic']][] = array(
  2044. 'id' => $row['id_msg'],
  2045. 'body' => $row['body'],
  2046. 'subject' => $row['subject'],
  2047. 'name' => $row['poster_name'],
  2048. 'topic' => $row['id_topic'],
  2049. );
  2050. }
  2051. // If this is being approved and id_msg is higher than the current id_last_msg then it changes.
  2052. if ($approve && $row['id_msg'] > $topic_changes[$row['id_topic']]['id_last_msg'])
  2053. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_msg'];
  2054. // If this is being unapproved, and it's equal to the id_last_msg we need to find a new one!
  2055. elseif (!$approve)
  2056. // Default to the first message and then we'll override in a bit ;)
  2057. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_first_msg'];
  2058. $topic_changes[$row['id_topic']]['unapproved_posts'] += $approve ? -1 : 1;
  2059. $board_changes[$row['id_board']]['unapproved_posts'] += $approve ? -1 : 1;
  2060. $board_changes[$row['id_board']]['posts'] += $approve ? 1 : -1;
  2061. // Post count for the user?
  2062. if ($row['id_member'] && empty($row['count_posts']))
  2063. $member_post_changes[$row['id_member']] = isset($member_post_changes[$row['id_member']]) ? $member_post_changes[$row['id_member']] + 1 : 1;
  2064. }
  2065. $smcFunc['db_free_result']($request);
  2066. if (empty($msgs))
  2067. return;
  2068. // Now we have the differences make the changes, first the easy one.
  2069. $smcFunc['db_query']('', '
  2070. UPDATE {db_prefix}messages
  2071. SET approved = {int:approved_state}
  2072. WHERE id_msg IN ({array_int:message_list})',
  2073. array(
  2074. 'message_list' => $msgs,
  2075. 'approved_state' => $approve ? 1 : 0,
  2076. )
  2077. );
  2078. // If we were unapproving find the last msg in the topics...
  2079. if (!$approve)
  2080. {
  2081. $request = $smcFunc['db_query']('', '
  2082. SELECT id_topic, MAX(id_msg) AS id_last_msg
  2083. FROM {db_prefix}messages
  2084. WHERE id_topic IN ({array_int:topic_list})
  2085. AND approved = {int:approved}
  2086. GROUP BY id_topic',
  2087. array(
  2088. 'topic_list' => $topics,
  2089. 'approved' => 1,
  2090. )
  2091. );
  2092. while ($row = $smcFunc['db_fetch_assoc']($request))
  2093. $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_last_msg'];
  2094. $smcFunc['db_free_result']($request);
  2095. }
  2096. // ... next the topics...
  2097. foreach ($topic_changes as $id => $changes)
  2098. $smcFunc['db_query']('', '
  2099. UPDATE {db_prefix}topics
  2100. SET approved = {int:approved}, unapproved_posts = unapproved_posts + {int:unapproved_posts},
  2101. num_replies = num_replies + {int:num_replies}, id_last_msg = {int:id_last_msg}
  2102. WHERE id_topic = {int:id_topic}',
  2103. array(
  2104. 'approved' => $changes['approved'],
  2105. 'unapproved_posts' => $changes['unapproved_posts'],
  2106. 'num_replies' => $changes['replies'],
  2107. 'id_last_msg' => $changes['id_last_msg'],
  2108. 'id_topic' => $id,
  2109. )
  2110. );
  2111. // ... finally the boards...
  2112. foreach ($board_changes as $id => $changes)
  2113. $smcFunc['db_query']('', '
  2114. UPDATE {db_prefix}boards
  2115. SET num_posts = num_posts + {int:num_posts}, unapproved_posts = unapproved_posts + {int:unapproved_posts},
  2116. num_topics = num_topics + {int:num_topics}, unapproved_topics = unapproved_topics + {int:unapproved_topics}
  2117. WHERE id_board = {int:id_board}',
  2118. array(
  2119. 'num_posts' => $changes['posts'],
  2120. 'unapproved_posts' => $changes['unapproved_posts'],
  2121. 'num_topics' => $changes['topics'],
  2122. 'unapproved_topics' => $changes['unapproved_topics'],
  2123. 'id_board' => $id,
  2124. )
  2125. );
  2126. // Finally, least importantly, notifications!
  2127. if ($approve)
  2128. {
  2129. if (!empty($notification_topics))
  2130. {
  2131. require_once($sourcedir . '/Post.php');
  2132. notifyMembersBoard($notification_topics);
  2133. }
  2134. if (!empty($notification_posts))
  2135. sendApprovalNotifications($notification_posts);
  2136. $smcFunc['db_query']('', '
  2137. DELETE FROM {db_prefix}approval_queue
  2138. WHERE id_msg IN ({array_int:message_list})
  2139. AND id_attach = {int:id_attach}',
  2140. array(
  2141. 'message_list' => $msgs,
  2142. 'id_attach' => 0,
  2143. )
  2144. );
  2145. }
  2146. // If unapproving add to the approval queue!
  2147. else
  2148. {
  2149. $msgInserts = array();
  2150. foreach ($msgs as $msg)
  2151. $msgInserts[] = array($msg);
  2152. $smcFunc['db_insert']('ignore',
  2153. '{db_prefix}approval_queue',
  2154. array('id_msg' => 'int'),
  2155. $msgInserts,
  2156. array('id_msg')
  2157. );
  2158. }
  2159. // Update the last messages on the boards...
  2160. updateLastMessages(array_keys($board_changes));
  2161. // Post count for the members?
  2162. if (!empty($member_post_changes))
  2163. foreach ($member_post_changes as $id_member => $count_change)
  2164. updateMemberData($id_member, array('posts' => 'posts ' . ($approve ? '+' : '-') . ' ' . $count_change));
  2165. return true;
  2166. }
  2167. /**
  2168. * Approve topics?
  2169. * @todo shouldn't this be in topic
  2170. *
  2171. * @param array $topics array of topics ids
  2172. * @param bool $approve = true
  2173. */
  2174. function approveTopics($topics, $approve = true)
  2175. {
  2176. global $smcFunc;
  2177. if (!is_array($topics))
  2178. $topics = array($topics);
  2179. if (empty($topics))
  2180. return false;
  2181. $approve_type = $approve ? 0 : 1;
  2182. // Just get the messages to be approved and pass through...
  2183. $request = $smcFunc['db_query']('', '
  2184. SELECT id_msg
  2185. FROM {db_prefix}messages
  2186. WHERE id_topic IN ({array_int:topic_list})
  2187. AND approved = {int:approve_type}',
  2188. array(
  2189. 'topic_list' => $topics,
  2190. 'approve_type' => $approve_type,
  2191. )
  2192. );
  2193. $msgs = array();
  2194. while ($row = $smcFunc['db_fetch_assoc']($request))
  2195. $msgs[] = $row['id_msg'];
  2196. $smcFunc['db_free_result']($request);
  2197. return approvePosts($msgs, $approve);
  2198. }
  2199. /**
  2200. * A special function for handling the hell which is sending approval notifications.
  2201. *
  2202. * @param $topicData
  2203. */
  2204. function sendApprovalNotifications(&$topicData)
  2205. {
  2206. global $txt, $scripturl, $language, $user_info;
  2207. global $modSettings, $sourcedir, $context, $smcFunc;
  2208. // Clean up the data...
  2209. if (!is_array($topicData) || empty($topicData))
  2210. return;
  2211. $topics = array();
  2212. $digest_insert = array();
  2213. foreach ($topicData as $topic => $msgs)
  2214. foreach ($msgs as $msgKey => $msg)
  2215. {
  2216. censorText($topicData[$topic][$msgKey]['subject']);
  2217. censorText($topicData[$topic][$msgKey]['body']);
  2218. $topicData[$topic][$msgKey]['subject'] = un_htmlspecialchars($topicData[$topic][$msgKey]['subject']);
  2219. $topicData[$topic][$msgKey]['body'] = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($topicData[$topic][$msgKey]['body'], false), array('<br />' => "\n", '</div>' => "\n", '</li>' => "\n", '&#91;' => '[', '&#93;' => ']')))));
  2220. $topics[] = $msg['id'];
  2221. $digest_insert[] = array($msg['topic'], $msg['id'], 'reply', $user_info['id']);
  2222. }
  2223. // These need to go into the digest too...
  2224. $smcFunc['db_insert']('',
  2225. '{db_prefix}log_digest',
  2226. array(
  2227. 'id_topic' => 'int', 'id_msg' => 'int', 'note_type' => 'string', 'exclude' => 'int',
  2228. ),
  2229. $digest_insert,
  2230. array()
  2231. );
  2232. // Find everyone who needs to know about this.
  2233. $members = $smcFunc['db_query']('', '
  2234. SELECT
  2235. mem.id_member, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile,
  2236. ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started,
  2237. ln.id_topic
  2238. FROM {db_prefix}log_notify AS ln
  2239. INNER JOIN {db_prefix}members AS mem ON (mem.id_member = ln.id_member)
  2240. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)
  2241. INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
  2242. WHERE ln.id_topic IN ({array_int:topic_list})
  2243. AND mem.is_activated = {int:is_activated}
  2244. AND mem.notify_types < {int:notify_types}
  2245. AND mem.notify_regularity < {int:notify_regularity}
  2246. GROUP BY mem.id_member, ln.id_topic, mem.email_address, mem.notify_regularity, mem.notify_types, mem.notify_send_body, mem.lngfile, ln.sent, mem.id_group, mem.additional_groups, b.member_groups, mem.id_post_group, t.id_member_started
  2247. ORDER BY mem.lngfile',
  2248. array(
  2249. 'topic_list' => $topics,
  2250. 'is_activated' => 1,
  2251. 'notify_types' => 4,
  2252. 'notify_regularity' => 2,
  2253. )
  2254. );
  2255. $sent = 0;
  2256. $current_language = $user_info['language'];
  2257. while ($row = $smcFunc['db_fetch_assoc']($members))
  2258. {
  2259. if ($row['id_group'] != 1)
  2260. {
  2261. $allowed = explode(',', $row['member_groups']);
  2262. $row['additional_groups'] = explode(',', $row['additional_groups']);
  2263. $row['additional_groups'][] = $row['id_group'];
  2264. $row['additional_groups'][] = $row['id_post_group'];
  2265. if (count(array_intersect($allowed, $row['additional_groups'])) == 0)
  2266. continue;
  2267. }
  2268. $needed_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
  2269. if (empty($current_language) || $current_language != $needed_language)
  2270. $current_language = loadLanguage('Post', $needed_language, false);
  2271. $sent_this_time = false;
  2272. // Now loop through all the messages to send.
  2273. foreach ($topicData[$row['id_topic']] as $msg)
  2274. {
  2275. $replacements = array(
  2276. 'TOPICSUBJECT' => $topicData[$row['id_topic']]['subject'],
  2277. 'POSTERNAME' => un_htmlspecialchars($topicData[$row['id_topic']]['name']),
  2278. 'TOPICLINK' => $scripturl . '?topic=' . $row['id_topic'] . '.new;topicseen#new',
  2279. 'UNSUBSCRIBELINK' => $scripturl . '?action=notify;topic=' . $row['id_topic'] . '.0',
  2280. );
  2281. $message_type = 'notification_reply';
  2282. // Do they want the body of the message sent too?
  2283. if (!empty($row['notify_send_body']) && empty($modSettings['disallow_sendBody']))
  2284. {
  2285. $message_type .= '_body';
  2286. $replacements['BODY'] = $topicData[$row['id_topic']]['body'];
  2287. }
  2288. if (!empty($row['notify_regularity']))
  2289. $message_type .= '_once';
  2290. // Send only if once is off or it's on and it hasn't been sent.
  2291. if (empty($row['notify_regularity']) || (empty($row['sent']) && !$sent_this_time))
  2292. {
  2293. $emaildata = loadEmailTemplate($message_type, $replacements, $needed_language);
  2294. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'm' . $topicData[$row['id_topic']]['last_id']);
  2295. $sent++;
  2296. }
  2297. $sent_this_time = true;
  2298. }
  2299. }
  2300. $smcFunc['db_free_result']($members);
  2301. if (isset($current_language) && $current_language != $user_info['language'])
  2302. loadLanguage('Post');
  2303. // Sent!
  2304. if (!empty($sent))
  2305. $smcFunc['db_query']('', '
  2306. UPDATE {db_prefix}log_notify
  2307. SET sent = {int:is_sent}
  2308. WHERE id_topic IN ({array_int:topic_list})
  2309. AND id_member != {int:current_member}',
  2310. array(
  2311. 'current_member' => $user_info['id'],
  2312. 'topic_list' => $topics,
  2313. 'is_sent' => 1,
  2314. )
  2315. );
  2316. }
  2317. /**
  2318. * Takes an array of board IDs and updates their last messages.
  2319. * If the board has a parent, that parent board is also automatically
  2320. * updated.
  2321. * The columns updated are id_last_msg and last_updated.
  2322. * Note that id_last_msg should always be updated using this function,
  2323. * and is not automatically updated upon other changes.
  2324. *
  2325. * @param array $setboards
  2326. * @param int $id_msg = 0
  2327. */
  2328. function updateLastMessages($setboards, $id_msg = 0)
  2329. {
  2330. global $board_info, $board, $modSettings, $smcFunc;
  2331. // Please - let's be sane.
  2332. if (empty($setboards))
  2333. return false;
  2334. if (!is_array($setboards))
  2335. $setboards = array($setboards);
  2336. // If we don't know the id_msg we need to find it.
  2337. if (!$id_msg)
  2338. {
  2339. // Find the latest message on this board (highest id_msg.)
  2340. $request = $smcFunc['db_query']('', '
  2341. SELECT id_board, MAX(id_last_msg) AS id_msg
  2342. FROM {db_prefix}topics
  2343. WHERE id_board IN ({array_int:board_list})
  2344. AND approved = {int:approved}
  2345. GROUP BY id_board',
  2346. array(
  2347. 'board_list' => $setboards,
  2348. 'approved' => 1,
  2349. )
  2350. );
  2351. $lastMsg = array();
  2352. while ($row = $smcFunc['db_fetch_assoc']($request))
  2353. $lastMsg[$row['id_board']] = $row['id_msg'];
  2354. $smcFunc['db_free_result']($request);
  2355. }
  2356. else
  2357. {
  2358. // Just to note - there should only be one board passed if we are doing this.
  2359. foreach ($setboards as $id_board)
  2360. $lastMsg[$id_board] = $id_msg;
  2361. }
  2362. $parent_boards = array();
  2363. // Keep track of last modified dates.
  2364. $lastModified = $lastMsg;
  2365. // Get all the child boards for the parents, if they have some...
  2366. foreach ($setboards as $id_board)
  2367. {
  2368. if (!isset($lastMsg[$id_board]))
  2369. {
  2370. $lastMsg[$id_board] = 0;
  2371. $lastModified[$id_board] = 0;
  2372. }
  2373. if (!empty($board) && $id_board == $board)
  2374. $parents = $board_info['parent_boards'];
  2375. else
  2376. $parents = getBoardParents($id_board);
  2377. // Ignore any parents on the top child level.
  2378. // @todo Why?
  2379. foreach ($parents as $id => $parent)
  2380. {
  2381. if ($parent['level'] != 0)
  2382. {
  2383. // If we're already doing this one as a board, is this a higher last modified?
  2384. if (isset($lastModified[$id]) && $lastModified[$id_board] > $lastModified[$id])
  2385. $lastModified[$id] = $lastModified[$id_board];
  2386. elseif (!isset($lastModified[$id]) && (!isset($parent_boards[$id]) || $parent_boards[$id] < $lastModified[$id_board]))
  2387. $parent_boards[$id] = $lastModified[$id_board];
  2388. }
  2389. }
  2390. }
  2391. // Note to help understand what is happening here. For parents we update the timestamp of the last message for determining
  2392. // whether there are child boards which have not been read. For the boards themselves we update both this and id_last_msg.
  2393. $board_updates = array();
  2394. $parent_updates = array();
  2395. // Finally, to save on queries make the changes...
  2396. foreach ($parent_boards as $id => $msg)
  2397. {
  2398. if (!isset($parent_updates[$msg]))
  2399. $parent_updates[$msg] = array($id);
  2400. else
  2401. $parent_updates[$msg][] = $id;
  2402. }
  2403. foreach ($lastMsg as $id => $msg)
  2404. {
  2405. if (!isset($board_updates[$msg . '-' . $lastModified[$id]]))
  2406. $board_updates[$msg . '-' . $lastModified[$id]] = array(
  2407. 'id' => $msg,
  2408. 'updated' => $lastModified[$id],
  2409. 'boards' => array($id)
  2410. );
  2411. else
  2412. $board_updates[$msg . '-' . $lastModified[$id]]['boards'][] = $id;
  2413. }
  2414. // Now commit the changes!
  2415. foreach ($parent_updates as $id_msg => $boards)
  2416. {
  2417. $smcFunc['db_query']('', '
  2418. UPDATE {db_prefix}boards
  2419. SET id_msg_updated = {int:id_msg_updated}
  2420. WHERE id_board IN ({array_int:board_list})
  2421. AND id_msg_updated < {int:id_msg_updated}',
  2422. array(
  2423. 'board_list' => $boards,
  2424. 'id_msg_updated' => $id_msg,
  2425. )
  2426. );
  2427. }
  2428. foreach ($board_updates as $board_data)
  2429. {
  2430. $smcFunc['db_query']('', '
  2431. UPDATE {db_prefix}boards
  2432. SET id_last_msg = {int:id_last_msg}, id_msg_updated = {int:id_msg_updated}
  2433. WHERE id_board IN ({array_int:board_list})',
  2434. array(
  2435. 'board_list' => $board_data['boards'],
  2436. 'id_last_msg' => $board_data['id'],
  2437. 'id_msg_updated' => $board_data['updated'],
  2438. )
  2439. );
  2440. }
  2441. }
  2442. /**
  2443. * This simple function gets a list of all administrators and sends them an email
  2444. * to let them know a new member has joined.
  2445. * Called by registerMember() function in Subs-Members.php.
  2446. * Email is sent to all groups that have the moderate_forum permission.
  2447. * The language set by each member is being used (if available).
  2448. *
  2449. * @param string $type types supported are 'approval', 'activation', and 'standard'.
  2450. * @param int $memberID
  2451. * @param string $member_name = null
  2452. * @uses the Login language file.
  2453. */
  2454. function adminNotify($type, $memberID, $member_name = null)
  2455. {
  2456. global $txt, $modSettings, $language, $scripturl, $user_info, $context, $smcFunc;
  2457. // If the setting isn't enabled then just exit.
  2458. if (empty($modSettings['notify_new_registration']))
  2459. return;
  2460. if ($member_name == null)
  2461. {
  2462. // Get the new user's name....
  2463. $request = $smcFunc['db_query']('', '
  2464. SELECT real_name
  2465. FROM {db_prefix}members
  2466. WHERE id_member = {int:id_member}
  2467. LIMIT 1',
  2468. array(
  2469. 'id_member' => $memberID,
  2470. )
  2471. );
  2472. list ($member_name) = $smcFunc['db_fetch_row']($request);
  2473. $smcFunc['db_free_result']($request);
  2474. }
  2475. $toNotify = array();
  2476. $groups = array();
  2477. // All membergroups who can approve members.
  2478. $request = $smcFunc['db_query']('', '
  2479. SELECT id_group
  2480. FROM {db_prefix}permissions
  2481. WHERE permission = {string:moderate_forum}
  2482. AND add_deny = {int:add_deny}
  2483. AND id_group != {int:id_group}',
  2484. array(
  2485. 'add_deny' => 1,
  2486. 'id_group' => 0,
  2487. 'moderate_forum' => 'moderate_forum',
  2488. )
  2489. );
  2490. while ($row = $smcFunc['db_fetch_assoc']($request))
  2491. $groups[] = $row['id_group'];
  2492. $smcFunc['db_free_result']($request);
  2493. // Add administrators too...
  2494. $groups[] = 1;
  2495. $groups = array_unique($groups);
  2496. // Get a list of all members who have ability to approve accounts - these are the people who we inform.
  2497. $request = $smcFunc['db_query']('', '
  2498. SELECT id_member, lngfile, email_address
  2499. FROM {db_prefix}members
  2500. WHERE (id_group IN ({array_int:group_list}) OR FIND_IN_SET({raw:group_array_implode}, additional_groups) != 0)
  2501. AND notify_types != {int:notify_types}
  2502. ORDER BY lngfile',
  2503. array(
  2504. 'group_list' => $groups,
  2505. 'notify_types' => 4,
  2506. 'group_array_implode' => implode(', additional_groups) != 0 OR FIND_IN_SET(', $groups),
  2507. )
  2508. );
  2509. $current_language = $user_info['language'];
  2510. while ($row = $smcFunc['db_fetch_assoc']($request))
  2511. {
  2512. $replacements = array(
  2513. 'USERNAME' => $member_name,
  2514. 'PROFILELINK' => $scripturl . '?action=profile;u=' . $memberID
  2515. );
  2516. $emailtype = 'admin_notify';
  2517. // If they need to be approved add more info...
  2518. if ($type == 'approval')
  2519. {
  2520. $replacements['APPROVALLINK'] = $scripturl . '?action=admin;area=viewmembers;sa=browse;type=approve';
  2521. $emailtype .= '_approval';
  2522. }
  2523. $emaildata = loadEmailTemplate($emailtype, $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
  2524. // And do the actual sending...
  2525. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 0);
  2526. }
  2527. $smcFunc['db_free_result']($request);
  2528. if (isset($current_language) && $current_language != $user_info['language'])
  2529. loadLanguage('Login');
  2530. }
  2531. /**
  2532. * Load a template from EmailTemplates language file.
  2533. *
  2534. * @param string $template
  2535. * @param array $replacements = array()
  2536. * @param string $lang = ''
  2537. * @param bool $loadLang = true
  2538. */
  2539. function loadEmailTemplate($template, $replacements = array(), $lang = '', $loadLang = true)
  2540. {
  2541. global $txt, $mbname, $scripturl, $settings, $user_info;
  2542. // First things first, load up the email templates language file, if we need to.
  2543. if ($loadLang)
  2544. loadLanguage('EmailTemplates', $lang);
  2545. if (!isset($txt[$template . '_subject']) || !isset($txt[$template . '_body']))
  2546. fatal_lang_error('email_no_template', 'template', array($template));
  2547. $ret = array(
  2548. 'subject' => $txt[$template . '_subject'],
  2549. 'body' => $txt[$template . '_body'],
  2550. );
  2551. // Add in the default replacements.
  2552. $replacements += array(
  2553. 'FORUMNAME' => $mbname,
  2554. 'SCRIPTURL' => $scripturl,
  2555. 'THEMEURL' => $settings['theme_url'],
  2556. 'IMAGESURL' => $settings['images_url'],
  2557. 'DEFAULT_THEMEURL' => $settings['default_theme_url'],
  2558. 'REGARDS' => $txt['regards_team'],
  2559. );
  2560. // Split the replacements up into two arrays, for use with str_replace
  2561. $find = array();
  2562. $replace = array();
  2563. foreach ($replacements as $f => $r)
  2564. {
  2565. $find[] = '{' . $f . '}';
  2566. $replace[] = $r;
  2567. }
  2568. // Do the variable replacements.
  2569. $ret['subject'] = str_replace($find, $replace, $ret['subject']);
  2570. $ret['body'] = str_replace($find, $replace, $ret['body']);
  2571. // Now deal with the {USER.variable} items.
  2572. $ret['subject'] = preg_replace_callback('~{USER.([^}]+)}~', 'user_info_callback', $ret['subject']);
  2573. $ret['body'] = preg_replace_callback('~{USER.([^}]+)}~', 'user_info_callback', $ret['body']);
  2574. // Finally return the email to the caller so they can send it out.
  2575. return $ret;
  2576. }
  2577. /**
  2578. * Callback function for loademaitemplate on subject and body
  2579. * Uses capture group 1 in array
  2580. *
  2581. * @param type $matches
  2582. * @return string
  2583. */
  2584. function user_info_callback($matches)
  2585. {
  2586. global $user_info;
  2587. if (empty($matches[1]))
  2588. return '';
  2589. $use_ref = true;
  2590. $ref = &$user_info;
  2591. foreach (explode('.', $matches[1]) as $index)
  2592. {
  2593. if ($use_ref && isset($ref[$index]))
  2594. $ref = &$ref[$index];
  2595. else
  2596. {
  2597. $use_ref = false;
  2598. break;
  2599. }
  2600. }
  2601. return $use_ref ? $ref : $matches[0];
  2602. }
  2603. ?>