Start working on the new fields v2 system.
[bugdar.git] / includes / init.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2002-2007 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 error_reporting(E_ALL & ~E_NOTICE);
23
24 // ###################################################################
25 // initialize the database
26
27 define('ISSO_MT_START', microtime());
28 define('ISSO_CHECK_POST_REFERER', 1);
29
30 require_once('./includes/version.php');
31
32 require_once('./framework/kernel.php');
33 $bugsys = new ISSO();
34
35 $bugsys->setAppPath(getcwd());
36 $bugsys->setApplication('Bugdar');
37 $bugsys->setAppVersion(BUGDAR_VERSION);
38
39 if (!file_exists('./includes/config.php'))
40 {
41 echo 'includes/config.php needs to be present!';
42 exit;
43 }
44
45 require_once('./includes/config.php');
46
47 $bugsys->setDebug($debug);
48
49 $bugsys->load('db_mysql_pdo', 'db', true);
50 $db->connect($servername, $username, $password, $database, $usepconnect);
51 if ($utf8)
52 {
53 $db->query("SET NAMES utf8");
54 }
55
56 // don't use sql strict mode
57 $db->query("SET sql_mode = ''");
58
59 $bugsys->load('functions', 'funct', true);
60 $bugsys->load('xml', 'xml', true);
61
62 // change cookie expiration to one hour
63 $funct->cookieexp = 3600;
64
65 define('DEVDEBUG', $debug);
66 define('TABLE_PREFIX', $tableprefix);
67 define('COOKIE_PREFIX', $cookieprefix);
68
69 unset($database, $servername, $theuser, $password, $thepass, $usepconnect, $tableprefix, $cookieprefix);
70
71 require_once('./includes/functions_datastore.php');
72 require_once('./includes/functions.php');
73 require_once('./includes/language.php');
74
75 // ###################################################################
76 // init the big three
77 $bugsys->options = array();
78 $bugsys->userinfo = array();
79 bugdar::$datastore = array();
80
81 class bugdar
82 {
83 /*! @var \PDO The database connection instance. */
84 static $db = NULL;
85
86 /*! @var \hoplite\http\Input Input filter for the new stack. */
87 static $input = NULL;
88
89 static $options = array();
90 static $user = array();
91 static $datastore = array();
92 }
93
94 define('BUGDAR_ROOT', dirname(dirname(__FILE__)));
95
96
97 // ###################################################################
98 // Initialize Hoplite concurrently with ISSO 2.x.
99
100 define('HOPLITE_ROOT', dirname(__FILE__) . '/hoplite');
101
102 require_once HOPLITE_ROOT . '/data/model.php';
103 \hoplite\data\Model::set_db($db->dblink);
104
105 require_once HOPLITE_ROOT . '/http/input.php';
106 bugdar::$input = new \hoplite\http\Input(\hoplite\http\Input::TYPE_HTML);
107
108 bugdar::$db = $db->dblink;
109
110 // ###################################################################
111 // send nocache
112 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
113 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
114 header("Cache-Control: no-store, no-cache, must-revalidate");
115 header("Cache-Control: post-check=0, pre-check=0", false);
116 if ($utf8)
117 {
118 header("Content-Type: text/html; charset=\"utf8\"");
119 }
120 header("Pragma: no-cache");
121
122 // ###################################################################
123 // populate our caches
124 $db->showerrors = false;
125 $datastoretemp = $db->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
126 $db->showerrors = true;
127
128 if (!$datastoretemp)
129 {
130 echo '<div style="font-size: 18px"><strong>Notice:</strong> This error could be caused if you have not installed Bugdar. If this is the case, you can run the installer <a href="install/install.php">here</a>.</div><br />';
131 $db->error('Invalid SQL error');
132 }
133
134 while ($store = $db->fetch_array($datastoretemp))
135 {
136 bugdar::$datastore["$store[title]"] = unserialize($store['data']);
137 }
138
139 $bugsys->options = bugdar::$datastore['setting'];
140 $bugsys->options['columnoptions'] = unserialize($bugsys->options['columnoptions']);
141 unset(bugdar::$datastore['setting']);
142 bugdar::$options = $bugsys->options;
143
144 $bugsys->setAppVersion($bugsys->options['trackerversion']);
145
146 // ###################################################################
147 // load permissions
148
149 require_once('./includes/permissions.php');
150
151 // ###################################################################
152 // load userinfo
153
154 $authMethod = ((defined('USE_DEFAULT_AUTH_METHOD') AND constant('USE_DEFAULT_AUTH_METHOD') == 1) ? 'default' : $bugsys->options['authmethod']);
155 require_once('./includes/auth/auth_' . $authMethod . '.php');
156
157 $authClass = 'Authentication' . str_replace(' ', '', ucwords(str_replace('_', ' ', $authMethod)));
158 $bugsys->auth = $auth = new $authClass();
159
160 if ($auth->authenticateCookies())
161 {
162 $bugsys->userinfo = $auth->fetchBugdarUser();
163 $bugsys->userinfo['permissions'] = FetchUserPermissions($bugsys->userinfo);
164 $bugsys->userinfo['displaytitle'] = bugdar::$datastore['usergroup'][ $bugsys->userinfo['usergroupid'] ]['displaytitle'];
165 $bugsys->userinfo['columnoptions'] = unserialize($bugsys->userinfo['columnoptions']);
166 }
167 else
168 {
169 $bugsys->userinfo = fetch_guest_user();
170 }
171 bugdar::$user = $bugsys->userinfo;
172
173 // ###################################################################
174 // initialize localization system
175
176 $language = fetch_user_language();
177
178 $stylevar['lang'] = $language['langcode'];
179 $stylevar['lang_dir'] = $language['direction'];
180 $stylevar['charset'] = $language['charset'];
181 $stylevar['left'] = ($language['direction'] == 'ltr' ? 'left' : 'right');
182 $stylevar['right'] = ($language['direction'] == 'ltr' ? 'right' : 'left');
183
184 require_once('./includes/definitions.php');
185
186 // ###################################################################
187 // initialize the date system
188 $bugsys->load('date', 'datef', true);
189 $datef->usertz = $bugsys->userinfo['timezone'] + ($bugsys->userinfo['usedst'] * 1);
190 $bugsys->debug('user tz = ' . $bugsys->userinfo['timezone'] . '; use version = ' . $datef->usertz);
191 $datef->fetch_offset();
192
193 // ###################################################################
194 // mail system
195 $bugsys->load('mail', 'mail', true);
196 $mail->setFromAddress($bugsys->options['webmasteremail']);
197 $mail->setFromName(T('Bugdar Notification'));
198