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