]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - index.php
Use PHP exceptions for PEAR error handling.
[quix0rs-gnu-social.git] / index.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * @category StatusNet
20  * @package  StatusNet
21  * @author   Brenda Wallace <shiny@cpan.org>
22  * @author   Christopher Vollick <psycotica0@gmail.com>
23  * @author   CiaranG <ciaran@ciarang.com>
24  * @author   Craig Andrews <candrews@integralblue.com>
25  * @author   Evan Prodromou <evan@controlezvous.ca>
26  * @author   Gina Haeussge <osd@foosel.net>
27  * @author   Jeffery To <jeffery.to@gmail.com>
28  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
29  * @author   Robin Millette <millette@controlyourself.ca>
30  * @author   Sarven Capadisli <csarven@controlyourself.ca>
31  * @author   Tom Adams <tom@holizz.com>
32  *
33  * @license  GNU Affero General Public License http://www.gnu.org/licenses/
34  */
35
36 define('INSTALLDIR', dirname(__FILE__));
37 define('STATUSNET', true);
38 define('LACONICA', true); // compatibility
39
40 $user = null;
41 $action = null;
42
43 function getPath($req)
44 {
45     if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
46         && array_key_exists('p', $req)
47     ) {
48         return $req['p'];
49     } else if (array_key_exists('PATH_INFO', $_SERVER)) {
50         $path = $_SERVER['PATH_INFO'];
51         $script = $_SERVER['SCRIPT_NAME'];
52         if (substr($path, 0, mb_strlen($script)) == $script) {
53             return substr($path, mb_strlen($script));
54         } else {
55             return $path;
56         }
57     } else {
58         return null;
59     }
60 }
61
62 /**
63  * logs and then displays error messages
64  *
65  * @return void
66  */
67 function handleError($error)
68 {
69     try {
70
71         if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
72             return;
73         }
74
75         $logmsg = "PEAR error: " . $error->getMessage();
76         if ($error instanceof PEAR_Exception && common_config('site', 'logdebug')) {
77             $logmsg .= " : ". $error->toText();
78         }
79         // DB queries often end up with a lot of newlines; merge to a single line
80         // for easier grepability...
81         $logmsg = str_replace("\n", " ", $logmsg);
82         common_log(LOG_ERR, $logmsg);
83
84         // @fixme backtrace output should be consistent with exception handling
85         if (common_config('site', 'logdebug')) {
86             $bt = $error->getTrace();
87             foreach ($bt as $n => $line) {
88                 common_log(LOG_ERR, formatBacktraceLine($n, $line));
89             }
90         }
91         if ($error instanceof DB_DataObject_Error
92             || $error instanceof DB_Error
93             || ($error instanceof PEAR_Exception && $error->getCode() == -24)
94         ) {
95             $msg = sprintf(
96                 _(
97                     'The database for %s isn\'t responding correctly, '.
98                     'so the site won\'t work properly. '.
99                     'The site admins probably know about the problem, '.
100                     'but you can contact them at %s to make sure. '.
101                     'Otherwise, wait a few minutes and try again.'
102                 ),
103                 common_config('site', 'name'),
104                 common_config('site', 'email')
105             );
106         } else {
107             $msg = _(
108                 'An important error occured, probably related to email setup. '.
109                 'Check logfiles for more info..'
110             );
111         }
112
113         $dac = new DBErrorAction($msg, 500);
114         $dac->showPage();
115
116     } catch (Exception $e) {
117         echo _('An error occurred.');
118     }
119     exit(-1);
120 }
121
122 set_exception_handler('handleError');
123
124 require_once INSTALLDIR . '/lib/common.php';
125
126 /**
127  * Format a backtrace line for debug output roughly like debug_print_backtrace() does.
128  * Exceptions already have this built in, but PEAR error objects just give us the array.
129  *
130  * @param int $n line number
131  * @param array $line per-frame array item from debug_backtrace()
132  * @return string
133  */
134 function formatBacktraceLine($n, $line)
135 {
136     $out = "#$n ";
137     if (isset($line['class'])) $out .= $line['class'];
138     if (isset($line['type'])) $out .= $line['type'];
139     if (isset($line['function'])) $out .= $line['function'];
140     $out .= '(';
141     if (isset($line['args'])) {
142         $args = array();
143         foreach ($line['args'] as $arg) {
144             // debug_print_backtrace seems to use var_export
145             // but this gets *very* verbose!
146             $args[] = gettype($arg);
147         }
148         $out .= implode(',', $args);
149     }
150     $out .= ')';
151     $out .= ' called at [';
152     if (isset($line['file'])) $out .= $line['file'];
153     if (isset($line['line'])) $out .= ':' . $line['line'];
154     $out .= ']';
155     return $out;
156 }
157
158 function setupRW()
159 {
160     global $config;
161
162     static $alwaysRW = array('session', 'remember_me');
163
164     // We ensure that these tables always are used
165     // on the master DB
166
167     $config['db']['database_rw'] = $config['db']['database'];
168     $config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
169
170     foreach ($alwaysRW as $table) {
171         $config['db']['table_'.$table] = 'rw';
172     }
173 }
174
175 function checkMirror($action_obj, $args)
176 {
177     global $config;
178
179     if (common_config('db', 'mirror') && $action_obj->isReadOnly($args)) {
180         if (is_array(common_config('db', 'mirror'))) {
181             // "load balancing", ha ha
182             $arr = common_config('db', 'mirror');
183             $k = array_rand($arr);
184             $mirror = $arr[$k];
185         } else {
186             $mirror = common_config('db', 'mirror');
187         }
188
189         // everyone else uses the mirror
190
191         $config['db']['database'] = $mirror;
192     }
193 }
194
195 function isLoginAction($action)
196 {
197     static $loginActions =  array('login', 'recoverpassword', 'api', 'doc', 'register', 'publicxrds');
198
199     $login = null;
200
201     if (Event::handle('LoginAction', array($action, &$login))) {
202         $login = in_array($action, $loginActions);
203     }
204
205     return $login;
206 }
207
208 function main()
209 {
210     // fake HTTP redirects using lighttpd's 404 redirects
211     if (strpos($_SERVER['SERVER_SOFTWARE'], 'lighttpd') !== false) {
212         $_lighty_url = $base_url.$_SERVER['REQUEST_URI'];
213         $_lighty_url = @parse_url($_lighty_url);
214
215         if ($_lighty_url['path'] != '/index.php' && $_lighty_url['path'] != '/') {
216             $_lighty_path = preg_replace('/^'.preg_quote(common_config('site', 'path')).'\//', '', substr($_lighty_url['path'], 1));
217             $_SERVER['QUERY_STRING'] = 'p='.$_lighty_path;
218             if ($_lighty_url['query']) {
219                 $_SERVER['QUERY_STRING'] .= '&'.$_lighty_url['query'];
220             }
221             parse_str($_lighty_url['query'], $_lighty_query);
222             foreach ($_lighty_query as $key => $val) {
223                 $_GET[$key] = $_REQUEST[$key] = $val;
224             }
225             $_GET['p'] = $_REQUEST['p'] = $_lighty_path;
226         }
227     }
228     $_SERVER['REDIRECT_URL'] = preg_replace("/\?.+$/", "", $_SERVER['REQUEST_URI']);
229
230     // quick check for fancy URL auto-detection support in installer.
231     if (isset($_SERVER['REDIRECT_URL']) && (preg_replace("/^\/$/", "", (dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') === $_SERVER['REDIRECT_URL']) {
232         die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
233     }
234     global $user, $action;
235
236     Snapshot::check();
237
238     if (!_have_config()) {
239         $msg = sprintf(
240             _(
241                 "No configuration file found. Try running ".
242                 "the installation program first."
243             )
244         );
245         $sac = new ServerErrorAction($msg);
246         $sac->showPage();
247         return;
248     }
249
250     // Make sure RW database is setup
251
252     setupRW();
253
254     // XXX: we need a little more structure in this script
255
256     // get and cache current user (may hit RW!)
257
258     $user = common_current_user();
259
260     // initialize language env
261
262     common_init_language();
263
264     $path = getPath($_REQUEST);
265
266     $r = Router::get();
267
268     $args = $r->map($path);
269
270     if (!$args) {
271         $cac = new ClientErrorAction(_('Unknown page'), 404);
272         $cac->showPage();
273         return;
274     }
275
276     $args = array_merge($args, $_REQUEST);
277
278     Event::handle('ArgsInitialize', array(&$args));
279
280     $action = $args['action'];
281
282     if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
283         common_redirect(common_local_url('public'));
284         return;
285     }
286
287     // If the site is private, and they're not on one of the "public"
288     // parts of the site, redirect to login
289
290     if (!$user && common_config('site', 'private')
291         && !isLoginAction($action)
292         && !preg_match('/rss$/', $action)
293         && $action != 'robotstxt'
294         && !preg_match('/^Api/', $action)) {
295
296         // set returnto
297         $rargs =& common_copy_args($args);
298         unset($rargs['action']);
299         if (common_config('site', 'fancy')) {
300             unset($rargs['p']);
301         }
302         if (array_key_exists('submit', $rargs)) {
303             unset($rargs['submit']);
304         }
305         foreach (array_keys($_COOKIE) as $cookie) {
306             unset($rargs[$cookie]);
307         }
308         common_set_returnto(common_local_url($action, $rargs));
309
310         common_redirect(common_local_url('login'));
311         return;
312     }
313
314     $action_class = ucfirst($action).'Action';
315
316     if (!class_exists($action_class)) {
317         $cac = new ClientErrorAction(_('Unknown action'), 404);
318         $cac->showPage();
319     } else {
320         $action_obj = new $action_class();
321
322         checkMirror($action_obj, $args);
323
324         try {
325             if ($action_obj->prepare($args)) {
326                 $action_obj->handle($args);
327             }
328         } catch (ClientException $cex) {
329             $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
330             $cac->showPage();
331         } catch (ServerException $sex) { // snort snort guffaw
332             $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode());
333             $sac->showPage();
334         } catch (Exception $ex) {
335             $sac = new ServerErrorAction($ex->getMessage());
336             $sac->showPage();
337         }
338     }
339 }
340
341 main();
342
343 // XXX: cleanup exit() calls or add an exit handler so
344 // this always gets called
345
346 Event::handle('CleanupPlugin');