X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=birthday_confirm.php;h=b8b74210b6e6ba7fc1393b4e2d373981b511d259;hp=3dd8dedf4b8b74e8ec0bdbe80029103ad21003fb;hb=ed930d1133b51edc7ec2379d91286d64afd9bc4f;hpb=898d17a09c66527b1e5d45149e23b88d42487c35 diff --git a/birthday_confirm.php b/birthday_confirm.php index 3dd8dedf4b..b8b74210b6 100644 --- a/birthday_confirm.php +++ b/birthday_confirm.php @@ -1,7 +1,7 @@ 0) && ($_CONFIG['allow_direct_pay'] == 'N')) $locked = true; - - // Add points to account - $DEPTH = 0; - ADD_POINTS_REFSYSTEM($uid, $gift, false, "0", $locked, strtolower($_CONFIG['birthday_mode'])); - - // Remove entry from table - $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_birthday WHERE userid=%d LIMIT 1", - array($uid), __FILE__, __LINE__); - - // Update mediadata if version is 0.0.4 or newer - if (GET_EXT_VERSION("mediadata") >= "0.0.4") - { - // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $gift); - } - - // Transfer data to constants for the template - define('__SALUT', TRANSLATE_SEX($salut)); - define('__SNAME', $sname); - define('__FNAME', $fname); - define('__GIFT' , $gift); - - // Load message from template - define('__MSG', LOAD_TEMPLATE("birthday_msg", true)); - } - else - { - // Unconfirmed / locked accounts cannot get points - define('__MSG', BIRTHDAY_CANNOT_STATUS_1.TRANSLATE_STATUS($status).BIRTHDAY_CANNOT_STATUS_2); - } +require('inc/config-global.php'); + +// Set content type +setContentType('text/html'); + +// Is the 'birthday' extension active? +redirectOnUninstalledExtension('birthday'); + +// Script is installed so let's check for his confirmation link... +$userid = bigintval(getRequestElement('userid')); + +// Only allow numbers here... +$chk = bigintval(getRequestElement('check'), FALSE); + +// Check if link is not clicked so far +$result = sqlQueryEscaped("SELECT + `b`.`points`, + `d`.`userid`, + `d`.`gender`, + `d`.`surname`, + `d`.`family`, + `d`.`status`, + `d`.`ref_payout` +FROM + `{?_MYSQL_PREFIX?}_user_birthday` AS `b` +INNER JOIN + `{?_MYSQL_PREFIX?}_user_data` AS `d` +ON + `b`.`userid`=`d`.`userid` +WHERE + `b`.`userid`=%s AND + `b`.`chk_value`='%s' +LIMIT 1", + array( + $userid, + $chk + ), __FILE__, __LINE__); +//* DEBUG: */ debugOutput("userid=".$userid.",chk=".$chk." (".strlen($chk).'/'.strlen(getRequestElement('check')).'/'.sqlNumRows($result) . ')'); + +// Prepare content +$content = array(); + +// Is an entry there? +if (sqlNumRows($result) == 1) { + // Ok, congratulation again! Here's your gift from us... + $data = sqlFetchArray($result, FALSE); + + // Is the account confirmed? + if ($data['status'] == 'CONFIRMED') { + // Add points to account + initReferralSystem(); + addPointsThroughReferralSystem('birthday_confirm', $userid, $data['points']); + + // Remove entry from table + sqlQueryEscaped("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_birthday` WHERE `userid`=%s AND `chk_value`='%s' LIMIT 1", + array($userid, $chk), __FILE__, __LINE__); + + // Load message from template + $content['message'] = loadTemplate('birthday_msg', TRUE, $data); + } else { + // Unconfirmed / locked accounts cannot get points + $content['message'] = '{%message,MEMBER_BIRTHDAY_CANNOT_STATUS=' . $data['status'] . '%}'; } - else - { - // Cannot load data! - define('__MSG', BIRTHDAY_CANNOT_LOAD_DATA); - } - - // Free memory - SQL_FREERESULT($result); +} else { + // Cannot load data! + $content['message'] = '{--MEMBER_BIRTHDAY_CANNOT_LOAD_DATA--}'; +} - // Set this because we have no module in URI - $GLOBALS['module'] = "birthday_confirm"; +// Free memory +sqlFreeResult($result); - // Include header - include(PATH."inc/header.php"); +// Set this because there is no module in URI +$GLOBALS['__module'] = 'birthday_confirm'; - // Load birthday header template (for your banners, e.g.?) - define('__BIRTHDAY_HEADER', LOAD_TEMPLATE("birthday_header", true)); +// Include header +loadPageHeader(); - // Load birthday footer template (for your banners, e.g.?) - define('__BIRTHDAY_FOOTER', LOAD_TEMPLATE("birthday_footer", true)); +// Load final template and output it +loadTemplate('birthday_confirm', FALSE, $content); - // Load final template and output it - LOAD_TEMPLATE("birthday_confirm"); +// Include footer +loadPageFooter(); - // Include footer - include(PATH."inc/footer.php"); -} - else -{ - // You have to configure first! - LOAD_URL("install.php"); -} -// Really all done here... ;-) +// [EOF] ?>