r107: Moved template loading out of includes/init.php and into global.php
[bugdar.git] / includes / init.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 error_reporting(E_ALL & ~E_NOTICE);
14
15 // ###################################################################
16 // initialize the database
17
18 if (!file_exists('./includes/config.php'))
19 {
20 echo 'includes/config.php needs to be present!';
21 exit;
22 }
23
24 require_once('./includes/config.php');
25
26 define('ISSO_ESCAPE_STRINGS', 1);
27 define('ISSO_CHECK_POST_REFERER', 1);
28
29 require_once($pathtoisso . 'kernel.php');
30 $bugsys =& $_isso;
31 $bugsys->application = 'BugStrike';
32 $bugsys->apppath = $bugsys->fetch_sourcepath(getcwd());
33 $bugsys->appversion = '[#]version[#]';
34 $bugsys->debug = $debug;
35 $bugsys->sourcepath = $bugsys->fetch_sourcepath($pathtoisso);
36
37 $bugsys->load('db_mysql');
38 $db->database = $database;
39 $db->connect($servername, $username, $password, $usepconnect);
40
41 $bugsys->load('functions');
42 $bugsys->load('mail');
43 $bugsys->exec_sanitize_data();
44
45 define('DEVDEBUG', $debug);
46 define('TABLE_PREFIX', $tableprefix);
47 define('COOKIE_PREFIX', $cookieprefix);
48
49 unset($database, $servername, $username, $password, $usepconnect, $tableprefix, $cookieprefix);
50
51 require_once('./includes/functions_datastore.php');
52 require_once('./includes/functions.php');
53
54 // ###################################################################
55 // init the big four
56 $bugsys->options = array();
57 $bugsys->userinfo = array();
58 $bugsys->language = array();
59 $bugsys->datastore = array();
60
61 // ###################################################################
62 // populate our caches
63 $datastoretemp = $db->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
64 while ($store = $db->fetch_array($datastoretemp))
65 {
66 $bugsys->datastore["$store[title]"] = unserialize($store['data']);
67 }
68 $bugsys->options = $bugsys->datastore['setting'];
69 unset($bugsys->datastore['setting']);
70
71 $mail->from = $bugsys->options['webmasteremail'];
72 $mail->fromname = 'BugStrike Notification';
73
74 // ###################################################################
75 // load userinfo
76 $userid = intval($_COOKIE[COOKIE_PREFIX . 'userid']);
77
78 $userinfo = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $userid");
79 if (is_array($userinfo) AND $_COOKIE[COOKIE_PREFIX . 'authkey'] == $userinfo['authkey'])
80 {
81 $userinfo['permissions'] = (int)$bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['permissions'];
82 $userinfo['displaytitle'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['displaytitle'];
83 fetch_user_display_name($userinfo);
84 $userinfo['mdisplayname'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['opentag'] . $userinfo['displayname'] . $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['closetag'];
85 $bugsys->userinfo = $userinfo;
86 }
87 else
88 {
89 $funct->cookie(COOKIE_PREFIX . 'userid');
90 $funct->cookie(COOKIE_PREFIX . 'authkey');
91 $bugsys->userinfo = array(
92 'usergroupid' => 1,
93 'userid' => 0,
94 'email' => '',
95 'displayname' => '',
96 'permissions' => $bugsys->datastore['usergroup'][1]['permissions'],
97 'displaytitle' => $bugsys->datastore['usergroup'][1]['displaytitle'],
98 'mdisplayname' => $bugsys->datastore['usergroup'][1]['opentag'] . '' . $bugsys->datastore['usergroup'][1]['closetag']
99 );
100 }
101
102 // ###################################################################
103 // pull our languageid
104 if ($bugsys->userinfo['userid'])
105 {
106 $languageid = $bugsys->userinfo['languageid'];
107 $language = $bugsys->datastore['language']["$languageid"];
108 }
109 if (!$languageid)
110 {
111 foreach ($bugsys->datastore['language'] AS $language)
112 {
113 if ($language['default'])
114 {
115 $languageid = $language['languageid'];
116 $language = $bugsys->datastore['language']["$languageid"];
117 break;
118 }
119 }
120 }
121
122 $bugsys->options['lang_id'] = $language['languageid'];
123 $bugsys->options['lang_charset'] = $language['charset'];
124 $bugsys->options['lang_dir'] = $language['direction'];
125 $bugsys->options['lang_code'] = $language['languagecode'];
126
127 // ###################################################################
128 // load master language
129 /*
130 // can't use this because not everyone has MySQL >= 4.0.17 ... one day, one day
131 $phrases = $db->query("
132 (SELECT varname, phrasetext FROM " . TABLE_PREFIX . "phrase)
133 UNION DISTINCT
134 (SELECT varname AS lvarname, phrasetext AS lphrasetext FROM " . TABLE_PREFIX . "locale AS locale WHERE languageid = " . $bugsys->options['lang_id'] . ")"
135 );
136 while ($phrase = $db->fetch_array($phrases))
137 {
138 $bugsys->language["$phrase[varname]"] = $phrase['phrasetext'];
139 }
140 $db->free_result($phrases);
141 */
142
143 $phrases = $db->query("SELECT * FROM " . TABLE_PREFIX . "phrase");
144 while ($phrase = $db->fetch_array($phrases))
145 {
146 $bugsys->language["$phrase[varname]"] = $phrase['phrasetext'];
147 }
148 $db->free_result($phrases);
149
150 // ###################################################################
151 // load locale data
152 $locale = $db->query("SELECT * FROM " . TABLE_PREFIX . "locale WHERE languageid = " . intval($bugsys->options['lang_id']));
153 while ($phrase = $db->fetch_array($locale))
154 {
155 $bugsys->language["$phrase[varname]"] = $phrase['phrasetext'];
156 }
157 $db->free_result($phrases);
158
159 // ###################################################################
160 // Initialize usergroup system
161 $_PERMISSION = array(
162 'canviewbugs' => 1, // can view bugs
163 'cansearch' => 2, // can use the search
164 'cansubscribe' => 4, // can email subscribe
165 'canvote' => 8, // can vote on bugs
166 'cansubmitbugs' => 16, // can submit new bugs
167 'canpostcomments' => 32, // can post new comments
168 'cangetattach' => 64, // can dl attachments
169 'canputattach' => 128, // can ul attachments
170 'caneditown' => 256, // can edit own comments
171 'caneditothers' => 512, // can edit others' comments
172 'caneditinfo' => 1024, // can edit bug info -- works in conjunction with canedit(own|others)
173 'canassign' => 2048, // can assign bug
174 'canchangestatus' => 4096, // can change bug status
175 'canadminpanel' => 8192, // can view admin panel
176 'canadminbugs' => 16384, // can administrate bug functions
177 'canadminversions' => 32768, // can admin version info
178 'canadminusers' => 65536, // can admin users
179 'canadmingroups' => 131072, // can admin permission masks
180 'canadmintools' => 262144, // can use admin tools
181 'canadminfields' => 524288, // can admin custom bug fields
182 'canbeassignedto' => 1048576, // can be assigned bugs,
183 'caneditattach' => 2097152 // can edit attachments
184 );
185
186 foreach ($_PERMISSION AS $name => $maskvalue)
187 {
188 define(strtoupper($name), $maskvalue);
189 }
190
191 /*=====================================================================*\
192 || ###################################################################
193 || # $HeadURL$
194 || # $Id$
195 || ###################################################################
196 \*=====================================================================*/
197 ?>