Code base synced, updated
[mailer.git] / inc / config / class_FrameworkConfiguration.php
1 <?php
2 /**
3  * A class for the configuration stuff implemented in a singleton design paddern
4  *
5  * NOTE: We cannot put this in inc/classes/ because it would be loaded (again)
6  * in the class loader. See inc/loader/class_ClassLoader.php for instance
7  *
8  * @see                 ClassLoader
9  * @author              Roland Haeder <webmaster@ship-simu.org>
10  * @version             0.0.0
11  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, this is free software
12  * @license             GNU GPL 3.0 or any newer version
13  * @link                http://www.ship-simu.org
14  *
15  * This program is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program. If not, see <http://www.gnu.org/licenses/>.
27  */
28 class FrameworkConfiguration implements Registerable {
29         /**
30          * The framework's main configuration array which will be initialized with
31          * hard-coded configuration data and might be overwritten/extended by
32          * config data from the database.
33          */
34         private $config = array();
35
36         /**
37          * The configuration instance itself
38          */
39         private static $cfgInstance = null;
40
41         // Some constants for the configuration system
42         const EXCEPTION_CONFIG_ENTRY_IS_EMPTY      = 0x130;
43         const EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND = 0x131;
44
45         /**
46          * Protected constructor
47          *
48          * @return      void
49          */
50         protected function __construct () {
51                 // Empty for now
52         }
53
54         /**
55          * "Create" a configuration instance
56          *
57          * @param       $enableDebug    Wether enable debug mode (default: off)
58          * @return      $cfgInstance    An instance of this configuration class
59          */
60         public final static function createFrameworkConfiguration ($enableDebug = false) {
61                 /**
62                  * For singleton design pattern because we only need a one-time-run
63                  * through the initial configuration.
64                  */
65                 if (is_null(self::$cfgInstance))  {
66                         // CFG: ERROR-REPORTING
67                         @error_reporting(E_ALL | E_STRICT);
68
69                         /**
70                          * Shall we enable the debug mode?
71                          */
72                         if ($enableDebug) {
73                                 define('DEBUG_MODE', true);
74                         }
75
76                         /**
77                          * Crate a config instance
78                          */
79                         self::$cfgInstance = new FrameworkConfiguration();
80                 }
81
82                 /**
83                  * Return the instance
84                  */
85                 return self::$cfgInstance;
86         }
87
88         /**
89          * Getter for an instance of this class
90          *
91          * @return      $cfgInstance    An instance of this class
92          */
93         public final static function getInstance () {
94                 return self::$cfgInstance;
95         }
96
97         /**
98          * Setter for default time zone (must be correct!)
99          *
100          * @param               $zone   The time-zone string (e.g. Europe/Berlin)
101          * @return      void
102          */
103         public final function setDefaultTimezone ($zone) {
104                 // At least 5.1.0 is required for this!
105                 if (version_compare(phpversion(), "5.1.0")) {
106                         @date_default_timezone_set($zone);
107                 } // END - if
108         }
109
110         /**
111          * Setter for runtime magic quotes
112          */
113         public final function setMagicQuotesRuntime ($enableQuotes) {
114                 // Cast it to boolean
115                 $enableQuotes = (boolean) $enableQuotes;
116
117                 // Set it
118                 @set_magic_quotes_runtime($enableQuotes);
119         }
120
121         /**
122          * A private include loader
123          *
124          * @param       $arrayObject    The array object with all include files
125          * @return      void
126          */
127         private function loadIncludes (ArrayObject $arrayObject) {
128                 // Load only if there are includes defined
129                 if (!is_null($arrayObject)) {
130                         for ($idx = $arrayObject->getIterator(); $idx->valid(); $idx->next()) {
131                                 // Get include file
132                                 $inc = $idx->current();
133
134                                 // Is the file name really set?
135                                 if (!empty($inc)) {
136                                         // Base path is by default added
137                                         $fqfn = $inc;
138
139                                         // Base path added? (Uni* / Windows)
140                                         if ((substr($inc, 0, 1) != "/") && (substr($inc, 1, 1) != ":")) {
141                                                 // Generate FQFN
142                                                 $fqfn = sprintf("%s/inc/extra/%s", $this->readConfig('base_path'), $inc);
143                                         } // END - if
144                                 } // END - if
145
146                                 // Include them all here
147                                 require($fqfn);
148                         }
149                 } // END - if
150         }
151
152         /**
153          * Read a configuration element.
154          *
155          * @param       $cfgEntry       The configuration element
156          * @return      $cfgValue       The fetched configuration value
157          * @throws      ConfigEntryIsEmptyException             If $cfgEntry is empty
158          * @throws      ConfigEntryNotFoundException    If a configuration element
159          *                                                                                      was not found
160          */
161         public function readConfig ($cfgEntry) {
162                 // Cast to string
163                 $cfgEntry = (string) $cfgEntry;
164
165                 // Is a valid configuration entry provided?
166                 if (empty($cfgEntry)) {
167                         // Entry is empty
168                         throw new ConfigEntryIsEmptyException($this, self::EXCEPTION_CONFIG_ENTRY_IS_EMPTY);
169                 } elseif (!isset($this->config[$cfgEntry])) {
170                         // Entry was not found!
171                         throw new ConfigEntryNotFoundException(array(__CLASS__, $cfgEntry), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND);
172                 }
173
174                 // Debug message
175                 if ((defined('DEBUG_CONFIG')) || (defined('DEBUG_ALL'))) {
176                         echo "[".__METHOD__."] Configuration entry ".$cfgEntry." requested.<br />\n";
177                 } // END - if
178
179                 // Return the requested value
180                 return $this->config[$cfgEntry];
181         }
182
183         /**
184          * Set a configuration entry.
185          *
186          * @param       $cfgEntry       The configuration entry we want to add/change
187          * @param       $cfgValue       The configuration value we want to set
188          * @return      void
189          * @throws      ConfigEntryIsEmptyException     If $cfgEntry is empty
190          */
191         public final function setConfigEntry ($cfgEntry, $cfgValue) {
192                 // Cast to string
193                 $cfgEntry = (string) $cfgEntry;
194                 $cfgValue = (string) $cfgValue;
195
196                 // Is a valid configuration entry provided?
197                 if (empty($cfgEntry)) {
198                         // Entry is empty
199                         throw new ConfigEntryIsEmptyException($this, self::EXCEPTION_CONFIG_ENTRY_IS_EMPTY);
200                 } // END - if
201
202                 // Set the configuration value
203                 $this->config[$cfgEntry] = $cfgValue;
204
205                 // Resort the array
206                 ksort($this->config);
207         }
208
209         /**
210          * Compatiblity method to return this class' name
211          *
212          * @return      __CLASS__               This class' name
213          */
214         public function __toString () {
215                 return get_class($this);
216         }
217
218         /**
219          * Dectect and return the base URL for all URLs and forms
220          *
221          * @return      $baseUrl        Detected base URL
222          */
223         public function detectBaseUrl() {
224                 // Initialize the URL
225                 $baseUrl = "http";
226
227                 // Do we have HTTPS?
228                 if (isset($_SERVER['HTTPS'])) {
229                         // Add the >s< for HTTPS
230                         $baseUrl .= "s";
231                 } // END - if
232
233                 // Construct the full URL now and secure it against CSRF attacks
234                 $baseUrl = $baseUrl . "://" . $this->detectDomain() . dirname($_SERVER['SCRIPT_NAME']);
235
236                 // Return the URL
237                 return $baseUrl;
238         }
239
240         /**
241          * Detect safely and return the full domain where this script is installed
242          *
243          * @return      $fullDomain             The detected full domain
244          */
245         public function detectDomain () {
246                 // Full domain is localnet.invalid by default
247                 $fullDomain = "localnet.invalid";
248
249                 // Is the server name there?
250                 if (isset($_SERVER['SERVER_NAME'])) {
251                         // Detect the full domain
252                         $fullDomain = htmlentities(strip_tags($_SERVER['SERVER_NAME']), ENT_QUOTES);
253                 } // END - if
254
255                 // Return it
256                 return $fullDomain;
257         }
258
259         /**
260          * Getter for field name
261          *
262          * @param       $fieldName              Field name which we shall get
263          * @return      $fieldValue             Field value from the user
264          */
265         function getField ($fieldName) {
266                 // Dummy method!
267         }
268
269         /**
270          * Updates a given field with new value
271          *
272          * @param       $fieldName              Field to update
273          * @param       $fieldValue             New value to store
274          * @return      void
275          */
276         public function updateDatabaseField ($fieldName, $fieldValue) {
277                 // Dummy method!
278         }
279 }
280
281 // [EOF]
282 ?>