X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fonline_functions.php;h=bc8818fa22f5e8d14fb604deb73f193cd5632a4f;hp=14c8503b624deafad86e08036c9207a9415197c0;hb=63f159414369b5ea19a8ca75d8cd8033c45d8341;hpb=fb47d444a28f77a2812733fa7d665ea6d992f6fc diff --git a/inc/libs/online_functions.php b/inc/libs/online_functions.php index 14c8503b62..bc8818fa22 100644 --- a/inc/libs/online_functions.php +++ b/inc/libs/online_functions.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 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 * @@ -42,89 +40,5 @@ if (!defined('__SECURITY')) { die(); } // END - if -// Filter for updates/extends on the online list -function FILTER_UPDATE_ONLINE_LIST () { - // Do not update online list when extension is deactivated - if (!isExtensionActive('online', true)) return; - - // Empty session? - if (session_id() == '') { - // This is invalid here! - debug_report_bug(__FUNCTION__, __LINE__, 'Invalid session.'); - } // END - if - - // Initialize variables - $userid = '0'; - $isMember = 'N'; - $isAdmin = 'N'; - - // Valid userid? - if ((isMemberIdSet()) && (getMemberId() > 0) && (isMember())) { - // Is valid user - $userid = getMemberId(); - $isMember = 'Y'; - } // END - if - - if (isAdmin()) { - // Is administrator - $isAdmin = 'Y'; - } // END - if - - // Now search for the user - $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( - getModule(), - getAction(), - getWhat(), - $userid, - makeDatabaseUserId(determineReferalId()), - $isMember, - $isAdmin, - 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')", - array( - getModule(), - getAction(), - getWhat(), - $userid, - makeDatabaseUserId(determineReferalId()), - $isMember, - $isAdmin, - session_id(), - detectRemoteAddr() - ), __FUNCTION__, __LINE__); - } - - // Free result - SQL_FREERESULT($result); - - // Purge old entries - SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE `timestamp` <= (UNIX_TIMESTAMP() - {?online_timeout?})', __FUNCTION__, __LINE__); -} - // [EOF] ?>