X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fguest%2Fwhat-confirm.php;h=bcb07f0d4a433775edea1f73255ee029bb71c8a2;hb=63f159414369b5ea19a8ca75d8cd8033c45d8341;hp=d790166aff675bbac38d62e49852a1c7e2ae57c1;hpb=3f51c40f4fede87228216f9285b745a339e3891d;p=mailer.git diff --git a/inc/modules/guest/what-confirm.php b/inc/modules/guest/what-confirm.php index d790166aff..bcb07f0d4a 100644 --- a/inc/modules/guest/what-confirm.php +++ b/inc/modules/guest/what-confirm.php @@ -1,7 +1,7 @@ getConfig('points_register')), bigintval($uid)); - - // And send him right away the confirmation mail - sendEmail($email, getMessage('GUEST_THANX_CONFIRM'), $msg); - - // Maybe he got "referaled"? - if (($rid > 0) && ($rid != $uid)) { - // Select the referal userid - $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(bigintval($rid)), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - // Update ref counter... - updateReferalCounter($rid); - - // Ok, write the ref-points to this user and his parent-ref - unset($GLOBALS['ref_level']); - - // Shall I 'pay' the referal points imidiately? - if (getConfig('ref_payout') == '0') { - // Yes, 'pay' it now - $locked = false; - } else { - // No, 'pay' it later - $locked = true; - } - - // If version matches add ref bonus to refid's account - if ((GET_EXT_VERSION('bonus') >= '0.4.4') && (getConfig('bonus_active') == 'Y')) { - // Add points (directly only!) - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET bonus_ref=bonus_ref+%s WHERE userid=%s LIMIT 1", - array(getConfig('bonus_ref'), bigintval($rid)), __FILE__, __LINE__); - - // Subtract points from system - BONUS_POINTS_HANDLER(getConfig('bonus_ref')); - } // END - if - - // Add one-time referal bonus over referal system or directly - unset($GLOBALS['ref_level']); - ADD_POINTS_REFSYSTEM("referal_bonus", $rid, getConfig('points_ref'), true, bigintval($uid), $locked, getConfig('reg_points_mode')); - } // END - if - } // END - if - - if (EXT_IS_ACTIVE('rallye')) { - // Add user to rallye (or not?) - RALLYE_AUTOADD_USER(bigintval($uid)); - } // END - if - - // Account confirmed! - if (EXT_IS_ACTIVE('lead')) { - // Set special lead cookie - setSession('lead_uid', bigintval($uid)); - - // Lead-Code mode enabled - redirectToUrl("lead-confirm.php"); - } else { - define('__CONFIRM_MSG', getMessage('GUEST_CONFIRMED_DONE')); - define('__UID', bigintval($uid)); - LOAD_TEMPLATE("guest_confirm_table"); - } - } elseif (EXT_IS_ACTIVE('lead')) { - // Set special lead cookie - setSession('lead_uid', bigintval($uid)); - - // Lead-Code mode enabled - redirectToUrl("lead-confirm.php"); - } else { - // Nobody was found unter this hash key... or our new member want's to confirm twice? - define('__CONFIRM_MSG', getMessage('GUEST_CONFIRMED_TWICE')); - define('__UID', '0'); - LOAD_TEMPLATE('guest_confirm_table'); - } - } else { - // Nobody was found unter this hash key... or our new member want's to confirm twice? - define('__CONFIRM_MSG', getMessage('GUEST_CONFIRMED_TWICE')); - define('__UID', '0'); - LOAD_TEMPLATE('guest_confirm_table'); - } -} elseif ((isFormSent()) && (REQUEST_ISSET_POST('email'))) { - // Confirmation link requested 0 1 2 - $result = SQL_QUERY_ESC("SELECT userid, status, user_hash FROM `{!_MYSQL_PREFIX!}_user_data` WHERE email='%s' LIMIT 1", - array(REQUEST_POST('email')), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - // Email address found - $DATA = SQL_FETCHROW($result); - switch ($DATA[1]) - { - case 'UNCONFIRMED': // Account not confirmed - $msg = LOAD_EMAIL_TEMPLATE("guest_request_confirm", array('hash' => $DATA[2]), $DATA[0]); - sendEmail(REQUEST_POST('email'), getMessage('REQUEST_CONFIRM_LINK_SUBJ'), $msg); - $content = getMessage('CONFIRM_LINK_SENT'); - break; - - case 'CONFIRMED': // Account already confirmed - $content = getMessage('LOGIN_ID_CONFIRMED'); - break; - - case 'LOCKED': // Account is locked - $content = getMessage('LOGIN_ID_LOCKED'); - break; - } - } else { - // Email address not registered - $content = getMessage('EMAIL_ADDY_404'); - } - - define('__CONFIRM_MSG', $content); - LOAD_TEMPLATE("guest_confirm_table"); +addYouAreHereLink('guest', __FILE__); + +if ((!isExtensionActive('user')) && (!isAdmin())) { + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=user%}'); + return; +} // END - if + +if (isGetRequestElementSet('hash')) { + // Do user account confirmation + doConfirmUserAccount(getRequestElement('hash')); +} elseif ((isFormSent()) && (isPostRequestElementSet('email'))) { + // Resend confirmation link + doResendUserConfirmationLink(postRequestElement('email')); } else { // No hash found, the guest may want to enter his email address to re-get his confirmation link? - LOAD_TEMPLATE("guest_confirm_link"); + loadTemplate('guest_confirm_link'); } -// +// [EOF] ?>