userid/refid do now allow 'null'
[mailer.git] / inc / module-functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/01/2010 *
4  * ===================                          Last change: 07/01/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : module-functions.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : All MySQL-related functions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle MySQL-Relevanten Funktionen                 *
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, 2010 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 // "Getter" for module title
44 function getModuleTitle ($module) {
45         // Init variables
46         $data['title'] = '';
47         $result = false;
48
49         // Is the script installed?
50         if ((isInstalled()) && ($module != 'error')) {
51                 // Check if cache is valid
52                 if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isset($GLOBALS['cache_array']['modules']['module'])) && (in_array($module, $GLOBALS['cache_array']['modules']['module']))) {
53                         // Load from cache
54                         $data['title'] = $GLOBALS['cache_array']['modules']['title'][$module];
55
56                         // Update cache hits
57                         incrementStatsEntry('cache_hits');
58                 } elseif (!isExtensionActive('cache')) {
59                         // Load from database
60                         $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
61                                 array($module), __FUNCTION__, __LINE__);
62
63                         // Is the entry there?
64                         if (SQL_NUMROWS($result)) {
65                                 // Get the title from database
66                                 $data = SQL_FETCHARRAY($result);
67                         } // END - if
68
69                         // Free the result
70                         SQL_FREERESULT($result);
71                 }
72         } // END - if
73
74         // Trim name
75         $data['title'] = trim($data['title']);
76
77         // Still no luck or empty title?
78         if (empty($data['title'])) {
79                 // Is it 'error'?
80                 if ($module == 'error') {
81                         // Error (real module was not found)
82                         $data['title'] = getMessage('MODULE_ERROR_404');
83                 }  else {
84                         // No name found
85                         $data['title'] = getMaskedMessage('UNKNOWN_MODULE_DETECTED', $module);
86                         if ((is_resource($result)) && (SQL_HASZERONUMS($result))) {
87                                 // Add module to database
88                                 $dummy = checkModulePermissions($module);
89                         } // END - if
90                 }
91         } // END - if
92
93         // Return name
94         return $data['title'];
95 }
96
97 // Checks if module_status entry is there
98 function isModuleStatusSet ($module) {
99         // Check it
100         return (isset($GLOBALS['module_status'][$module]));
101 }
102
103 // Setter module status
104 function setModuleStatus ($module, $status) {
105         $GLOBALS['module_status'][$module] = $status;
106 }
107
108 // Getter for module status
109 function getModuleStatus ($module) {
110         // Is the module_status entry there?
111         if (!isModuleStatusSet($module)) {
112                 // Abort
113                 debug_report_bug('Module status not set. module=' . $module);
114         } // END - if
115
116         // Return it
117         return $GLOBALS['module_status'][$module];
118 }
119
120 // Checks wether the given module is registered
121 function isModuleRegistered ($module) {
122         // By default nothing is found
123         $found  = false;
124
125         // Check if cache is latest version
126         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
127                 // Is the cache there?
128                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Using cache.');
129                 if (isset($GLOBALS['cache_array']['modules']['locked'][$module])) {
130                         // Update cache hits
131                         incrementStatsEntry('cache_hits');
132
133                         // Is found
134                         $found = true;
135                 } else {
136                         // No, then we have to update it!
137                         setModuleStatus($module, 'cache_miss');
138                 }
139         } elseif (!isExtensionActive('cache')) {
140                 // Check for module in database
141                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Using database.');
142                 $result = SQL_QUERY_ESC("SELECT `locked`, `hidden`, `admin_only`, `mem_only` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
143                         array($module), __FUNCTION__, __LINE__);
144                 if (SQL_NUMROWS($result) == 1) {
145                         // Read data
146                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Entry found.');
147                         $GLOBALS['cache_array']['modules'][$module] = SQL_FETCHARRAY($result);
148                         $found = true;
149                 } elseif (isDebugModeEnabled()) {
150                         // Debug message only in debug-mode...
151                         logDebugMessage(__FUNCTION__, __LINE__, 'Module ' . $module . ' not found!');
152                 }
153
154                 // Free result
155                 SQL_FREERESULT($result);
156         }
157
158         // Return status
159         return $found;
160 }
161
162 // Check validity of a given module name (no file extension)
163 function checkModulePermissions ($module = '') {
164         // Is it empty (default), then take the current one
165         if (empty($module)) {
166                 // Use current module
167                 $module = getModule();
168         } // END - if
169
170         // Do we have cache?
171         if (isModuleStatusSet($module)) {
172                 // Then use it
173                 return getModuleStatus($module);
174         } // END - if
175
176         // Filter module name (names with low chars and underlines are fine!)
177         $module = preg_replace('/[^a-z_]/', '', $module);
178
179         // Check for prefix is a extension...
180         $modSplit = explode('_', $module);
181         $extension = ''; $module_chk = $module;
182         //* DEBUG: */ debugOutput(__LINE__.'*'.count($modSplit).'/'.$module.'*');
183         if (count($modSplit) == 2) {
184                 // Okay, there is a seperator (_) in the name so is the first part a module?
185                 //* DEBUG: */ debugOutput(__LINE__.'*'.$modSplit[0].'*');
186                 if (isExtensionActive($modSplit[0])) {
187                         // The prefix is an extension's name, so let's set it
188                         $extension = $modSplit[0]; $module = $modSplit[1];
189                 } // END - if
190         } // END - if
191
192         // Major error in module registry is the default
193         setModuleStatus($module_chk, 'major');
194
195         // Check if script is installed if not return a 'done' to prevent some errors
196         if ((isInstallationPhase()) || (!isAdminRegistered())) {
197                 // Not installed or no admin registered or in installation phase
198                 setModuleStatus($module_chk, 'done');
199
200                 // Return status
201                 return 'done';
202         } // END - if
203
204         // Check if the module is registered
205         $found = isModuleRegistered($module_chk);
206
207         // Is the module found?
208         if ($found === true) {
209                 // Check returned values against current access permissions
210                 //
211                 // Admin access                                                              ----- Guest access -----                                                                                                                         --- Guest   or   member? ---
212                 if ((isAdmin()) || (($GLOBALS['cache_array']['modules']['locked'][$module_chk] != 'Y') && ($GLOBALS['cache_array']['modules']['admin_only'][$module_chk] != 'Y') && (($GLOBALS['cache_array']['modules']['mem_only'][$module_chk] != 'Y') || (isMember())))) {
213                         // If you are admin you are welcome for everything!
214                         setModuleStatus($module_chk, 'done');
215                 } elseif ($GLOBALS['cache_array']['modules']['locked'][$module_chk] == 'Y') {
216                         // Module is locked
217                         setModuleStatus($module_chk, 'locked');
218                 } elseif (($GLOBALS['cache_array']['modules']['mem_only'][$module_chk] == 'Y') && (!isMember())) {
219                         // You have to login first!
220                         setModuleStatus($module_chk, 'mem_only');
221                 } elseif (($GLOBALS['cache_array']['modules']['admin_only'][$module_chk] == 'Y') && (!isAdmin())) {
222                         // Only the Admin is allowed to enter this module!
223                         setModuleStatus($module_chk, 'admin_only');
224                 } else {
225                         // @TODO Nothing helped???
226                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("ret=%s,locked=%s,admin=%s,mem=%s",
227                                 getModuleStatus($module_chk),
228                                 $GLOBALS['cache_array']['modules']['locked'][$module_chk],
229                                 $GLOBALS['cache_array']['modules']['admin_only'][$module_chk],
230                                 $GLOBALS['cache_array']['modules']['mem_only'][$module_chk]
231                         ));
232                 }
233         } // END - if
234
235         // Still no luck or not found?
236         if (($found === false) && (!isExtensionActive('cache')) && (getModuleStatus($module_chk) != 'done'))  {
237                 //              ----- Default module -----                                  ---- Module in base folder  ----                       --- Module with extension's name ---
238                 if ((isIncludeReadable(sprintf("inc/modules/%s.php", $module))) || (isIncludeReadable(sprintf("%s.php", $module))) || (isIncludeReadable(sprintf("%s/%s.php", $extension, $module)))) {
239                         // Data is missing so we add it
240                         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
241                                 /*
242                                  * Since 0.3.6 we have a has_menu column, this took me a half
243                                  * hour to find a loop here... *sigh*
244                                  */
245                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
246 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`, `has_menu`)
247 VALUES
248 ('%s','Y','N','N','N','N')", array($module_chk), __FUNCTION__, __LINE__);
249                         } else {
250                                 // Wrong/missing sql_patches!
251                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
252 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`)
253 VALUES
254 ('%s','Y','N','N','N')", array($module_chk), __FUNCTION__, __LINE__);
255                         }
256
257                         // Everthing is fine?
258                         if (SQL_AFFECTEDROWS() < 1) {
259                                 // Something bad happend!
260                                 setModuleStatus($module_chk, 'major');
261                                 return 'major';
262                         } // END - if
263
264                         // Destroy cache here
265                         // @TODO Rewrite this to a filter
266                         if ((isHtmlOutputMode()) || (isRawOutputMode())) {
267                                 rebuildCache('modules', 'modules');
268                         } // END - if
269
270                         // And reload data
271                         unset($GLOBALS['module_status'][$module_chk]);
272                         return checkModulePermissions($module_chk);
273                 } else {
274                         // Module not found we don't add it to the database
275                         setModuleStatus($module_chk, '404');
276                 }
277         } elseif ((getModuleStatus($module_chk) == 'cache_miss') && (isHtmlOutputMode())) {
278                 // Rebuild the cache files
279                 rebuildCache('modules', 'modules');
280         } elseif ($found === false) {
281                 // Problem with module detected
282                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Problem in module %s detected. ret=%s, locked=%s, hidden=%s, mem=%s, admin=%s, output_mode=%s",
283                         $module_chk,
284                         getModuleStatus($module_chk),
285                         $GLOBALS['cache_array']['modules']['locked'][$module_chk],
286                         $GLOBALS['cache_array']['modules']['hidden'][$module_chk],
287                         $GLOBALS['cache_array']['modules']['mem_only'][$module_chk],
288                         $GLOBALS['cache_array']['modules']['admin_only'][$module_chk],
289                         getScriptOutputMode()
290                 ));
291         }
292
293         // Debug log
294         logDebugMessage(__FUNCTION__, __LINE__, sprintf("module=%s, status=%s", $module_chk, getModuleStatus($module_chk)));
295
296         // Return the value
297         return getModuleStatus($module_chk);
298 }
299
300 // Checks if the module has a menu
301 function ifModuleHasMenu ($module, $forceDb = false) {
302         // All is false by default
303         $ret = false;
304
305         // Extension installed and newer than or has version 0.1.2?
306         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
307                 // Cache version is okay, so let's check the cache!
308                 if (isset($GLOBALS['cache_array']['modules']['has_menu'][$module])) {
309                         // Check module cache and count hit
310                         $ret = ($GLOBALS['cache_array']['modules']['has_menu'][$module] == 'Y');
311                         incrementStatsEntry('cache_hits');
312                 } elseif (isset($GLOBALS['cache_array']['extension']['ext_menu'][$module])) {
313                         // Check cache and count hit
314                         $ret = ($GLOBALS['cache_array']['extension']['ext_menu'][$module] == 'Y');
315                         incrementStatsEntry('cache_hits');
316                 } else {
317                         // Admin/guest/member/sponsor modules have always a menu!
318                         $ret = in_array($module, array('admin', 'index', 'login', 'sponsor'));
319                 }
320         } elseif ((isExtensionInstalledAndNewer('sql_patches', '0.3.6')) && ((!isExtensionActive('cache')) || ($forceDb === true))) {
321                 // Check database for entry
322                 $result = SQL_QUERY_ESC("SELECT `has_menu` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
323                         array($module), __FUNCTION__, __LINE__);
324
325                 // Entry found?
326                 if (SQL_NUMROWS($result) == 1) {
327                         // Load "has_menu" column
328                         $data = SQL_FETCHARRAY($result);
329
330                         // Fake cache... ;-)
331                         $GLOBALS['cache_array']['extension']['ext_menu'][$module] = $data['has_menu'];
332
333                         // Does it have a menu?
334                         $ret = ($data['has_menu'] == 'Y');
335                 } // END  - if
336
337                 // Free memory
338                 SQL_FREERESULT($result);
339         } elseif (!isExtensionInstalled('sql_patches')) {
340                 // No sql_patches installed, so maybe in admin/guest/member/sponsor area or no admin registered?
341                 $ret = in_array($module, array('admin', 'index', 'login', 'sponsor')); // Then there is a menu!
342         } else {
343                 // Unsupported state!
344                 logDebugMessage(__FUNCTION__, __LINE__, 'This should never be reached.');
345         }
346
347         // Return status
348         return $ret;
349 }
350
351 // Adds a SQL for given module
352 function addModuleSql ($module, $locked, $hidden, $adminOnly, $memOnly) {
353         // Is the module already registered?
354         if (!isModuleRegistered($module)) {
355                 // Add it
356                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg` (`module`,`locked`,`hidden`,`admin_only`,`mem_only`) VALUES('" . $module . "','" . $locked . "','" . $hidden . "','" . $adminOnly . "','" . $memOnly . "')");
357         } else {
358                 // Already registered
359                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Already registered: module=%s,locked=%s,hidden=%s,admin=%s,mem=%s",
360                         $module,
361                         $locked,
362                         $hidden,
363                         $adminOnly,
364                         $memOnly
365                 ));
366         }
367 }
368
369 // [EOF]
370 ?>