No DOS/Win32 breakline...
[mailer.git] / ref.php
diff --git a/ref.php b/ref.php
index 783aab194c3b04928a3627c62d6f3da17cb55d9b..f3fa2597bb8842c1952d0d279dfc4079ab8c421c 100644 (file)
--- a/ref.php
+++ b/ref.php
@@ -1,18 +1,23 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/13/2003 *
- * ===============                              Last change: 09/04/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/13/2003 *
+ * ===================                          Last change: 09/04/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : ref.php                                          *
  * -------------------------------------------------------------------- *
- * Short description : Redirection for the referal link                *
+ * Short description : Redirection for the referal link                 *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Weiterleitungsscript fuer die Referal-Links      *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * MA  02110-1301  USA                                                  *
  ************************************************************************/
 
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
-
-// Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+// Load security stuff here
+require('inc/libs/security_functions.php');
 
 // Set module
-$GLOBALS['module'] = "ref"; $CSS = -1;
+$GLOBALS['module'] = 'ref';
+$GLOBALS['output_mode'] = -1;
 
 // Load the required file(s)
-require ("inc/config.php");
-
-// Redirect only to registration page when this script is installed
-if (isBooleanConstantAndTrue('mxchange_installed')) {
-       // Base URL for redirection
-       switch ($_CONFIG['refid_target'])
-       {
-       case "register":
-               $URL = URL."/modules.php?module=index&what=register&refid=";
-               break;
-
-       case "index":
-               $URL = URL."/index.php?refid=";
-               break;
-       }
-
-       // Get referal ID from ref or refid variable
-       if (!empty($_GET['ref']))        $ref = secureString($_GET['ref']);
-        elseif (!empty($_GET['refid'])) $ref = secureString($_GET['refid']);
-
-       if (!empty($ref)) {
-               // Test if nickname or numeric id
-               if ($ref != "".bigintval($ref)."") {
-                       if (EXT_IS_ACTIVE("nickname")) {
-                               // Nickname in URL, so load the ID
-                               $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1",
-                                       array($ref), __FILE__, __LINE__);
-
-                               // Load userid
-                               list($ref) = SQL_FETCHROW($result);
-
-                               // Free result
-                               SQL_FREERESULT($result);
-                       } else {
-                               // Invalid request!
-                               $ref = 0;
-                       }
-               } // END - if
-
-               // Also edit this 0 !
-               if (empty($ref)) $ref = 0;
-
-               // Update session
-               set_session('refid', $ref);
-
-               // We have an refid here. So we simply add it
-               $URL .= bigintval($ref);
-
-               // Is the refid valid?
-               if ($ref > 0) {
-                       // Update ref counter
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET ref_clicks=ref_clicks+1 WHERE userid=%s LIMIT 1",
-                               array(bigintval($ref)), __FILE__, __LINE__);
-               } // END - if
-       } else {
-               // No refid and we add our refid (don't forget to set $def_refid!)
-               $URL = URL."/index.php";
-       }
-
-       // Load the URL
-       LOAD_URL($URL);
-} else {
-       // You have to configure first!
-       LOAD_URL("install.php");
-}
-
-// Really all done here... ;-)
+require('inc/config-global.php');
+
+// Set content type for e.g. search engines
+if (isSpider()) setContentType('text/html');
+
+// No refid by default
+$URL = 'modules.php?module=index';
+
+if (determineReferalId() > 0) {
+       // 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'] = getConfig('def_refid');
+                       } // END - if
+               }
+       } // END - if
+
+       // Update session
+       setSession('refid', determineReferalId());
+
+       // Is the refid valid?
+       if (determineReferalId() > 0) {
+               // Update ref counter
+               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_clicks`=`ref_clicks`+1 WHERE `userid`=%s LIMIT 1",
+                       array(determineReferalId()), __FILE__, __LINE__);
+
+               // Base URL for redirection
+               switch (getConfig('refid_target')) {
+                       case 'register':
+                               $URL = 'modules.php?module=index&amp;what=register';
+                               break;
+
+                       case 'index':
+                               $URL = 'modules.php?module=index';
+                               break;
+               } // END - switch
+       } // END - if
+} // END - if
+
+// Load the URL
+redirectToUrl($URL);
+
+// [EOF]
 ?>