Add Platal::load(module, include_file = null) to load a module or an include of this...
[platal.git] / classes / plglobals.php
CommitLineData
4a28e567
FB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2008 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
47fa97fe
FB
21/** Debug levels:
22 * DEBUG_BT = show the backtraces (SQL/XMLRPC/...)
23 * DEBUG_VALID = run html validation
24 * DEBUG_SMARTY = don't hide smarty errors/warnings/notices
25 */
26define('DEBUG_BT', 1);
27define('DEBUG_VALID', 2);
28define('DEBUG_SMARTY', 4);
4a28e567
FB
29
30/** PlGlobals provides functions to read a set of configuration files and gives
31 * access to this configurations.
32 *
33 * The configuration files ares ini files with sections:
34 * <pre>
35 * [SectionName]
36 * fieldname = value
37 * </pre>
38 *
39 * With this configuration file, you'll be able to access 'value' via
40 * $globals->sectionname->fieldname. Let say 'sectionname' is a namespace
41 *
42 *
43 * You should derivate this class into a local Globals class. In this class
44 * you can specify configuration variables that belongs to the 'global' namespace
45 * (accessible via $global->fieldname). To do so, just define the fieldname
46 * in your class and set its value in the [Core] section of you ini file.
47 */
48class PlGlobals
49{
50 public $coreVersion = '0.9.17';
51
47fa97fe
FB
52 /** Debug level.
53 * This is a combination of the DEBUG_ flags. As soon as at least
54 * one flag is set, the debug mode is activated, this means:
55 * - debug panel on the top of the pages
56 * - don't hide php notices
57 * - recompile templates when they have been changed
58 */
59 public $debug = 0;
60
61 /** Access mode.
62 */
63 public $mode = 'rw'; // 'rw' => read/write,
64 // 'r' => read/only
65 // '' => site down
66
4a28e567
FB
67 /** BaseURL of the site.
68 * This is read from the HTTP headers if available but you MUST give a
69 * default value for this field in you configuration file (because, this
70 * can be used in CLI scripts that has no access no HTTP headers...)
71 *
72 * [Core]
73 * baseurl = "https//www.mysite.org/"
74 */
75 public $baseurl;
76
77 /** In case your base url is https-based, this provied an HTTP-based value
78 * for the URL.
79 */
80 public $baseurl_http;
81
82 /** paths */
83 public $spoolroot;
84
85 /** Localization configuration.
86 */
87 public $locale;
88 public $timezone;
89
90 /** You must give a list of file to load.
91 * The filenames given are relatives to the config path of your plat/al installation.
92 */
93 public function __construct(array $files)
94 {
1edb5aa5 95 $this->spoolroot = dirname(dirname(dirname(__FILE__)));
4a28e567
FB
96
97 $this->readConfig($files);
98 if (isset($_SERVER) && isset($_SERVER['SERVER_NAME'])) {
99 $base = empty($_SERVER['HTTPS']) ? 'http://' : 'https://';
100 $this->baseurl = @trim($base .$_SERVER['SERVER_NAME'].dirname($_SERVER['PHP_SELF']), '/');
101 $this->baseurl_http = @trim('http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['PHP_SELF']), '/');
102 }
103
104 $this->setLocale();
105 }
106
d95d46a7
FB
107 /** Initialiase dynamic data in the object.
108 * This is te place to read data from the database if needed.
109 */
110 public function init()
111 {
112 }
113
4a28e567
FB
114 private function readIniFile($filename)
115 {
116 $array = parse_ini_file($filename, true);
117 if (!is_array($array)) {
118 return;
119 }
120 foreach ($array as $cat => $conf) {
121 $c = strtolower($cat);
122 foreach ($conf as $k => $v) {
123 if ($c == 'core' && property_exists($this, $k)) {
124 $this->$k=$v;
125 } else {
126 if (!isset($this->$c)) {
127 $this->$c = new stdClass;
128 }
129 $this->$c->$k = $v;
130 }
131 }
132 }
133 }
134
135 private function readConfig(array $files)
136 {
137 foreach ($files as $file) {
138 $this->readIniFile($this->spoolroot . '/configs/' . $file);
139 }
140 if (file_exists($this->spoolroot.'/spool/conf/platal.dynamic.conf')) {
141 $this->readIniFile($this->spoolroot.'/spool/conf/platal.dynamic.conf');
142 }
143 }
144
145 /** Writes an ini file separated in categories
146 * @param filename the name of the file to write (overwrite existing)
147 * @param categories an array of categories (array of keys and values)
148 */
149 private function writeIniFile($filename, &$categories)
150 {
151 // [category]
152 // key = value
153 $f = fopen($filename, 'w');
154 foreach ($categories as $cat => $conf) {
155 fwrite($f, '; {{{ '.$cat."\n\n");
156 fwrite($f, '['.$cat.']'."\n\n");
157 foreach ($conf as $k => $v) {
158 fwrite($f, $k.' = "'.str_replace('"','\\"',$v).'"'."\n");
159 }
160 fwrite($f, "\n".'; }}}'."\n");
161 }
162 fwrite($f, '; vim:set syntax=dosini foldmethod=marker:'."\n");
163 fclose($f);
164 }
165
166 /** Change dynamic config file
167 * @param conf array of keys and values to add or replace
168 * @param category name of category to change
169 *
170 * Opens the dynamic conf file and set values from conf in specified
171 * category. Updates config vars too.
172 */
173 public function changeDynamicConfig($conf, $category = 'Core')
174 {
175 $dynamicfile = $this->spoolroot.'/spool/conf/platal.dynamic.conf';
176 if (file_exists($dynamicfile)) {
177 $array = parse_ini_file($dynamicfile, true);
178 } else {
179 $array = null;
180 }
181 if (!is_array($array)) {
182 // dynamic conf is empty
183 $array = array($category => $conf);
184 } else {
185 // looks for a category that looks the same (case insensitive)
186 $same = false;
187 foreach ($array as $m => &$c) {
188 if (strtolower($m) == strtolower($category)) {
189 $same = $m;
190 break;
191 }
192 }
193 if (!$same) {
194 // this category doesn't exist yet
195 $array[$category] = $conf;
196 } else {
197 // this category already exists
198 $conflower = array();
199 foreach ($conf as $k => $v) {
200 $conflower[strtolower($k)] = $v;
201 }
202 // $conflower is now same as $conf but with lower case keys
203 // replaces values of keys that already exists
204 foreach ($array[$same] as $k => $v) {
205 if (isset($conflower[strtolower($k)])) {
206 $array[$same][$k] = $conflower[strtolower($k)];
207 unset($conflower[strtolower($k)]);
208 }
209 }
210 // add new keys
211 foreach ($conf as $k => $v) {
212 if (isset($conflower[strtolower($k)])) {
213 $array[$same][$k] = $v;
214 }
215 }
216 }
217 }
218 // writes the file over
219 $this->writeIniFile($dynamicfile, $array);
220 // rereads the new config to correctly set vars
221 $this->readIniFile($dynamicfile);
222 }
223
224 public function bootstrap($conf, $callback, $category = 'Core')
225 {
226 $bootstrap = false;
227 $category = strtolower($category);
228 foreach ($conf as $key) {
229 if (!isset($this->$category->$key)) {
230 $bootstrap = true;
231 break;
232 }
233 }
234 if ($bootstrap) {
235 call_user_func($callback);
236 }
237 }
238
239 private function setLocale()
240 {
241 setlocale(LC_MESSAGES, $this->locale);
242 setlocale(LC_TIME, $this->locale);
243 setlocale(LC_CTYPE, $this->locale);
244 date_default_timezone_set($this->timezone);
245 mb_internal_encoding("UTF-8");
246 }
247}
248
249// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
250?>