]> git.mxchange.org Git - mailer.git/blob - inc/module-functions.php
Template renamed
[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,hidden=%s,admin=%s,mem=%s",
227                                 getModuleStatus($module_chk),
228                                 $GLOBALS['cache_array']['modules']['locked'][$module_chk],
229                                 $GLOBALS['cache_array']['modules']['hidden'][$module_chk],
230                                 $GLOBALS['cache_array']['modules']['admin_only'][$module_chk],
231                                 $GLOBALS['cache_array']['modules']['mem_only'][$module_chk]
232                         ));
233                 }
234         } // END - if
235
236         // Still no luck or not found?
237         if (($found === false) && (!isExtensionActive('cache')) && (getModuleStatus($module_chk) != 'done'))  {
238                 //              ----- Default module -----                                  ---- Module in base folder  ----                       --- Module with extension's name ---
239                 if ((isIncludeReadable(sprintf("inc/modules/%s.php", $module))) || (isIncludeReadable(sprintf("%s.php", $module))) || (isIncludeReadable(sprintf("%s/%s.php", $extension, $module)))) {
240                         // Data is missing so we add it
241                         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
242                                 /*
243                                  * Since 0.3.6 we have a has_menu column, this took me a half
244                                  * hour to find a loop here... *sigh*
245                                  */
246                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
247 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`, `has_menu`)
248 VALUES
249 ('%s','Y','N','N','N','N')", array($module_chk), __FUNCTION__, __LINE__);
250                         } else {
251                                 // Wrong/missing sql_patches!
252                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
253 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`)
254 VALUES
255 ('%s','Y','N','N','N')", array($module_chk), __FUNCTION__, __LINE__);
256                         }
257
258                         // Everthing is fine?
259                         if (SQL_AFFECTEDROWS() < 1) {
260                                 // Something bad happend!
261                                 setModuleStatus($module_chk, 'major');
262                                 return 'major';
263                         } // END - if
264
265                         // Destroy cache here
266                         // @TODO Rewrite this to a filter
267                         if ((isHtmlOutputMode()) || (isRawOutputMode())) {
268                                 rebuildCache('modules', 'modules');
269                         } // END - if
270
271                         // And reload data
272                         unset($GLOBALS['module_status'][$module_chk]);
273                         return checkModulePermissions($module_chk);
274                 } else {
275                         // Module not found we don't add it to the database
276                         setModuleStatus($module_chk, '404');
277                 }
278         } elseif ((getModuleStatus($module_chk) == 'cache_miss') && (isHtmlOutputMode())) {
279                 // Rebuild the cache files
280                 rebuildCache('modules', 'modules');
281         } elseif ($found === false) {
282                 // Problem with module detected
283                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Problem in module %s detected. ret=%s, locked=%s, hidden=%s, mem=%s, admin=%s, output_mode=%s",
284                         $module_chk,
285                         getModuleStatus($module_chk),
286                         $GLOBALS['cache_array']['modules']['locked'][$module_chk],
287                         $GLOBALS['cache_array']['modules']['hidden'][$module_chk],
288                         $GLOBALS['cache_array']['modules']['mem_only'][$module_chk],
289                         $GLOBALS['cache_array']['modules']['admin_only'][$module_chk],
290                         getScriptOutputMode()
291                 ));
292         }
293
294         // Debug log
295         logDebugMessage(__FUNCTION__, __LINE__, sprintf("module=%s, status=%s", $module_chk, getModuleStatus($module_chk)));
296
297         // Return the value
298         return getModuleStatus($module_chk);
299 }
300
301 // Checks if the module has a menu
302 function ifModuleHasMenu ($module, $forceDb = false) {
303         // All is false by default
304         $ret = false;
305
306         // Extension installed and newer than or has version 0.1.2?
307         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
308                 // Cache version is okay, so let's check the cache!
309                 if (isset($GLOBALS['cache_array']['modules']['has_menu'][$module])) {
310                         // Check module cache and count hit
311                         $ret = ($GLOBALS['cache_array']['modules']['has_menu'][$module] == 'Y');
312                         incrementStatsEntry('cache_hits');
313                 } elseif (isset($GLOBALS['cache_array']['extension']['ext_menu'][$module])) {
314                         // Check cache and count hit
315                         $ret = ($GLOBALS['cache_array']['extension']['ext_menu'][$module] == 'Y');
316                         incrementStatsEntry('cache_hits');
317                 } else {
318                         // Admin/guest/member/sponsor modules have always a menu!
319                         $ret = in_array($module, array('admin', 'index', 'login', 'sponsor'));
320                 }
321         } elseif ((isExtensionInstalledAndNewer('sql_patches', '0.3.6')) && ((!isExtensionActive('cache')) || ($forceDb === true))) {
322                 // Check database for entry
323                 $result = SQL_QUERY_ESC("SELECT `has_menu` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
324                         array($module), __FUNCTION__, __LINE__);
325
326                 // Entry found?
327                 if (SQL_NUMROWS($result) == 1) {
328                         // Load "has_menu" column
329                         $data = SQL_FETCHARRAY($result);
330
331                         // Fake cache... ;-)
332                         $GLOBALS['cache_array']['extension']['ext_menu'][$module] = $data['has_menu'];
333
334                         // Does it have a menu?
335                         $ret = ($data['has_menu'] == 'Y');
336                 } // END  - if
337
338                 // Free memory
339                 SQL_FREERESULT($result);
340         } elseif (!isExtensionInstalled('sql_patches')) {
341                 // No sql_patches installed, so maybe in admin/guest/member/sponsor area or no admin registered?
342                 $ret = in_array($module, array('admin', 'index', 'login', 'sponsor')); // Then there is a menu!
343         } else {
344                 // Unsupported state!
345                 logDebugMessage(__FUNCTION__, __LINE__, 'This should never be reached.');
346         }
347
348         // Return status
349         return $ret;
350 }
351
352 // Adds a SQL for given module
353 function addModuleSql ($module, $locked, $hidden, $adminOnly, $memOnly) {
354         // Is the module already registered?
355         if (!isModuleRegistered($module)) {
356                 // Add it
357                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg` (`module`,`locked`,`hidden`,`admin_only`,`mem_only`) VALUES('" . $module . "','" . $locked . "','" . $hidden . "','" . $adminOnly . "','" . $memOnly . "')");
358         } else {
359                 // Already registered
360                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Already registered: module=%s,locked=%s,hidden=%s,admin=%s,mem=%s",
361                         $module,
362                         $locked,
363                         $hidden,
364                         $adminOnly,
365                         $memOnly
366                 ));
367         }
368 }
369
370 // [EOF]
371 ?>