d31c793c63484772b2885b102f6bbc04bfb799ed
[mailer.git] / inc / filter / online_filter.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/02/2011 *
4  * ===================                          Last change: 06/02/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : _filter.php                                      *
8  * -------------------------------------------------------------------- *
9  * Short description : Filters for ext-                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Filter fuer ext-                                 *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Filter for updates/extends on the online list
44 function FILTER_UPDATE_ONLINE_LIST ($data) {
45         // Do not update online list when extension is deactivated
46         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
47         if (!isExtensionActive('online', true)) {
48                 // Extension not active
49                 return;
50         } // END - if
51
52         // Empty session?
53         if (session_id() == '') {
54                 // This is invalid here!
55                 debug_report_bug(__FUNCTION__, __LINE__, 'Invalid session.');
56         } // END - if
57
58         // Initialize variables
59         $userid = '0';
60         $isMember = 'N';
61         $isAdmin = 'N';
62         $action = getActionFromModuleWhat(getModule(), getWhat());
63
64         // Valid userid?
65         if (isMember()) {
66                 // Is valid user
67                 $userid = getMemberId();
68                 $isMember = 'Y';
69         } // END - if
70
71         if (isAdmin()) {
72                 // Is administrator
73                 $isAdmin = 'Y';
74         } // END - if
75
76         // Now search for the user
77         $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_online` WHERE `sid`='%s' LIMIT 1",
78                 array(session_id()), __FUNCTION__, __LINE__);
79
80         // Entry found?
81         if (SQL_NUMROWS($result) == 1) {
82                 // Then update it
83                 SQL_QUERY_ESC("UPDATE
84         `{?_MYSQL_PREFIX?}_online`
85 SET
86         `module`='%s',
87         `action`='%s',
88         `what`='%s',
89         `userid`=%s,
90         `refid`=%s,
91         `is_member`='%s',
92         `is_admin`='%s',
93         `timestamp`=UNIX_TIMESTAMP(),
94         `ip`='%s'
95 WHERE 
96         `sid`='%s'
97 LIMIT 1",
98                 array(
99                         getModule(),
100                         $action,
101                         getWhat(),
102                         makeDatabaseUserId($userid),
103                         makeDatabaseUserId(determineReferalId()),
104                         $isMember,
105                         $isAdmin,
106                         detectRemoteAddr(),
107                         session_id()
108                 ), __FUNCTION__, __LINE__);
109         } else {
110                 // No entry does exists so we simply add it!
111                 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')",
112                         array(
113                                 getModule(),
114                                 $action,
115                                 getWhat(),
116                                 makeDatabaseUserId($userid),
117                                 makeDatabaseUserId(determineReferalId()),
118                                 $isMember,
119                                 $isAdmin,
120                                 session_id(),
121                                 detectRemoteAddr()
122                         ), __FUNCTION__, __LINE__);
123         }
124
125         // Free result
126         SQL_FREERESULT($result);
127
128         // Purge old entries
129         SQL_QUERY('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_online` WHERE (UNIX_TIMESTAMP() - `timestamp`) >= {?online_timeout?}', __FUNCTION__, __LINE__);
130
131         // Return data
132         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
133         return $data;
134 }
135
136 // [EOF]
137 ?>