ManageNews.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  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 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * 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, $user_info, $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. logAction('news');
  91. }
  92. // The 'Save' button was pressed.
  93. elseif (!empty($_POST['save_items']))
  94. {
  95. checkSession();
  96. foreach ($_POST['news'] as $i => $news)
  97. {
  98. if (trim($news) == '')
  99. unset($_POST['news'][$i]);
  100. else
  101. {
  102. $_POST['news'][$i] = $smcFunc['htmlspecialchars']($_POST['news'][$i], ENT_QUOTES);
  103. preparsecode($_POST['news'][$i]);
  104. }
  105. }
  106. // Send the new news to the database.
  107. updateSettings(array('news' => implode("\n", $_POST['news'])));
  108. // Log this into the moderation log.
  109. logAction('news');
  110. }
  111. // We're going to want this for making our list.
  112. require_once($sourcedir . '/Subs-List.php');
  113. $context['page_title'] = $txt['admin_edit_news'];
  114. // Use the standard templates for showing this.
  115. $listOptions = array(
  116. 'id' => 'news_lists',
  117. // 'title' => $txt['admin_edit_news'],
  118. 'get_items' => array(
  119. 'function' => 'list_getNews',
  120. ),
  121. 'columns' => array(
  122. 'news' => array(
  123. 'header' => array(
  124. 'value' => $txt['admin_edit_news'],
  125. ),
  126. 'data' => array(
  127. 'function' => create_function('$news', '
  128. if (is_numeric($news[\'id\']))
  129. return \'<textarea rows="3" cols="65" name="news[]" style="\' . (isBrowser(\'is_ie8\') ? \'width: 635px; max-width: 85%; min-width: 85%\' : \'width: 85%\') . \';">\' . $news[\'unparsed\'] . \'</textarea>
  130. <div style="float:right" id="preview_\' . $news[\'id\'] . \'"></div>\';
  131. else
  132. return $news[\'unparsed\'];
  133. '),
  134. 'style' => 'width: 50%;',
  135. ),
  136. ),
  137. 'preview' => array(
  138. 'header' => array(
  139. 'value' => $txt['preview'],
  140. ),
  141. 'data' => array(
  142. 'function' => create_function('$news', '
  143. return \'<div id="box_preview_\' . $news[\'id\'] . \'" style="overflow: auto; width: 100%; height: 10ex;">\' . $news[\'parsed\'] . \'</div>\';
  144. '),
  145. 'style' => 'width: 45%;',
  146. ),
  147. ),
  148. 'check' => array(
  149. 'header' => array(
  150. 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />',
  151. ),
  152. 'data' => array(
  153. 'function' => create_function('$news', '
  154. if (is_numeric($news[\'id\']))
  155. return \'<input type="checkbox" name="remove[]" value="\' . $news[\'id\'] . \'" class="input_check" />\';
  156. else
  157. return \'\';
  158. '),
  159. 'style' => 'text-align: center',
  160. ),
  161. ),
  162. ),
  163. 'form' => array(
  164. 'href' => $scripturl . '?action=admin;area=news;sa=editnews',
  165. 'hidden_fields' => array(
  166. $context['session_var'] => $context['session_id'],
  167. ),
  168. ),
  169. 'additional_rows' => array(
  170. array(
  171. 'position' => 'bottom_of_list',
  172. 'value' => '
  173. <span id="moreNewsItems_link" style="display: none;">[<a href="javascript:void(0);" onclick="addNewsItem(); return false;">' . $txt['editnews_clickadd'] . '</a>]</span>
  174. <script type="text/javascript"><!-- // --><![CDATA[
  175. document.getElementById(\'list_news_lists_last\').style.display = "none";
  176. document.getElementById("moreNewsItems_link").style.display = "";
  177. $(document).ready(function() {
  178. $("div[id ^= \'preview_\']").each(function () {
  179. $(this).css({cursor: \'hand\', cursor: \'pointer\', });
  180. var preview_id = $(this).attr(\'id\').split(\'_\')[1];
  181. $(this).text(\'' . $txt['preview'] . '\').click(function () {
  182. $.ajax({
  183. type: "POST",
  184. url: "' . $scripturl . '?action=xmlhttp;sa=previews;xml",
  185. data: {item: "newspreview", news: $(this).prev().val()},
  186. context: document.body,
  187. success: function(request){
  188. if ($(request).find("error").text() == \'\')
  189. $(document).find("#box_preview_" + preview_id).html($(request).text());
  190. else
  191. $(document).find("#box_preview_" + preview_id).text(\'' . $txt['news_error_no_news'] . '\');
  192. },
  193. });
  194. });
  195. });
  196. });
  197. function addNewsItem()
  198. {
  199. document.getElementById("list_news_lists_last").style.display = "";
  200. setOuterHTML(document.getElementById("moreNewsItems"), \'<div style="margin-bottom: 2ex;"><textarea rows="3" cols="65" name="news[]" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 85%; min-width: 85%' : 'width: 85%') . ';"><\' + \'/textarea><\' + \'/div><div id="moreNewsItems"><\' + \'/div>\');
  201. }
  202. // ]]></script>
  203. <input type="submit" name="save_items" value="' . $txt['save'] . '" class="button_submit" /> <input type="submit" name="delete_selection" value="' . $txt['editnews_remove_selected'] . '" onclick="return confirm(\'' . $txt['editnews_remove_confirm'] . '\');" class="button_submit" />',
  204. 'align' => 'right',
  205. ),
  206. ),
  207. );
  208. // Create the request list.
  209. createList($listOptions);
  210. $context['sub_template'] = 'show_list';
  211. $context['default_list'] = 'news_lists';
  212. }
  213. function list_getNews()
  214. {
  215. global $modSettings;
  216. $admin_current_news = array();
  217. // Ready the current news.
  218. foreach (explode("\n", $modSettings['news']) as $id => $line)
  219. $admin_current_news[$id] = array(
  220. 'id' => $id,
  221. 'unparsed' => un_preparsecode($line),
  222. 'parsed' => preg_replace('~<([/]?)form[^>]*?[>]*>~i', '<em class="smalltext">&lt;$1form&gt;</em>', parse_bbc($line)),
  223. );
  224. $admin_current_news['last'] = array(
  225. 'id' => 'last',
  226. 'unparsed' => '<div id="moreNewsItems"></div>
  227. <noscript><textarea rows="3" cols="65" name="news[]" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 85%; min-width: 85%' : 'width: 85%') . ';"></textarea></noscript>',
  228. 'parsed' => '<div id="moreNewsItems_preview"></div>',
  229. );
  230. return $admin_current_news;
  231. // $context['sub_template'] = 'edit_news';
  232. }
  233. /**
  234. * This function allows a user to select the membergroups to send their
  235. * mailing to.
  236. * Called by ?action=admin;area=news;sa=mailingmembers.
  237. * Requires the send_mail permission.
  238. * Form is submitted to ?action=admin;area=news;mailingcompose.
  239. *
  240. * @uses the ManageNews template and email_members sub template.
  241. */
  242. function SelectMailingMembers()
  243. {
  244. global $txt, $context, $modSettings, $smcFunc;
  245. $context['page_title'] = $txt['admin_newsletters'];
  246. $context['sub_template'] = 'email_members';
  247. $context['groups'] = array();
  248. $postGroups = array();
  249. $normalGroups = array();
  250. // If we have post groups disabled then we need to give a "ungrouped members" option.
  251. if (empty($modSettings['permission_enable_postgroups']))
  252. {
  253. $context['groups'][0] = array(
  254. 'id' => 0,
  255. 'name' => $txt['membergroups_members'],
  256. 'member_count' => 0,
  257. );
  258. $normalGroups[0] = 0;
  259. }
  260. // Get all the extra groups as well as Administrator and Global Moderator.
  261. $request = $smcFunc['db_query']('', '
  262. SELECT mg.id_group, mg.group_name, mg.min_posts
  263. FROM {db_prefix}membergroups AS mg' . (empty($modSettings['permission_enable_postgroups']) ? '
  264. WHERE mg.min_posts = {int:min_posts}' : '') . '
  265. GROUP BY mg.id_group, mg.min_posts, mg.group_name
  266. ORDER BY mg.min_posts, CASE WHEN mg.id_group < {int:newbie_group} THEN mg.id_group ELSE 4 END, mg.group_name',
  267. array(
  268. 'min_posts' => -1,
  269. 'newbie_group' => 4,
  270. )
  271. );
  272. while ($row = $smcFunc['db_fetch_assoc']($request))
  273. {
  274. $context['groups'][$row['id_group']] = array(
  275. 'id' => $row['id_group'],
  276. 'name' => $row['group_name'],
  277. 'member_count' => 0,
  278. );
  279. if ($row['min_posts'] == -1)
  280. $normalGroups[$row['id_group']] = $row['id_group'];
  281. else
  282. $postGroups[$row['id_group']] = $row['id_group'];
  283. }
  284. $smcFunc['db_free_result']($request);
  285. // If we have post groups, let's count the number of members...
  286. if (!empty($postGroups))
  287. {
  288. $query = $smcFunc['db_query']('', '
  289. SELECT mem.id_post_group AS id_group, COUNT(*) AS member_count
  290. FROM {db_prefix}members AS mem
  291. WHERE mem.id_post_group IN ({array_int:post_group_list})
  292. GROUP BY mem.id_post_group',
  293. array(
  294. 'post_group_list' => $postGroups,
  295. )
  296. );
  297. while ($row = $smcFunc['db_fetch_assoc']($query))
  298. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  299. $smcFunc['db_free_result']($query);
  300. }
  301. if (!empty($normalGroups))
  302. {
  303. // Find people who are members of this group...
  304. $query = $smcFunc['db_query']('', '
  305. SELECT id_group, COUNT(*) AS member_count
  306. FROM {db_prefix}members
  307. WHERE id_group IN ({array_int:normal_group_list})
  308. GROUP BY id_group',
  309. array(
  310. 'normal_group_list' => $normalGroups,
  311. )
  312. );
  313. while ($row = $smcFunc['db_fetch_assoc']($query))
  314. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  315. $smcFunc['db_free_result']($query);
  316. // Also do those who have it as an additional membergroup - this ones more yucky...
  317. $query = $smcFunc['db_query']('', '
  318. SELECT mg.id_group, COUNT(*) AS member_count
  319. FROM {db_prefix}membergroups AS mg
  320. INNER JOIN {db_prefix}members AS mem ON (mem.additional_groups != {string:blank_string}
  321. AND mem.id_group != mg.id_group
  322. AND FIND_IN_SET(mg.id_group, mem.additional_groups) != 0)
  323. WHERE mg.id_group IN ({array_int:normal_group_list})
  324. GROUP BY mg.id_group',
  325. array(
  326. 'normal_group_list' => $normalGroups,
  327. 'blank_string' => '',
  328. )
  329. );
  330. while ($row = $smcFunc['db_fetch_assoc']($query))
  331. $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
  332. $smcFunc['db_free_result']($query);
  333. }
  334. // Any moderators?
  335. $request = $smcFunc['db_query']('', '
  336. SELECT COUNT(DISTINCT id_member) AS num_distinct_mods
  337. FROM {db_prefix}moderators
  338. LIMIT 1',
  339. array(
  340. )
  341. );
  342. list ($context['groups'][3]['member_count']) = $smcFunc['db_fetch_row']($request);
  343. $smcFunc['db_free_result']($request);
  344. $context['can_send_pm'] = allowedTo('pm_send');
  345. }
  346. /**
  347. * Shows a form to edit a forum mailing and its recipients.
  348. * Called by ?action=admin;area=news;sa=mailingcompose.
  349. * Requires the send_mail permission.
  350. * Form is submitted to ?action=admin;area=news;sa=mailingsend.
  351. *
  352. * @uses ManageNews template, email_members_compose sub-template.
  353. */
  354. function ComposeMailing()
  355. {
  356. global $txt, $sourcedir, $context, $smcFunc;
  357. // Start by finding any members!
  358. $toClean = array();
  359. if (!empty($_POST['members']))
  360. $toClean[] = 'members';
  361. if (!empty($_POST['exclude_members']))
  362. $toClean[] = 'exclude_members';
  363. if (!empty($toClean))
  364. {
  365. require_once($sourcedir . '/Subs-Auth.php');
  366. foreach ($toClean as $type)
  367. {
  368. // Remove the quotes.
  369. $_POST[$type] = strtr($_POST[$type], array('\\"' => '"'));
  370. preg_match_all('~"([^"]+)"~', $_POST[$type], $matches);
  371. $_POST[$type] = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST[$type]))));
  372. foreach ($_POST[$type] as $index => $member)
  373. if (strlen(trim($member)) > 0)
  374. $_POST[$type][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($member)));
  375. else
  376. unset($_POST[$type][$index]);
  377. // Find the members
  378. $_POST[$type] = implode(',', array_keys(findMembers($_POST[$type])));
  379. }
  380. }
  381. if (isset($_POST['member_list']) && is_array($_POST['member_list']))
  382. {
  383. $members = array();
  384. foreach ($_POST['member_list'] as $member_id)
  385. $members[] = (int) $member_id;
  386. $_POST['members'] = implode(',', $members);
  387. }
  388. if (isset($_POST['exclude_member_list']) && is_array($_POST['exclude_member_list']))
  389. {
  390. $members = array();
  391. foreach ($_POST['exclude_member_list'] as $member_id)
  392. $members[] = (int) $member_id;
  393. $_POST['exclude_members'] = implode(',', $members);
  394. }
  395. // Clean the other vars.
  396. SendMailing(true);
  397. // We need a couple strings from the email template file
  398. loadLanguage('EmailTemplates');
  399. // 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.
  400. $request = $smcFunc['db_query']('', '
  401. SELECT DISTINCT mem.id_member
  402. FROM {db_prefix}ban_groups AS bg
  403. INNER JOIN {db_prefix}ban_items AS bi ON (bg.id_ban_group = bi.id_ban_group)
  404. INNER JOIN {db_prefix}members AS mem ON (bi.id_member = mem.id_member)
  405. WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
  406. AND (bg.expire_time IS NULL OR bg.expire_time > {int:current_time})',
  407. array(
  408. 'cannot_access' => 1,
  409. 'cannot_login' => 1,
  410. 'current_time' => time(),
  411. )
  412. );
  413. while ($row = $smcFunc['db_fetch_assoc']($request))
  414. $context['recipients']['exclude_members'][] = $row['id_member'];
  415. $smcFunc['db_free_result']($request);
  416. $request = $smcFunc['db_query']('', '
  417. SELECT DISTINCT bi.email_address
  418. FROM {db_prefix}ban_items AS bi
  419. INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group)
  420. WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
  421. AND (COALESCE(bg.expire_time, 1=1) OR bg.expire_time > {int:current_time})
  422. AND bi.email_address != {string:blank_string}',
  423. array(
  424. 'cannot_access' => 1,
  425. 'cannot_login' => 1,
  426. 'current_time' => time(),
  427. 'blank_string' => '',
  428. )
  429. );
  430. $condition_array = array();
  431. $condition_array_params = array();
  432. $count = 0;
  433. while ($row = $smcFunc['db_fetch_assoc']($request))
  434. {
  435. $condition_array[] = '{string:email_' . $count . '}';
  436. $condition_array_params['email_' . $count++] = $row['email_address'];
  437. }
  438. if (!empty($condition_array))
  439. {
  440. $request = $smcFunc['db_query']('', '
  441. SELECT id_member
  442. FROM {db_prefix}members
  443. WHERE email_address IN(' . implode(', ', $condition_array) .')',
  444. $condition_array_params
  445. );
  446. while ($row = $smcFunc['db_fetch_assoc']($request))
  447. $context['recipients']['exclude_members'][] = $row['id_member'];
  448. }
  449. // Did they select moderators - if so add them as specific members...
  450. if ((!empty($context['recipients']['groups']) && in_array(3, $context['recipients']['groups'])) || (!empty($context['recipients']['exclude_groups']) && in_array(3, $context['recipients']['exclude_groups'])))
  451. {
  452. $request = $smcFunc['db_query']('', '
  453. SELECT DISTINCT mem.id_member AS identifier
  454. FROM {db_prefix}members AS mem
  455. INNER JOIN {db_prefix}moderators AS mods ON (mods.id_member = mem.id_member)
  456. WHERE mem.is_activated = {int:is_activated}',
  457. array(
  458. 'is_activated' => 1,
  459. )
  460. );
  461. while ($row = $smcFunc['db_fetch_assoc']($request))
  462. {
  463. if (in_array(3, $context['recipients']))
  464. $context['recipients']['exclude_members'][] = $row['identifier'];
  465. else
  466. $context['recipients']['members'][] = $row['identifier'];
  467. }
  468. $smcFunc['db_free_result']($request);
  469. }
  470. // For progress bar!
  471. $context['total_emails'] = count($context['recipients']['emails']);
  472. $request = $smcFunc['db_query']('', '
  473. SELECT MAX(id_member)
  474. FROM {db_prefix}members',
  475. array(
  476. )
  477. );
  478. list ($context['max_id_member']) = $smcFunc['db_fetch_row']($request);
  479. $smcFunc['db_free_result']($request);
  480. // Clean up the arrays.
  481. $context['recipients']['members'] = array_unique($context['recipients']['members']);
  482. $context['recipients']['exclude_members'] = array_unique($context['recipients']['exclude_members']);
  483. // Setup the template!
  484. $context['page_title'] = $txt['admin_newsletters'];
  485. $context['sub_template'] = 'email_members_compose';
  486. $context['default_subject'] = htmlspecialchars($context['forum_name'] . ': ' . $txt['subject']);
  487. $context['default_message'] = htmlspecialchars($txt['message'] . "\n\n" . $txt['regards_team'] . "\n\n" . '{$board_url}');
  488. }
  489. /**
  490. * Handles the sending of the forum mailing in batches.
  491. * Called by ?action=admin;area=news;sa=mailingsend
  492. * Requires the send_mail permission.
  493. * Redirects to itself when more batches need to be sent.
  494. * Redirects to ?action=admin after everything has been sent.
  495. *
  496. * @param bool $clean_only = false; if set, it will only clean the variables, put them in context, then return.
  497. * @uses the ManageNews template and email_members_send sub template.
  498. */
  499. function SendMailing($clean_only = false)
  500. {
  501. global $txt, $sourcedir, $context, $smcFunc;
  502. global $scripturl, $modSettings, $user_info;
  503. // How many to send at once? Quantity depends on whether we are queueing or not.
  504. $num_at_once = empty($modSettings['mail_queue']) ? 60 : 1000;
  505. // If by PM's I suggest we half the above number.
  506. if (!empty($_POST['send_pm']))
  507. $num_at_once /= 2;
  508. checkSession();
  509. // Where are we actually to?
  510. $context['start'] = isset($_REQUEST['start']) ? $_REQUEST['start'] : 0;
  511. $context['email_force'] = !empty($_POST['email_force']) ? 1 : 0;
  512. $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0;
  513. $context['total_emails'] = !empty($_POST['total_emails']) ? (int) $_POST['total_emails'] : 0;
  514. $context['max_id_member'] = !empty($_POST['max_id_member']) ? (int) $_POST['max_id_member'] : 0;
  515. $context['send_html'] = !empty($_POST['send_html']) ? '1' : '0';
  516. $context['parse_html'] = !empty($_POST['parse_html']) ? '1' : '0';
  517. // Create our main context.
  518. $context['recipients'] = array(
  519. 'groups' => array(),
  520. 'exclude_groups' => array(),
  521. 'members' => array(),
  522. 'exclude_members' => array(),
  523. 'emails' => array(),
  524. );
  525. // Have we any excluded members?
  526. if (!empty($_POST['exclude_members']))
  527. {
  528. $members = explode(',', $_POST['exclude_members']);
  529. foreach ($members as $member)
  530. if ($member >= $context['start'])
  531. $context['recipients']['exclude_members'][] = (int) $member;
  532. }
  533. // What about members we *must* do?
  534. if (!empty($_POST['members']))
  535. {
  536. $members = explode(',', $_POST['members']);
  537. foreach ($members as $member)
  538. if ($member >= $context['start'])
  539. $context['recipients']['members'][] = (int) $member;
  540. }
  541. // Cleaning groups is simple - although deal with both checkbox and commas.
  542. if (!empty($_POST['groups']))
  543. {
  544. if (is_array($_POST['groups']))
  545. {
  546. foreach ($_POST['groups'] as $group => $dummy)
  547. $context['recipients']['groups'][] = (int) $group;
  548. }
  549. else
  550. {
  551. $groups = explode(',', $_POST['groups']);
  552. foreach ($groups as $group)
  553. $context['recipients']['groups'][] = (int) $group;
  554. }
  555. }
  556. // Same for excluded groups
  557. if (!empty($_POST['exclude_groups']))
  558. {
  559. if (is_array($_POST['exclude_groups']))
  560. {
  561. foreach ($_POST['exclude_groups'] as $group => $dummy)
  562. $context['recipients']['exclude_groups'][] = (int) $group;
  563. }
  564. else
  565. {
  566. $groups = explode(',', $_POST['exclude_groups']);
  567. foreach ($groups as $group)
  568. $context['recipients']['exclude_groups'][] = (int) $group;
  569. }
  570. }
  571. // Finally - emails!
  572. if (!empty($_POST['emails']))
  573. {
  574. $addressed = array_unique(explode(';', strtr($_POST['emails'], array("\n" => ';', "\r" => ';', ',' => ';'))));
  575. foreach ($addressed as $curmem)
  576. {
  577. $curmem = trim($curmem);
  578. if ($curmem != '')
  579. $context['recipients']['emails'][$curmem] = $curmem;
  580. }
  581. }
  582. // If we're only cleaning drop out here.
  583. if ($clean_only)
  584. return;
  585. require_once($sourcedir . '/Subs-Post.php');
  586. // Save the message and its subject in $context
  587. $context['subject'] = htmlspecialchars($_POST['subject']);
  588. $context['message'] = htmlspecialchars($_POST['message']);
  589. // Prepare the message for sending it as HTML
  590. if (!$context['send_pm'] && !empty($_POST['send_html']))
  591. {
  592. // Prepare the message for HTML.
  593. if (!empty($_POST['parse_html']))
  594. $_POST['message'] = str_replace(array("\n", ' '), array('<br />' . "\n", '&nbsp; '), $_POST['message']);
  595. // This is here to prevent spam filters from tagging this as spam.
  596. if (preg_match('~\<html~i', $_POST['message']) == 0)
  597. {
  598. if (preg_match('~\<body~i', $_POST['message']) == 0)
  599. $_POST['message'] = '<html><head><title>' . $_POST['subject'] . '</title></head>' . "\n" . '<body>' . $_POST['message'] . '</body></html>';
  600. else
  601. $_POST['message'] = '<html>' . $_POST['message'] . '</html>';
  602. }
  603. }
  604. // Use the default time format.
  605. $user_info['time_format'] = $modSettings['time_format'];
  606. $variables = array(
  607. '{$board_url}',
  608. '{$current_time}',
  609. '{$latest_member.link}',
  610. '{$latest_member.id}',
  611. '{$latest_member.name}'
  612. );
  613. // We might need this in a bit
  614. $cleanLatestMember = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($modSettings['latestRealName']) : $modSettings['latestRealName'];
  615. // Replace in all the standard things.
  616. $_POST['message'] = str_replace($variables,
  617. array(
  618. !empty($_POST['send_html']) ? '<a href="' . $scripturl . '">' . $scripturl . '</a>' : $scripturl,
  619. timeformat(forum_time(), false),
  620. !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),
  621. $modSettings['latestMember'],
  622. $cleanLatestMember
  623. ), $_POST['message']);
  624. $_POST['subject'] = str_replace($variables,
  625. array(
  626. $scripturl,
  627. timeformat(forum_time(), false),
  628. $modSettings['latestRealName'],
  629. $modSettings['latestMember'],
  630. $modSettings['latestRealName']
  631. ), $_POST['subject']);
  632. $from_member = array(
  633. '{$member.email}',
  634. '{$member.link}',
  635. '{$member.id}',
  636. '{$member.name}'
  637. );
  638. // If we still have emails, do them first!
  639. $i = 0;
  640. foreach ($context['recipients']['emails'] as $k => $email)
  641. {
  642. // Done as many as we can?
  643. if ($i >= $num_at_once)
  644. break;
  645. // Don't sent it twice!
  646. unset($context['recipients']['emails'][$k]);
  647. // Dammit - can't PM emails!
  648. if ($context['send_pm'])
  649. continue;
  650. $to_member = array(
  651. $email,
  652. !empty($_POST['send_html']) ? '<a href="mailto:' . $email . '">' . $email . '</a>' : $email,
  653. '??',
  654. $email
  655. );
  656. sendmail($email, str_replace($from_member, $to_member, $_POST['subject']), str_replace($from_member, $to_member, $_POST['message']), null, null, !empty($_POST['send_html']), 5);
  657. // Done another...
  658. $i++;
  659. }
  660. // Got some more to send this batch?
  661. $last_id_member = 0;
  662. if ($i < $num_at_once)
  663. {
  664. // Need to build quite a query!
  665. $sendQuery = '(';
  666. $sendParams = array();
  667. if (!empty($context['recipients']['groups']))
  668. {
  669. // Take the long route...
  670. $queryBuild = array();
  671. foreach ($context['recipients']['groups'] as $group)
  672. {
  673. $sendParams['group_' . $group] = $group;
  674. $queryBuild[] = 'mem.id_group = {int:group_' . $group . '}';
  675. if (!empty($group))
  676. {
  677. $queryBuild[] = 'FIND_IN_SET({int:group_' . $group . '}, mem.additional_groups) != 0';
  678. $queryBuild[] = 'mem.id_post_group = {int:group_' . $group . '}';
  679. }
  680. }
  681. if (!empty($queryBuild))
  682. $sendQuery .= implode(' OR ', $queryBuild);
  683. }
  684. if (!empty($context['recipients']['members']))
  685. {
  686. $sendQuery .= ($sendQuery == '(' ? '' : ' OR ') . 'mem.id_member IN ({array_int:members})';
  687. $sendParams['members'] = $context['recipients']['members'];
  688. }
  689. $sendQuery .= ')';
  690. // If we've not got a query then we must be done!
  691. if ($sendQuery == '()')
  692. redirectexit('action=admin');
  693. // Anything to exclude?
  694. if (!empty($context['recipients']['exclude_groups']) && in_array(0, $context['recipients']['exclude_groups']))
  695. $sendQuery .= ' AND mem.id_group != {int:regular_group}';
  696. if (!empty($context['recipients']['exclude_members']))
  697. {
  698. $sendQuery .= ' AND mem.id_member NOT IN ({array_int:exclude_members})';
  699. $sendParams['exclude_members'] = $context['recipients']['exclude_members'];
  700. }
  701. // Force them to have it?
  702. if (empty($context['email_force']))
  703. $sendQuery .= ' AND mem.notify_announcements = {int:notify_announcements}';
  704. // Get the smelly people - note we respect the id_member range as it gives us a quicker query.
  705. $result = $smcFunc['db_query']('', '
  706. SELECT mem.id_member, mem.email_address, mem.real_name, mem.id_group, mem.additional_groups, mem.id_post_group
  707. FROM {db_prefix}members AS mem
  708. WHERE mem.id_member > {int:min_id_member}
  709. AND mem.id_member < {int:max_id_member}
  710. AND ' . $sendQuery . '
  711. AND mem.is_activated = {int:is_activated}
  712. ORDER BY mem.id_member ASC
  713. LIMIT {int:atonce}',
  714. array_merge($sendParams, array(
  715. 'min_id_member' => $context['start'],
  716. 'max_id_member' => $context['start'] + $num_at_once - $i,
  717. 'atonce' => $num_at_once - $i,
  718. 'regular_group' => 0,
  719. 'notify_announcements' => 1,
  720. 'is_activated' => 1,
  721. ))
  722. );
  723. while ($row = $smcFunc['db_fetch_assoc']($result))
  724. {
  725. $last_id_member = $row['id_member'];
  726. // What groups are we looking at here?
  727. if (empty($row['additional_groups']))
  728. $groups = array($row['id_group'], $row['id_post_group']);
  729. else
  730. $groups = array_merge(
  731. array($row['id_group'], $row['id_post_group']),
  732. explode(',', $row['additional_groups'])
  733. );
  734. // Excluded groups?
  735. if (array_intersect($groups, $context['recipients']['exclude_groups']))
  736. continue;
  737. // We might need this
  738. $cleanMemberName = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($row['real_name']) : $row['real_name'];
  739. // Replace the member-dependant variables
  740. $message = str_replace($from_member,
  741. array(
  742. $row['email_address'],
  743. !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),
  744. $row['id_member'],
  745. $cleanMemberName,
  746. ), $_POST['message']);
  747. $subject = str_replace($from_member,
  748. array(
  749. $row['email_address'],
  750. $row['real_name'],
  751. $row['id_member'],
  752. $row['real_name'],
  753. ), $_POST['subject']);
  754. // Send the actual email - or a PM!
  755. if (!$context['send_pm'])
  756. sendmail($row['email_address'], $subject, $message, null, null, !empty($_POST['send_html']), 5);
  757. else
  758. sendpm(array('to' => array($row['id_member']), 'bcc' => array()), $subject, $message);
  759. }
  760. $smcFunc['db_free_result']($result);
  761. }
  762. // If used our batch assume we still have a member.
  763. if ($i >= $num_at_once)
  764. $last_id_member = $context['start'];
  765. // Or we didn't have one in range?
  766. elseif (empty($last_id_member) && $context['start'] + $num_at_once < $context['max_id_member'])
  767. $last_id_member = $context['start'] + $num_at_once;
  768. // If we have no id_member then we're done.
  769. elseif (empty($last_id_member) && empty($context['recipients']['emails']))
  770. {
  771. // Log this into the admin log.
  772. logAction('newsletter', array(), 'admin');
  773. redirectexit('action=admin');
  774. }
  775. $context['start'] = $last_id_member;
  776. // Working out progress is a black art of sorts.
  777. $percentEmails = $context['total_emails'] == 0 ? 0 : ((count($context['recipients']['emails']) / $context['total_emails']) * ($context['total_emails'] / ($context['total_emails'] + $context['max_id_member'])));
  778. $percentMembers = ($context['start'] / $context['max_id_member']) * ($context['max_id_member'] / ($context['total_emails'] + $context['max_id_member']));
  779. $context['percentage_done'] = round(($percentEmails + $percentMembers) * 100, 2);
  780. $context['page_title'] = $txt['admin_newsletters'];
  781. $context['sub_template'] = 'email_members_send';
  782. }
  783. /**
  784. * Set general news and newsletter settings and permissions.
  785. * Called by ?action=admin;area=news;sa=settings.
  786. * Requires the forum_admin permission.
  787. *
  788. * @uses ManageNews template, news_settings sub-template.
  789. * @param bool $return_config = false
  790. */
  791. function ModifyNewsSettings($return_config = false)
  792. {
  793. global $context, $sourcedir, $modSettings, $txt, $scripturl;
  794. $config_vars = array(
  795. array('title', 'settings'),
  796. // Inline permissions.
  797. array('permissions', 'edit_news', 'help' => ''),
  798. array('permissions', 'send_mail'),
  799. '',
  800. // Just the remaining settings.
  801. array('check', 'xmlnews_enable', 'onclick' => 'document.getElementById(\'xmlnews_maxlen\').disabled = !this.checked;'),
  802. array('text', 'xmlnews_maxlen', 10),
  803. );
  804. call_integration_hook('integrate_modify_news_settings', array(&$config_vars));
  805. if ($return_config)
  806. return $config_vars;
  807. $context['page_title'] = $txt['admin_edit_news'] . ' - ' . $txt['settings'];
  808. $context['sub_template'] = 'show_settings';
  809. // Needed for the inline permission functions, and the settings template.
  810. // @todo is this really needed?
  811. require_once($sourcedir . '/ManagePermissions.php');
  812. require_once($sourcedir . '/ManageServer.php');
  813. // Wrap it all up nice and warm...
  814. $context['post_url'] = $scripturl . '?action=admin;area=news;save;sa=settings';
  815. $context['permissions_excluded'] = array(-1);
  816. // Add some javascript at the bottom...
  817. $context['settings_insert_below'] = '
  818. <script type="text/javascript"><!-- // --><![CDATA[
  819. document.getElementById("xmlnews_maxlen").disabled = !document.getElementById("xmlnews_enable").checked;
  820. // ]]></script>';
  821. // Saving the settings?
  822. if (isset($_GET['save']))
  823. {
  824. checkSession();
  825. call_integration_hook('integrate_save_news_settings');
  826. saveDBSettings($config_vars);
  827. redirectexit('action=admin;area=news;sa=settings');
  828. }
  829. prepareDBSettingContext($config_vars);
  830. }
  831. ?>