r21: Changed all bitwise operations to use can_perform() (new: includes/functions...
[bugdar.git] / includes / init.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # [#]app[#] [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # All parts of this file are ©2003-[#]year[#] Iris Studios, Inc. No # ||
7 || # part of this file may be reproduced in any way: part or whole. # ||
8 || # --------------------------------------------------------------- # ||
9 || # ©2003 - [#]year[#] Iris Studios, Inc. | http://www.iris-studios.com # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 error_reporting(E_ALL & ~E_NOTICE);
14
15 // ###################################################################
16 if (PHP_VERSION < '4.1.0')
17 {
18 echo 'you do not have a new enough version of PHP';
19 exit;
20 }
21
22 // ###################################################################
23 // set quotes runtime
24 set_magic_quotes_runtime(0);
25
26 // ###################################################################
27 // Initialize the database
28 if (!file_exists('./includes/config.php'))
29 {
30 echo 'includes/config.php needs to be present!';
31 exit;
32 }
33
34 require_once('./includes/config.php');
35 require_once('./includes/db_mysql.php');
36
37 $DB_sql = new DB_Sql();
38 $DB_sql->appname = '[#]app[#]';
39 $DB_sql->database = $database;
40 $DB_sql->connect($servername, $username, $password, $usepconnect);
41 define('DEVDEBUG', $debug);
42 define('TABLE_PREFIX', $tableprefix);
43 define('COOKIE_PREFIX', $cookieprefix);
44 unset($database, $servername, $username, $password, $usepconnect, $tableprefix, $cookieprefix);
45
46 // ###################################################################
47 // Initialize our environment
48 require_once('./includes/functions_datastore.php');
49 require_once('./includes/functions.php');
50 class BugTracker
51 {
52 var $options = array();
53 var $userinfo = array();
54 var $language = array();
55 var $datastore = array();
56
57 function BugTracker()
58 {
59 global $DB_sql, $vars;
60
61 // Fetch all the datastore caches
62 $datastoretemp = $DB_sql->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
63 while ($store = $DB_sql->fetch_array($datastoretemp))
64 {
65 $this->datastore["$store[title]"] = unserialize($store['data']);
66 }
67
68 // Assign options and fetch the userinfo
69 $this->options = $this->datastore['setting'];
70 unset($this->datastore['setting']);
71 $this->userinfo = (array)$this->fetch_userinfo(-1, true);
72
73 // Pull our languageid
74 if ($this->userinfo['userid'])
75 {
76 $languageid = $this->userinfo['languageid'];
77 $language = $this->datastore['language']["$languageid"];
78 }
79 if (!$languageid)
80 {
81 foreach ($this->datastore['language'] AS $language)
82 {
83 if ($language['default'])
84 {
85 $languageid = $language['languageid'];
86 $language = $this->datastore['language']["$languageid"];
87 break;
88 }
89 }
90 }
91
92 // Load language system
93 if (file_exists("./locale/$language[filename]"))
94 {
95 require_once("./locale/$language[filename]");
96 $this->language = $language;
97 $this->options['lang_charset'] = $cfg['charset'];
98 $this->options['lang_dir'] = $cfg['direction'];
99 $this->options['lang_code'] = $cfg['languagecode'];
100 unset($language);
101 }
102 else
103 {
104 echo "language file (locale/$language[filename]) could not be loaded!";
105 exit;
106 }
107 }
108
109 function fetch_userinfo($userid = -1, $verify_password = false)
110 {
111 global $DB_sql;
112
113 // Get the userid if not specified
114 if ($userid == -1)
115 {
116 $userid = intval($_COOKIE[COOKIE_PREFIX . 'userid']);
117 }
118
119 // Set the falseinfo stuff
120 $falseinfo = array(
121 'usergroupid' => 1,
122 'userid' => 0,
123 'email' => '',
124 'displayname' => '',
125 'permissions' => $this->datastore['usergroup'][1]['permissions'],
126 'displaytitle' => $this->datastore['usergroup'][1]['displaytitle'],
127 'mdisplayname' => $this->datastore['usergroup'][1]['opentag'] . '' . $this->datastore['usergroup'][1]['closetag']
128 );
129
130 // Get the userinfo
131 $userinfo = $DB_sql->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $userid");
132 if (is_array($userinfo))
133 {
134 $userinfo['permissions'] = (int)$this->datastore['usergroup']["$userinfo[usergroupid]"]['permissions'];
135 $userinfo['displaytitle'] = $this->datastore['usergroup']["$userinfo[usergroupid]"]['displaytitle'];
136 fetch_user_display_name($userinfo);
137 $userinfo['mdisplayname'] = $this->datastore['usergroup']["$userinfo[usergroupid]"]['opentag'] . $userinfo['displayname'] . $this->datastore['usergroup']["$userinfo[usergroupid]"]['closetag'];
138 // Verify that the cookie isn't fake
139 if ($verify_password)
140 {
141 if ($_COOKIE[COOKIE_PREFIX . 'authkey'] == $userinfo['authkey'])
142 {
143 return $userinfo;
144 }
145 else
146 {
147 mysetcookie(COOKIE_PREFIX . 'userid');
148 mysetcookie(COOKIE_PREFIX . 'authkey');
149 return $falseinfo;
150 }
151 }
152 else
153 {
154 return $userinfo;
155 }
156 }
157 else
158 {
159 mysetcookie(COOKIE_PREFIX . 'userid');
160 mysetcookie(COOKIE_PREFIX . 'authkey');
161 return $falseinfo;
162 }
163 }
164 }
165
166 $bugsys = new BugTracker();
167
168 // ###################################################################
169 // Initialize usergroup system
170 $_PERMISSION = array(
171 'canviewbugs' => 1, // can view bugs
172 'cansearch' => 2, // can use the search
173 'cansubscribe' => 4, // can email subscribe
174 'canvote' => 8, // can vote on bugs
175 'cansubmitbugs' => 16, // can submit new bugs
176 'canpostcomments' => 32, // can post new comments
177 'cangetattach' => 64, // can dl attachments
178 'canputattach' => 128, // can ul attachments
179 'caneditown' => 256, // can edit own comments
180 'caneditothers' => 512, // can edit others' comments
181 'caneditinfo' => 1024, // can edit bug info -- works in conjunction with canedit(own|others)
182 'canassign' => 2048, // can assign bug
183 'canchangestatus' => 4096, // can change bug status
184 'canadminpanel' => 8192, // can view admin panel
185 'canadminbugs' => 16384, // can administrate bug functions
186 'canadminversions' => 32768, // can admin version info
187 'canadminusers' => 65536, // can admin users
188 'canadmingroups' => 131072, // can admin permission masks
189 'canadmintools' => 262144, // can use admin tools
190 'canadminfields' => 524288, // can admin custom bug fields
191 'canbeassignedto' => 1048576 // can be assigned bugs
192 );
193
194 foreach ($_PERMISSION AS $name => $maskvalue)
195 {
196 define(strtoupper($name), $maskvalue);
197 }
198
199 /*=====================================================================*\
200 || ###################################################################
201 || # $HeadURL$
202 || # $Id$
203 || ###################################################################
204 \*=====================================================================*/
205 ?>