X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmysql-manager.php;h=40cde51120f111ed197a6ca82d8301728bc6f98b;hp=a54357dafddb326f3689d6cec0ff06e5df95cffc;hb=f7f6e55ee0d90558ad773ce6168767c0af816696;hpb=36a31ecf3137283ddd5d7aad121bacf3df54e2e1;ds=sidebyside diff --git a/inc/mysql-manager.php b/inc/mysql-manager.php index a54357dafd..40cde51120 100644 --- a/inc/mysql-manager.php +++ b/inc/mysql-manager.php @@ -1086,6 +1086,42 @@ function GET_TOTAL_DATA($search, $tableName, $lookFor, $whereStatement="userid", // Return value return $ret; } +// "Getter fro ref level percents +function GET_REF_LEVEL_PERCENTS ($level) { + global $cacheInstance, $_CONFIG, $cacheArray; + + // Default is zero + $per = 0; + + // Do we have cache? + if ((isset($cacheArray['ref_depths']['level'])) && (EXT_IS_ACTIVE("cache"))) { + // First look for level + $key = array_search($level, $cacheArray['ref_depths']['level']); + if ($key !== false) { + // Entry found! + $per = $cacheArray['ref_depths']['percents'][$key]; + + // Count cache hit + $_CONFIG['cache_hits']++; + } + } else { + // Get referal data + $result_lvl = SQL_QUERY_ESC("SELECT percents FROM "._MYSQL_PREFIX."_refdepths WHERE level=%s LIMIT 1", + array(bigintval($level)), __FILE__, __LINE__); + + // Entry found? + if (SQL_NUMROWS($result_lvl) == 1) { + // Get percents + list($per) = SQL_FETCHROW($result_lvl); + } // END - if + + // Free result + SQL_FREERESULT($result_lvl); + } + + // Return percent + return $per; +} /** * * Dynamic referral system, can also send mails! @@ -1099,7 +1135,7 @@ function GET_TOTAL_DATA($search, $tableName, $lookFor, $whereStatement="userid", * for default value will cause no referral will get points ever!!!) */ function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $locked=false, $add_mode="ref") { - global $DEPTH, $_CONFIG, $DATA; + global $DEPTH, $_CONFIG, $DATA, $cacheArray; // Convert mode to lower-case $add_mode = strtolower($add_mode); @@ -1115,7 +1151,7 @@ function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $lock } // Count up referral depth - if (empty($DEPTH)) { + if (!isset($DEPTH)) { // Initialialize referral system $DEPTH = 0; } else { @@ -1123,10 +1159,6 @@ function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $lock $DEPTH++; } - // Percents and table - $percents = "percents"; if (isset($_CONFIG['db_percents'])) $percents = $_CONFIG['db_percents']; - $table = "refdepths"; if (isset($_CONFIG['db_table'])) $table = $_CONFIG['db_table']; - // Default is "normal" points $data = "points"; @@ -1140,26 +1172,33 @@ function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $lock //* DEBUG */ echo "+".SQL_NUMROWS($result_user).":".$points."+
\n"; if (SQL_NUMROWS($result_user) == 1) { // This is the user and his ref - list ($ref, $email) = SQL_FETCHROW($result_user); + list($ref, $email) = SQL_FETCHROW($result_user); + $cacheArray['add_uid'][$ref] = $uid; // Debug message //DEBUG_LOG(__FUNCTION__.": ref={$ref},email={$email},DEPTH={$DEPTH}"); - // Get referal data - $result_lvl = SQL_QUERY_ESC("SELECT %s FROM "._MYSQL_PREFIX."_%s WHERE level='%s' LIMIT 1", - array($percents, $table, bigintval($DEPTH)), __FILE__, __LINE__); - //* DEBUG */ echo "DEPTH:".$DEPTH."
\n"; - if (SQL_NUMROWS($result_lvl) == 1) { - // Get percents - list($per) = SQL_FETCHROW($result_lvl); + // Get percents + $per = GET_REF_LEVEL_PERCENTS($DEPTH); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},points={$points},depth={$DEPTH},per={$per},mode={$add_mode}
\n"; + // Some percents found? + if ($per > 0) { // Calculate new points $ref_points = $points * $per / 100; + // Pay refback here if level > 0 and in ref-mode + if (($DEPTH > 0) && ($per < 100) && ($add_mode == "ref")) { + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$DEPTH} - BEFORE!
\n"; + $ref_points = ADD_REFBACK_POINTS($cacheArray['add_uid'][$uid], $uid, $ref_points, $DEPTH); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},data={$cacheArray['add_uid'][$uid]},ref_points={$ref_points},depth={$DEPTH} - AFTER!
\n"; + } // END - if + // Debug message //DEBUG_LOG(__FUNCTION__.": percent={$per},ref_points={$ref_points}"); // Update points... + //* DEBUG: */ echo __FUNCTION__.":data={$data},ref_points={$ref_points},uid={$uid},depth={$DEPTH} - UPDATE!
\n"; SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%s AND ref_depth=%d LIMIT 1", array($data, $data, $ref_points, bigintval($uid), bigintval($DEPTH)), __FILE__, __LINE__); @@ -1218,55 +1257,254 @@ function ADD_POINTS_REFSYSTEM($uid, $points, $send_notify=false, $rid="0", $lock if (($ref > 0) && ($points > 0) && ($ref != $uid) && ($add_mode == "ref")) { // Then let's credit him here... ADD_POINTS_REFSYSTEM($ref, $points, $send_notify, $ref, $locked); - } - } + } // END - if + } // END - if + } // END - if - // Free result - SQL_FREERESULT($result_lvl); + // Free result + SQL_FREERESULT($result_user); +} +// Payback refback for refid and reduce it for current user +function ADD_REFBACK_POINTS ($uid, $ref, $points) { + global $DEPTH, $cacheArray; + + // Init points + $return = $points; + + // "Walk through all refids + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$ref},points={$points}
\n"; + foreach (GET_REFBACK_USERID_ARRAY($uid) as $refid) { + // Skip level zero or if both are the same + if ($uid == $refid) continue; + + // Get refback percents + $percents = GET_REFBACK_PERCENTS($uid, $refid); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$ref},refid={$refid},points={$points},percents={$percents}
\n"; + + // Some percents given? + if ($percents > 0) { + // Get points for refback + $refback = $points * $percents / 100; + + // Add points again, but only directly + //* DEBUG: */ echo __FUNCTION__.":refback={$refback},depth={$DEPTH}
\n"; + $cacheArray['depth'][$uid][$ref] = $DEPTH; $DEPTH = -1; + ADD_POINTS_REFSYSTEM($uid, $refback, false, "0", false, "direct"); + $DEPTH = $cacheArray['depth'][$uid][$ref]; + //* DEBUG: */ echo __FUNCTION__.":depth={$DEPTH} - RESTORE!
\n"; + + // Reduce points if refid is found + if ($refid == $ref) { + // Reduce points here! + $return = $points - $refback; + //* DEBUG: */ echo __FUNCTION__.":points={$return} - REDUCED
\n"; + } // END - if + } // END - if + } // END foreach + + // Return them + return $return; +} +// "Getter" for refback percents +function GET_REFBACK_PERCENTS ($uid, $ref) { + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$ref}
\n"; + // Skip identical ids + if ($uid == $ref) return 0; + + // Default is zero + $percents = 0; + + // Get percents from database + $result = SQL_QUERY_ESC("SELECT refback FROM "._MYSQL_PREFIX."_user_refs WHERE userid=%s AND refid=%s LIMIT 1", + array($ref, $uid), __FILE__, __LINE__); + + // Entry found? (Should be!) + if (SQL_NUMROWS($result) == 1) { + // Fetch percents + list($percents) = SQL_FETCHROW($result); + } else { + // Debug log + DEBUG_LOG(__FUNCTION__.": uid={$uid},ref={$ref} - No entry found! :-("); } // Free result - SQL_FREERESULT($result_user); + SQL_FREERESULT($result); + + // Return percents + return $percents; +} +// "Getter" for userid array +function GET_REFBACK_USERID_ARRAY ($rid) { + //* DEBUG: */ echo __FUNCTION__.":rid={$rid}
\n"; + // Init userids + $userIds = array(); + + // Look for all + $result = SQL_QUERY_ESC("SELECT userid +FROM "._MYSQL_PREFIX."_user_refs +WHERE refid=%s +GROUP BY level +ORDER BY userid ASC", + array($rid), __FILE__, __LINE__); + + // Entries found? + if (SQL_NUMROWS($result) > 0) { + // Add all + while (list($userid) = SQL_FETCHROW($result)) { + //* DEBUG: */ echo __FUNCTION__.":rid={$rid},userid={$userid}
\n"; + $userIds[] = $userid; + } // END - while + } // END - if + + // Free result + SQL_FREERESULT($result); + + // Return array + //* DEBUG: */ echo __FUNCTION__.":rid={$rid},count()=".count($userIds)."
\n"; + return $userIds; } // -function UPDATE_REF_COUNTER($uid) -{ - global $REF_LVL, $cacheInstance; +function UPDATE_REF_COUNTER ($uid) { + global $cacheArray, $cacheInstance; // Make it sure referral level zero (member him-/herself) is at least selected - if (empty($REF_LVL)) $REF_LVL = 0; + if (empty($cacheArray['ref_level'][$uid])) $cacheArray['ref_level'][$uid] = 1; + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['ref_level'][$uid]}
\n"; // Update counter - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refsystem SET counter=counter+1 WHERE userid=%s AND level='%s' LIMIT 1", - array(bigintval($uid), $REF_LVL), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refsystem SET counter=counter+1 WHERE userid=%s AND level=%s LIMIT 1", + array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__); // When no entry was updated then we have to create it here - if (SQL_AFFECTEDROWS() == 0) - { + //* DEBUG: */ echo __FUNCTION__.":updated=".SQL_AFFECTEDROWS()."
\n"; + if (SQL_AFFECTEDROWS() == 0) { // First count! - $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_refsystem (userid, level, counter) VALUES ('%s','%s','1')", - array(bigintval($uid), $REF_LVL), __FILE__, __LINE__); - } + $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_refsystem (userid, level, counter) VALUES (%s,%s,1)", + array(bigintval($uid), $cacheArray['ref_level'][$uid]), __FILE__, __LINE__); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid}
\n"; + } // END - if // Check for his referral $result = SQL_QUERY_ESC("SELECT refid FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array(bigintval($uid)), __FILE__, __LINE__); + array(bigintval($uid)), __FILE__, __LINE__); + + // Load refid list($ref) = SQL_FETCHROW($result); // Free memory SQL_FREERESULT($result); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$ref}
\n"; // When he has a referral... - if (($ref > 0) && ($ref != $uid)) - { + if (($ref > 0) && ($ref != $uid)) { // Move to next referral level and count his counter one up! - $REF_LVL++; UPDATE_REF_COUNTER($ref); - } - elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2")) - { + //* DEBUG: */ echo __FUNCTION__.":ref={$ref} - ADVANCE!
\n"; + $cacheArray['ref_level'][$uid]++; UPDATE_REF_COUNTER($ref); + } elseif ((($ref == $uid) || ($ref == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2")) { // Remove cache here + //* DEBUG: */ echo __FUNCTION__.":ref={$ref} - CACHE!
\n"; if ($cacheInstance->cache_file("refsystem", true)) $cacheInstance->cache_destroy(); } + + // "Walk" back here + $cacheArray['ref_level'][$uid]--; + + // Handle refback here + UPDATE_REFBACK_TABLE($uid); +} +// Update "refback table" +function UPDATE_REFBACK_TABLE($uid) +{ + global $cacheArray, $cacheInstance; + + // Make it sure referral level zero (member him-/herself) is at least selected + if (empty($cacheArray['back_level'])) $cacheArray['back_level'] = 1; + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['back_level']}
\n"; + + // Init refid + $cacheArray['up_refid'][$cacheArray['back_level']] = 0; + $old = 0; $minus = 0; + + // Check for his referral + $result_refid = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE refid=%s ORDER BY userid ASC", + array(bigintval($uid)), __FILE__, __LINE__); + + // When no entry was updated then we have to create it here + //* DEBUG: */ echo __FUNCTION__.":found=".SQL_NUMROWS($result_refid)."
\n"; + if (SQL_NUMROWS($result_refid) > 0) { + // Load all refids + while(list($cacheArray['up_refid'][$cacheArray['back_level']]) = SQL_FETCHROW($result_refid)) { + // Remmber userid + $cacheArray['up_userid'][$cacheArray['up_refid'][$cacheArray['back_level']]] = $uid; + + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$cacheArray['up_refid'][$cacheArray['back_level']]}
\n"; + // Refid set? + if (($cacheArray['up_refid'][$cacheArray['back_level']] > 0) && ($cacheArray['up_refid'][$cacheArray['back_level']] != $uid) && (!empty($cacheArray['up_refid'][$cacheArray['back_level']]))) { + // New userid? + if ((isset($cacheArray['up_refid'][$cacheArray['back_level']-1])) && (isset($cacheArray['up_userid'][$cacheArray['up_refid'][$cacheArray['back_level']-1]]))) { + // New userid! + $old = $uid; + $uid = $cacheArray['up_userid'][$cacheArray['up_refid'][$cacheArray['back_level']-1]]; + $minus = 1; + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},old={$old},level={$cacheArray['back_level']},ref={$cacheArray['up_refid'][$cacheArray['back_level']]} - NEW UID!
\n"; + } // END - if + + // Check existence + $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_refs WHERE userid=%s AND level=%s AND refid=%s LIMIT 1", + array(bigintval($uid), $cacheArray['back_level'], bigintval($cacheArray['up_refid'][$cacheArray['back_level']])), __FILE__, __LINE__); + + // Do we have no entry? + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['back_level']},ref={$cacheArray['up_refid'][$cacheArray['back_level']]},minus={$minus},numRows=".SQL_NUMROWS($result)." - FOUND!
\n"; + if (SQL_NUMROWS($result) == 0) { + // Insert this level + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['back_level']},ref={$cacheArray['up_refid'][$cacheArray['back_level']]} - ADD!
\n"; + $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_refs (userid, level, refid) VALUES (%s,%s,%s)", + array(bigintval($uid), $cacheArray['back_level'], bigintval($cacheArray['up_refid'][$cacheArray['back_level']])), __FILE__, __LINE__); + + // Move to next referral level and count his counter one up! + $cacheArray['back_level']++; UPDATE_REFBACK_TABLE($cacheArray['up_refid'][($cacheArray['back_level'] - 1)]); + } // END - if + + // Do we have another level here? + if ((($cacheArray['back_level']-$minus) > 0) && ($old > 0)) { + // Restore old one + $uid = $old; + + // Shall we add this as well? + $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_user_refs WHERE userid=%s AND level=%s AND refid=%s LIMIT 1", + array(bigintval($uid), ($cacheArray['back_level']-$minus), bigintval($cacheArray['up_refid'][$cacheArray['back_level']])), __FILE__, __LINE__); + + // Do we have no entry? + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level=".($cacheArray['back_level']-$minus).",ref={$cacheArray['up_refid'][$cacheArray['back_level']]},numRows=".SQL_NUMROWS($result)." - BACK!
\n"; + if (SQL_NUMROWS($result) == 0) { + // Insert this level + $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_refs (userid, level, refid) VALUES (%s,%s,%s)", + array(bigintval($uid), ($cacheArray['back_level']-$minus), bigintval($cacheArray['up_refid'][$cacheArray['back_level']])), __FILE__, __LINE__); + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level=".($cacheArray['back_level']-$minus).",ref={$cacheArray['up_refid'][$cacheArray['back_level']]} - RETURNED!
\n"; + } // END - if + } // END - if + } // END - if + } // END - while + + // Free memory + SQL_FREERESULT($result_refid); + } // END - if + + // When he has a referral... + if ((($cacheArray['up_refid'][$cacheArray['back_level']] == $uid) || ($cacheArray['up_refid'][$cacheArray['back_level']] == 0)) && (GET_EXT_VERSION("cache") >= "0.1.2") && (!isset($cacheArray['back_cached']))) { + // Remove cache here + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},ref={$cacheArray['up_refid'][$cacheArray['back_level']]} - CACHE!
\n"; + if ($cacheInstance->cache_file("refback", true)) $cacheInstance->cache_destroy(); + $cacheArray['back_cached'] = 1; + } // END - if + + // "Walk" back here + $cacheArray['back_level']--; + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['back_level']} - LEVEL!
\n"; + + // Fix empty refid + if (!isset($cacheArray['up_refid'][$cacheArray['back_level']-1])) $cacheArray['up_refid'][$cacheArray['back_level']-1] = 0; + //* DEBUG: */ echo __FUNCTION__.":uid={$uid},level={$cacheArray['back_level']},ref={$cacheArray['up_refid'][$cacheArray['back_level']-1]} - BACK!
\n"; } // Updates/extends the online list function UPDATE_ONLINE_LIST($SID, $mod, $act, $wht) { @@ -1298,7 +1536,7 @@ function UPDATE_ONLINE_LIST($SID, $mod, $act, $wht) { $ADMIN = "Y"; } // END - if - if (isSessionVariableSet('refid')) { + if (isSessionVariableSet('up_refid')) { // Check cookie if (get_session('refid') > 0) $rid = bigintval($GLOBALS['refid']); } // END - if