X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=91c84f1158bb5984491dad8c3f0accc290acd9b6;hp=caa3c71c0bdcf1b7e8ded4c395bb478690708d23;hb=4b32c7be676d4a191c869a5745f2890240852fb0;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7 diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index caa3c71c0b..91c84f1158 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -1,7 +1,7 @@ 0) && (IS_MEMBER())) { + if ((isMemberIdSet()) && (getMemberId() > 0) && (isMember())) { // Is valid user - $uid = getUserId(); - $MEM = "Y"; + $userid = getMemberId(); + $MEM = 'Y'; } // END - if - if (IS_ADMIN()) { + if (isAdmin()) { // Is administrator - $ADMIN = "Y"; + $ADMIN = 'Y'; } // END - if - if (!empty($GLOBALS['refid'])) { - // Read cookie - $rid = bigintval($GLOBALS['refid']); - } // END - if + // Get refid + $rid = determineReferalId(); // Now search for the user - $result = SQL_QUERY_ESC("SELECT timestamp FROM `{!_MYSQL_PREFIX!}_online` WHERE sid='%s' LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_online` WHERE `sid`='%s' LIMIT 1", array(session_id()), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { // Then update it - SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_online` SET -module='%s', -action='%s', -what='%s', -userid=%s, -refid=%s, -is_member='%s', -is_admin='%s', -timestamp=UNIX_TIMESTAMP(), -ip='%s' -WHERE sid='%s' LIMIT 1", - array( - $GLOBALS['module'], - $GLOBALS['action'], - $GLOBALS['what'], - $uid, - $rid, - $MEM, - $ADMIN, - GET_REMOTE_ADDR(), - session_id() - ), __FUNCTION__, __LINE__ - ); + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_online` +SET + `module`='%s', + `action`='%s', + `what`='%s', + `userid`=%s, + `refid`='%s', + `is_member`='%s', + `is_admin`='%s', + `timestamp`=UNIX_TIMESTAMP(), + `ip`='%s' +WHERE + `sid`='%s' +LIMIT 1", + array( + getModule(), + getAction(), + getWhat(), + $userid, + $rid, + $MEM, + $ADMIN, + detectRemoteAddr(), + session_id() + ), __FUNCTION__, __LINE__); } else { // No entry does exists so we simply add it! - SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_online` (module, action, what, userid, refid, is_member, is_admin, timestamp, sid, ip) VALUES ('%s','%s','%s', %s, %s, '%s','%s', UNIX_TIMESTAMP(), '%s','%s')", + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_online` (`module`, `action`, `what`, `userid`, `refid`, `is_member`, `is_admin`, `timestamp`, `sid`, `ip`) VALUES ('%s','%s','%s', %s, '%s', '%s','%s', UNIX_TIMESTAMP(), '%s','%s')", array( - $GLOBALS['module'], - $GLOBALS['action'], - $GLOBALS['what'], - $uid, + getModule(), + getAction(), + getWhat(), + $userid, $rid, $MEM, $ADMIN, session_id(), - GET_REMOTE_ADDR() - ), __FUNCTION__, __LINE__ - ); + detectRemoteAddr() + ), __FUNCTION__, __LINE__); } // Free result SQL_FREERESULT($result); // Purge old entries - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_online` WHERE timestamp <= (UNIX_TIMESTAMP() - %s)", - array(getConfig('online_timeout')), __FUNCTION__, __LINE__); + SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE `timestamp` <= (UNIX_TIMESTAMP() - {?online_timeout?})', __FUNCTION__, __LINE__); } -// +// [EOF] ?>