r767: Linking to ISSO2 is done
[bugdar.git] / includes / init.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
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 [#]gpl[#] 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('./framework/kernel.php');
31 $bugsys = new ISSO();
32
33 $bugsys->set('application', 'Bugdar');
34 $bugsys->set('appversion', '[#]verson[#]');
35 $bugsys->set('debug', $debug);
36
37 if (!file_exists('./includes/config.php'))
38 {
39 echo 'includes/config.php needs to be present!';
40 exit;
41 }
42
43 require_once('./includes/config.php');
44
45 define('ISSO_DB_LAYER', 'db_mysql');
46 $bugsys->load('db_mysql', 'db', true);
47 $db->connect($servername, $username, $password, $database, $usepconnect);
48
49 $bugsys->load('functions', 'funct', true);
50 $bugsys->exec_sanitize_data();
51
52 $bugsys->load('xml', 'xml', true);
53
54 // change cookie expiration to one hour
55 $funct->cookieexp = 3600;
56
57 define('DEVDEBUG', $debug);
58 define('TABLE_PREFIX', $tableprefix);
59 define('COOKIE_PREFIX', $cookieprefix);
60
61 unset($database, $servername, $theuser, $password, $thepass, $usepconnect, $tableprefix, $cookieprefix);
62
63 require_once('./includes/functions_datastore.php');
64 require_once('./includes/functions.php');
65
66 // ###################################################################
67 // init the big three
68 $bugsys->options = array();
69 $bugsys->userinfo = array();
70 $bugsys->datastore = array();
71
72 // ###################################################################
73 // send nocache
74 header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
75 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
76 header("Cache-Control: no-store, no-cache, must-revalidate");
77 header("Cache-Control: post-check=0, pre-check=0", false);
78 header("Pragma: no-cache");
79
80 // ###################################################################
81 // populate our caches
82 $datastoretemp = $db->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
83 while ($store = $db->fetch_array($datastoretemp))
84 {
85 $bugsys->datastore["$store[title]"] = unserialize($store['data']);
86 }
87 $bugsys->options = $bugsys->datastore['setting'];
88 unset($bugsys->datastore['setting']);
89
90 // ###################################################################
91 // load userinfo
92 $userid = intval($bugsys->in[COOKIE_PREFIX . 'userid']);
93
94 if ($userid)
95 {
96 $userinfo = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $userid");
97 if (is_array($userinfo) AND $bugsys->in[COOKIE_PREFIX . 'authkey'] == $userinfo['authkey'])
98 {
99 $userinfo['permissions'] = (int)$bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['permissions'];
100 $userinfo['displaytitle'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['displaytitle'];
101 $bugsys->userinfo = $userinfo;
102 $funct->cookie(COOKIE_PREFIX . 'userid', $bugsys->userinfo['userid']);
103 $funct->cookie(COOKIE_PREFIX . 'authkey', $bugsys->userinfo['authkey']);
104 }
105 }
106
107 if (!$userinfo)
108 {
109 $funct->cookie(COOKIE_PREFIX . 'userid');
110 $funct->cookie(COOKIE_PREFIX . 'authkey');
111 $bugsys->userinfo = array(
112 'usergroupid' => 1,
113 'userid' => 0,
114 'email' => '',
115 'displayname' => '',
116 'showcolours' => 1,
117 'permissions' => $bugsys->datastore['usergroup'][1]['permissions'],
118 'displaytitle' => $bugsys->datastore['usergroup'][1]['displaytitle'],
119 );
120 }
121
122 // ###################################################################
123 // initialize localization system
124 $bugsys->load('localize', 'lang', true);
125
126 require_once('./includes/language.php');
127
128 $LANGDATA = fetch_user_language();
129 $lang->init_with_table(fetch_strings($LANGDATA['id']));
130
131 $stylevar['lang'] = $LANGDATA['code'];
132 $stylevar['lang_dir'] = $LANGDATA['direction'];
133 $stylevar['charset'] = $LANGDATA['charset'];
134
135 // ###################################################################
136 // initialize the date system
137 $bugsys->load('date', 'datef', true);
138 $datef->usertz = $bugsys->userinfo['timezone'];
139 $datef->fetch_offset();
140
141 // ###################################################################
142 // mail system
143 $bugsys->load('mail', 'mail', true);
144 $mail->set('from', $bugsys->options['webmasteremail']);
145 $mail->set('fromname', $lang->string('Bugdar Notification'));
146
147 // ###################################################################
148 // load permissions
149
150 require_once('./includes/permissions.php');
151
152 /*=====================================================================*\
153 || ###################################################################
154 || # $HeadURL$
155 || # $Id$
156 || ###################################################################
157 \*=====================================================================*/
158 ?>