2008-05-07 17:48:07 +01:00
|
|
|
<?php
|
2008-12-21 00:23:32 +00:00
|
|
|
/**
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-09-16 03:30:52 +01:00
|
|
|
*
|
2009-09-13 09:15:21 +01:00
|
|
|
* @category StatusNet
|
|
|
|
* @package StatusNet
|
2009-09-19 01:28:08 +01:00
|
|
|
* @author Brenda Wallace <shiny@cpan.org>
|
2010-06-08 05:27:10 +01:00
|
|
|
* @author Brion Vibber <brion@pobox.com>
|
2009-09-19 01:28:08 +01:00
|
|
|
* @author Christopher Vollick <psycotica0@gmail.com>
|
2009-09-17 09:15:15 +01:00
|
|
|
* @author CiaranG <ciaran@ciarang.com>
|
2009-09-19 01:28:08 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
2009-09-17 09:15:15 +01:00
|
|
|
* @author Evan Prodromou <evan@controlezvous.ca>
|
2009-09-19 01:28:08 +01:00
|
|
|
* @author Gina Haeussge <osd@foosel.net>
|
2010-06-08 05:27:10 +01:00
|
|
|
* @author James Walker <walkah@walkah.net>
|
2009-09-17 09:15:15 +01:00
|
|
|
* @author Jeffery To <jeffery.to@gmail.com>
|
|
|
|
* @author Mike Cochrane <mikec@mikenz.geek.nz>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
2009-09-19 01:28:08 +01:00
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
2009-09-17 09:15:15 +01:00
|
|
|
* @author Tom Adams <tom@holizz.com>
|
2010-06-08 05:27:10 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2010-01-12 02:31:49 +00:00
|
|
|
*
|
2009-09-19 01:28:08 +01:00
|
|
|
* @license GNU Affero General Public License http://www.gnu.org/licenses/
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2011-01-31 18:59:38 +00:00
|
|
|
$_startTime = microtime(true);
|
2011-01-31 21:12:56 +00:00
|
|
|
$_perfCounters = array();
|
2011-01-31 18:59:38 +00:00
|
|
|
|
2016-01-28 19:31:46 +00:00
|
|
|
// We provide all our dependencies through our own autoload.
|
|
|
|
// This will probably be configurable for distributing with
|
|
|
|
// system packages (like with Debian apt etc. where included
|
|
|
|
// libraries are maintained through repositories)
|
|
|
|
set_include_path('.'); // mainly fixes an issue where /usr/share/{pear,php*}/DB/DataObject.php is _old_ on various systems...
|
|
|
|
|
2008-05-07 17:48:07 +01:00
|
|
|
define('INSTALLDIR', dirname(__FILE__));
|
2013-09-17 23:35:49 +01:00
|
|
|
define('GNUSOCIAL', true);
|
|
|
|
define('STATUSNET', true); // compatibility
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
$user = null;
|
|
|
|
$action = null;
|
|
|
|
|
2009-02-11 19:45:06 +00:00
|
|
|
function getPath($req)
|
|
|
|
{
|
2011-10-03 14:15:53 +01:00
|
|
|
$p = null;
|
|
|
|
|
2009-02-20 21:44:56 +00:00
|
|
|
if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
|
2009-09-13 09:31:19 +01:00
|
|
|
&& array_key_exists('p', $req)
|
2009-09-13 09:32:58 +01:00
|
|
|
) {
|
2011-10-03 14:15:53 +01:00
|
|
|
$p = $req['p'];
|
2009-02-20 21:44:56 +00:00
|
|
|
} else if (array_key_exists('PATH_INFO', $_SERVER)) {
|
2009-09-19 20:06:16 +01:00
|
|
|
$path = $_SERVER['PATH_INFO'];
|
|
|
|
$script = $_SERVER['SCRIPT_NAME'];
|
|
|
|
if (substr($path, 0, mb_strlen($script)) == $script) {
|
2011-10-03 14:26:42 +01:00
|
|
|
$p = substr($path, mb_strlen($script) + 1);
|
2009-09-19 20:06:16 +01:00
|
|
|
} else {
|
2011-10-03 14:15:53 +01:00
|
|
|
$p = $path;
|
2009-09-19 20:06:16 +01:00
|
|
|
}
|
2009-02-11 03:32:38 +00:00
|
|
|
} else {
|
2011-10-03 14:15:53 +01:00
|
|
|
$p = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trim all initial '/'
|
|
|
|
|
2011-10-03 14:26:42 +01:00
|
|
|
$p = ltrim($p, '/');
|
2011-10-03 14:15:53 +01:00
|
|
|
|
|
|
|
return $p;
|
2009-02-11 03:32:38 +00:00
|
|
|
}
|
2009-02-09 16:46:26 +00:00
|
|
|
|
2009-10-03 05:40:53 +01:00
|
|
|
/**
|
|
|
|
* logs and then displays error messages
|
2009-10-03 05:48:38 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2009-10-03 05:40:53 +01:00
|
|
|
*/
|
2009-02-11 19:45:06 +00:00
|
|
|
function handleError($error)
|
|
|
|
{
|
2010-03-02 02:40:42 +00:00
|
|
|
try {
|
2009-02-11 19:45:06 +00:00
|
|
|
|
2010-03-02 02:40:42 +00:00
|
|
|
if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
|
|
|
|
return;
|
2010-03-02 02:40:42 +00:00
|
|
|
}
|
2010-03-16 23:23:19 +00:00
|
|
|
|
2016-02-26 13:53:12 +00:00
|
|
|
$logmsg = "Exception thrown: " . _ve($error->getMessage());
|
2016-03-27 15:36:45 +01:00
|
|
|
if ($error instanceof PEAR_Exception && common_config('log', 'debugtrace')) {
|
2016-02-26 13:53:12 +00:00
|
|
|
$logmsg .= " PEAR: ". $error->toText();
|
2010-03-02 02:40:42 +00:00
|
|
|
}
|
|
|
|
// DB queries often end up with a lot of newlines; merge to a single line
|
|
|
|
// for easier grepability...
|
|
|
|
$logmsg = str_replace("\n", " ", $logmsg);
|
|
|
|
common_log(LOG_ERR, $logmsg);
|
|
|
|
|
|
|
|
// @fixme backtrace output should be consistent with exception handling
|
2016-03-27 15:36:45 +01:00
|
|
|
if (common_config('log', 'debugtrace')) {
|
2010-03-02 02:40:42 +00:00
|
|
|
$bt = $error->getTrace();
|
|
|
|
foreach ($bt as $n => $line) {
|
|
|
|
common_log(LOG_ERR, formatBacktraceLine($n, $line));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($error instanceof DB_DataObject_Error
|
|
|
|
|| $error instanceof DB_Error
|
|
|
|
|| ($error instanceof PEAR_Exception && $error->getCode() == -24)
|
|
|
|
) {
|
2010-03-02 02:53:10 +00:00
|
|
|
//If we run into a DB error, assume we can't connect to the DB at all
|
|
|
|
//so set the current user to null, so we don't try to access the DB
|
|
|
|
//while rendering the error page.
|
|
|
|
global $_cur;
|
|
|
|
$_cur = null;
|
|
|
|
|
2010-03-02 02:40:42 +00:00
|
|
|
$msg = sprintf(
|
2011-04-03 23:41:21 +01:00
|
|
|
// TRANS: Database error message.
|
2011-04-04 00:01:42 +01:00
|
|
|
_('The database for %1$s is not responding correctly, '.
|
|
|
|
'so the site will not work properly. '.
|
|
|
|
'The site admins probably know about the problem, '.
|
|
|
|
'but you can contact them at %2$s to make sure. '.
|
|
|
|
'Otherwise, wait a few minutes and try again.'
|
2010-03-02 02:40:42 +00:00
|
|
|
),
|
|
|
|
common_config('site', 'name'),
|
|
|
|
common_config('site', 'email')
|
|
|
|
);
|
2011-07-26 23:56:04 +01:00
|
|
|
|
2016-01-14 01:47:28 +00:00
|
|
|
$erraction = new DBErrorAction($msg, 500);
|
|
|
|
} elseif ($error instanceof ClientException) {
|
|
|
|
$erraction = new ClientErrorAction($error->getMessage(), $error->getCode());
|
|
|
|
} elseif ($error instanceof ServerException) {
|
|
|
|
$erraction = new ServerErrorAction($error->getMessage(), $error->getCode(), $error);
|
2010-03-02 02:40:42 +00:00
|
|
|
} else {
|
2016-01-14 01:47:28 +00:00
|
|
|
// If it wasn't specified more closely which kind of exception it was
|
|
|
|
$erraction = new ServerErrorAction($error->getMessage(), 500, $error);
|
2010-03-02 02:40:42 +00:00
|
|
|
}
|
2016-01-14 01:47:28 +00:00
|
|
|
$erraction->showPage();
|
2010-03-02 02:40:42 +00:00
|
|
|
|
|
|
|
} catch (Exception $e) {
|
2011-04-03 23:41:21 +01:00
|
|
|
// TRANS: Error message.
|
2010-03-02 02:40:42 +00:00
|
|
|
echo _('An error occurred.');
|
2016-01-14 01:47:28 +00:00
|
|
|
exit(-1);
|
2010-03-02 02:40:42 +00:00
|
|
|
}
|
2009-02-11 19:45:06 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
2008-08-06 04:45:15 +01:00
|
|
|
|
2010-03-02 02:40:42 +00:00
|
|
|
set_exception_handler('handleError');
|
|
|
|
|
2014-07-10 12:10:48 +01:00
|
|
|
// quick check for fancy URL auto-detection support in installer.
|
|
|
|
if (preg_replace("/\?.+$/", "", $_SERVER['REQUEST_URI']) === preg_replace("/^\/$/", "", (dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') {
|
|
|
|
die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
|
|
|
|
}
|
|
|
|
|
2010-03-02 02:40:42 +00:00
|
|
|
require_once INSTALLDIR . '/lib/common.php';
|
|
|
|
|
2009-11-17 17:07:44 +00:00
|
|
|
/**
|
|
|
|
* Format a backtrace line for debug output roughly like debug_print_backtrace() does.
|
|
|
|
* Exceptions already have this built in, but PEAR error objects just give us the array.
|
|
|
|
*
|
|
|
|
* @param int $n line number
|
|
|
|
* @param array $line per-frame array item from debug_backtrace()
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function formatBacktraceLine($n, $line)
|
|
|
|
{
|
|
|
|
$out = "#$n ";
|
|
|
|
if (isset($line['class'])) $out .= $line['class'];
|
|
|
|
if (isset($line['type'])) $out .= $line['type'];
|
|
|
|
if (isset($line['function'])) $out .= $line['function'];
|
|
|
|
$out .= '(';
|
|
|
|
if (isset($line['args'])) {
|
|
|
|
$args = array();
|
|
|
|
foreach ($line['args'] as $arg) {
|
|
|
|
// debug_print_backtrace seems to use var_export
|
|
|
|
// but this gets *very* verbose!
|
|
|
|
$args[] = gettype($arg);
|
|
|
|
}
|
|
|
|
$out .= implode(',', $args);
|
|
|
|
}
|
|
|
|
$out .= ')';
|
|
|
|
$out .= ' called at [';
|
|
|
|
if (isset($line['file'])) $out .= $line['file'];
|
|
|
|
if (isset($line['line'])) $out .= ':' . $line['line'];
|
|
|
|
$out .= ']';
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
2010-01-28 21:52:05 +00:00
|
|
|
function setupRW()
|
2009-06-27 14:20:24 +01:00
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
2010-01-14 00:26:46 +00:00
|
|
|
static $alwaysRW = array('session', 'remember_me');
|
2009-06-27 14:20:24 +01:00
|
|
|
|
2011-05-07 01:18:38 +01:00
|
|
|
$rwdb = $config['db']['database'];
|
2010-01-28 19:27:35 +00:00
|
|
|
|
2011-05-07 01:18:38 +01:00
|
|
|
if (Event::handle('StartReadWriteTables', array(&$alwaysRW, &$rwdb))) {
|
2010-01-28 19:27:35 +00:00
|
|
|
|
2011-05-07 01:18:38 +01:00
|
|
|
// We ensure that these tables always are used
|
|
|
|
// on the master DB
|
|
|
|
|
|
|
|
$config['db']['database_rw'] = $rwdb;
|
|
|
|
$config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
|
|
|
|
|
|
|
|
foreach ($alwaysRW as $table) {
|
|
|
|
$config['db']['table_'.$table] = 'rw';
|
|
|
|
}
|
|
|
|
|
|
|
|
Event::handle('EndReadWriteTables', array($alwaysRW, $rwdb));
|
2010-01-28 19:27:35 +00:00
|
|
|
}
|
2011-05-07 01:18:38 +01:00
|
|
|
|
|
|
|
return;
|
2010-01-28 21:52:05 +00:00
|
|
|
}
|
2010-01-28 19:27:35 +00:00
|
|
|
|
2009-08-04 16:13:47 +01:00
|
|
|
function isLoginAction($action)
|
|
|
|
{
|
2013-09-30 16:13:03 +01:00
|
|
|
static $loginActions = array('login', 'recoverpassword', 'api', 'doc', 'register', 'publicxrds', 'otp', 'opensearch', 'rsd');
|
2009-08-04 16:13:47 +01:00
|
|
|
|
|
|
|
$login = null;
|
|
|
|
|
|
|
|
if (Event::handle('LoginAction', array($action, &$login))) {
|
|
|
|
$login = in_array($action, $loginActions);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $login;
|
|
|
|
}
|
|
|
|
|
2009-02-11 19:45:06 +00:00
|
|
|
function main()
|
|
|
|
{
|
2009-06-27 15:43:58 +01:00
|
|
|
global $user, $action;
|
2008-08-06 04:45:15 +01:00
|
|
|
|
2009-03-04 14:24:33 +00:00
|
|
|
if (!_have_config()) {
|
2009-09-13 09:31:19 +01:00
|
|
|
$msg = sprintf(
|
2011-04-03 23:41:21 +01:00
|
|
|
// TRANS: Error message displayed when there is no StatusNet configuration file.
|
2011-04-04 00:01:42 +01:00
|
|
|
_("No configuration file found. Try running ".
|
|
|
|
"the installation program first."
|
2009-09-13 09:31:19 +01:00
|
|
|
)
|
|
|
|
);
|
2009-03-04 14:24:33 +00:00
|
|
|
$sac = new ServerErrorAction($msg);
|
|
|
|
$sac->showPage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-28 21:52:05 +00:00
|
|
|
// Make sure RW database is setup
|
|
|
|
|
|
|
|
setupRW();
|
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
// XXX: we need a little more structure in this script
|
2008-08-06 04:45:15 +01:00
|
|
|
|
2010-01-28 21:52:05 +00:00
|
|
|
// get and cache current user (may hit RW!)
|
2008-08-06 04:45:15 +01:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
$user = common_current_user();
|
2008-05-19 15:12:19 +01:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
// initialize language env
|
2008-05-19 15:12:19 +01:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
common_init_language();
|
2008-12-03 18:34:32 +00:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
$path = getPath($_REQUEST);
|
|
|
|
|
2009-02-11 05:45:11 +00:00
|
|
|
$r = Router::get();
|
2008-12-03 18:24:21 +00:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
$args = $r->map($path);
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2010-10-21 01:22:34 +01:00
|
|
|
// If the request is HTTP and it should be HTTPS...
|
2016-02-10 00:05:02 +00:00
|
|
|
if (GNUsocial::useHTTPS() && !GNUsocial::isHTTPS()) {
|
2010-10-21 01:22:34 +01:00
|
|
|
common_redirect(common_local_url($args['action'], $args));
|
|
|
|
}
|
|
|
|
|
2017-09-10 13:02:16 +01:00
|
|
|
$args = array_merge($args, $_REQUEST ?: []);
|
2009-05-15 20:07:23 +01:00
|
|
|
|
|
|
|
Event::handle('ArgsInitialize', array(&$args));
|
2009-02-09 16:46:26 +00:00
|
|
|
|
2013-08-29 22:30:04 +01:00
|
|
|
$action = basename($args['action']);
|
2008-12-21 00:23:32 +00:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
|
|
|
|
common_redirect(common_local_url('public'));
|
2008-12-21 00:23:32 +00:00
|
|
|
}
|
2009-02-09 12:15:52 +00:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
// If the site is private, and they're not on one of the "public"
|
|
|
|
// parts of the site, redirect to login
|
|
|
|
|
2009-09-16 03:30:52 +01:00
|
|
|
if (!$user && common_config('site', 'private')
|
|
|
|
&& !isLoginAction($action)
|
2009-09-13 09:31:19 +01:00
|
|
|
&& !preg_match('/rss$/', $action)
|
2010-01-31 15:12:26 +00:00
|
|
|
&& $action != 'robotstxt'
|
|
|
|
&& !preg_match('/^Api/', $action)) {
|
|
|
|
|
2009-12-17 06:38:14 +00:00
|
|
|
// set returnto
|
|
|
|
$rargs =& common_copy_args($args);
|
|
|
|
unset($rargs['action']);
|
|
|
|
if (common_config('site', 'fancy')) {
|
|
|
|
unset($rargs['p']);
|
|
|
|
}
|
|
|
|
if (array_key_exists('submit', $rargs)) {
|
|
|
|
unset($rargs['submit']);
|
|
|
|
}
|
|
|
|
foreach (array_keys($_COOKIE) as $cookie) {
|
|
|
|
unset($rargs[$cookie]);
|
|
|
|
}
|
|
|
|
common_set_returnto(common_local_url($action, $rargs));
|
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
common_redirect(common_local_url('login'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$action_class = ucfirst($action).'Action';
|
|
|
|
|
|
|
|
if (!class_exists($action_class)) {
|
2011-04-03 23:41:21 +01:00
|
|
|
// TRANS: Error message displayed when trying to perform an undefined action.
|
2016-01-14 01:47:28 +00:00
|
|
|
throw new ClientException(_('Unknown action'), 404);
|
2008-12-21 00:23:32 +00:00
|
|
|
}
|
2016-01-14 01:47:28 +00:00
|
|
|
|
|
|
|
call_user_func("$action_class::run", $args);
|
2009-02-09 12:15:52 +00:00
|
|
|
}
|
2009-02-09 13:44:30 +00:00
|
|
|
|
2009-02-11 03:32:38 +00:00
|
|
|
main();
|
|
|
|
|
2009-02-09 13:44:30 +00:00
|
|
|
// XXX: cleanup exit() calls or add an exit handler so
|
|
|
|
// this always gets called
|
|
|
|
|
|
|
|
Event::handle('CleanupPlugin');
|