r258: Switching to the new class_language.php phrase 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 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 // change cookie expiration to one hour
46 $funct->cookieexp = 3600;
47
48 define('DEVDEBUG', $debug);
49 define('TABLE_PREFIX', $tableprefix);
50 define('COOKIE_PREFIX', $cookieprefix);
51
52 unset($database, $servername, $username, $password, $usepconnect, $tableprefix, $cookieprefix);
53
54 define('LOG_TIME', time());
55
56 require_once('./includes/functions_datastore.php');
57 require_once('./includes/functions.php');
58
59 // ###################################################################
60 // init the big three
61 $bugsys->options = array();
62 $bugsys->userinfo = array();
63 $bugsys->datastore = array();
64
65 // ###################################################################
66 // populate our caches
67 $datastoretemp = $db->query("SELECT * FROM " . TABLE_PREFIX . "datastore");
68 while ($store = $db->fetch_array($datastoretemp))
69 {
70 $bugsys->datastore["$store[title]"] = unserialize($store['data']);
71 }
72 $bugsys->options = $bugsys->datastore['setting'];
73 unset($bugsys->datastore['setting']);
74
75 $mail->from = $bugsys->options['webmasteremail'];
76 $mail->fromname = 'BugStrike Notification';
77
78 // ###################################################################
79 // load userinfo
80 $userid = intval($_COOKIE[COOKIE_PREFIX . 'userid']);
81
82 $userinfo = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = $userid");
83 if (is_array($userinfo) AND $_COOKIE[COOKIE_PREFIX . 'authkey'] == $userinfo['authkey'])
84 {
85 $userinfo['permissions'] = (int)$bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['permissions'];
86 $userinfo['displaytitle'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['displaytitle'];
87 fetch_user_display_name($userinfo);
88 $userinfo['mdisplayname'] = $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['opentag'] . $userinfo['displayname'] . $bugsys->datastore['usergroup']["$userinfo[usergroupid]"]['closetag'];
89 $bugsys->userinfo = $userinfo;
90 $funct->cookie(COOKIE_PREFIX . 'userid', $bugsys->userinfo['userid']);
91 $funct->cookie(COOKIE_PREFIX . 'authkey', $bugsys->userinfo['authkey']);
92 }
93 else
94 {
95 $funct->cookie(COOKIE_PREFIX . 'userid');
96 $funct->cookie(COOKIE_PREFIX . 'authkey');
97 $bugsys->userinfo = array(
98 'usergroupid' => 1,
99 'userid' => 0,
100 'email' => '',
101 'displayname' => '',
102 'permissions' => $bugsys->datastore['usergroup'][1]['permissions'],
103 'displaytitle' => $bugsys->datastore['usergroup'][1]['displaytitle'],
104 'mdisplayname' => $bugsys->datastore['usergroup'][1]['opentag'] . '' . $bugsys->datastore['usergroup'][1]['closetag']
105 );
106 }
107
108 // ###################################################################
109 // pull our languageid
110 if ($bugsys->userinfo['userid'])
111 {
112 $languageid = $bugsys->userinfo['languageid'];
113 $language = $bugsys->datastore['language']["$languageid"];
114 }
115 if (!$languageid)
116 {
117 foreach ($bugsys->datastore['language'] AS $language)
118 {
119 if ($language['default'])
120 {
121 $languageid = $language['languageid'];
122 $language = $bugsys->datastore['language']["$languageid"];
123 break;
124 }
125 }
126 }
127
128 $bugsys->options['lang_id'] = $language['languageid'];
129 $bugsys->options['lang_charset'] = $language['charset'];
130 $bugsys->options['lang_dir'] = $language['direction'];
131 $bugsys->options['lang_code'] = $language['languagecode'];
132
133 // ###################################################################
134 // load language information
135 require_once('./includes/class_language.php');
136 $bugsys->lang =& lang::init($languageid);
137
138 // ###################################################################
139 // Initialize usergroup system
140 $_PERMISSION = array(
141 'canviewbugs' => 1, // can view bugs
142 'cansearch' => 2, // can use the search
143 'cansubscribe' => 4, // can email subscribe
144 'canvote' => 8, // can vote on bugs
145 'cansubmitbugs' => 16, // can submit new bugs
146 'canpostcomments' => 32, // can post new comments
147 'cangetattach' => 64, // can dl attachments
148 'canputattach' => 128, // can ul attachments
149 'caneditown' => 256, // can edit own comments
150 'caneditothers' => 512, // can edit others' comments
151 'caneditinfo' => 1024, // can edit bug info -- works in conjunction with canedit(own|others)
152 'canassign' => 2048, // can assign bug
153 'canchangestatus' => 4096, // can change bug status
154 'canadminpanel' => 8192, // can view admin panel
155 'canadminbugs' => 16384, // can administrate bug functions
156 'canadminversions' => 32768, // can admin version info
157 'canadminusers' => 65536, // can admin users
158 'canadmingroups' => 131072, // can admin permission masks
159 'canadmintools' => 262144, // can use admin tools
160 'canadminfields' => 524288, // can admin custom bug fields
161 'canbeassignedto' => 1048576, // can be assigned bugs,
162 'caneditattach' => 2097152, // can edit attachments
163 'canviewhidden' => 4194304 // can see hidden bugs
164 );
165
166 foreach ($_PERMISSION AS $name => $maskvalue)
167 {
168 define(strtoupper($name), $maskvalue);
169 }
170
171 /*=====================================================================*\
172 || ###################################################################
173 || # $HeadURL$
174 || # $Id$
175 || ###################################################################
176 \*=====================================================================*/
177 ?>