123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821 |
- <?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.0
- */
- 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'),
- );
- // 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;
- 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');
- }
- // Ready the current news.
- foreach (explode("\n", $modSettings['news']) as $id => $line)
- $context['admin_current_news'][$id] = array(
- 'id' => $id,
- 'unparsed' => un_preparsecode($line),
- 'parsed' => preg_replace('~<([/]?)form[^>]*?[>]*>~i', '<em class="smalltext"><$1form></em>', parse_bbc($line)),
- );
- $context['sub_template'] = 'edit_news';
- $context['page_title'] = $txt['admin_edit_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');
- }
- /**
- * 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;
- // 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'];
- }
- 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'];
- }
- // 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']);
- // Setup the template!
- $context['page_title'] = $txt['admin_newsletters'];
- $context['sub_template'] = 'email_members_compose';
- $context['default_subject'] = htmlspecialchars($context['forum_name'] . ': ' . $txt['subject']);
- $context['default_message'] = htmlspecialchars($txt['message'] . "\n\n" . $txt['regards_team'] . "\n\n" . '{$board_url}');
- }
- /**
- * 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;
- // 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');
- // 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>';
- }
- }
- // 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 $return_config
- */
- 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', 10),
- );
- if ($return_config)
- return $config_vars;
- $context['page_title'] = $txt['admin_edit_news'] . ' - ' . $txt['settings'];
- $context['sub_template'] = 'show_settings';
- // Needed for the inline permission functions, and the settings template.
- require_once($sourcedir . '/ManagePermissions.php');
- 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();
- saveDBSettings($config_vars);
- redirectexit('action=admin;area=news;sa=settings');
- }
- prepareDBSettingContext($config_vars);
- }
- ?>
|