r297: Switching to new date formatting system; fixes problems that datelike() has.
[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 // load language information
110 require_once('./includes/class_language.php');
111 $bugsys->lang =& lang::init();
112
113 // ###################################################################
114 // initialize the date system
115 $bugsys->load('date');
116 $datef->usertz = $bugsys->userinfo['timezone'];
117 $datef->fetch_offset();
118
119 // ###################################################################
120 // Initialize usergroup system
121 $_PERMISSION = array(
122 'canviewbugs' => 1, // can view bugs
123 'cansearch' => 2, // can use the search
124 'cansubscribe' => 4, // can email subscribe
125 'canvote' => 8, // can vote on bugs
126 'cansubmitbugs' => 16, // can submit new bugs
127 'canpostcomments' => 32, // can post new comments
128 'cangetattach' => 64, // can dl attachments
129 'canputattach' => 128, // can ul attachments
130 'caneditown' => 256, // can edit own comments
131 'caneditothers' => 512, // can edit others' comments
132 'caneditinfo' => 1024, // can edit bug info -- works in conjunction with canedit(own|others)
133 'canassign' => 2048, // can assign bug
134 'canchangestatus' => 4096, // can change bug status
135 'canadminpanel' => 8192, // can view admin panel
136 'canadminbugs' => 16384, // can administrate bug functions
137 'canadminversions' => 32768, // can admin version info
138 'canadminusers' => 65536, // can admin users
139 'canadmingroups' => 131072, // can admin permission masks
140 'canadmintools' => 262144, // can use admin tools
141 'canadminfields' => 524288, // can admin custom bug fields
142 'canbeassignedto' => 1048576, // can be assigned bugs,
143 'caneditattach' => 2097152, // can edit attachments
144 'canviewhidden' => 4194304 // can see hidden bugs
145 );
146
147 foreach ($_PERMISSION AS $name => $maskvalue)
148 {
149 define(strtoupper($name), $maskvalue);
150 }
151
152 /*=====================================================================*\
153 || ###################################################################
154 || # $HeadURL$
155 || # $Id$
156 || ###################################################################
157 \*=====================================================================*/
158 ?>