2008-05-07 17:48:07 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, 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/>.
|
|
|
|
*/
|
2008-05-07 17:48:07 +01:00
|
|
|
|
|
|
|
define('INSTALLDIR', dirname(__FILE__));
|
2008-05-14 20:26:48 +01:00
|
|
|
define('LACONICA', true);
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-17 16:49:42 +01:00
|
|
|
require_once(INSTALLDIR . "/lib/common.php");
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-08-06 04:45:15 +01:00
|
|
|
# get and cache current user
|
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
# initialize language env
|
|
|
|
|
|
|
|
common_init_language();
|
|
|
|
|
2008-05-07 17:48:07 +01:00
|
|
|
$action = $_REQUEST['action'];
|
2008-05-19 15:12:19 +01:00
|
|
|
|
2008-07-04 20:41:14 +01:00
|
|
|
if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
|
2008-07-08 10:45:31 +01:00
|
|
|
common_redirect(common_local_url('public'));
|
2008-05-19 15:12:19 +01:00
|
|
|
}
|
|
|
|
|
2008-12-03 18:34:32 +00:00
|
|
|
// If the site is private, and they're not on one of the "public"
|
|
|
|
// parts of the site, redirect to login
|
|
|
|
|
|
|
|
if (!$user && common_config('site', 'private') &&
|
2008-12-03 18:52:54 +00:00
|
|
|
!in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
|
|
|
|
'recoverpassword', 'api', 'doc', 'register')))
|
2008-12-03 18:34:32 +00:00
|
|
|
{
|
2008-12-03 18:24:21 +00:00
|
|
|
common_redirect(common_local_url('login'));
|
|
|
|
}
|
|
|
|
|
2008-05-07 17:48:07 +01:00
|
|
|
$actionfile = INSTALLDIR."/actions/$action.php";
|
|
|
|
|
|
|
|
if (file_exists($actionfile)) {
|
2008-07-08 10:45:31 +01:00
|
|
|
require_once($actionfile);
|
|
|
|
$action_class = ucfirst($action)."Action";
|
|
|
|
$action_obj = new $action_class();
|
2008-07-24 18:12:13 +01:00
|
|
|
if ($config['db']['mirror'] && $action_obj->is_readonly()) {
|
|
|
|
if (is_array($config['db']['mirror'])) {
|
|
|
|
# "load balancing", ha ha
|
|
|
|
$k = array_rand($config['db']['mirror']);
|
|
|
|
$mirror = $config['db']['mirror'][$k];
|
|
|
|
} else {
|
|
|
|
$mirror = $config['db']['mirror'];
|
|
|
|
}
|
|
|
|
$config['db']['database'] = $mirror;
|
|
|
|
}
|
2008-12-03 17:32:25 +00:00
|
|
|
if (call_user_func(array($action_obj, 'prepare'), $_REQUEST)) {
|
2008-12-02 04:05:49 +00:00
|
|
|
call_user_func(array($action_obj, 'handle'), $_REQUEST);
|
|
|
|
}
|
2008-05-07 17:48:07 +01:00
|
|
|
} else {
|
2008-07-08 10:45:31 +01:00
|
|
|
common_user_error(_('Unknown action'));
|
2008-05-17 16:49:42 +01:00
|
|
|
}
|