r433: Merging the locale-change branch onto trunk; we now use ISSO's localize system
[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 define('ISSO_MT_START', microtime());
19
20 if (!file_exists('./includes/config.php'))
21 {
22 echo 'includes/config.php needs to be present!';
23 exit;
24 }
25
26 require_once('./includes/config.php');
27
28 define('ISSO_ESCAPE_STRINGS', 1);
29 define('ISSO_CHECK_POST_REFERER', 1);
30
31 require_once($pathtoisso . 'kernel.php');
32 $bugsys =& $_isso;
33 $bugsys->application = 'BugStrike';
34 $bugsys->apppath = $bugsys->fetch_sourcepath(getcwd());
35 $bugsys->appversion = '[#]version[#]';
36 $bugsys->debug = $debug;
37 $bugsys->sourcepath = $bugsys->fetch_sourcepath($pathtoisso);
38
39 $bugsys->load('db_mysql');
40 $db->database = $database;
41 $db->connect($servername, $username, $password, $usepconnect);
42
43 $bugsys->load('functions');
44 $bugsys->exec_sanitize_data();
45
46 $bugsys->load('xml');
47
48 // change cookie expiration to one hour
49 $funct->cookieexp = 3600;
50
51 define('DEVDEBUG', $debug);
52 define('TABLE_PREFIX', $tableprefix);
53 define('COOKIE_PREFIX', $cookieprefix);
54
55 unset($database, $servername, $username, $password, $usepconnect, $tableprefix, $cookieprefix);
56
57 define('LOG_TIME', time());
58
59 require_once('./includes/functions_datastore.php');
60 require_once('./includes/functions.php');
61
62 // ###################################################################
63 // init the big three
64 $bugsys->options = array();
65 $bugsys->userinfo = array();
66 $bugsys->datastore = array();
67
68 // ###################################################################
69 // populate our caches
70 $datastoretemp = $db->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
71 while ($store = $db->fetch_array($datastoretemp))
72 {
73 $bugsys->datastore["$store[title]"] = unserialize($store['data']);
74 }
75 $bugsys->options = $bugsys->datastore['setting'];
76 unset($bugsys->datastore['setting']);
77
78 // ###################################################################
79 // load userinfo
80 $userid = intval($bugsys->in[COOKIE_PREFIX . 'userid']);
81
82 if ($userid)
83 {
84 $userinfo = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $userid");
85 if (is_array($userinfo) AND $bugsys->in[COOKIE_PREFIX . 'authkey'] == $userinfo['authkey'])
86 {
87 $userinfo['permissions'] = (int)$bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['permissions'];
88 $userinfo['displaytitle'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['displaytitle'];
89 fetch_user_display_name($userinfo);
90 $userinfo['mdisplayname'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['opentag'] . $userinfo['displayname'] . $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['closetag'];
91 $bugsys->userinfo = $userinfo;
92 $funct->cookie(COOKIE_PREFIX . 'userid', $bugsys->userinfo['userid']);
93 $funct->cookie(COOKIE_PREFIX . 'authkey', $bugsys->userinfo['authkey']);
94 }
95 }
96
97 if (!$userinfo)
98 {
99 $funct->cookie(COOKIE_PREFIX . 'userid');
100 $funct->cookie(COOKIE_PREFIX . 'authkey');
101 $bugsys->userinfo = array(
102 'usergroupid' => 1,
103 'userid' => 0,
104 'email' => '',
105 'displayname' => '',
106 'permissions' => $bugsys->datastore['usergroup'][1]['permissions'],
107 'displaytitle' => $bugsys->datastore['usergroup'][1]['displaytitle'],
108 'mdisplayname' => $bugsys->datastore['usergroup'][1]['opentag'] . '' . $bugsys->datastore['usergroup'][1]['closetag']
109 );
110 }
111
112 // ###################################################################
113 // SECONDARY LANGUAGE SYSTEM -- EXPERIMENTAL
114 $bugsys->load('localize');
115
116 require_once('./includes/language.php');
117
118 $LANGDATA = fetch_user_language();
119 $lang->init_with_table(fetch_phrases($LANGDATA['id']));
120
121 // ###################################################################
122 // initialize the date system
123 $bugsys->load('date');
124 $datef->usertz = $bugsys->userinfo['timezone'];
125 $datef->fetch_offset();
126
127 // ###################################################################
128 // mail system
129 $bugsys->load('mail');
130 $mail->from = $bugsys->options['webmasteremail'];
131 $mail->fromname = $lang->string('BugStrike Notification');
132
133 // ###################################################################
134 // Initialize usergroup system
135 $_PERMISSION = array(
136 'canviewbugs' => 1, // can view bugs
137 'cansearch' => 2, // can use the search
138 'cansubscribe' => 4, // can email subscribe
139 'canvote' => 8, // can vote on bugs
140 'cansubmitbugs' => 16, // can submit new bugs
141 'canpostcomments' => 32, // can post new comments
142 'cangetattach' => 64, // can dl attachments
143 'canputattach' => 128, // can ul attachments
144 'caneditown' => 256, // can edit own comments
145 'caneditothers' => 512, // can edit others' comments
146 'caneditinfo' => 1024, // can edit bug info -- works in conjunction with canedit(own|others)
147 'canassign' => 2048, // can assign bug
148 'canchangestatus' => 4096, // can change bug status
149 'canadminpanel' => 8192, // can view admin panel
150 'canadminbugs' => 16384, // can administrate bug functions
151 'canadminversions' => 32768, // can admin version info
152 'canadminusers' => 65536, // can admin users
153 'canadmingroups' => 131072, // can admin permission masks
154 'canadmintools' => 262144, // can use admin tools
155 'canadminfields' => 524288, // can admin custom bug fields
156 'canbeassignedto' => 1048576, // can be assigned bugs,
157 'caneditattach' => 2097152, // can edit attachments
158 'canviewhidden' => 4194304 // can see hidden bugs
159 );
160
161 foreach ($_PERMISSION AS $name => $maskvalue)
162 {
163 define(strtoupper($name), $maskvalue);
164 }
165
166 /*=====================================================================*\
167 || ###################################################################
168 || # $HeadURL$
169 || # $Id$
170 || ###################################################################
171 \*=====================================================================*/
172 ?>