ManageNews.php 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102
  1. <?php
  2. /**
  3. * This file manages... the news. :P
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2014 Simple Machines and individual contributors
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('No direct access...');
  16. /**
  17. * The news dispatcher; doesn't do anything, just delegates.
  18. * This is the entrance point for all News and Newsletter screens.
  19. * Called by ?action=admin;area=news.
  20. * It does the permission checks, and calls the appropriate function
  21. * based on the requested sub-action.
  22. */
  23. function ManageNews()
  24. {
  25. global $context, $txt, $scripturl;
  26. // First, let's do a quick permissions check for the best error message possible.
  27. isAllowedTo(array('edit_news', 'send_mail', 'admin_forum'));
  28. loadTemplate('ManageNews');
  29. // Format: 'sub-action' => array('function', 'permission')
  30. $subActions = array(
  31. 'editnews' => array('EditNews', 'edit_news'),
  32. 'mailingmembers' => array('SelectMailingMembers', 'send_mail'),
  33. 'mailingcompose' => array('ComposeMailing', 'send_mail'),
  34. 'mailingsend' => array('SendMailing', 'send_mail'),
  35. 'settings' => array('ModifyNewsSettings', 'admin_forum'),
  36. );
  37. call_integration_hook('integrate_manage_news', array(&$subActions));
  38. // Default to sub action 'main' or 'settings' depending on permissions.
  39. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (allowedTo('edit_news') ? 'editnews' : (allowedTo('send_mail') ? 'mailingmembers' : 'settings'));
  40. // Have you got the proper permissions?
  41. isAllowedTo($subActions[$_REQUEST['sa']][1]);
  42. // Create the tabs for the template.
  43. $context[$context['admin_menu_name']]['tab_data'] = array(
  44. 'title' => $txt['news_title'],
  45. 'help' => 'edit_news',
  46. 'description' => $txt['admin_news_desc'],
  47. 'tabs' => array(
  48. 'editnews' => array(
  49. ),
  50. 'mailingmembers' => array(
  51. 'description' => $txt['news_mailing_desc'],
  52. ),
  53. 'settings' => array(
  54. 'description' => $txt['news_settings_desc'],
  55. ),
  56. ),
  57. );
  58. // Force the right area...
  59. if (substr($_REQUEST['sa'], 0, 7) == 'mailing')
  60. $context[$context['admin_menu_name']]['current_subsection'] = 'mailingmembers';
  61. $subActions[$_REQUEST['sa']][0]();
  62. }
  63. /**
  64. * Let the administrator(s) edit the news items for the forum.
  65. * It writes an entry into the moderation log.
  66. * This function uses the edit_news administration area.
  67. * Called by ?action=admin;area=news.
  68. * Requires the edit_news permission.
  69. * Can be accessed with ?action=admin;sa=editnews.
  70. *
  71. * @uses ManageNews template, edit_news sub template.
  72. */
  73. function EditNews()
  74. {
  75. global $txt, $modSettings, $context, $sourcedir, $scripturl;
  76. global $smcFunc;
  77. require_once($sourcedir . '/Subs-Post.php');
  78. // The 'remove selected' button was pressed.
  79. if (!empty($_POST['delete_selection']) && !empty($_POST['remove']))
  80. {
  81. checkSession();
  82. // Store the news temporarily in this array.
  83. $temp_news = explode("\n", $modSettings['news']);
  84. // Remove the items that were selected.
  85. foreach ($temp_news as $i => $news)
  86. if (in_array($i, $_POST['remove']))
  87. unset($temp_news[$i]);
  88. // Update the database.
  89. updateSettings(array('news' => implode("\n", $temp_news)));
  90. $context['saved_successful'] = true;
  91. logAction('news');
  92. }
  93. // The 'Save' button was pressed.
  94. elseif (!empty($_POST['save_items']))
  95. {
  96. checkSession();
  97. foreach ($_POST['news'] as $i => $news)
  98. {
  99. if (trim($news) == '')
  100. unset($_POST['news'][$i]);
  101. else
  102. {
  103. $_POST['news'][$i] = $smcFunc['htmlspecialchars']($_POST['news'][$i], ENT_QUOTES);
  104. preparsecode($_POST['news'][$i]);
  105. }
  106. }
  107. // Send the new news to the database.
  108. updateSettings(array('news' => implode("\n", $_POST['news'])));
  109. $context['saved_successful'] = true;
  110. // Log this into the moderation log.
  111. logAction('news');
  112. }
  113. // We're going to want this for making our list.
  114. require_once($sourcedir . '/Subs-List.php');
  115. $context['page_title'] = $txt['admin_edit_news'];
  116. // Use the standard templates for showing this.
  117. $listOptions = array(
  118. 'id' => 'news_lists',
  119. 'get_items' => array(
  120. 'function' => 'list_getNews',
  121. ),
  122. 'columns' => array(
  123. 'news' => array(
  124. 'header' => array(
  125. 'value' => $txt['admin_edit_news'],
  126. ),
  127. 'data' => array(
  128. 'function' => create_function('$news', '
  129. if (is_numeric($news[\'id\']))
  130. return \'<textarea id="data_\' . $news[\'id\'] . \'" rows="3" cols="50" name="news[]" style="\' . (isBrowser(\'is_ie8\') ? \'width: 635px; max-width: 85%; min-width: 85%\' : \'width 100%;margin 0 5em\') . \';">\' . $news[\'unparsed\'] . \'</textarea>
  131. <br>
  132. <div class="floatleft" id="preview_\' . $news[\'id\'] . \'"></div>\';
  133. else
  134. return $news[\'unparsed\'];
  135. '),
  136. 'style' => 'width: 50%;',
  137. ),
  138. ),
  139. 'preview' => array(
  140. 'header' => array(
  141. 'value' => $txt['preview'],
  142. ),
  143. 'data' => array(
  144. 'function' => create_function('$news', '
  145. return \'<div id="box_preview_\' . $news[\'id\'] . \'" style="overflow: auto; width: 100%; height: 10ex;">\' . $news[\'parsed\'] . \'</div>\';
  146. '),
  147. 'style' => 'width: 45%;',
  148. ),
  149. ),
  150. 'check' => array(
  151. 'header' => array(
  152. 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check">',
  153. 'class' => 'centercol',
  154. ),
  155. 'data' => array(
  156. 'function' => create_function('$news', '
  157. if (is_numeric($news[\'id\']))
  158. return \'<input type="checkbox" name="remove[]" value="\' . $news[\'id\'] . \'" class="input_check">\';
  159. else
  160. return \'\';
  161. '),
  162. 'class' => 'centercol',
  163. ),
  164. ),
  165. ),
  166. 'form' => array(
  167. 'href' => $scripturl . '?action=admin;area=news;sa=editnews',
  168. 'hidden_fields' => array(
  169. $context['session_var'] => $context['session_id'],
  170. ),
  171. ),
  172. 'additional_rows' => array(
  173. array(
  174. 'position' => 'bottom_of_list',
  175. 'value' => '
  176. <span id="moreNewsItems_link" class="floatleft" style="display: none;">
  177. <a class="button_link" href="javascript:void(0);" onclick="addNewsItem(); return false;">' . $txt['editnews_clickadd'] . '</a>
  178. </span>
  179. <input type="submit" name="save_items" value="' . $txt['save'] . '" class="button_submit">
  180. <input type="submit" name="delete_selection" value="' . $txt['editnews_remove_selected'] . '" onclick="return confirm(\'' . $txt['editnews_remove_confirm'] . '\');" class="button_submit">',
  181. ),
  182. ),
  183. 'javascript' => '
  184. document.getElementById(\'list_news_lists_last\').style.display = "none";
  185. document.getElementById("moreNewsItems_link").style.display = "";
  186. var last_preview = 0;
  187. $(document).ready(function () {
  188. $("div[id ^= \'preview_\']").each(function () {
  189. var preview_id = $(this).attr(\'id\').split(\'_\')[1];
  190. if (last_preview < preview_id)
  191. last_preview = preview_id;
  192. make_preview_btn(preview_id);
  193. });
  194. });
  195. function make_preview_btn (preview_id)
  196. {
  197. $("#preview_" + preview_id).addClass("button_link");
  198. $("#preview_" + preview_id).text(\'' . $txt['preview'] . '\').click(function () {
  199. $.ajax({
  200. type: "POST",
  201. url: "' . $scripturl . '?action=xmlhttp;sa=previews;xml",
  202. data: {item: "newspreview", news: $("#data_" + preview_id).val()},
  203. context: document.body,
  204. success: function(request){
  205. if ($(request).find("error").text() == \'\')
  206. $(document).find("#box_preview_" + preview_id).html($(request).text());
  207. else
  208. $(document).find("#box_preview_" + preview_id).text(\'' . $txt['news_error_no_news'] . '\');
  209. },
  210. });
  211. });
  212. }
  213. function addNewsItem ()
  214. {
  215. last_preview++;
  216. $("#list_news_lists_last").before(' . javaScriptEscape('
  217. <tr class="windowbg') . ' + (last_preview % 2 == 0 ? \'\' : \'2\') + ' . javaScriptEscape('">
  218. <td style="width: 50%;">
  219. <textarea id="data_') . ' + last_preview + ' . javaScriptEscape('" rows="3" cols="65" name="news[]" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 85%; min-width: 85%' : 'width: 95%') . ';"></textarea>
  220. <br>
  221. <div class="floatleft" id="preview_') . ' + last_preview + ' . javaScriptEscape('"></div>
  222. </td>
  223. <td style="width: 45%;">
  224. <div id="box_preview_') . ' + last_preview + ' . javaScriptEscape('" style="overflow: auto; width: 100%; height: 10ex;"></div>
  225. </td>
  226. <td></td>
  227. </tr>') . ');
  228. make_preview_btn(last_preview);
  229. }',
  230. );
  231. // Create the request list.
  232. createList($listOptions);
  233. // And go!
  234. loadTemplate('ManageNews');
  235. $context['sub_template'] = 'news_lists';
  236. }
  237. /**
  238. * Prepares an array of the forum news items for display in the template
  239. *
  240. * @return array
  241. */
  242. function list_getNews()
  243. {
  244. global $modSettings;
  245. $admin_current_news = array();
  246. // Ready the current news.
  247. foreach (explode("\n", $modSettings['news']) as $id => $line)
  248. $admin_current_news[$id] = array(
  249. 'id' => $id,
  250. 'unparsed' => un_preparsecode($line),
  251. 'parsed' => preg_replace('~<([/]?)form[^>]*?[>]*>~i', '<em class="smalltext">&lt;$1form&gt;</em>', parse_bbc($line)),
  252. );
  253. $admin_current_news['last'] = array(
  254. 'id' => 'last',
  255. 'unparsed' => '<div id="moreNewsItems"></div>
  256. <noscript><textarea rows="3" cols="65" name="news[]" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 85%; min-width: 85%' : 'width: 85%') . ';"></textarea></noscript>',
  257. 'parsed' => '<div id="moreNewsItems_preview"></div>',
  258. );
  259. return $admin_current_news;
  260. }
  261. /**
  262. * This function allows a user to select the membergroups to send their
  263. * mailing to.
  264. * Called by ?action=admin;area=news;sa=mailingmembers.
  265. * Requires the send_mail permission.
  266. * Form is submitted to ?action=admin;area=news;mailingcompose.
  267. *
  268. * @uses the ManageNews template and email_members sub template.
  269. */
  270. function SelectMailingMembers()
  271. {
  272. global $txt, $context, $modSettings, $smcFunc;
  273. // Is there any confirm message?
  274. $context['newsletter_sent'] = isset($_SESSION['newsletter_sent']) ? $_SESSION['newsletter_sent'] : '';
  275. $context['page_title'] = $txt['admin_newsletters'];
  276. $context['sub_template'] = 'email_members';
  277. $context['groups'] = array();
  278. $postGroups = array();
  279. $normalGroups = array();
  280. // If we have post groups disabled then we need to give a "ungrouped members" option.
  281. if (empty($modSettings['permission_enable_postgroups']))
  282. {
  283. $context['groups'][0] = array(
  284. 'id' => 0,
  285. 'name' => $txt['membergroups_members'],
  286. 'member_count' => 0,
  287. );
  288. $normalGroups[0] = 0;
  289. }
  290. // Get all the extra groups as well as Administrator and Global Moderator.
  291. $request = $smcFunc['db_query']('', '
  292. SELECT mg.id_group, mg.group_name, mg.min_posts
  293. FROM {db_prefix}membergroups AS mg' . (empty($modSettings['permission_enable_postgroups']) ? '
  294. WHERE mg.min_posts = {int:min_posts}' : '') . '
  295. GROUP BY mg.id_group, mg.min_posts, mg.group_name
  296. ORDER BY mg.min_posts, CASE WHEN mg.id_group < {int:newbie_group} THEN mg.id_group ELSE 4 END, mg.group_name',
  297. array(
  298. 'min_posts' => -1,
  299. 'newbie_group' => 4,
  300. )
  301. );
  302. while ($row = $smcFunc['db_fetch_assoc']($request))
  303. {
  304. $context['groups'][$row['id_group']] = array(
  305. 'id' => $row['id_group'],
  306. 'name' => $row['group_name'],
  307. 'member_count' => 0,
  308. );
  309. if ($row['min_posts'] == -1)
  310. $normalGroups[$row['id_group']] = $row['id_group'];
  311. else
  312. $postGroups[$row['id_group']] = $row['id_group'];
  313. }
  314. $smcFunc['db_free_result']($request);
  315. // If we have post groups, let's count the number of members...
  316. if (!empty($postGroups))
  317. {
  318. $query = $smcFunc['db_query']('', '
  319. SELECT mem.id_post_group AS id_group, COUNT(*) AS member_count
  320. FROM {db_prefix}members AS mem
  321. WHERE mem.id_post_group IN ({array_int:post_group_list})
  322. GROUP BY mem.id_post_group',
  323. array(
  324. 'post_group_list' => $postGroups,
  325. )
  326. );
  327. while ($row = $smcFunc['db_fetch_assoc']($query))
  328. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  329. $smcFunc['db_free_result']($query);
  330. }
  331. if (!empty($normalGroups))
  332. {
  333. // Find people who are members of this group...
  334. $query = $smcFunc['db_query']('', '
  335. SELECT id_group, COUNT(*) AS member_count
  336. FROM {db_prefix}members
  337. WHERE id_group IN ({array_int:normal_group_list})
  338. GROUP BY id_group',
  339. array(
  340. 'normal_group_list' => $normalGroups,
  341. )
  342. );
  343. while ($row = $smcFunc['db_fetch_assoc']($query))
  344. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  345. $smcFunc['db_free_result']($query);
  346. // Also do those who have it as an additional membergroup - this ones more yucky...
  347. $query = $smcFunc['db_query']('', '
  348. SELECT mg.id_group, COUNT(*) AS member_count
  349. FROM {db_prefix}membergroups AS mg
  350. INNER JOIN {db_prefix}members AS mem ON (mem.additional_groups != {string:blank_string}
  351. AND mem.id_group != mg.id_group
  352. AND FIND_IN_SET(mg.id_group, mem.additional_groups) != 0)
  353. WHERE mg.id_group IN ({array_int:normal_group_list})
  354. GROUP BY mg.id_group',
  355. array(
  356. 'normal_group_list' => $normalGroups,
  357. 'blank_string' => '',
  358. )
  359. );
  360. while ($row = $smcFunc['db_fetch_assoc']($query))
  361. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  362. $smcFunc['db_free_result']($query);
  363. }
  364. // Any moderators?
  365. $request = $smcFunc['db_query']('', '
  366. SELECT COUNT(DISTINCT id_member) AS num_distinct_mods
  367. FROM {db_prefix}moderators
  368. LIMIT 1',
  369. array(
  370. )
  371. );
  372. list ($context['groups'][3]['member_count']) = $smcFunc['db_fetch_row']($request);
  373. $smcFunc['db_free_result']($request);
  374. $context['can_send_pm'] = allowedTo('pm_send');
  375. }
  376. /**
  377. * Prepare subject and message of an email for the preview box
  378. * Used in ComposeMailing and RetrievePreview (Xml.php)
  379. */
  380. function prepareMailingForPreview ()
  381. {
  382. global $context, $smcFunc, $modSettings, $scripturl, $user_info, $txt;
  383. loadLanguage('Errors');
  384. $processing = array('preview_subject' => 'subject', 'preview_message' => 'message');
  385. // Use the default time format.
  386. $user_info['time_format'] = $modSettings['time_format'];
  387. $variables = array(
  388. '{$board_url}',
  389. '{$current_time}',
  390. '{$latest_member.link}',
  391. '{$latest_member.id}',
  392. '{$latest_member.name}'
  393. );
  394. $html = $context['send_html'];
  395. // We might need this in a bit
  396. $cleanLatestMember = empty($context['send_html']) || $context['send_pm'] ? un_htmlspecialchars($modSettings['latestRealName']) : $modSettings['latestRealName'];
  397. foreach ($processing as $key => $post)
  398. {
  399. $context[$key] = !empty($_REQUEST[$post]) ? $_REQUEST[$post] : '';
  400. if (empty($context[$key]) && empty($_REQUEST['xml']))
  401. $context['post_error']['messages'][] = $txt['error_no_' . $post];
  402. elseif (!empty($_REQUEST['xml']))
  403. continue;
  404. preparsecode($context[$key]);
  405. if ($html)
  406. {
  407. $enablePostHTML = $modSettings['enablePostHTML'];
  408. $modSettings['enablePostHTML'] = $context['send_html'];
  409. $context[$key] = parse_bbc($context[$key]);
  410. $modSettings['enablePostHTML'] = $enablePostHTML;
  411. }
  412. // Replace in all the standard things.
  413. $context[$key] = str_replace($variables,
  414. array(
  415. !empty($context['send_html']) ? '<a href="' . $scripturl . '">' . $scripturl . '</a>' : $scripturl,
  416. timeformat(forum_time(), false),
  417. !empty($context['send_html']) ? '<a href="' . $scripturl . '?action=profile;u=' . $modSettings['latestMember'] . '">' . $cleanLatestMember . '</a>' : ($context['send_pm'] ? '[url=' . $scripturl . '?action=profile;u=' . $modSettings['latestMember'] . ']' . $cleanLatestMember . '[/url]' : $cleanLatestMember),
  418. $modSettings['latestMember'],
  419. $cleanLatestMember
  420. ), $context[$key]);
  421. }
  422. }
  423. /**
  424. * Shows a form to edit a forum mailing and its recipients.
  425. * Called by ?action=admin;area=news;sa=mailingcompose.
  426. * Requires the send_mail permission.
  427. * Form is submitted to ?action=admin;area=news;sa=mailingsend.
  428. *
  429. * @uses ManageNews template, email_members_compose sub-template.
  430. */
  431. function ComposeMailing()
  432. {
  433. global $txt, $sourcedir, $context, $smcFunc, $scripturl;
  434. // Setup the template!
  435. $context['page_title'] = $txt['admin_newsletters'];
  436. $context['sub_template'] = 'email_members_compose';
  437. $context['subject'] = !empty($_POST['subject']) ? $_POST['subject'] : $smcFunc['htmlspecialchars']($context['forum_name'] . ': ' . $txt['subject']);
  438. $context['message'] = !empty($_POST['message']) ? $_POST['message'] : $smcFunc['htmlspecialchars']($txt['message'] . "\n\n" . $txt['regards_team'] . "\n\n" . '{$board_url}');
  439. // Needed for the WYSIWYG editor.
  440. require_once($sourcedir . '/Subs-Editor.php');
  441. // Now create the editor.
  442. $editorOptions = array(
  443. 'id' => 'message',
  444. 'value' => $context['message'],
  445. 'height' => '175px',
  446. 'width' => '100%',
  447. 'labels' => array(
  448. 'post_button' => $txt['sendtopic_send'],
  449. ),
  450. 'preview_type' => 2,
  451. 'required' => true,
  452. );
  453. create_control_richedit($editorOptions);
  454. // Store the ID for old compatibility.
  455. $context['post_box_name'] = $editorOptions['id'];
  456. if (isset($context['preview']))
  457. {
  458. require_once($sourcedir . '/Subs-Post.php');
  459. $context['recipients']['members'] = !empty($_POST['members']) ? explode(',', $_POST['members']) : array();
  460. $context['recipients']['exclude_members'] = !empty($_POST['exclude_members']) ? explode(',', $_POST['exclude_members']) : array();
  461. $context['recipients']['groups'] = !empty($_POST['groups']) ? explode(',', $_POST['groups']) : array();
  462. $context['recipients']['exclude_groups'] = !empty($_POST['exclude_groups']) ? explode(',', $_POST['exclude_groups']) : array();
  463. $context['recipients']['emails'] = !empty($_POST['emails']) ? explode(';', $_POST['emails']) : array();
  464. $context['email_force'] = !empty($_POST['email_force']) ? 1 : 0;
  465. $context['total_emails'] = !empty($_POST['total_emails']) ? (int) $_POST['total_emails'] : 0;
  466. $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0;
  467. $context['send_html'] = !empty($_POST['send_html']) ? '1' : '0';
  468. return prepareMailingForPreview();
  469. }
  470. // Start by finding any members!
  471. $toClean = array();
  472. if (!empty($_POST['members']))
  473. $toClean[] = 'members';
  474. if (!empty($_POST['exclude_members']))
  475. $toClean[] = 'exclude_members';
  476. if (!empty($toClean))
  477. {
  478. require_once($sourcedir . '/Subs-Auth.php');
  479. foreach ($toClean as $type)
  480. {
  481. // Remove the quotes.
  482. $_POST[$type] = strtr($_POST[$type], array('\\"' => '"'));
  483. preg_match_all('~"([^"]+)"~', $_POST[$type], $matches);
  484. $_POST[$type] = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST[$type]))));
  485. foreach ($_POST[$type] as $index => $member)
  486. if (strlen(trim($member)) > 0)
  487. $_POST[$type][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($member)));
  488. else
  489. unset($_POST[$type][$index]);
  490. // Find the members
  491. $_POST[$type] = implode(',', array_keys(findMembers($_POST[$type])));
  492. }
  493. }
  494. if (isset($_POST['member_list']) && is_array($_POST['member_list']))
  495. {
  496. $members = array();
  497. foreach ($_POST['member_list'] as $member_id)
  498. $members[] = (int) $member_id;
  499. $_POST['members'] = implode(',', $members);
  500. }
  501. if (isset($_POST['exclude_member_list']) && is_array($_POST['exclude_member_list']))
  502. {
  503. $members = array();
  504. foreach ($_POST['exclude_member_list'] as $member_id)
  505. $members[] = (int) $member_id;
  506. $_POST['exclude_members'] = implode(',', $members);
  507. }
  508. // Clean the other vars.
  509. SendMailing(true);
  510. // We need a couple strings from the email template file
  511. loadLanguage('EmailTemplates');
  512. // Get a list of all full banned users. Use their Username and email to find them. Only get the ones that can't login to turn off notification.
  513. $request = $smcFunc['db_query']('', '
  514. SELECT DISTINCT mem.id_member
  515. FROM {db_prefix}ban_groups AS bg
  516. INNER JOIN {db_prefix}ban_items AS bi ON (bg.id_ban_group = bi.id_ban_group)
  517. INNER JOIN {db_prefix}members AS mem ON (bi.id_member = mem.id_member)
  518. WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
  519. AND (bg.expire_time IS NULL OR bg.expire_time > {int:current_time})',
  520. array(
  521. 'cannot_access' => 1,
  522. 'cannot_login' => 1,
  523. 'current_time' => time(),
  524. )
  525. );
  526. while ($row = $smcFunc['db_fetch_assoc']($request))
  527. $context['recipients']['exclude_members'][] = $row['id_member'];
  528. $smcFunc['db_free_result']($request);
  529. $request = $smcFunc['db_query']('', '
  530. SELECT DISTINCT bi.email_address
  531. FROM {db_prefix}ban_items AS bi
  532. INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group)
  533. WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
  534. AND (COALESCE(bg.expire_time, 1=1) OR bg.expire_time > {int:current_time})
  535. AND bi.email_address != {string:blank_string}',
  536. array(
  537. 'cannot_access' => 1,
  538. 'cannot_login' => 1,
  539. 'current_time' => time(),
  540. 'blank_string' => '',
  541. )
  542. );
  543. $condition_array = array();
  544. $condition_array_params = array();
  545. $count = 0;
  546. while ($row = $smcFunc['db_fetch_assoc']($request))
  547. {
  548. $condition_array[] = '{string:email_' . $count . '}';
  549. $condition_array_params['email_' . $count++] = $row['email_address'];
  550. }
  551. $smcFunc['db_free_result']($request);
  552. if (!empty($condition_array))
  553. {
  554. $request = $smcFunc['db_query']('', '
  555. SELECT id_member
  556. FROM {db_prefix}members
  557. WHERE email_address IN(' . implode(', ', $condition_array) .')',
  558. $condition_array_params
  559. );
  560. while ($row = $smcFunc['db_fetch_assoc']($request))
  561. $context['recipients']['exclude_members'][] = $row['id_member'];
  562. $smcFunc['db_free_result']($request);
  563. }
  564. // Did they select moderators - if so add them as specific members...
  565. if ((!empty($context['recipients']['groups']) && in_array(3, $context['recipients']['groups'])) || (!empty($context['recipients']['exclude_groups']) && in_array(3, $context['recipients']['exclude_groups'])))
  566. {
  567. $request = $smcFunc['db_query']('', '
  568. SELECT DISTINCT mem.id_member AS identifier
  569. FROM {db_prefix}members AS mem
  570. INNER JOIN {db_prefix}moderators AS mods ON (mods.id_member = mem.id_member)
  571. WHERE mem.is_activated = {int:is_activated}',
  572. array(
  573. 'is_activated' => 1,
  574. )
  575. );
  576. while ($row = $smcFunc['db_fetch_assoc']($request))
  577. {
  578. if (in_array(3, $context['recipients']))
  579. $context['recipients']['exclude_members'][] = $row['identifier'];
  580. else
  581. $context['recipients']['members'][] = $row['identifier'];
  582. }
  583. $smcFunc['db_free_result']($request);
  584. }
  585. // For progress bar!
  586. $context['total_emails'] = count($context['recipients']['emails']);
  587. $request = $smcFunc['db_query']('', '
  588. SELECT COUNT(*)
  589. FROM {db_prefix}members',
  590. array(
  591. )
  592. );
  593. list ($context['total_members']) = $smcFunc['db_fetch_row']($request);
  594. $smcFunc['db_free_result']($request);
  595. // Clean up the arrays.
  596. $context['recipients']['members'] = array_unique($context['recipients']['members']);
  597. $context['recipients']['exclude_members'] = array_unique($context['recipients']['exclude_members']);
  598. }
  599. /**
  600. * Handles the sending of the forum mailing in batches.
  601. * Called by ?action=admin;area=news;sa=mailingsend
  602. * Requires the send_mail permission.
  603. * Redirects to itself when more batches need to be sent.
  604. * Redirects to ?action=admin;area=news;sa=mailingmembers after everything has been sent.
  605. *
  606. * @param bool $clean_only = false; if set, it will only clean the variables, put them in context, then return.
  607. * @uses the ManageNews template and email_members_send sub template.
  608. */
  609. function SendMailing($clean_only = false)
  610. {
  611. global $txt, $sourcedir, $context, $smcFunc;
  612. global $scripturl, $modSettings, $user_info;
  613. if (isset($_POST['preview']))
  614. {
  615. $context['preview'] = true;
  616. return ComposeMailing();
  617. }
  618. // How many to send at once? Quantity depends on whether we are queueing or not.
  619. // @todo Might need an interface? (used in Post.php too with different limits)
  620. $num_at_once = 1000;
  621. // If by PM's I suggest we half the above number.
  622. if (!empty($_POST['send_pm']))
  623. $num_at_once /= 2;
  624. checkSession();
  625. // Where are we actually to?
  626. $context['start'] = isset($_REQUEST['start']) ? $_REQUEST['start'] : 0;
  627. $context['email_force'] = !empty($_POST['email_force']) ? 1 : 0;
  628. $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0;
  629. $context['total_emails'] = !empty($_POST['total_emails']) ? (int) $_POST['total_emails'] : 0;
  630. $context['send_html'] = !empty($_POST['send_html']) ? '1' : '0';
  631. $context['parse_html'] = !empty($_POST['parse_html']) ? '1' : '0';
  632. //One can't simply nullify things around
  633. if (empty($_REQUEST['total_members']))
  634. {
  635. $request = $smcFunc['db_query']('', '
  636. SELECT COUNT(*)
  637. FROM {db_prefix}members',
  638. array(
  639. )
  640. );
  641. list ($context['total_members']) = $smcFunc['db_fetch_row']($request);
  642. $smcFunc['db_free_result']($request);
  643. }
  644. else
  645. {
  646. $context['total_members'] = (int) $_REQUEST['total_members'];
  647. }
  648. // Create our main context.
  649. $context['recipients'] = array(
  650. 'groups' => array(),
  651. 'exclude_groups' => array(),
  652. 'members' => array(),
  653. 'exclude_members' => array(),
  654. 'emails' => array(),
  655. );
  656. // Have we any excluded members?
  657. if (!empty($_POST['exclude_members']))
  658. {
  659. $members = explode(',', $_POST['exclude_members']);
  660. foreach ($members as $member)
  661. if ($member >= $context['start'])
  662. $context['recipients']['exclude_members'][] = (int) $member;
  663. }
  664. // What about members we *must* do?
  665. if (!empty($_POST['members']))
  666. {
  667. $members = explode(',', $_POST['members']);
  668. foreach ($members as $member)
  669. if ($member >= $context['start'])
  670. $context['recipients']['members'][] = (int) $member;
  671. }
  672. // Cleaning groups is simple - although deal with both checkbox and commas.
  673. if (isset($_POST['groups']))
  674. {
  675. if (is_array($_POST['groups']))
  676. {
  677. foreach ($_POST['groups'] as $group => $dummy)
  678. $context['recipients']['groups'][] = (int) $group;
  679. }
  680. else
  681. {
  682. $groups = explode(',', $_POST['groups']);
  683. foreach ($groups as $group)
  684. $context['recipients']['groups'][] = (int) $group;
  685. }
  686. }
  687. // Same for excluded groups
  688. if (isset($_POST['exclude_groups']))
  689. {
  690. if (is_array($_POST['exclude_groups']))
  691. {
  692. foreach ($_POST['exclude_groups'] as $group => $dummy)
  693. $context['recipients']['exclude_groups'][] = (int) $group;
  694. }
  695. else
  696. {
  697. $groups = explode(',', $_POST['exclude_groups']);
  698. foreach ($groups as $group)
  699. $context['recipients']['exclude_groups'][] = (int) $group;
  700. }
  701. }
  702. // Finally - emails!
  703. if (!empty($_POST['emails']))
  704. {
  705. $addressed = array_unique(explode(';', strtr($_POST['emails'], array("\n" => ';', "\r" => ';', ',' => ';'))));
  706. foreach ($addressed as $curmem)
  707. {
  708. $curmem = trim($curmem);
  709. if ($curmem != '' && preg_match('~^[0-9A-Za-z=_\'+\-/\.]*@[\w\-]+(\.[\w\-]+)*(\.[\w]{2,6})$~', $curmem) !== 0)
  710. $context['recipients']['emails'][$curmem] = $curmem;
  711. }
  712. }
  713. // If we're only cleaning drop out here.
  714. if ($clean_only)
  715. return;
  716. require_once($sourcedir . '/Subs-Post.php');
  717. // We are relying too much on writing to superglobals...
  718. $_POST['subject'] = !empty($_POST['subject']) ? $_POST['subject'] : '';
  719. $_POST['message'] = !empty($_POST['message']) ? $_POST['message'] : '';
  720. // Save the message and its subject in $context
  721. $context['subject'] = $smcFunc['htmlspecialchars']($_POST['subject'], ENT_QUOTES);
  722. $context['message'] = $smcFunc['htmlspecialchars']($_POST['message'], ENT_QUOTES);
  723. // Prepare the message for sending it as HTML
  724. if (!$context['send_pm'] && !empty($_POST['send_html']))
  725. {
  726. // Prepare the message for HTML.
  727. if (!empty($_POST['parse_html']))
  728. $_POST['message'] = str_replace(array("\n", ' '), array('<br>' . "\n", '&nbsp; '), $_POST['message']);
  729. // This is here to prevent spam filters from tagging this as spam.
  730. if (preg_match('~\<html~i', $_POST['message']) == 0)
  731. {
  732. if (preg_match('~\<body~i', $_POST['message']) == 0)
  733. $_POST['message'] = '<html><head><title>' . $_POST['subject'] . '</title></head>' . "\n" . '<body>' . $_POST['message'] . '</body></html>';
  734. else
  735. $_POST['message'] = '<html>' . $_POST['message'] . '</html>';
  736. }
  737. }
  738. if (empty($_POST['message']) || empty($_POST['subject']))
  739. {
  740. $context['preview'] = true;
  741. return ComposeMailing();
  742. }
  743. // Use the default time format.
  744. $user_info['time_format'] = $modSettings['time_format'];
  745. $variables = array(
  746. '{$board_url}',
  747. '{$current_time}',
  748. '{$latest_member.link}',
  749. '{$latest_member.id}',
  750. '{$latest_member.name}'
  751. );
  752. // We might need this in a bit
  753. $cleanLatestMember = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($modSettings['latestRealName']) : $modSettings['latestRealName'];
  754. // Replace in all the standard things.
  755. $_POST['message'] = str_replace($variables,
  756. array(
  757. !empty($_POST['send_html']) ? '<a href="' . $scripturl . '">' . $scripturl . '</a>' : $scripturl,
  758. timeformat(forum_time(), false),
  759. !empty($_POST['send_html']) ? '<a href="' . $scripturl . '?action=profile;u=' . $modSettings['latestMember'] . '">' . $cleanLatestMember . '</a>' : ($context['send_pm'] ? '[url=' . $scripturl . '?action=profile;u=' . $modSettings['latestMember'] . ']' . $cleanLatestMember . '[/url]' : $cleanLatestMember),
  760. $modSettings['latestMember'],
  761. $cleanLatestMember
  762. ), $_POST['message']);
  763. $_POST['subject'] = str_replace($variables,
  764. array(
  765. $scripturl,
  766. timeformat(forum_time(), false),
  767. $modSettings['latestRealName'],
  768. $modSettings['latestMember'],
  769. $modSettings['latestRealName']
  770. ), $_POST['subject']);
  771. $from_member = array(
  772. '{$member.email}',
  773. '{$member.link}',
  774. '{$member.id}',
  775. '{$member.name}'
  776. );
  777. // If we still have emails, do them first!
  778. $i = 0;
  779. foreach ($context['recipients']['emails'] as $k => $email)
  780. {
  781. // Done as many as we can?
  782. if ($i >= $num_at_once)
  783. break;
  784. // Don't sent it twice!
  785. unset($context['recipients']['emails'][$k]);
  786. // Dammit - can't PM emails!
  787. if ($context['send_pm'])
  788. continue;
  789. $to_member = array(
  790. $email,
  791. !empty($_POST['send_html']) ? '<a href="mailto:' . $email . '">' . $email . '</a>' : $email,
  792. '??',
  793. $email
  794. );
  795. sendmail($email, str_replace($from_member, $to_member, $_POST['subject']), str_replace($from_member, $to_member, $_POST['message']), null, 'news', !empty($_POST['send_html']), 5);
  796. // Done another...
  797. $i++;
  798. }
  799. if ($i < $num_at_once)
  800. {
  801. // Need to build quite a query!
  802. $sendQuery = '(';
  803. $sendParams = array();
  804. if (!empty($context['recipients']['groups']))
  805. {
  806. // Take the long route...
  807. $queryBuild = array();
  808. foreach ($context['recipients']['groups'] as $group)
  809. {
  810. $sendParams['group_' . $group] = $group;
  811. $queryBuild[] = 'mem.id_group = {int:group_' . $group . '}';
  812. if (!empty($group))
  813. {
  814. $queryBuild[] = 'FIND_IN_SET({int:group_' . $group . '}, mem.additional_groups) != 0';
  815. $queryBuild[] = 'mem.id_post_group = {int:group_' . $group . '}';
  816. }
  817. }
  818. if (!empty($queryBuild))
  819. $sendQuery .= implode(' OR ', $queryBuild);
  820. }
  821. if (!empty($context['recipients']['members']))
  822. {
  823. $sendQuery .= ($sendQuery == '(' ? '' : ' OR ') . 'mem.id_member IN ({array_int:members})';
  824. $sendParams['members'] = $context['recipients']['members'];
  825. }
  826. $sendQuery .= ')';
  827. // If we've not got a query then we must be done!
  828. if ($sendQuery == '()')
  829. {
  830. // Set a confirmation message.
  831. $_SESSION['newsletter_sent'] = 'queue_done';
  832. redirectexit('action=admin;area=news;sa=mailingmembers');
  833. }
  834. // Anything to exclude?
  835. if (!empty($context['recipients']['exclude_groups']) && in_array(0, $context['recipients']['exclude_groups']))
  836. $sendQuery .= ' AND mem.id_group != {int:regular_group}';
  837. if (!empty($context['recipients']['exclude_members']))
  838. {
  839. $sendQuery .= ' AND mem.id_member NOT IN ({array_int:exclude_members})';
  840. $sendParams['exclude_members'] = $context['recipients']['exclude_members'];
  841. }
  842. // Force them to have it?
  843. if (empty($context['email_force']))
  844. $sendQuery .= ' AND mem.notify_announcements = {int:notify_announcements}';
  845. // Get the smelly people - note we respect the id_member range as it gives us a quicker query.
  846. $result = $smcFunc['db_query']('', '
  847. SELECT mem.id_member, mem.email_address, mem.real_name, mem.id_group, mem.additional_groups, mem.id_post_group
  848. FROM {db_prefix}members AS mem
  849. WHERE ' . $sendQuery . '
  850. AND mem.is_activated = {int:is_activated}
  851. ORDER BY mem.id_member ASC
  852. LIMIT {int:start}, {int:atonce}',
  853. array_merge($sendParams, array(
  854. 'start' => $context['start'],
  855. 'atonce' => $num_at_once,
  856. 'regular_group' => 0,
  857. 'notify_announcements' => 1,
  858. 'is_activated' => 1,
  859. ))
  860. );
  861. while ($row = $smcFunc['db_fetch_assoc']($result))
  862. {
  863. // What groups are we looking at here?
  864. if (empty($row['additional_groups']))
  865. $groups = array($row['id_group'], $row['id_post_group']);
  866. else
  867. $groups = array_merge(
  868. array($row['id_group'], $row['id_post_group']),
  869. explode(',', $row['additional_groups'])
  870. );
  871. // Excluded groups?
  872. if (array_intersect($groups, $context['recipients']['exclude_groups']))
  873. continue;
  874. // We might need this
  875. $cleanMemberName = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($row['real_name']) : $row['real_name'];
  876. // Replace the member-dependant variables
  877. $message = str_replace($from_member,
  878. array(
  879. $row['email_address'],
  880. !empty($_POST['send_html']) ? '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $cleanMemberName . '</a>' : ($context['send_pm'] ? '[url=' . $scripturl . '?action=profile;u=' . $row['id_member'] . ']' . $cleanMemberName . '[/url]' : $cleanMemberName),
  881. $row['id_member'],
  882. $cleanMemberName,
  883. ), $_POST['message']);
  884. $subject = str_replace($from_member,
  885. array(
  886. $row['email_address'],
  887. $row['real_name'],
  888. $row['id_member'],
  889. $row['real_name'],
  890. ), $_POST['subject']);
  891. // Send the actual email - or a PM!
  892. if (!$context['send_pm'])
  893. sendmail($row['email_address'], $subject, $message, null, 'news', !empty($_POST['send_html']), 5);
  894. else
  895. sendpm(array('to' => array($row['id_member']), 'bcc' => array()), $subject, $message);
  896. }
  897. $smcFunc['db_free_result']($result);
  898. }
  899. $context['start'] = $context['start'] + $num_at_once;
  900. if (empty($context['recipients']['emails']) && ($context['start'] >= $context['total_members']))
  901. {
  902. // Log this into the admin log.
  903. logAction('newsletter', array(), 'admin');
  904. $_SESSION['newsletter_sent'] = 'queue_done';
  905. redirectexit('action=admin;area=news;sa=mailingmembers');
  906. }
  907. // Working out progress is a black art of sorts.
  908. $percentEmails = $context['total_emails'] == 0 ? 0 : ((count($context['recipients']['emails']) / $context['total_emails']) * ($context['total_emails'] / ($context['total_emails'] + $context['total_members'])));
  909. $percentMembers = ($context['start'] / $context['total_members']) * ($context['total_members'] / ($context['total_emails'] + $context['total_members']));
  910. $context['percentage_done'] = round(($percentEmails + $percentMembers) * 100, 2);
  911. $context['page_title'] = $txt['admin_newsletters'];
  912. $context['sub_template'] = 'email_members_send';
  913. }
  914. /**
  915. * Set general news and newsletter settings and permissions.
  916. * Called by ?action=admin;area=news;sa=settings.
  917. * Requires the forum_admin permission.
  918. *
  919. * @uses ManageNews template, news_settings sub-template.
  920. * @param bool $return_config = false
  921. */
  922. function ModifyNewsSettings($return_config = false)
  923. {
  924. global $context, $sourcedir, $txt, $scripturl;
  925. $config_vars = array(
  926. array('title', 'settings'),
  927. // Inline permissions.
  928. array('permissions', 'edit_news', 'help' => ''),
  929. array('permissions', 'send_mail'),
  930. '',
  931. // Just the remaining settings.
  932. array('check', 'xmlnews_enable', 'onclick' => 'document.getElementById(\'xmlnews_maxlen\').disabled = !this.checked;'),
  933. array('int', 'xmlnews_maxlen', 'subtext' => $txt['xmlnews_maxlen_note'], 10),
  934. );
  935. call_integration_hook('integrate_modify_news_settings', array(&$config_vars));
  936. if ($return_config)
  937. return $config_vars;
  938. $context['page_title'] = $txt['admin_edit_news'] . ' - ' . $txt['settings'];
  939. $context['sub_template'] = 'show_settings';
  940. // Needed for the settings template.
  941. require_once($sourcedir . '/ManageServer.php');
  942. // Wrap it all up nice and warm...
  943. $context['post_url'] = $scripturl . '?action=admin;area=news;save;sa=settings';
  944. $context['permissions_excluded'] = array(-1);
  945. // Add some javascript at the bottom...
  946. addInlineJavascript('
  947. document.getElementById("xmlnews_maxlen").disabled = !document.getElementById("xmlnews_enable").checked;', true);
  948. // Saving the settings?
  949. if (isset($_GET['save']))
  950. {
  951. checkSession();
  952. call_integration_hook('integrate_save_news_settings');
  953. saveDBSettings($config_vars);
  954. $_SESSION['adm-save'] = true;
  955. redirectexit('action=admin;area=news;sa=settings');
  956. }
  957. // We need this for the in-line permissions
  958. createToken('admin-mp');
  959. prepareDBSettingContext($config_vars);
  960. }
  961. ?>