2008-05-07 12:48:07 -04:00
|
|
|
<?php
|
2008-05-20 15:14:12 -04:00
|
|
|
/*
|
2008-05-14 15:26:48 -04:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 12:48:07 -04:00
|
|
|
|
|
|
|
define('INSTALLDIR', dirname(__FILE__));
|
2008-05-14 15:26:48 -04:00
|
|
|
define('LACONICA', true);
|
2008-05-07 12:48:07 -04:00
|
|
|
|
2008-05-17 11:49:42 -04:00
|
|
|
require_once(INSTALLDIR . "/lib/common.php");
|
2008-05-07 12:48:07 -04:00
|
|
|
|
2008-08-05 23:45:15 -04:00
|
|
|
# get and cache current user
|
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
# initialize language env
|
|
|
|
|
|
|
|
common_init_language();
|
|
|
|
|
2008-05-07 12:48:07 -04:00
|
|
|
$action = $_REQUEST['action'];
|
2008-05-19 10:12:19 -04:00
|
|
|
|
2008-07-04 15:41:14 -04:00
|
|
|
if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
|
2008-07-08 05:45:31 -04:00
|
|
|
common_redirect(common_local_url('public'));
|
2008-05-19 10:12:19 -04:00
|
|
|
}
|
|
|
|
|
2008-05-07 12:48:07 -04:00
|
|
|
$actionfile = INSTALLDIR."/actions/$action.php";
|
|
|
|
|
|
|
|
if (file_exists($actionfile)) {
|
2008-07-08 05:45:31 -04:00
|
|
|
require_once($actionfile);
|
|
|
|
$action_class = ucfirst($action)."Action";
|
|
|
|
$action_obj = new $action_class();
|
2008-07-24 13:12:13 -04: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-07-08 05:45:31 -04:00
|
|
|
call_user_func(array($action_obj, 'handle'), $_REQUEST);
|
2008-05-07 12:48:07 -04:00
|
|
|
} else {
|
2008-07-08 05:45:31 -04:00
|
|
|
common_user_error(_('Unknown action'));
|
2008-05-17 11:49:42 -04:00
|
|
|
}
|