3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, 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/>.
20 define('INSTALLDIR', dirname(__FILE__));
21 define('LACONICA', true);
23 require_once INSTALLDIR . '/lib/common.php';
28 function getPath($req)
30 if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
31 && array_key_exists('p', $req)) {
33 } else if (array_key_exists('PATH_INFO', $_SERVER)) {
34 return $_SERVER['PATH_INFO'];
40 function handleError($error)
42 if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
46 $logmsg = "PEAR error: " . $error->getMessage();
47 if(common_config('site', 'logdebug')) {
48 $logmsg .= " : ". $error->getDebugInfo();
50 common_log(LOG_ERR, $logmsg);
51 $msg = sprintf(_('The database for %s isn\'t responding correctly, '.
52 'so the site won\'t work properly. '.
53 'The site admins probably know about the problem, '.
54 'but you can contact them at %s to make sure. '.
55 'Otherwise, wait a few minutes and try again.'),
56 common_config('site', 'name'),
57 common_config('site', 'email'));
59 $dac = new DBErrorAction($msg, 500);
66 global $user, $action, $config;
68 if (!_have_config()) {
69 $msg = sprintf(_("No configuration file found. Try running ".
70 "the installation program first."));
71 $sac = new ServerErrorAction($msg);
76 // For database errors
78 PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
80 // XXX: we need a little more structure in this script
82 // get and cache current user
84 $user = common_current_user();
86 // initialize language env
88 common_init_language();
90 $path = getPath($_REQUEST);
94 $args = $r->map($path);
97 $cac = new ClientErrorAction(_('Unknown page'), 404);
102 $args = array_merge($args, $_REQUEST);
104 $action = $args['action'];
106 if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
107 common_redirect(common_local_url('public'));
111 // If the site is private, and they're not on one of the "public"
112 // parts of the site, redirect to login
114 if (!$user && common_config('site', 'private') &&
115 !in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
116 'recoverpassword', 'api', 'doc', 'register'))) {
117 common_redirect(common_local_url('login'));
121 $action_class = ucfirst($action).'Action';
123 if (!class_exists($action_class)) {
124 $cac = new ClientErrorAction(_('Unknown action'), 404);
127 $action_obj = new $action_class();
129 // XXX: find somewhere for this little block to live
131 if (common_config('db', 'mirror') && $action_obj->isReadOnly($args)) {
132 if (is_array(common_config('db', 'mirror'))) {
133 // "load balancing", ha ha
134 $arr = common_config('db', 'mirror');
135 $k = array_rand($arr);
138 $mirror = common_config('db', 'mirror');
140 $config['db']['database'] = $mirror;
144 if ($action_obj->prepare($args)) {
145 $action_obj->handle($args);
147 } catch (ClientException $cex) {
148 $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
150 } catch (ServerException $sex) { // snort snort guffaw
151 $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode());
153 } catch (Exception $ex) {
154 $sac = new ServerErrorAction($ex->getMessage());
162 // XXX: cleanup exit() calls or add an exit handler so
163 // this always gets called
165 Event::handle('CleanupPlugin');