ManageNews.php 32 KB

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