Previous fix fixed, a lot constants rewritten (unfinished)
[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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } // END - if
39
40 // Make cacheInstance global
41 global $cacheInstance;
42
43 // Let's start with the admins table...
44 if (($cacheInstance->loadCacheFile("admins")) && ($cacheInstance->extensionVersionMatches("admins"))) {
45         // Load cache
46         global $cacheArray;
47         $cacheArray['admins'] = $cacheInstance->getArrayFromCache();
48
49         // Check if valid
50         if ((isset($cacheArray['admins']['login'])) && (is_array($cacheArray['admins']['login'])) && (is_array($cacheArray['admins']['aid']))) {
51                 // Check count
52                 if (count($cacheArray['admins']['login']) == count($cacheArray['admins']['aid'])) {
53                         // Get "id map"
54                         $idMap = $cacheArray['admins']['aid'];
55
56                         // Rewrite the cache array
57                         for ($idx = (count($idMap) - 1); $idx >= 0; $idx--) {
58                                 // Rewrite all entries
59                                 foreach ($cacheArray['admins'] as $key=>$entryArray) {
60                                         // Rewrite the entry
61                                         if ($key == "aid") {
62                                                 // Rewrite admin id (use login name as index)
63                                                 $cacheArray['admins']['aid'][$cacheArray['admins']['login'][$idx]] = $entryArray[$idx];
64                                         } else {
65                                                 // Rewrite regular entry
66                                                 $cacheArray['admins'][$key][$idMap[$idx]] = $entryArray[$idx];
67                                         }
68
69                                         // Is the last entry reached?
70                                         if ($idx == 0) {
71                                                 // Remove it
72                                                 unset($cacheArray['admins'][$key][0]);
73                                         } // END - if
74                                 } // END - if
75                         } // END - for
76                 } else {
77                         // Nope, cache file is corrupted!
78                         $cacheInstance->destroyCacheFile();
79                         unset($cacheArray['admins']);
80                 }
81         } else {
82                 // Nope, cache file is corrupted!
83                 $cacheInstance->destroyCacheFile();
84                 unset($cacheArray['admins']);
85         }
86 } elseif ((getConfig('cache_admins') == "Y") && ($CSS != "1") && ($CSS != "-1")) {
87         // Create cache file
88         $cacheInstance->init("ADMINS");
89         $cacheInstance->storeExtensionVersion("admins");
90
91         // Load every data from DB to cache file
92         $ADD = RUN_FILTER('sql_admin_extra_data');
93
94         // Query the database about this
95         $result_admins = SQL_QUERY("SELECT id AS aid, login, password, email".$ADD."
96 FROM `{!_MYSQL_PREFIX!}_admins`
97 ORDER BY login", __FILE__, __LINE__);
98         while($dummy = SQL_FETCHARRAY($result_admins)) {
99                 // Save row
100                 $cacheInstance->addRow($dummy);
101         } // END - while
102
103         // Free memory
104         SQL_FREERESULT($result_admins);
105
106         // Close cache
107         $cacheInstance->finalize();
108
109         // Reload the cache
110         require(__FILE__);
111 }
112
113 // Next cached table are the admins_acls...
114 if (GET_EXT_VERSION("admins") >= "0.3") {
115         // Check for cache file
116         if (($cacheInstance->loadCacheFile("admins_acls")) && ($cacheInstance->extensionVersionMatches("admins"))) {
117                 // Load referal system from cache
118                 global $cacheArray;
119                 $cacheArray['admin_acls'] = $cacheInstance->getArrayFromCache();
120         } elseif ((getConfig('cache_acls') == "Y") && ($CSS != "1") && ($CSS != "-1")) {
121                 // Create cache file here
122                 $cacheInstance->init("ADMINS_ACLS");
123                 $cacheInstance->storeExtensionVersion("admins");
124
125                 // Load all modules and their data
126                 $result = SQL_QUERY("SELECT id, admin_id, action_menu, what_menu, access_mode FROM `{!_MYSQL_PREFIX!}_admins_acls` ORDER BY admin_id, action_menu, what_menu", __FILE__, __LINE__);
127
128                 // Add all rows
129                 while ($data = SQL_FETCHARRAY($result)) {
130                         // Add row to cache file
131                         $cacheInstance->addRow($data);
132                 } // END - while
133
134                 // Free memory
135                 SQL_FREERESULT($result);
136
137                 // Close cache
138                 $cacheInstance->finalize();
139
140                 // Reload the cache
141                 require(__FILE__);
142         }
143 } // END - if
144
145 //
146 ?>