123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810 |
- <?php
- /**
- * This file handles actions made on a user's profile.
- *
- * 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...');
- /**
- * Activate an account.
- *
- * @param int $memID, the member ID
- */
- function activateAccount($memID)
- {
- global $sourcedir, $context, $user_profile, $modSettings;
- isAllowedTo('moderate_forum');
- if (isset($_REQUEST['save']) && isset($user_profile[$memID]['is_activated']) && $user_profile[$memID]['is_activated'] != 1)
- {
- // If we are approving the deletion of an account, we do something special ;)
- if ($user_profile[$memID]['is_activated'] == 4)
- {
- require_once($sourcedir . '/Subs-Members.php');
- deleteMembers($context['id_member']);
- redirectexit();
- }
- // Let the integrations know of the activation.
- call_integration_hook('integrate_activate', array($user_profile[$memID]['member_name']));
- // Actually update this member now, as it guarantees the unapproved count can't get corrupted.
- updateMemberData($context['id_member'], array('is_activated' => $user_profile[$memID]['is_activated'] >= 10 ? 11 : 1, 'validation_code' => ''));
- // If we are doing approval, update the stats for the member just in case.
- if (in_array($user_profile[$memID]['is_activated'], array(3, 4, 13, 14)))
- updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > 1 ? $modSettings['unapprovedMembers'] - 1 : 0)));
- // Make sure we update the stats too.
- updateStats('member', false);
- }
- // Leave it be...
- redirectexit('action=profile;u=' . $memID . ';area=summary');
- }
- /**
- * Issue/manage an user's warning status.
- *
- * @param int $memID
- */
- function issueWarning($memID)
- {
- global $txt, $scripturl, $modSettings, $user_info, $mbname;
- global $context, $cur_profile, $memberContext, $smcFunc, $sourcedir;
- // Get all the actual settings.
- list ($modSettings['warning_enable'], $modSettings['user_limit']) = explode(',', $modSettings['warning_settings']);
- // This stores any legitimate errors.
- $issueErrors = array();
- // Doesn't hurt to be overly cautious.
- if (empty($modSettings['warning_enable']) || ($context['user']['is_owner'] && !$cur_profile['warning']) || !allowedTo('issue_warning'))
- fatal_lang_error('no_access', false);
- // Make sure things which are disabled stay disabled.
- $modSettings['warning_watch'] = !empty($modSettings['warning_watch']) ? $modSettings['warning_watch'] : 110;
- $modSettings['warning_moderate'] = !empty($modSettings['warning_moderate']) && !empty($modSettings['postmod_active']) ? $modSettings['warning_moderate'] : 110;
- $modSettings['warning_mute'] = !empty($modSettings['warning_mute']) ? $modSettings['warning_mute'] : 110;
- $context['warning_limit'] = allowedTo('admin_forum') ? 0 : $modSettings['user_limit'];
- $context['member']['warning'] = $cur_profile['warning'];
- $context['member']['name'] = $cur_profile['real_name'];
- // What are the limits we can apply?
- $context['min_allowed'] = 0;
- $context['max_allowed'] = 100;
- if ($context['warning_limit'] > 0)
- {
- // Make sure we cannot go outside of our limit for the day.
- $request = $smcFunc['db_query']('', '
- SELECT SUM(counter)
- FROM {db_prefix}log_comments
- WHERE id_recipient = {int:selected_member}
- AND id_member = {int:current_member}
- AND comment_type = {string:warning}
- AND log_time > {int:day_time_period}',
- array(
- 'current_member' => $user_info['id'],
- 'selected_member' => $memID,
- 'day_time_period' => time() - 86400,
- 'warning' => 'warning',
- )
- );
- list ($current_applied) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- $context['min_allowed'] = max(0, $cur_profile['warning'] - $current_applied - $context['warning_limit']);
- $context['max_allowed'] = min(100, $cur_profile['warning'] - $current_applied + $context['warning_limit']);
- }
- // Defaults.
- $context['warning_data'] = array(
- 'reason' => '',
- 'notify' => '',
- 'notify_subject' => '',
- 'notify_body' => '',
- );
- // Are we saving?
- if (isset($_POST['save']))
- {
- // Security is good here.
- checkSession('post');
- // This cannot be empty!
- $_POST['warn_reason'] = isset($_POST['warn_reason']) ? trim($_POST['warn_reason']) : '';
- if ($_POST['warn_reason'] == '' && !$context['user']['is_owner'])
- $issueErrors[] = 'warning_no_reason';
- $_POST['warn_reason'] = $smcFunc['htmlspecialchars']($_POST['warn_reason']);
- // If the value hasn't changed it's either no JS or a real no change (Which this will pass)
- if ($_POST['warning_level'] == 'SAME')
- $_POST['warning_level'] = $_POST['warning_level_nojs'];
- $_POST['warning_level'] = (int) $_POST['warning_level'];
- $_POST['warning_level'] = max(0, min(100, $_POST['warning_level']));
- if ($_POST['warning_level'] < $context['min_allowed'])
- $_POST['warning_level'] = $context['min_allowed'];
- elseif ($_POST['warning_level'] > $context['max_allowed'])
- $_POST['warning_level'] = $context['max_allowed'];
- // Do we actually have to issue them with a PM?
- $id_notice = 0;
- if (!empty($_POST['warn_notify']) && empty($issueErrors))
- {
- $_POST['warn_sub'] = trim($_POST['warn_sub']);
- $_POST['warn_body'] = trim($_POST['warn_body']);
- if (empty($_POST['warn_sub']) || empty($_POST['warn_body']))
- $issueErrors[] = 'warning_notify_blank';
- // Send the PM?
- else
- {
- require_once($sourcedir . '/Subs-Post.php');
- $from = array(
- 'id' => 0,
- 'name' => $context['forum_name'],
- 'username' => $context['forum_name'],
- );
- sendpm(array('to' => array($memID), 'bcc' => array()), $_POST['warn_sub'], $_POST['warn_body'], false, $from);
- // Log the notice!
- $smcFunc['db_insert']('',
- '{db_prefix}log_member_notices',
- array(
- 'subject' => 'string-255', 'body' => 'string-65534',
- ),
- array(
- $smcFunc['htmlspecialchars']($_POST['warn_sub']), $smcFunc['htmlspecialchars']($_POST['warn_body']),
- ),
- array('id_notice')
- );
- $id_notice = $smcFunc['db_insert_id']('{db_prefix}log_member_notices', 'id_notice');
- }
- }
- // Just in case - make sure notice is valid!
- $id_notice = (int) $id_notice;
- // What have we changed?
- $level_change = $_POST['warning_level'] - $cur_profile['warning'];
- // No errors? Proceed! Only log if you're not the owner.
- if (empty($issueErrors))
- {
- // Log what we've done!
- if (!$context['user']['is_owner'])
- $smcFunc['db_insert']('',
- '{db_prefix}log_comments',
- array(
- 'id_member' => 'int', 'member_name' => 'string', 'comment_type' => 'string', 'id_recipient' => 'int', 'recipient_name' => 'string-255',
- 'log_time' => 'int', 'id_notice' => 'int', 'counter' => 'int', 'body' => 'string-65534',
- ),
- array(
- $user_info['id'], $user_info['name'], 'warning', $memID, $cur_profile['real_name'],
- time(), $id_notice, $level_change, $_POST['warn_reason'],
- ),
- array('id_comment')
- );
- // Make the change.
- updateMemberData($memID, array('warning' => $_POST['warning_level']));
- // Leave a lovely message.
- $context['profile_updated'] = $context['user']['is_owner'] ? $txt['profile_updated_own'] : $txt['profile_warning_success'];
- }
- else
- {
- // Get the base stuff done.
- loadLanguage('Errors');
- $context['custom_error_title'] = $txt['profile_warning_errors_occured'];
- // Fill in the suite of errors.
- $context['post_errors'] = array();
- foreach ($issueErrors as $error)
- $context['post_errors'][] = $txt[$error];
- // Try to remember some bits.
- $context['warning_data'] = array(
- 'reason' => $_POST['warn_reason'],
- 'notify' => !empty($_POST['warn_notify']),
- 'notify_subject' => isset($_POST['warn_sub']) ? $_POST['warn_sub'] : '',
- 'notify_body' => isset($_POST['warn_body']) ? $_POST['warn_body'] : '',
- );
- }
- // Show the new improved warning level.
- $context['member']['warning'] = $_POST['warning_level'];
- }
- $context['page_title'] = $txt['profile_issue_warning'];
- // Work our the various levels.
- $context['level_effects'] = array(
- 0 => $txt['profile_warning_effect_none'],
- $modSettings['warning_watch'] => $txt['profile_warning_effect_watch'],
- $modSettings['warning_moderate'] => $txt['profile_warning_effect_moderation'],
- $modSettings['warning_mute'] => $txt['profile_warning_effect_mute'],
- );
- $context['current_level'] = 0;
- foreach ($context['level_effects'] as $limit => $dummy)
- if ($context['member']['warning'] >= $limit)
- $context['current_level'] = $limit;
- // Load up all the old warnings - count first!
- $context['total_warnings'] = list_getUserWarningCount($memID);
- // Make the page index.
- $context['start'] = (int) $_REQUEST['start'];
- $perPage = (int) $modSettings['defaultMaxMessages'];
- $context['page_index'] = constructPageIndex($scripturl . '?action=profile;u=' . $memID . ';area=issuewarning', $context['start'], $context['total_warnings'], $perPage);
- // Now do the data itself.
- $context['previous_warnings'] = list_getUserWarnings($context['start'], $perPage, 'log_time DESC', $memID);
- // Are they warning because of a message?
- if (isset($_REQUEST['msg']) && 0 < (int) $_REQUEST['msg'])
- {
- $request = $smcFunc['db_query']('', '
- SELECT subject
- FROM {db_prefix}messages AS m
- INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board)
- WHERE id_msg = {int:message}
- AND {query_see_board}
- LIMIT 1',
- array(
- 'message' => (int) $_REQUEST['msg'],
- )
- );
- if ($smcFunc['db_num_rows']($request) != 0)
- {
- $context['warning_for_message'] = (int) $_REQUEST['msg'];
- list ($context['warned_message_subject']) = $smcFunc['db_fetch_row']($request);
- }
- $smcFunc['db_free_result']($request);
- }
- // Didn't find the message?
- if (empty($context['warning_for_message']))
- {
- $context['warning_for_message'] = 0;
- $context['warned_message_subject'] = '';
- }
- // Any custom templates?
- $context['notification_templates'] = array();
- $request = $smcFunc['db_query']('', '
- SELECT recipient_name AS template_title, body
- FROM {db_prefix}log_comments
- WHERE comment_type = {string:warntpl}
- AND (id_recipient = {int:generic} OR id_recipient = {int:current_member})',
- array(
- 'warntpl' => 'warntpl',
- 'generic' => 0,
- 'current_member' => $user_info['id'],
- )
- );
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- // If we're not warning for a message skip any that are.
- if (!$context['warning_for_message'] && strpos($row['body'], '{MESSAGE}') !== false)
- continue;
- $context['notification_templates'][] = array(
- 'title' => $row['template_title'],
- 'body' => $row['body'],
- );
- }
- $smcFunc['db_free_result']($request);
- // Setup the "default" templates.
- foreach (array('spamming', 'offence', 'insulting') as $type)
- $context['notification_templates'][] = array(
- 'title' => $txt['profile_warning_notify_title_' . $type],
- 'body' => sprintf($txt['profile_warning_notify_template_outline' . (!empty($context['warning_for_message']) ? '_post' : '')], $txt['profile_warning_notify_for_' . $type]),
- );
- // Replace all the common variables in the templates.
- foreach ($context['notification_templates'] as $k => $name)
- $context['notification_templates'][$k]['body'] = strtr($name['body'], array('{MEMBER}' => un_htmlspecialchars($context['member']['name']), '{MESSAGE}' => '[url=' . $scripturl . '?msg=' . $context['warning_for_message'] . ']' . un_htmlspecialchars($context['warned_message_subject']) . '[/url]', '{SCRIPTURL}' => $scripturl, '{FORUMNAME}' => $mbname, '{REGARDS}' => $txt['regards_team']));
- }
- /**
- * Get the number of warnings a user has.
- *
- * @param int $memID
- */
- function list_getUserWarningCount($memID)
- {
- global $smcFunc;
- $request = $smcFunc['db_query']('', '
- SELECT COUNT(*)
- FROM {db_prefix}log_comments
- WHERE id_recipient = {int:selected_member}
- AND comment_type = {string:warning}',
- array(
- 'selected_member' => $memID,
- 'warning' => 'warning',
- )
- );
- list ($total_warnings) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- return $total_warnings;
- }
- /**
- * Get the data about a users warnings.
- *
- * @param int $start
- * @param int $items_per_page
- * @param string $sort
- * @param int $memID, the member ID
- */
- function list_getUserWarnings($start, $items_per_page, $sort, $memID)
- {
- global $smcFunc, $scripturl;
- $request = $smcFunc['db_query']('', '
- SELECT IFNULL(mem.id_member, 0) AS id_member, IFNULL(mem.real_name, lc.member_name) AS member_name,
- lc.log_time, lc.body, lc.counter, lc.id_notice
- FROM {db_prefix}log_comments AS lc
- LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lc.id_member)
- WHERE lc.id_recipient = {int:selected_member}
- AND lc.comment_type = {string:warning}
- ORDER BY ' . $sort . '
- LIMIT ' . $start . ', ' . $items_per_page,
- array(
- 'selected_member' => $memID,
- 'warning' => 'warning',
- )
- );
- $previous_warnings = array();
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- $previous_warnings[] = array(
- 'issuer' => array(
- 'id' => $row['id_member'],
- 'link' => $row['id_member'] ? ('<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['member_name'] . '</a>') : $row['member_name'],
- ),
- 'time' => timeformat($row['log_time']),
- 'reason' => $row['body'],
- 'counter' => $row['counter'] > 0 ? '+' . $row['counter'] : $row['counter'],
- 'id_notice' => $row['id_notice'],
- );
- }
- $smcFunc['db_free_result']($request);
- return $previous_warnings;
- }
- /**
- * Present a screen to make sure the user wants to be deleted
- *
- * @param int $memID, the member ID
- */
- function deleteAccount($memID)
- {
- global $txt, $context, $user_info, $modSettings, $cur_profile, $smcFunc;
- if (!$context['user']['is_owner'])
- isAllowedTo('profile_remove_any');
- elseif (!allowedTo('profile_remove_any'))
- isAllowedTo('profile_remove_own');
- // Permissions for removing stuff...
- $context['can_delete_posts'] = !$context['user']['is_owner'] && allowedTo('moderate_forum');
- // Can they do this, or will they need approval?
- $context['needs_approval'] = $context['user']['is_owner'] && !empty($modSettings['approveAccountDeletion']) && !allowedTo('moderate_forum');
- $context['page_title'] = $txt['deleteAccount'] . ': ' . $cur_profile['real_name'];
- }
- /**
- * Actually delete an account.
- *
- * @param $profile_vars
- * @param $post_errors
- * @param int $memID, the member ID
- */
- function deleteAccount2($profile_vars, $post_errors, $memID)
- {
- global $user_info, $sourcedir, $context, $cur_profile, $modSettings, $smcFunc;
- // Try get more time...
- @set_time_limit(600);
- // @todo Add a way to delete pms as well?
- if (!$context['user']['is_owner'])
- isAllowedTo('profile_remove_any');
- elseif (!allowedTo('profile_remove_any'))
- isAllowedTo('profile_remove_own');
- checkSession();
- $old_profile = &$cur_profile;
- // Too often, people remove/delete their own only account.
- if (in_array(1, explode(',', $old_profile['additional_groups'])) || $old_profile['id_group'] == 1)
- {
- // Are you allowed to administrate the forum, as they are?
- isAllowedTo('admin_forum');
- $request = $smcFunc['db_query']('', '
- SELECT id_member
- FROM {db_prefix}members
- WHERE (id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0)
- AND id_member != {int:selected_member}
- LIMIT 1',
- array(
- 'admin_group' => 1,
- 'selected_member' => $memID,
- )
- );
- list ($another) = $smcFunc['db_fetch_row']($request);
- $smcFunc['db_free_result']($request);
- if (empty($another))
- fatal_lang_error('at_least_one_admin', 'critical');
- }
- // This file is needed for the deleteMembers function.
- require_once($sourcedir . '/Subs-Members.php');
- // Do you have permission to delete others profiles, or is that your profile you wanna delete?
- if ($memID != $user_info['id'])
- {
- isAllowedTo('profile_remove_any');
- // Now, have you been naughty and need your posts deleting?
- // !!! Should this check board permissions?
- if ($_POST['remove_type'] != 'none' && allowedTo('moderate_forum'))
- {
- // Include RemoveTopics - essential for this type of work!
- require_once($sourcedir . '/RemoveTopic.php');
- // First off we delete any topics the member has started - if they wanted topics being done.
- if ($_POST['remove_type'] == 'topics')
- {
- // Fetch all topics started by this user within the time period.
- $request = $smcFunc['db_query']('', '
- SELECT t.id_topic
- FROM {db_prefix}topics AS t
- WHERE t.id_member_started = {int:selected_member}',
- array(
- 'selected_member' => $memID,
- )
- );
- $topicIDs = array();
- while ($row = $smcFunc['db_fetch_assoc']($request))
- $topicIDs[] = $row['id_topic'];
- $smcFunc['db_free_result']($request);
- // Actually remove the topics.
- // @todo This needs to check permissions, but we'll let it slide for now because of moderate_forum already being had.
- removeTopics($topicIDs);
- }
- // Now delete the remaining messages.
- $request = $smcFunc['db_query']('', '
- SELECT m.id_msg
- FROM {db_prefix}messages AS m
- INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic
- AND t.id_first_msg != m.id_msg)
- WHERE m.id_member = {int:selected_member}',
- array(
- 'selected_member' => $memID,
- )
- );
- // This could take a while... but ya know it's gonna be worth it in the end.
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- if (function_exists('apache_reset_timeout'))
- @apache_reset_timeout();
- removeMessage($row['id_msg']);
- }
- $smcFunc['db_free_result']($request);
- }
- // Only delete this poor members account if they are actually being booted out of camp.
- if (isset($_POST['deleteAccount']))
- deleteMembers($memID);
- }
- // Do they need approval to delete?
- elseif (empty($post_errors) && !empty($modSettings['approveAccountDeletion']) && !allowedTo('moderate_forum'))
- {
- // Setup their account for deletion ;)
- updateMemberData($memID, array('is_activated' => 4));
- // Another account needs approval...
- updateSettings(array('unapprovedMembers' => true), true);
- }
- // Also check if you typed your password correctly.
- elseif (empty($post_errors))
- {
- deleteMembers($memID);
- require_once($sourcedir . '/LogInOut.php');
- LogOut(true);
- redirectExit();
- }
- }
- /**
- * Function for doing all the paid subscription stuff - kinda.
- *
- * @param int $memID
- */
- function subscriptions($memID)
- {
- global $context, $txt, $sourcedir, $modSettings, $smcFunc, $scripturl;
- // Load the paid template anyway.
- loadTemplate('ManagePaid');
- loadLanguage('ManagePaid');
- // Load all of the subscriptions.
- require_once($sourcedir . '/ManagePaid.php');
- loadSubscriptions();
- $context['member']['id'] = $memID;
- // Remove any invalid ones.
- foreach ($context['subscriptions'] as $id => $sub)
- {
- // Work out the costs.
- $costs = @unserialize($sub['real_cost']);
- $cost_array = array();
- if ($sub['real_length'] == 'F')
- {
- foreach ($costs as $duration => $cost)
- {
- if ($cost != 0)
- $cost_array[$duration] = $cost;
- }
- }
- else
- {
- $cost_array['fixed'] = $costs['fixed'];
- }
- if (empty($cost_array))
- unset($context['subscriptions'][$id]);
- else
- {
- $context['subscriptions'][$id]['member'] = 0;
- $context['subscriptions'][$id]['subscribed'] = false;
- $context['subscriptions'][$id]['costs'] = $cost_array;
- }
- }
- // Work out what gateways are enabled.
- $gateways = loadPaymentGateways();
- foreach ($gateways as $id => $gateway)
- {
- $gateways[$id] = new $gateway['display_class']();
- if (!$gateways[$id]->gatewayEnabled())
- unset($gateways[$id]);
- }
- // No gateways yet?
- if (empty($gateways))
- fatal_error($txt['paid_admin_not_setup_gateway']);
- // Get the current subscriptions.
- $request = $smcFunc['db_query']('', '
- SELECT id_sublog, id_subscribe, start_time, end_time, status, payments_pending, pending_details
- FROM {db_prefix}log_subscribed
- WHERE id_member = {int:selected_member}',
- array(
- 'selected_member' => $memID,
- )
- );
- $context['current'] = array();
- while ($row = $smcFunc['db_fetch_assoc']($request))
- {
- // The subscription must exist!
- if (!isset($context['subscriptions'][$row['id_subscribe']]))
- continue;
- $context['current'][$row['id_subscribe']] = array(
- 'id' => $row['id_sublog'],
- 'sub_id' => $row['id_subscribe'],
- 'hide' => $row['status'] == 0 && $row['end_time'] == 0 && $row['payments_pending'] == 0,
- 'name' => $context['subscriptions'][$row['id_subscribe']]['name'],
- 'start' => timeformat($row['start_time'], false),
- 'end' => $row['end_time'] == 0 ? $txt['not_applicable'] : timeformat($row['end_time'], false),
- 'pending_details' => $row['pending_details'],
- 'status' => $row['status'],
- 'status_text' => $row['status'] == 0 ? ($row['payments_pending'] ? $txt['paid_pending'] : $txt['paid_finished']) : $txt['paid_active'],
- );
- if ($row['status'] == 1)
- $context['subscriptions'][$row['id_subscribe']]['subscribed'] = true;
- }
- $smcFunc['db_free_result']($request);
- // Simple "done"?
- if (isset($_GET['done']))
- {
- $_GET['sub_id'] = (int) $_GET['sub_id'];
- // Must exist but let's be sure...
- if (isset($context['current'][$_GET['sub_id']]))
- {
- // What are the details like?
- $current_pending = @unserialize($context['current'][$_GET['sub_id']]['pending_details']);
- if (!empty($current_pending))
- {
- $current_pending = array_reverse($current_pending);
- foreach ($current_pending as $id => $sub)
- {
- // Just find one and change it.
- if ($sub[0] == $_GET['sub_id'] && $sub[3] == 'prepay')
- {
- $current_pending[$id][3] = 'payback';
- break;
- }
- }
- // Save the details back.
- $pending_details = serialize($current_pending);
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}log_subscribed
- SET payments_pending = payments_pending + 1, pending_details = {string:pending_details}
- WHERE id_sublog = {int:current_subscription_id}
- AND id_member = {int:selected_member}',
- array(
- 'current_subscription_id' => $context['current'][$_GET['sub_id']]['id'],
- 'selected_member' => $memID,
- 'pending_details' => $pending_details,
- )
- );
- }
- }
- $context['sub_template'] = 'paid_done';
- return;
- }
- // If this is confirmation then it's simpler...
- if (isset($_GET['confirm']) && isset($_POST['sub_id']) && is_array($_POST['sub_id']))
- {
- // Hopefully just one.
- foreach ($_POST['sub_id'] as $k => $v)
- $ID_SUB = (int) $k;
- if (!isset($context['subscriptions'][$ID_SUB]) || $context['subscriptions'][$ID_SUB]['active'] == 0)
- fatal_lang_error('paid_sub_not_active');
- // Simplify...
- $context['sub'] = $context['subscriptions'][$ID_SUB];
- $period = 'xx';
- if ($context['sub']['flexible'])
- $period = isset($_POST['cur'][$ID_SUB]) && isset($context['sub']['costs'][$_POST['cur'][$ID_SUB]]) ? $_POST['cur'][$ID_SUB] : 'xx';
- // Check we have a valid cost.
- if ($context['sub']['flexible'] && $period == 'xx')
- fatal_lang_error('paid_sub_not_active');
- // Sort out the cost/currency.
- $context['currency'] = $modSettings['paid_currency_code'];
- $context['recur'] = $context['sub']['repeatable'];
- if ($context['sub']['flexible'])
- {
- // Real cost...
- $context['value'] = $context['sub']['costs'][$_POST['cur'][$ID_SUB]];
- $context['cost'] = sprintf($modSettings['paid_currency_symbol'], $context['value']) . '/' . $txt[$_POST['cur'][$ID_SUB]];
- // The period value for paypal.
- $context['paypal_period'] = strtoupper(substr($_POST['cur'][$ID_SUB], 0, 1));
- }
- else
- {
- // Real cost...
- $context['value'] = $context['sub']['costs']['fixed'];
- $context['cost'] = sprintf($modSettings['paid_currency_symbol'], $context['value']);
- // Recur?
- preg_match('~(\d*)(\w)~', $context['sub']['real_length'], $match);
- $context['paypal_unit'] = $match[1];
- $context['paypal_period'] = $match[2];
- }
- // Setup the gateway context.
- $context['gateways'] = array();
- foreach ($gateways as $id => $gateway)
- {
- $fields = $gateways[$id]->fetchGatewayFields($context['sub']['id'] . '+' . $memID, $context['sub'], $context['value'], $period, $scripturl . '?action=profile;u=' . $memID . ';area=subscriptions;sub_id=' . $context['sub']['id'] . ';done');
- if (!empty($fields['form']))
- $context['gateways'][] = $fields;
- }
- // Bugger?!
- if (empty($context['gateways']))
- fatal_error($txt['paid_admin_not_setup_gateway']);
- // Now we are going to assume they want to take this out ;)
- $new_data = array($context['sub']['id'], $context['value'], $period, 'prepay');
- if (isset($context['current'][$context['sub']['id']]))
- {
- // What are the details like?
- $current_pending = array();
- if ($context['current'][$context['sub']['id']]['pending_details'] != '')
- $current_pending = @unserialize($context['current'][$context['sub']['id']]['pending_details']);
- // Don't get silly.
- if (count($current_pending) > 9)
- $current_pending = array();
- $pending_count = 0;
- // Only record real pending payments as will otherwise confuse the admin!
- foreach ($current_pending as $pending)
- if ($pending[3] == 'payback')
- $pending_count++;
- if (!in_array($new_data, $current_pending))
- {
- $current_pending[] = $new_data;
- $pending_details = serialize($current_pending);
- $smcFunc['db_query']('', '
- UPDATE {db_prefix}log_subscribed
- SET payments_pending = {int:pending_count}, pending_details = {string:pending_details}
- WHERE id_sublog = {int:current_subscription_item}
- AND id_member = {int:selected_member}',
- array(
- 'pending_count' => $pending_count,
- 'current_subscription_item' => $context['current'][$context['sub']['id']]['id'],
- 'selected_member' => $memID,
- 'pending_details' => $pending_details,
- )
- );
- }
- }
- // Never had this before, lovely.
- else
- {
- $pending_details = serialize(array($new_data));
- $smcFunc['db_insert']('',
- '{db_prefix}log_subscribed',
- array(
- 'id_subscribe' => 'int', 'id_member' => 'int', 'status' => 'int', 'payments_pending' => 'int', 'pending_details' => 'string-65534',
- 'start_time' => 'int', 'vendor_ref' => 'string-255',
- ),
- array(
- $context['sub']['id'], $memID, 0, 0, $pending_details,
- time(), '',
- ),
- array('id_sublog')
- );
- }
- // Change the template.
- $context['sub_template'] = 'choose_payment';
- // Quit.
- return;
- }
- else
- $context['sub_template'] = 'user_subscription';
- }
- ?>
|