3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, Control Yourself, 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 if(common_config('site', 'logdebug')) {
52 $bt = $error->getBacktrace();
53 foreach ($bt as $line) {
54 common_log(LOG_ERR, $line);
57 if ($error instanceof DB_DataObject_Error ||
58 $error instanceof DB_Error) {
59 $msg = sprintf(_('The database for %s isn\'t responding correctly, '.
60 'so the site won\'t work properly. '.
61 'The site admins probably know about the problem, '.
62 'but you can contact them at %s to make sure. '.
63 'Otherwise, wait a few minutes and try again.'),
64 common_config('site', 'name'),
65 common_config('site', 'email'));
67 $msg = _('An important error occured, probably related to email setup. '.
68 'Check logfiles for more info..');
71 $dac = new DBErrorAction($msg, 500);
76 function checkMirror($action_obj)
80 static $alwaysRW = array('session', 'remember_me');
82 if (common_config('db', 'mirror') && $action_obj->isReadOnly($args)) {
83 if (is_array(common_config('db', 'mirror'))) {
84 // "load balancing", ha ha
85 $arr = common_config('db', 'mirror');
86 $k = array_rand($arr);
89 $mirror = common_config('db', 'mirror');
92 // We ensure that these tables always are used
95 $config['db']['database_rw'] = $config['db']['database'];
96 $config['db']['ini_rw'] = INSTALLDIR.'/classes/laconica.ini';
98 foreach ($alwaysRW as $table) {
99 $config['db']['table_'.$table] = 'rw';
102 // everyone else uses the mirror
104 $config['db']['database'] = $mirror;
110 // quick check for fancy URL auto-detection support in installer.
111 if (isset($_SERVER['REDIRECT_URL']) && (preg_replace("/^\/$/","",(dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') === $_SERVER['REDIRECT_URL']) {
112 die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
114 global $user, $action;
118 if (!_have_config()) {
119 $msg = sprintf(_("No configuration file found. Try running ".
120 "the installation program first."));
121 $sac = new ServerErrorAction($msg);
126 // For database errors
128 PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
130 // XXX: we need a little more structure in this script
132 // get and cache current user
134 $user = common_current_user();
136 // initialize language env
138 common_init_language();
140 $path = getPath($_REQUEST);
144 $args = $r->map($path);
147 $cac = new ClientErrorAction(_('Unknown page'), 404);
152 $args = array_merge($args, $_REQUEST);
154 Event::handle('ArgsInitialize', array(&$args));
156 $action = $args['action'];
158 if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
159 common_redirect(common_local_url('public'));
163 // If the site is private, and they're not on one of the "public"
164 // parts of the site, redirect to login
166 if (!$user && common_config('site', 'private') &&
167 !in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
168 'recoverpassword', 'api', 'doc', 'register')) &&
169 !preg_match('/rss$/', $action)) {
170 common_redirect(common_local_url('login'));
174 $action_class = ucfirst($action).'Action';
176 if (!class_exists($action_class)) {
177 $cac = new ClientErrorAction(_('Unknown action'), 404);
180 $action_obj = new $action_class();
182 checkMirror($action_obj);
185 if ($action_obj->prepare($args)) {
186 $action_obj->handle($args);
188 } catch (ClientException $cex) {
189 $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
191 } catch (ServerException $sex) { // snort snort guffaw
192 $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode());
194 } catch (Exception $ex) {
195 $sac = new ServerErrorAction($ex->getMessage());
203 // XXX: cleanup exit() calls or add an exit handler so
204 // this always gets called
206 Event::handle('CleanupPlugin');