93e862d4c5f60c241ba992574b923241f07acc18
[mailer.git] / inc / loader / load_cache-admin.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ===============                              Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load_cache-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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Use this code if you don't want to run this cache loader on installation phase
45 if (isInstallationPhase()) return;
46
47 // Let's start with the admins table...
48 if (($GLOBALS['cache_instance']->loadCacheFile('admins')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
49         // Load cache
50         $GLOBALS['cache_array']['admins'] = $GLOBALS['cache_instance']->getArrayFromCache();
51
52         // Check if valid
53         if ((isset($GLOBALS['cache_array']['admins']['login'])) && (is_array($GLOBALS['cache_array']['admins']['login'])) && (is_array($GLOBALS['cache_array']['admins']['admin_id']))) {
54                 // Check count
55                 if (count($GLOBALS['cache_array']['admins']['login']) == count($GLOBALS['cache_array']['admins']['admin_id'])) {
56                         // Get "id map"
57                         $idMap = $GLOBALS['cache_array']['admins']['admin_id'];
58
59                         // Rewrite the cache array
60                         for ($idx = (count($idMap) - 1); $idx >= 0; $idx--) {
61                                 // Rewrite all entries
62                                 foreach ($GLOBALS['cache_array']['admins'] as $key=>$entryArray) {
63                                         // Rewrite the entry
64                                         if ($key == 'admin_id') {
65                                                 // Rewrite admin id (use login name as index)
66                                                 $GLOBALS['cache_array']['admins']['admin_id'][$GLOBALS['cache_array']['admins']['login'][$idx]] = $entryArray[$idx];
67                                         } else {
68                                                 // Rewrite regular entry
69                                                 $GLOBALS['cache_array']['admins'][$key][$idMap[$idx]] = $entryArray[$idx];
70                                         }
71
72                                         // Is the last entry reached?
73                                         if ($idx == 0) {
74                                                 // Remove it
75                                                 unset($GLOBALS['cache_array']['admins'][$key][0]);
76                                         } // END - if
77                                 } // END - if
78                         } // END - for
79                 } else {
80                         // Nope, cache file is corrupted!
81                         $GLOBALS['cache_instance']->removeCacheFile();
82                         unset($GLOBALS['cache_array']['admins']);
83                 }
84         } else {
85                 // Nope, cache file is corrupted!
86                 $GLOBALS['cache_instance']->removeCacheFile();
87                 unset($GLOBALS['cache_array']['admins']);
88         }
89 } elseif (getOutputMode() != '1') {
90         // Create cache file
91         $GLOBALS['cache_instance']->init('ADMINS');
92
93         // Load every data from DB to cache file
94         $add = runFilterChain('sql_admin_extra_data');
95
96         // Query the database about this
97         $result_admins = SQL_QUERY('SELECT
98         `id` AS admin_id, `login`, `password`, `email`' . $add . '
99 FROM
100         `{?_MYSQL_PREFIX?}_admins`
101 ORDER BY
102         `login` ASC', __FILE__, __LINE__);
103         while ($dummy = SQL_FETCHARRAY($result_admins)) {
104                 // Save row
105                 $GLOBALS['cache_instance']->addRow($dummy);
106         } // END - while
107
108         // Free memory
109         SQL_FREERESULT($result_admins);
110
111         // Close cache
112         $GLOBALS['cache_instance']->storeExtensionVersion('admins');
113         $GLOBALS['cache_instance']->finalize();
114
115         // Include loader again
116         loadInclude('inc/loader/'.basename(__FILE__));
117 }
118
119 // Next cached table are the admins_acls...
120 if (isExtensionInstalledAndNewer('admins', '0.3')) {
121         // Check for cache file
122         if (($GLOBALS['cache_instance']->loadCacheFile('admins_acls')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
123                 // Load referal system from cache
124                 $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
125         } elseif (getOutputMode() != '1') {
126                 // Create cache file here
127                 $GLOBALS['cache_instance']->init('ADMINS_ACLS');
128
129                 // Load all modules and their data (column 'id' is no longer required)
130                 $result = SQL_QUERY('SELECT `admin_id`, `action_menu`, `what_menu`, `access_mode` FROM `{?_MYSQL_PREFIX?}_admins_acls` ORDER BY admin_id, action_menu, what_menu', __FILE__, __LINE__);
131
132                 // Add all rows
133                 while ($content = SQL_FETCHARRAY($result)) {
134                         // Add row to cache file
135                         $GLOBALS['cache_instance']->addRow($content);
136                 } // END - while
137
138                 // Free memory
139                 SQL_FREERESULT($result);
140
141                 // Close cache
142                 $GLOBALS['cache_instance']->storeExtensionVersion('admins');
143                 $GLOBALS['cache_instance']->finalize();
144
145                 // Include loader again
146                 loadInclude('inc/loader/'.basename(__FILE__));
147         }
148 } // END - if
149
150 // [EOF]
151 ?>