12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082 |
- <?php
- /**
- * This file manages... the news. :P
- *
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2011 Simple Machines
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- if (!defined('SMF'))
- die('Hacking attempt...');
- /**
- * The news dispatcher; doesn't do anything, just delegates.
- * This is the entrance point for all News and Newsletter screens.
- * Called by ?action=admin;area=news.
- * It does the permission checks, and calls the appropriate function
- * based on the requested sub-action.
- */
- function ManageNews()
- {
- global $context, $txt, $scripturl;
- // First, let's do a quick permissions check for the best error message possible.
- isAllowedTo(array('edit_news', 'send_mail', 'admin_forum'));
- loadTemplate('ManageNews');
- // Format: 'sub-action' => array('function', 'permission')
- $subActions = array(
- 'editnews' => array('EditNews', 'edit_news'),
- 'mailingmembers' => array('SelectMailingMembers', 'send_mail'),
- 'mailingcompose' => array('ComposeMailing', 'send_mail'),
- 'mailingsend' => array('SendMailing', 'send_mail'),
- 'settings' => array('ModifyNewsSettings', 'admin_forum'),
- );
- call_integration_hook('integrate_manage_news', array(&$subActions));
- // Default to sub action 'main' or 'settings' depending on permissions.
- $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (allowedTo('edit_news') ? 'editnews' : (allowedTo('send_mail') ? 'mailingmembers' : 'settings'));
- // Have you got the proper permissions?
- isAllowedTo($subActions[$_REQUEST['sa']][1]);
- // Create the tabs for the template.
- $context[$context['admin_menu_name']]['tab_data'] = array(
- 'title' => $txt['news_title'],
- 'help' => 'edit_news',
- 'description' => $txt['admin_news_desc'],
- 'tabs' => array(
- 'editnews' => array(
- ),
- 'mailingmembers' => array(
- 'description' => $txt['news_mailing_desc'],
- ),
- 'settings' => array(
- 'description' => $txt['news_settings_desc'],
- ),
- ),
- );
- // Force the right area...
- if (substr($_REQUEST['sa'], 0, 7) == 'mailing')
- $context[$context['admin_menu_name']]['current_subsection'] = 'mailingmembers';
- $subActions[$_REQUEST['sa']][0]();
- }
- /**
- * Let the administrator(s) edit the news items for the forum.
- * It writes an entry into the moderation log.
- * This function uses the edit_news administration area.
- * Called by ?action=admin;area=news.
- * Requires the edit_news permission.
- * Can be accessed with ?action=admin;sa=editnews.
- *
- * @uses ManageNews template, edit_news sub template.
- */
- function EditNews()
- {
- global $txt, $modSettings, $context, $sourcedir, $user_info, $scripturl;
- global $smcFunc;
- require_once($sourcedir . '/Subs-Post.php');
- // The 'remove selected' button was pressed.
- if (!empty($_POST['delete_selection']) && !empty($_POST['remove']))
- {
- checkSession();
- // Store the news temporarily in this array.
- $temp_news = explode("\n", $modSettings['news']);
- // Remove the items that were selected.
- foreach ($temp_news as $i => $news)
- if (in_array($i, $_POST['remove']))
- unset($temp_news[$i]);
- // Update the database.
- updateSettings(array('news' => implode("\n", $temp_news)));
- logAction('news');
- }
- // The 'Save' button was pressed.
- elseif (!empty($_POST['save_items']))
- {
- checkSession();
- foreach ($_POST['news'] as $i => $news)
- {
- if (trim($news) == '')
- unset($_POST['news'][$i]);
- else
- {
- $_POST['news'][$i] = $smcFunc['htmlspecialchars']($_POST['news'][$i], ENT_QUOTES);
- preparsecode($_POST['news'][$i]);
- }
- }
- // Send the new news to the database.
- updateSettings(array('news' => implode("\n", $_POST['news'])));
- // Log this into the moderation log.
- logAction('news');
- }
- // We're going to want this for making our list.
- require_once($sourcedir . '/Subs-List.php');
- $context['page_title'] = $txt['admin_edit_news'];
- // Use the standard templates for showing this.
- $listOptions = array(
- 'id' => 'news_lists',
- 'get_items' => array(
- 'function' => 'list_getNews',
- ),
- 'columns' => array(
- 'news' => array(
- 'header' => array(
- 'value' => $txt['admin_edit_news'],
- ),
- 'data' => array(
- 'function' => create_function('$news', '
- if (is_numeric($news[\'id\']))
- return \'<textarea id="data_\' . $news[\'id\'] . \'" rows="3" cols="65" name="news[]" style="\' . (isBrowser(\'is_ie8\') ? \'width: 635px; max-width: 85%; min-width: 85%\' : \'width 100%;margin 0 5em\') . \';">\' . $news[\'unparsed\'] . \'</textarea>
- <br />
- <div class="floatleft" id="preview_\' . $news[\'id\'] . \'"></div>\';
- else
- return $news[\'unparsed\'];
- '),
- 'style' => 'width: 50%;',
- ),
- ),
- 'preview' => array(
- 'header' => array(
- 'value' => $txt['preview'],
- ),
- 'data' => array(
- 'function' => create_function('$news', '
- return \'<div id="box_preview_\' . $news[\'id\'] . \'" style="overflow: auto; width: 100%; height: 10ex;">\' . $news[\'parsed\'] . \'</div>\';
- '),
- 'style' => 'width: 45%;',
- ),
- ),
- 'check' => array(
- 'header' => array(
- 'value' => '<input type="checkbox" onclick="invertAll(this, this.form);" class="input_check" />',
- ),
- 'data' => array(
- 'function' => create_function('$news', '
- if (is_numeric($news[\'id\']))
- return \'<input type="checkbox" name="remove[]" value="\' . $news[\'id\'] . \'" class="input_check" />\';
- else
- return \'\';
- '),
- 'style' => 'text-align: center',
- ),
- ),
- ),
- 'form' => array(
- 'href' => $scripturl . '?action=admin;area=news;sa=editnews',
- 'hidden_fields' => array(
- $context['session_var'] => $context['session_id'],
- ),
- ),
- 'additional_rows' => array(
- array(
- 'position' => 'bottom_of_list',
- 'value' => '
- <span id="moreNewsItems_link" class="floatleft" style="display: none;">
- <a class="button_link" href="javascript:void(0);" onclick="addNewsItem(); return false;">' . $txt['editnews_clickadd'] . '</a>
- </span>
- <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" />',
- ),
- ),
- 'javascript' => '
- document.getElementById(\'list_news_lists_last\').style.display = "none";
- document.getElementById("moreNewsItems_link").style.display = "";
- var last_preview = 0;
-
- $(document).ready(function () {
- $("div[id ^= \'preview_\']").each(function () {
- var preview_id = $(this).attr(\'id\').split(\'_\')[1];
- if (last_preview < preview_id)
- last_preview = preview_id;
- make_preview_btn(preview_id);
- });
- });
- function make_preview_btn (preview_id)
- {
- $("#preview_" + preview_id).addClass("button_link");
- $("#preview_" + preview_id).text(\'' . $txt['preview'] . '\').click(function () {
- $.ajax({
- type: "POST",
- url: "' . $scripturl . '?action=xmlhttp;sa=previews;xml",
- data: {item: "newspreview", news: $("#data_" + preview_id).val()},
- context: document.body,
- success: function(request){
- if ($(request).find("error").text() == \'\')
- $(document).find("#box_preview_" + preview_id).html($(request).text());
- else
- $(document).find("#box_preview_" + preview_id).text(\'' . $txt['news_error_no_news'] . '\');
- },
- });
- });
- }
- function addNewsItem ()
- {
- last_preview++;
- $("#list_news_lists_last").before(' . javaScriptEscape('
- <tr class="windowbg') . ' + (last_preview % 2 == 0 ? \'\' : \'2\') + ' . javaScriptEscape('">
- <td style="width: 50%;">
- <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>
- <br />
- <div class="floatleft" id="preview_') . ' + last_preview + ' . javaScriptEscape('"></div>
- </td>
- <td style="width: 45%;">
- <div id="box_preview_') . ' + last_preview + ' . javaScriptEscape('" style="overflow: auto; width: 100%; height: 10ex;"></div>
- </td>
- <td></td>
- </tr>') . ');
- make_preview_btn(last_preview);
- }',
- );
- // Create the request list.
- createList($listOptions);
- $context['sub_template'] = 'show_list';
- $context['default_list'] = 'news_lists';
- }
- function list_getNews()
- {
- global $modSettings;
- $admin_current_news = array();
- // Ready the current news.
- foreach (explode("\n", $modSettings['news']) as $id => $line)
- $admin_current_news[$id] = array(
- 'id' => $id,
- 'unparsed' => un_preparsecode($line),
- 'parsed' => preg_replace('~<([/]?)form[^>]*?[>]*>~i', '<em class="smalltext"><$1form></em>', parse_bbc($line)),
- );
- $admin_current_news['last'] = array(
- 'id' => 'last',
- 'unparsed' => '<div id="moreNewsItems"></div>
- <noscript><textarea rows="3" cols="65" name="news[]" style="' . (isBrowser('is_ie8') ? 'width: 635px; max-width: 85%; min-width: 85%' : 'width: 85%') . ';"></textarea></noscript>',
- 'parsed' => '<div id="moreNewsItems_preview"></div>',
- );
- return $admin_current_news;
- }
- /**
- * This function allows a user to select the membergroups to send their
- * mailing to.
- * Called by ?action=admin;area=news;sa=mailingmembers.
- * Requires the send_mail permission.
- * Form is submitted to ?action=admin;area=news;mailingcompose.
- *
- * @uses the ManageNews template and email_members sub template.
- */
- function SelectMailingMembers()
- {
- global $txt, $context, $modSettings, $smcFunc;
- $context['page_title'] = $txt['admin_newsletters'];
- $context['sub_template'] = 'email_members';
- $context['groups'] = array();
- $postGroups = array();
- $normalGroups = array();
- // If we have post groups disabled then we need to give a "ungrouped members" option.
- if (empty($modSettings['permission_enable_postgroups']))
- {
- $context['groups'][0] = array(
- 'id' => 0,
- 'name' => $txt['membergroups_members'],
- 'member_count' => 0,
- );
- $normalGroups[0] = 0;
- }
- // Get all the extra groups as well as Administrator and Global Moderator.
- $request = $smcFunc['db_query']('', '
- SELECT mg.id_group, mg.group_name, mg.min_posts
- FROM {db_prefix}membergroups AS mg' . (empty($modSettings['permission_enable_postgroups']) ? '
- WHERE mg.min_posts = {int:min_posts}' : '') . '
- GROUP BY mg.id_group, mg.min_posts, mg.group_name
- ORDER BY mg.min_posts, CASE WHEN mg.id_group < {int:newbie_group} THEN mg.id_group ELSE 4 END, mg.group_name',
- array(
- 'min_posts' => -1,
- 'newbie_group' => 4,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- $context['groups'][$row['id_group']] = array(
- 'id' => $row['id_group'],
- 'name' => $row['group_name'],
- 'member_count' => 0,
- );
- if ($row['min_posts'] == -1)
- $normalGroups[$row['id_group']] = $row['id_group'];
- else
- $postGroups[$row['id_group']] = $row['id_group'];
- }
- $smcFunc['db_free_result']($request);
- // If we have post groups, let's count the number of members...
- if (!empty($postGroups))
- {
- $query = $smcFunc['db_query']('', '
- SELECT mem.id_post_group AS id_group, COUNT(*) AS member_count
- FROM {db_prefix}members AS mem
- WHERE mem.id_post_group IN ({array_int:post_group_list})
- GROUP BY mem.id_post_group',
- array(
- 'post_group_list' => $postGroups,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($query))
- $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
- $smcFunc['db_free_result']($query);
- }
- if (!empty($normalGroups))
- {
- // Find people who are members of this group...
- $query = $smcFunc['db_query']('', '
- SELECT id_group, COUNT(*) AS member_count
- FROM {db_prefix}members
- WHERE id_group IN ({array_int:normal_group_list})
- GROUP BY id_group',
- array(
- 'normal_group_list' => $normalGroups,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($query))
- $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
- $smcFunc['db_free_result']($query);
- // Also do those who have it as an additional membergroup - this ones more yucky...
- $query = $smcFunc['db_query']('', '
- SELECT mg.id_group, COUNT(*) AS member_count
- FROM {db_prefix}membergroups AS mg
- INNER JOIN {db_prefix}members AS mem ON (mem.additional_groups != {string:blank_string}
- AND mem.id_group != mg.id_group
- AND FIND_IN_SET(mg.id_group, mem.additional_groups) != 0)
- WHERE mg.id_group IN ({array_int:normal_group_list})
- GROUP BY mg.id_group',
- array(
- 'normal_group_list' => $normalGroups,
- 'blank_string' => '',
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($query))
- $context['groups'][$row['id_group']]['member_count'] += $row['member_count'];
- $smcFunc['db_free_result']($query);
- }
- // Any moderators?
- $request = $smcFunc['db_query']('', '
- SELECT COUNT(DISTINCT id_member) AS num_distinct_mods
- FROM {db_prefix}moderators
- LIMIT 1',
- array(
- )
- );
- list ($context['groups'][3]['member_count']) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- $context['can_send_pm'] = allowedTo('pm_send');
- }
- /**
- * Prepare subject and message of an email for the preview box
- * Used in ComposeMailing and RetrievePreview (Xml.php)
- */
- function prepareMailingForPreview ()
- {
- global $context, $smcFunc, $modSettings, $scripturl, $user_info, $txt;
- loadLanguage('Errors');
- $processing = array('preview_subject' => 'subject', 'preview_message' => 'message');
- // Use the default time format.
- $user_info['time_format'] = $modSettings['time_format'];
- $variables = array(
- '{$board_url}',
- '{$current_time}',
- '{$latest_member.link}',
- '{$latest_member.id}',
- '{$latest_member.name}'
- );
- $html = $context['send_html'];
- // We might need this in a bit
- $cleanLatestMember = empty($context['send_html']) || $context['send_pm'] ? un_htmlspecialchars($modSettings['latestRealName']) : $modSettings['latestRealName'];
- foreach ($processing as $key => $post)
- {
- $context[$key] = !empty($_REQUEST[$post]) ? $_REQUEST[$post] : '';
- if (empty($context[$key]) && empty($_REQUEST['xml']))
- $context['post_error']['messages'][] = $txt['error_no_' . $post];
- elseif (!empty($_REQUEST['xml']))
- continue;
- preparsecode($context[$key]);
- if ($html)
- {
- $enablePostHTML = $modSettings['enablePostHTML'];
- $modSettings['enablePostHTML'] = $context['send_html'];
- $context[$key] = parse_bbc($context[$key]);
- $modSettings['enablePostHTML'] = $enablePostHTML;
- }
- // Replace in all the standard things.
- $context[$key] = str_replace($variables,
- array(
- !empty($context['send_html']) ? '<a href="' . $scripturl . '">' . $scripturl . '</a>' : $scripturl,
- timeformat(forum_time(), false),
- !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),
- $modSettings['latestMember'],
- $cleanLatestMember
- ), $context[$key]);
- }
- }
- /**
- * Shows a form to edit a forum mailing and its recipients.
- * Called by ?action=admin;area=news;sa=mailingcompose.
- * Requires the send_mail permission.
- * Form is submitted to ?action=admin;area=news;sa=mailingsend.
- *
- * @uses ManageNews template, email_members_compose sub-template.
- */
- function ComposeMailing()
- {
- global $txt, $sourcedir, $context, $smcFunc, $scripturl, $modSettings;
- // Setup the template!
- $context['page_title'] = $txt['admin_newsletters'];
- $context['sub_template'] = 'email_members_compose';
- $context['subject'] = !empty($_POST['subject']) ? $_POST['subject'] : htmlspecialchars($context['forum_name'] . ': ' . $txt['subject']);
- $context['message'] = !empty($_POST['message']) ? $_POST['message'] : htmlspecialchars($txt['message'] . "\n\n" . $txt['regards_team'] . "\n\n" . '{$board_url}');
- // Needed for the WYSIWYG editor.
- require_once($sourcedir . '/Subs-Editor.php');
- // Now create the editor.
- $editorOptions = array(
- 'id' => 'message',
- 'value' => $context['message'],
- 'height' => '175px',
- 'width' => '100%',
- 'labels' => array(
- 'post_button' => $txt['sendtopic_send'],
- ),
- 'preview_type' => 2,
- );
- create_control_richedit($editorOptions);
- // Store the ID for old compatibility.
- $context['post_box_name'] = $editorOptions['id'];
- if (isset($context['preview']))
- {
- require_once($sourcedir . '/Subs-Post.php');
- $context['recipients']['members'] = !empty($_POST['members']) ? explode(',', $_POST['members']) : array();
- $context['recipients']['exclude_members'] = !empty($_POST['exclude_members']) ? explode(',', $_POST['exclude_members']) : array();
- $context['recipients']['groups'] = !empty($_POST['groups']) ? explode(',', $_POST['groups']) : array();
- $context['recipients']['exclude_groups'] = !empty($_POST['exclude_groups']) ? explode(',', $_POST['exclude_groups']) : array();
- $context['recipients']['emails'] = !empty($_POST['emails']) ? explode(';', $_POST['emails']) : array();
- $context['email_force'] = !empty($_POST['email_force']) ? 1 : 0;
- $context['total_emails'] = !empty($_POST['total_emails']) ? (int) $_POST['total_emails'] : 0;
- $context['max_id_member'] = !empty($_POST['max_id_member']) ? (int) $_POST['max_id_member'] : 0;
- $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0;
- $context['send_html'] = !empty($_POST['send_html']) ? '1' : '0';
- return prepareMailingForPreview();
- }
- // Start by finding any members!
- $toClean = array();
- if (!empty($_POST['members']))
- $toClean[] = 'members';
- if (!empty($_POST['exclude_members']))
- $toClean[] = 'exclude_members';
- if (!empty($toClean))
- {
- require_once($sourcedir . '/Subs-Auth.php');
- foreach ($toClean as $type)
- {
- // Remove the quotes.
- $_POST[$type] = strtr($_POST[$type], array('\\"' => '"'));
- preg_match_all('~"([^"]+)"~', $_POST[$type], $matches);
- $_POST[$type] = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST[$type]))));
- foreach ($_POST[$type] as $index => $member)
- if (strlen(trim($member)) > 0)
- $_POST[$type][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($member)));
- else
- unset($_POST[$type][$index]);
- // Find the members
- $_POST[$type] = implode(',', array_keys(findMembers($_POST[$type])));
- }
- }
- if (isset($_POST['member_list']) && is_array($_POST['member_list']))
- {
- $members = array();
- foreach ($_POST['member_list'] as $member_id)
- $members[] = (int) $member_id;
- $_POST['members'] = implode(',', $members);
- }
- if (isset($_POST['exclude_member_list']) && is_array($_POST['exclude_member_list']))
- {
- $members = array();
- foreach ($_POST['exclude_member_list'] as $member_id)
- $members[] = (int) $member_id;
- $_POST['exclude_members'] = implode(',', $members);
- }
- // Clean the other vars.
- SendMailing(true);
- // We need a couple strings from the email template file
- loadLanguage('EmailTemplates');
- // 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.
- $request = $smcFunc['db_query']('', '
- SELECT DISTINCT mem.id_member
- FROM {db_prefix}ban_groups AS bg
- INNER JOIN {db_prefix}ban_items AS bi ON (bg.id_ban_group = bi.id_ban_group)
- INNER JOIN {db_prefix}members AS mem ON (bi.id_member = mem.id_member)
- WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
- AND (bg.expire_time IS NULL OR bg.expire_time > {int:current_time})',
- array(
- 'cannot_access' => 1,
- 'cannot_login' => 1,
- 'current_time' => time(),
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $context['recipients']['exclude_members'][] = $row['id_member'];
- $smcFunc['db_free_result']($request);
- $request = $smcFunc['db_query']('', '
- SELECT DISTINCT bi.email_address
- FROM {db_prefix}ban_items AS bi
- INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group)
- WHERE (bg.cannot_access = {int:cannot_access} OR bg.cannot_login = {int:cannot_login})
- AND (COALESCE(bg.expire_time, 1=1) OR bg.expire_time > {int:current_time})
- AND bi.email_address != {string:blank_string}',
- array(
- 'cannot_access' => 1,
- 'cannot_login' => 1,
- 'current_time' => time(),
- 'blank_string' => '',
- )
- );
- $condition_array = array();
- $condition_array_params = array();
- $count = 0;
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- $condition_array[] = '{string:email_' . $count . '}';
- $condition_array_params['email_' . $count++] = $row['email_address'];
- }
- $smcFunc['db_free_result']($request);
- if (!empty($condition_array))
- {
- $request = $smcFunc['db_query']('', '
- SELECT id_member
- FROM {db_prefix}members
- WHERE email_address IN(' . implode(', ', $condition_array) .')',
- $condition_array_params
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $context['recipients']['exclude_members'][] = $row['id_member'];
- $smcFunc['db_free_result']($request);
- }
- // Did they select moderators - if so add them as specific members...
- if ((!empty($context['recipients']['groups']) && in_array(3, $context['recipients']['groups'])) || (!empty($context['recipients']['exclude_groups']) && in_array(3, $context['recipients']['exclude_groups'])))
- {
- $request = $smcFunc['db_query']('', '
- SELECT DISTINCT mem.id_member AS identifier
- FROM {db_prefix}members AS mem
- INNER JOIN {db_prefix}moderators AS mods ON (mods.id_member = mem.id_member)
- WHERE mem.is_activated = {int:is_activated}',
- array(
- 'is_activated' => 1,
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- if (in_array(3, $context['recipients']))
- $context['recipients']['exclude_members'][] = $row['identifier'];
- else
- $context['recipients']['members'][] = $row['identifier'];
- }
- $smcFunc['db_free_result']($request);
- }
- // For progress bar!
- $context['total_emails'] = count($context['recipients']['emails']);
- $request = $smcFunc['db_query']('', '
- SELECT MAX(id_member)
- FROM {db_prefix}members',
- array(
- )
- );
- list ($context['max_id_member']) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- // Clean up the arrays.
- $context['recipients']['members'] = array_unique($context['recipients']['members']);
- $context['recipients']['exclude_members'] = array_unique($context['recipients']['exclude_members']);
- }
- /**
- * Handles the sending of the forum mailing in batches.
- * Called by ?action=admin;area=news;sa=mailingsend
- * Requires the send_mail permission.
- * Redirects to itself when more batches need to be sent.
- * Redirects to ?action=admin after everything has been sent.
- *
- * @param bool $clean_only = false; if set, it will only clean the variables, put them in context, then return.
- * @uses the ManageNews template and email_members_send sub template.
- */
- function SendMailing($clean_only = false)
- {
- global $txt, $sourcedir, $context, $smcFunc;
- global $scripturl, $modSettings, $user_info;
- if (isset($_POST['preview']))
- {
- $context['preview'] = true;
- return ComposeMailing();
- }
- // How many to send at once? Quantity depends on whether we are queueing or not.
- $num_at_once = empty($modSettings['mail_queue']) ? 60 : 1000;
- // If by PM's I suggest we half the above number.
- if (!empty($_POST['send_pm']))
- $num_at_once /= 2;
- checkSession();
- // Where are we actually to?
- $context['start'] = isset($_REQUEST['start']) ? $_REQUEST['start'] : 0;
- $context['email_force'] = !empty($_POST['email_force']) ? 1 : 0;
- $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0;
- $context['total_emails'] = !empty($_POST['total_emails']) ? (int) $_POST['total_emails'] : 0;
- $context['max_id_member'] = !empty($_POST['max_id_member']) ? (int) $_POST['max_id_member'] : 0;
- $context['send_html'] = !empty($_POST['send_html']) ? '1' : '0';
- $context['parse_html'] = !empty($_POST['parse_html']) ? '1' : '0';
- // Create our main context.
- $context['recipients'] = array(
- 'groups' => array(),
- 'exclude_groups' => array(),
- 'members' => array(),
- 'exclude_members' => array(),
- 'emails' => array(),
- );
- // Have we any excluded members?
- if (!empty($_POST['exclude_members']))
- {
- $members = explode(',', $_POST['exclude_members']);
- foreach ($members as $member)
- if ($member >= $context['start'])
- $context['recipients']['exclude_members'][] = (int) $member;
- }
- // What about members we *must* do?
- if (!empty($_POST['members']))
- {
- $members = explode(',', $_POST['members']);
- foreach ($members as $member)
- if ($member >= $context['start'])
- $context['recipients']['members'][] = (int) $member;
- }
- // Cleaning groups is simple - although deal with both checkbox and commas.
- if (!empty($_POST['groups']))
- {
- if (is_array($_POST['groups']))
- {
- foreach ($_POST['groups'] as $group => $dummy)
- $context['recipients']['groups'][] = (int) $group;
- }
- else
- {
- $groups = explode(',', $_POST['groups']);
- foreach ($groups as $group)
- $context['recipients']['groups'][] = (int) $group;
- }
- }
- // Same for excluded groups
- if (!empty($_POST['exclude_groups']))
- {
- if (is_array($_POST['exclude_groups']))
- {
- foreach ($_POST['exclude_groups'] as $group => $dummy)
- $context['recipients']['exclude_groups'][] = (int) $group;
- }
- else
- {
- $groups = explode(',', $_POST['exclude_groups']);
- foreach ($groups as $group)
- $context['recipients']['exclude_groups'][] = (int) $group;
- }
- }
- // Finally - emails!
- if (!empty($_POST['emails']))
- {
- $addressed = array_unique(explode(';', strtr($_POST['emails'], array("\n" => ';', "\r" => ';', ',' => ';'))));
- foreach ($addressed as $curmem)
- {
- $curmem = trim($curmem);
- if ($curmem != '')
- $context['recipients']['emails'][$curmem] = $curmem;
- }
- }
- // If we're only cleaning drop out here.
- if ($clean_only)
- return;
- require_once($sourcedir . '/Subs-Post.php');
- // We are relying too much on writing to superglobals...
- $_POST['subject'] = !empty($_POST['subject']) ? $_POST['subject'] : '';
- $_POST['message'] = !empty($_POST['message']) ? $_POST['message'] : '';
- // Save the message and its subject in $context
- $context['subject'] = htmlspecialchars($_POST['subject']);
- $context['message'] = htmlspecialchars($_POST['message']);
- // Prepare the message for sending it as HTML
- if (!$context['send_pm'] && !empty($_POST['send_html']))
- {
- // Prepare the message for HTML.
- if (!empty($_POST['parse_html']))
- $_POST['message'] = str_replace(array("\n", ' '), array('<br />' . "\n", ' '), $_POST['message']);
- // This is here to prevent spam filters from tagging this as spam.
- if (preg_match('~\<html~i', $_POST['message']) == 0)
- {
- if (preg_match('~\<body~i', $_POST['message']) == 0)
- $_POST['message'] = '<html><head><title>' . $_POST['subject'] . '</title></head>' . "\n" . '<body>' . $_POST['message'] . '</body></html>';
- else
- $_POST['message'] = '<html>' . $_POST['message'] . '</html>';
- }
- }
- if (empty($_POST['message']) || empty($_POST['subject']))
- {
- $context['preview'] = true;
- return ComposeMailing();
- }
- // Use the default time format.
- $user_info['time_format'] = $modSettings['time_format'];
- $variables = array(
- '{$board_url}',
- '{$current_time}',
- '{$latest_member.link}',
- '{$latest_member.id}',
- '{$latest_member.name}'
- );
- // We might need this in a bit
- $cleanLatestMember = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($modSettings['latestRealName']) : $modSettings['latestRealName'];
- // Replace in all the standard things.
- $_POST['message'] = str_replace($variables,
- array(
- !empty($_POST['send_html']) ? '<a href="' . $scripturl . '">' . $scripturl . '</a>' : $scripturl,
- timeformat(forum_time(), false),
- !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),
- $modSettings['latestMember'],
- $cleanLatestMember
- ), $_POST['message']);
- $_POST['subject'] = str_replace($variables,
- array(
- $scripturl,
- timeformat(forum_time(), false),
- $modSettings['latestRealName'],
- $modSettings['latestMember'],
- $modSettings['latestRealName']
- ), $_POST['subject']);
- $from_member = array(
- '{$member.email}',
- '{$member.link}',
- '{$member.id}',
- '{$member.name}'
- );
- // If we still have emails, do them first!
- $i = 0;
- foreach ($context['recipients']['emails'] as $k => $email)
- {
- // Done as many as we can?
- if ($i >= $num_at_once)
- break;
- // Don't sent it twice!
- unset($context['recipients']['emails'][$k]);
- // Dammit - can't PM emails!
- if ($context['send_pm'])
- continue;
- $to_member = array(
- $email,
- !empty($_POST['send_html']) ? '<a href="mailto:' . $email . '">' . $email . '</a>' : $email,
- '??',
- $email
- );
- 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);
- // Done another...
- $i++;
- }
- // Got some more to send this batch?
- $last_id_member = 0;
- if ($i < $num_at_once)
- {
- // Need to build quite a query!
- $sendQuery = '(';
- $sendParams = array();
- if (!empty($context['recipients']['groups']))
- {
- // Take the long route...
- $queryBuild = array();
- foreach ($context['recipients']['groups'] as $group)
- {
- $sendParams['group_' . $group] = $group;
- $queryBuild[] = 'mem.id_group = {int:group_' . $group . '}';
- if (!empty($group))
- {
- $queryBuild[] = 'FIND_IN_SET({int:group_' . $group . '}, mem.additional_groups) != 0';
- $queryBuild[] = 'mem.id_post_group = {int:group_' . $group . '}';
- }
- }
- if (!empty($queryBuild))
- $sendQuery .= implode(' OR ', $queryBuild);
- }
- if (!empty($context['recipients']['members']))
- {
- $sendQuery .= ($sendQuery == '(' ? '' : ' OR ') . 'mem.id_member IN ({array_int:members})';
- $sendParams['members'] = $context['recipients']['members'];
- }
- $sendQuery .= ')';
- // If we've not got a query then we must be done!
- if ($sendQuery == '()')
- redirectexit('action=admin');
- // Anything to exclude?
- if (!empty($context['recipients']['exclude_groups']) && in_array(0, $context['recipients']['exclude_groups']))
- $sendQuery .= ' AND mem.id_group != {int:regular_group}';
- if (!empty($context['recipients']['exclude_members']))
- {
- $sendQuery .= ' AND mem.id_member NOT IN ({array_int:exclude_members})';
- $sendParams['exclude_members'] = $context['recipients']['exclude_members'];
- }
- // Force them to have it?
- if (empty($context['email_force']))
- $sendQuery .= ' AND mem.notify_announcements = {int:notify_announcements}';
- // Get the smelly people - note we respect the id_member range as it gives us a quicker query.
- $result = $smcFunc['db_query']('', '
- SELECT mem.id_member, mem.email_address, mem.real_name, mem.id_group, mem.additional_groups, mem.id_post_group
- FROM {db_prefix}members AS mem
- WHERE mem.id_member > {int:min_id_member}
- AND mem.id_member < {int:max_id_member}
- AND ' . $sendQuery . '
- AND mem.is_activated = {int:is_activated}
- ORDER BY mem.id_member ASC
- LIMIT {int:atonce}',
- array_merge($sendParams, array(
- 'min_id_member' => $context['start'],
- 'max_id_member' => $context['start'] + $num_at_once - $i,
- 'atonce' => $num_at_once - $i,
- 'regular_group' => 0,
- 'notify_announcements' => 1,
- 'is_activated' => 1,
- ))
- );
- while ($row = $smcFunc['db_fetch_assoc']($result))
- {
- $last_id_member = $row['id_member'];
- // What groups are we looking at here?
- if (empty($row['additional_groups']))
- $groups = array($row['id_group'], $row['id_post_group']);
- else
- $groups = array_merge(
- array($row['id_group'], $row['id_post_group']),
- explode(',', $row['additional_groups'])
- );
- // Excluded groups?
- if (array_intersect($groups, $context['recipients']['exclude_groups']))
- continue;
- // We might need this
- $cleanMemberName = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($row['real_name']) : $row['real_name'];
- // Replace the member-dependant variables
- $message = str_replace($from_member,
- array(
- $row['email_address'],
- !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),
- $row['id_member'],
- $cleanMemberName,
- ), $_POST['message']);
- $subject = str_replace($from_member,
- array(
- $row['email_address'],
- $row['real_name'],
- $row['id_member'],
- $row['real_name'],
- ), $_POST['subject']);
- // Send the actual email - or a PM!
- if (!$context['send_pm'])
- sendmail($row['email_address'], $subject, $message, null, null, !empty($_POST['send_html']), 5);
- else
- sendpm(array('to' => array($row['id_member']), 'bcc' => array()), $subject, $message);
- }
- $smcFunc['db_free_result']($result);
- }
- // If used our batch assume we still have a member.
- if ($i >= $num_at_once)
- $last_id_member = $context['start'];
- // Or we didn't have one in range?
- elseif (empty($last_id_member) && $context['start'] + $num_at_once < $context['max_id_member'])
- $last_id_member = $context['start'] + $num_at_once;
- // If we have no id_member then we're done.
- elseif (empty($last_id_member) && empty($context['recipients']['emails']))
- {
- // Log this into the admin log.
- logAction('newsletter', array(), 'admin');
- redirectexit('action=admin');
- }
- $context['start'] = $last_id_member;
- // Working out progress is a black art of sorts.
- $percentEmails = $context['total_emails'] == 0 ? 0 : ((count($context['recipients']['emails']) / $context['total_emails']) * ($context['total_emails'] / ($context['total_emails'] + $context['max_id_member'])));
- $percentMembers = ($context['start'] / $context['max_id_member']) * ($context['max_id_member'] / ($context['total_emails'] + $context['max_id_member']));
- $context['percentage_done'] = round(($percentEmails + $percentMembers) * 100, 2);
- $context['page_title'] = $txt['admin_newsletters'];
- $context['sub_template'] = 'email_members_send';
- }
- /**
- * Set general news and newsletter settings and permissions.
- * Called by ?action=admin;area=news;sa=settings.
- * Requires the forum_admin permission.
- *
- * @uses ManageNews template, news_settings sub-template.
- * @param bool $return_config = false
- */
- function ModifyNewsSettings($return_config = false)
- {
- global $context, $sourcedir, $modSettings, $txt, $scripturl;
- $config_vars = array(
- array('title', 'settings'),
- // Inline permissions.
- array('permissions', 'edit_news', 'help' => ''),
- array('permissions', 'send_mail'),
- '',
- // Just the remaining settings.
- array('check', 'xmlnews_enable', 'onclick' => 'document.getElementById(\'xmlnews_maxlen\').disabled = !this.checked;'),
- array('text', 'xmlnews_maxlen', 'subtext' => $txt['xmlnews_maxlen_note'], 10),
- );
- call_integration_hook('integrate_modify_news_settings', array(&$config_vars));
- if ($return_config)
- return $config_vars;
- $context['page_title'] = $txt['admin_edit_news'] . ' - ' . $txt['settings'];
- $context['sub_template'] = 'show_settings';
- // Needed for the settings template.
- require_once($sourcedir . '/ManageServer.php');
- // Wrap it all up nice and warm...
- $context['post_url'] = $scripturl . '?action=admin;area=news;save;sa=settings';
- $context['permissions_excluded'] = array(-1);
- // Add some javascript at the bottom...
- $context['settings_insert_below'] = '
- <script type="text/javascript"><!-- // --><![CDATA[
- document.getElementById("xmlnews_maxlen").disabled = !document.getElementById("xmlnews_enable").checked;
- // ]]></script>';
- // Saving the settings?
- if (isset($_GET['save']))
- {
- checkSession();
- call_integration_hook('integrate_save_news_settings');
- saveDBSettings($config_vars);
- redirectexit('action=admin;area=news;sa=settings');
- }
- // We need this for the in-line permissions
- createToken('admin-mp');
- prepareDBSettingContext($config_vars);
- }
- ?>
|