Caching again rewritten, admin functions fixed:
[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('admin')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
49         // Load cache
50         $GLOBALS['cache_array']['admin'] = $GLOBALS['cache_instance']->getArrayFromCache();
51
52         // Check if valid
53         if ((isset($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['admin_id']))) {
54                 // Check count
55                 if (count($GLOBALS['cache_array']['admin']['login']) == count($GLOBALS['cache_array']['admin']['admin_id'])) {
56                         // Rewrite the cache
57                         $admins = array();
58                         foreach ($GLOBALS['cache_array']['admin']['login'] as $idx=>$admin) {
59                                 // Rewrite all entries
60                                 foreach ($GLOBALS['cache_array']['admin'] as $key=>$entry) {
61                                         // Do we have login or regular entries?
62                                         if ($key == 'login') {
63                                                 // Login, so use id
64                                                 $admins[$key][$GLOBALS['cache_array']['admin']['admin_id'][$idx]] = $entry[$idx];
65                                         } else {
66                                                 // Regular entry so use login
67                                                 $admins[$key][$GLOBALS['cache_array']['admin']['login'][$idx]] = $entry[$idx];
68                                         }
69                                 } // END - foreach
70                         } // END - foreach
71
72                         // Transfer back to cache array and remove dummy
73                         $GLOBALS['cache_array']['admin'] = $admins;
74                         unset($admins);
75                 } else {
76                         // Nope, cache file is corrupted!
77                         $GLOBALS['cache_instance']->removeCacheFile();
78                         unset($GLOBALS['cache_array']['admin']);
79                 }
80         } else {
81                 // Nope, cache file is corrupted!
82                 $GLOBALS['cache_instance']->removeCacheFile();
83                 unset($GLOBALS['cache_array']['admin']);
84         }
85 } elseif (getOutputMode() != '1') {
86         // Create cache file
87         $GLOBALS['cache_instance']->init();
88
89         // Load every data from DB to cache file
90         $add = runFilterChain('sql_admin_extra_data');
91
92         // Query the database about this
93         $result_admins = SQL_QUERY('SELECT
94         `id` AS admin_id, `login`, `password`, `email`' . $add . '
95 FROM
96         `{?_MYSQL_PREFIX?}_admins`
97 ORDER BY
98         `login` ASC', __FILE__, __LINE__);
99         while ($dummy = SQL_FETCHARRAY($result_admins)) {
100                 // Save row
101                 $GLOBALS['cache_instance']->addRow($dummy);
102         } // END - while
103
104         // Free memory
105         SQL_FREERESULT($result_admins);
106
107         // Close cache
108         $GLOBALS['cache_instance']->storeExtensionVersion('admins');
109         $GLOBALS['cache_instance']->finalize();
110 }
111
112 // Next cached table are the admins_acls...
113 if (isExtensionInstalledAndNewer('admins', '0.3')) {
114         // Check for cache file
115         if (($GLOBALS['cache_instance']->loadCacheFile('admin_acls')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
116                 // Load referal system from cache
117                 $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
118         } elseif (getOutputMode() != '1') {
119                 // Create cache file here
120                 $GLOBALS['cache_instance']->init();
121
122                 // Load all modules and their data (column 'id' is no longer required)
123                 $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__);
124
125                 // Add all rows
126                 while ($content = SQL_FETCHARRAY($result)) {
127                         // Add row to cache file
128                         $GLOBALS['cache_instance']->addRow($content);
129                 } // END - while
130
131                 // Free memory
132                 SQL_FREERESULT($result);
133
134                 // Close cache
135                 $GLOBALS['cache_instance']->storeExtensionVersion('admins');
136                 $GLOBALS['cache_instance']->finalize();
137         }
138 } // END - if
139
140 // [EOF]
141 ?>