X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=ref.php;h=80850e2f811ee9b9472eb329410468c0796f2871;hp=4eb1fe139f7e9fb5bd3e0dd4b5390293f216c180;hb=c1849d27a96d4e533e130ba1ae302c1ef81a3bf3;hpb=f7d1229840cdae4ba22fdf375265bca4fb4a2d32 diff --git a/ref.php b/ref.php index 4eb1fe139f..80850e2f81 100644 --- a/ref.php +++ b/ref.php @@ -6,18 +6,13 @@ * -------------------------------------------------------------------- * * File : ref.php * * -------------------------------------------------------------------- * - * Short description : Redirection for the referal link * + * Short description : Redirection for the referral link * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Weiterleitungsscript fuer die Referal-Links * - * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * + * Kurzbeschreibung : Weiterleitungsscript fuer die Referral-Links * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -38,12 +33,15 @@ // Load security stuff here require('inc/libs/security_functions.php'); +// Init start time +$GLOBALS['__start_time'] = microtime(TRUE); + // Set module -$GLOBALS['module'] = 'ref'; -$GLOBALS['output_mode'] = -1; +$GLOBALS['__module'] = 'ref'; +$GLOBALS['__output_mode'] = -1; -// Load the required file(s) -require('inc/config-global.php'); +// Initialize application +require('inc/init.php'); // Set content type for e.g. search engines setContentType('text/html'); @@ -51,48 +49,25 @@ setContentType('text/html'); // No refid by default $url = 'modules.php?module=index'; -if (isValidUserId(determineReferalId())) { - // Test if nickname or numeric id - if (isExtensionActive('nickname')) { - // Nickname in URL, so load the id - fetchUserData(determineReferalId(), 'nickname'); - - // Do we have an entry? - if (isUserDataValid()) { - // Load userid - $GLOBALS['refid'] = getUserData('userid'); - } else { - // So do we have a userid? - fetchUserData(determineReferalId()); - - // Do we have an entry? - if (!isUserDataValid()) { - // No entry, so no referal id - $GLOBALS['refid'] = getDefRefid(); - } // END - if - } - } // END - if - - // Update session - setSession('refid', determineReferalId()); +// Check for determined referral id +if ((isExtensionActive('user')) && (isValidReferralId()) && (isValidId(determineReferralId()))) { + // Run filter chain for updating referral data + runFilterChain('update_referral_data'); - // Is the refid valid? - if (isValidUserId(determineReferalId())) { - // Update ref counter - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_clicks`=`ref_clicks`+1 WHERE `userid`=%s LIMIT 1", - array(makeDatabaseUserId(determineReferalId())), __FILE__, __LINE__); + // Base URL for redirection + switch (getConfig('refid_target')) { + case 'register': + $url = 'modules.php?module=index&what=register'; + break; - // Base URL for redirection - switch (getConfig('refid_target')) { - case 'register': - $url = 'modules.php?module=index&what=register'; - break; + case 'index': + $url = 'modules.php?module=index'; + break; - case 'index': - $url = 'modules.php?module=index'; - break; - } // END - switch - } // END - if + default: // Is not valid + reportBug(__FILE__, __LINE__, 'Invalid refid target ' . getConfig('refid_target') . ' detected.'); + break; + } // END - switch } // END - if // Load the URL