Wrapper functions introduced for configuration, loaders refactured:
[mailer.git] / inc / loader / load-admins.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
4  * ===================                          Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-config.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Load more cache files                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
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 } elseif (isInstallationPhase()) {
42         // Use this code if you don't want to run this cache loader on installation phase
43         return;
44 }
45
46 // Let's start with the admins table...
47 if (($GLOBALS['cache_instance']->loadCacheFile('admin')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
48         // Load cache
49         $GLOBALS['cache_array']['admin'] = $GLOBALS['cache_instance']->getArrayFromCache();
50
51         // Check if valid
52         if ((isset($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['admin_id']))) {
53                 // Check count
54                 if (count($GLOBALS['cache_array']['admin']['login']) == count($GLOBALS['cache_array']['admin']['admin_id'])) {
55                         // Rewrite the cache
56                         $admins = array();
57                         foreach ($GLOBALS['cache_array']['admin']['login'] as $idx => $admin) {
58                                 // Rewrite all entries
59                                 foreach ($GLOBALS['cache_array']['admin'] as $key => $entry) {
60                                         // Do we have login or regular entries?
61                                         if ($key == 'admin_id') {
62                                                 // Admin id, so use login
63                                                 $admins[$key][$GLOBALS['cache_array']['admin']['login'][$idx]] = $entry[$idx];
64                                         } else {
65                                                 // Regular entry so use id
66                                                 $admins[$key][$GLOBALS['cache_array']['admin']['admin_id'][$idx]] = $entry[$idx];
67                                         }
68                                 } // END - foreach
69                         } // END - foreach
70
71                         // Transfer back to cache array and remove dummy
72                         $GLOBALS['cache_array']['admin'] = $admins;
73                         unset($admins);
74                 } else {
75                         // Nope, cache file is corrupted!
76                         $GLOBALS['cache_instance']->removeCacheFile();
77                         unset($GLOBALS['cache_array']['admin']);
78                 }
79         } else {
80                 // Nope, cache file is corrupted!
81                 $GLOBALS['cache_instance']->removeCacheFile();
82                 unset($GLOBALS['cache_array']['admin']);
83         }
84 } elseif (isHtmlOutputMode()) {
85         // Create cache file
86         $GLOBALS['cache_instance']->init();
87
88         // Load every data from DB to cache file
89         $add = runFilterChain('sql_admin_extra_data');
90
91         // Query the database about this
92         $result_admins = SQL_QUERY('SELECT
93         `id` AS admin_id, `login`, `password`, `email`' . $add . '
94 FROM
95         `{?_MYSQL_PREFIX?}_admins`
96 ORDER BY
97         `login` ASC', __FILE__, __LINE__);
98         while ($dummy = SQL_FETCHARRAY($result_admins)) {
99                 // Save row
100                 $GLOBALS['cache_instance']->addRow($dummy);
101         } // END - while
102
103         // Free memory
104         SQL_FREERESULT($result_admins);
105
106         // Close cache
107         $GLOBALS['cache_instance']->storeExtensionVersion('admins');
108         $GLOBALS['cache_instance']->finalize();
109 }
110
111 // Next cached table are the admins_acls...
112 if (isExtensionInstalledAndNewer('admins', '0.3')) {
113         // Check for cache file
114         if (($GLOBALS['cache_instance']->loadCacheFile('admin_acls')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
115                 // Load referal system from cache
116                 $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
117         } elseif (isHtmlOutputMode()) {
118                 // Create cache file here
119                 $GLOBALS['cache_instance']->init();
120
121                 // Load all modules and their data (column 'id' is no longer required)
122                 $result = SQL_QUERY('SELECT `admin_id`, `action_menu`, `what_menu`, `access_mode` FROM `{?_MYSQL_PREFIX?}_admins_acls` ORDER BY `admin_id` ASC, `action_menu` ASC, `what_menu` ASC', __FILE__, __LINE__);
123
124                 // Add all rows
125                 while ($content = SQL_FETCHARRAY($result)) {
126                         // Add row to cache file
127                         $GLOBALS['cache_instance']->addRow($content);
128                 } // END - while
129
130                 // Free memory
131                 SQL_FREERESULT($result);
132
133                 // Close cache
134                 $GLOBALS['cache_instance']->storeExtensionVersion('admins');
135                 $GLOBALS['cache_instance']->finalize();
136         }
137 } // END - if
138
139 // [EOF]
140 ?>