3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
21 * @author Brenda Wallace <shiny@cpan.org>
22 * @author Brion Vibber <brion@pobox.com>
23 * @author Christopher Vollick <psycotica0@gmail.com>
24 * @author CiaranG <ciaran@ciarang.com>
25 * @author Craig Andrews <candrews@integralblue.com>
26 * @author Evan Prodromou <evan@controlezvous.ca>
27 * @author Gina Haeussge <osd@foosel.net>
28 * @author James Walker <walkah@walkah.net>
29 * @author Jeffery To <jeffery.to@gmail.com>
30 * @author Mike Cochrane <mikec@mikenz.geek.nz>
31 * @author Robin Millette <millette@controlyourself.ca>
32 * @author Sarven Capadisli <csarven@controlyourself.ca>
33 * @author Tom Adams <tom@holizz.com>
34 * @author Zach Copley <zach@status.net>
35 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
37 * @license GNU Affero General Public License http://www.gnu.org/licenses/
40 // Comment in if you have xdebug installed and need a detailed backtrace:
41 //xdebug_start_trace();
43 $_startTime = microtime(true);
44 $_perfCounters = array();
46 define('INSTALLDIR', dirname(__FILE__));
47 define('GNUSOCIAL', true);
48 define('STATUSNET', true); // compatibility
53 function getPath($req)
57 if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
58 && array_key_exists('p', $req)
61 } else if (array_key_exists('PATH_INFO', $_SERVER)) {
62 $path = $_SERVER['PATH_INFO'];
63 $script = $_SERVER['SCRIPT_NAME'];
64 if (substr($path, 0, mb_strlen($script)) == $script) {
65 $p = substr($path, mb_strlen($script) + 1);
73 // Trim all initial '/'
81 * logs and then displays error messages
85 function handleError($error)
89 if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
93 $logmsg = "PEAR error: " . $error->getMessage();
94 if ($error instanceof PEAR_Exception && common_config('site', 'logdebug')) {
95 $logmsg .= " : ". $error->toText();
97 // DB queries often end up with a lot of newlines; merge to a single line
98 // for easier grepability...
99 $logmsg = str_replace("\n", " ", $logmsg);
100 common_log(LOG_ERR, $logmsg);
102 // @fixme backtrace output should be consistent with exception handling
103 if (common_config('site', 'logdebug')) {
104 $bt = $error->getTrace();
105 foreach ($bt as $n => $line) {
106 common_log(LOG_ERR, formatBacktraceLine($n, $line));
109 if ($error instanceof DB_DataObject_Error
110 || $error instanceof DB_Error
111 || ($error instanceof PEAR_Exception && $error->getCode() == -24)
113 //If we run into a DB error, assume we can't connect to the DB at all
114 //so set the current user to null, so we don't try to access the DB
115 //while rendering the error page.
120 // TRANS: Database error message.
121 _('The database for %1$s is not responding correctly, '.
122 'so the site will not work properly. '.
123 'The site admins probably know about the problem, '.
124 'but you can contact them at %2$s to make sure. '.
125 'Otherwise, wait a few minutes and try again.'
127 common_config('site', 'name'),
128 common_config('site', 'email')
131 $dac = new DBErrorAction($msg, 500);
134 $sac = new ServerErrorAction($error->getMessage(), 500, $error);
138 } catch (Exception $e) {
139 // TRANS: Error message.
140 echo _('An error occurred.');
145 set_exception_handler('handleError');
147 // quick check for fancy URL auto-detection support in installer.
148 if (preg_replace("/\?.+$/", "", $_SERVER['REQUEST_URI']) === preg_replace("/^\/$/", "", (dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') {
149 die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
152 require_once INSTALLDIR . '/lib/common.php';
155 * Format a backtrace line for debug output roughly like debug_print_backtrace() does.
156 * Exceptions already have this built in, but PEAR error objects just give us the array.
158 * @param int $n line number
159 * @param array $line per-frame array item from debug_backtrace()
162 function formatBacktraceLine($n, $line)
165 if (isset($line['class'])) $out .= $line['class'];
166 if (isset($line['type'])) $out .= $line['type'];
167 if (isset($line['function'])) $out .= $line['function'];
169 if (isset($line['args'])) {
171 foreach ($line['args'] as $arg) {
172 // debug_print_backtrace seems to use var_export
173 // but this gets *very* verbose!
174 $args[] = gettype($arg);
176 $out .= implode(',', $args);
179 $out .= ' called at [';
180 if (isset($line['file'])) $out .= $line['file'];
181 if (isset($line['line'])) $out .= ':' . $line['line'];
190 static $alwaysRW = array('session', 'remember_me');
192 $rwdb = $config['db']['database'];
194 if (Event::handle('StartReadWriteTables', array(&$alwaysRW, &$rwdb))) {
196 // We ensure that these tables always are used
199 $config['db']['database_rw'] = $rwdb;
200 $config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
202 foreach ($alwaysRW as $table) {
203 $config['db']['table_'.$table] = 'rw';
206 Event::handle('EndReadWriteTables', array($alwaysRW, $rwdb));
212 function isLoginAction($action)
214 static $loginActions = array('login', 'recoverpassword', 'api', 'doc', 'register', 'publicxrds', 'otp', 'opensearch', 'rsd');
218 if (Event::handle('LoginAction', array($action, &$login))) {
219 $login = in_array($action, $loginActions);
227 global $user, $action;
229 if (!_have_config()) {
231 // TRANS: Error message displayed when there is no StatusNet configuration file.
232 _("No configuration file found. Try running ".
233 "the installation program first."
236 $sac = new ServerErrorAction($msg);
241 // Make sure RW database is setup
245 // XXX: we need a little more structure in this script
247 // get and cache current user (may hit RW!)
249 $user = common_current_user();
251 // initialize language env
253 common_init_language();
255 $path = getPath($_REQUEST);
259 $args = $r->map($path);
262 // TRANS: Error message displayed when trying to access a non-existing page.
263 $cac = new ClientErrorAction(_('Unknown page'), 404);
268 $site_ssl = common_config('site', 'ssl');
270 // If the request is HTTP and it should be HTTPS...
271 if ($site_ssl != 'never' && !StatusNet::isHTTPS() && common_is_sensitive($args['action'])) {
272 common_redirect(common_local_url($args['action'], $args));
275 $args = array_merge($args, $_REQUEST);
277 Event::handle('ArgsInitialize', array(&$args));
279 $action = basename($args['action']);
281 if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
282 common_redirect(common_local_url('public'));
285 // If the site is private, and they're not on one of the "public"
286 // parts of the site, redirect to login
288 if (!$user && common_config('site', 'private')
289 && !isLoginAction($action)
290 && !preg_match('/rss$/', $action)
291 && $action != 'robotstxt'
292 && !preg_match('/^Api/', $action)) {
295 $rargs =& common_copy_args($args);
296 unset($rargs['action']);
297 if (common_config('site', 'fancy')) {
300 if (array_key_exists('submit', $rargs)) {
301 unset($rargs['submit']);
303 foreach (array_keys($_COOKIE) as $cookie) {
304 unset($rargs[$cookie]);
306 common_set_returnto(common_local_url($action, $rargs));
308 common_redirect(common_local_url('login'));
311 $action_class = ucfirst($action).'Action';
313 if (!class_exists($action_class)) {
314 // TRANS: Error message displayed when trying to perform an undefined action.
315 $cac = new ClientErrorAction(_('Unknown action'), 404);
319 call_user_func("$action_class::run", $args);
320 } catch (ClientException $e) {
321 $cac = new ClientErrorAction($e->getMessage(), $e->getCode());
323 } catch (ServerException $e) { // snort snort guffaw
324 $sac = new ServerErrorAction($e->getMessage(), $e->getCode(), $e);
326 } catch (Exception $e) {
327 $sac = new ServerErrorAction($e->getMessage(), 500, $e);
335 // XXX: cleanup exit() calls or add an exit handler so
336 // this always gets called
338 Event::handle('CleanupPlugin');