]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - index.php
Removed plugin Google-Analytics as this is free/libre and decentralized
[quix0rs-gnu-social.git] / index.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  *
19  * @category StatusNet
20  * @package  StatusNet
21  * @author   Brenda Wallace <shiny@cpan.org>
22  * @author   Brion Vibber <brion@pobox.com>
23  * @author   Christopher Vollick <psycotica0@gmail.com>
24  * @author   CiaranG <ciaran@ciarang.com>
25  * @author   Craig Andrews <candrews@integralblue.com>
26  * @author   Evan Prodromou <evan@controlezvous.ca>
27  * @author   Gina Haeussge <osd@foosel.net>
28  * @author   James Walker <walkah@walkah.net>
29  * @author   Jeffery To <jeffery.to@gmail.com>
30  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
31  * @author   Robin Millette <millette@controlyourself.ca>
32  * @author   Sarven Capadisli <csarven@controlyourself.ca>
33  * @author   Tom Adams <tom@holizz.com>
34  * @author   Zach Copley <zach@status.net>
35  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
36  *
37  * @license  GNU Affero General Public License http://www.gnu.org/licenses/
38  */
39
40 $_startTime = microtime(true);
41 $_perfCounters = array();
42
43 define('INSTALLDIR', dirname(__FILE__));
44 define('GNUSOCIAL', true);
45 define('STATUSNET', true);  // compatibility
46
47 $user = null;
48 $action = null;
49
50 function getPath($req)
51 {
52     $p = null;
53
54     if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
55         && array_key_exists('p', $req)
56     ) {
57         $p = $req['p'];
58     } else if (array_key_exists('PATH_INFO', $_SERVER)) {
59         $path = $_SERVER['PATH_INFO'];
60         $script = $_SERVER['SCRIPT_NAME'];
61         if (substr($path, 0, mb_strlen($script)) == $script) {
62             $p = substr($path, mb_strlen($script) + 1);
63         } else {
64             $p = $path;
65         }
66     } else {
67         $p = null;
68     }
69
70     // Trim all initial '/'
71
72     $p = ltrim($p, '/');
73
74     return $p;
75 }
76
77 /**
78  * logs and then displays error messages
79  *
80  * @return void
81  */
82 function handleError($error)
83 {
84     try {
85
86         if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
87             return;
88         }
89
90         $logmsg = "PEAR error: " . $error->getMessage();
91         if ($error instanceof PEAR_Exception && common_config('site', 'logdebug')) {
92             $logmsg .= " : ". $error->toText();
93         }
94         // DB queries often end up with a lot of newlines; merge to a single line
95         // for easier grepability...
96         $logmsg = str_replace("\n", " ", $logmsg);
97         common_log(LOG_ERR, $logmsg);
98
99         // @fixme backtrace output should be consistent with exception handling
100         if (common_config('site', 'logdebug')) {
101             $bt = $error->getTrace();
102             foreach ($bt as $n => $line) {
103                 common_log(LOG_ERR, formatBacktraceLine($n, $line));
104             }
105         }
106         if ($error instanceof DB_DataObject_Error
107             || $error instanceof DB_Error
108             || ($error instanceof PEAR_Exception && $error->getCode() == -24)
109         ) {
110             //If we run into a DB error, assume we can't connect to the DB at all
111             //so set the current user to null, so we don't try to access the DB
112             //while rendering the error page.
113             global $_cur;
114             $_cur = null;
115
116             $msg = sprintf(
117                 // TRANS: Database error message.
118                 _('The database for %1$s is not responding correctly, '.
119                   'so the site will not work properly. '.
120                   'The site admins probably know about the problem, '.
121                   'but you can contact them at %2$s to make sure. '.
122                   'Otherwise, wait a few minutes and try again.'
123                 ),
124                 common_config('site', 'name'),
125                 common_config('site', 'email')
126             );
127
128             $dac = new DBErrorAction($msg, 500);
129             $dac->showPage();
130         } else {
131             $sac = new ServerErrorAction($error->getMessage(), 500, $error);
132             $sac->showPage();
133         }
134
135     } catch (Exception $e) {
136         // TRANS: Error message.
137         echo _('An error occurred.');
138     }
139     exit(-1);
140 }
141
142 set_exception_handler('handleError');
143
144 // quick check for fancy URL auto-detection support in installer.
145 if (preg_replace("/\?.+$/", "", $_SERVER['REQUEST_URI']) === preg_replace("/^\/$/", "", (dirname($_SERVER['REQUEST_URI']))) . '/check-fancy') {
146     die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
147 }
148
149 require_once INSTALLDIR . '/lib/common.php';
150
151 /**
152  * Format a backtrace line for debug output roughly like debug_print_backtrace() does.
153  * Exceptions already have this built in, but PEAR error objects just give us the array.
154  *
155  * @param int $n line number
156  * @param array $line per-frame array item from debug_backtrace()
157  * @return string
158  */
159 function formatBacktraceLine($n, $line)
160 {
161     $out = "#$n ";
162     if (isset($line['class'])) $out .= $line['class'];
163     if (isset($line['type'])) $out .= $line['type'];
164     if (isset($line['function'])) $out .= $line['function'];
165     $out .= '(';
166     if (isset($line['args'])) {
167         $args = array();
168         foreach ($line['args'] as $arg) {
169             // debug_print_backtrace seems to use var_export
170             // but this gets *very* verbose!
171             $args[] = gettype($arg);
172         }
173         $out .= implode(',', $args);
174     }
175     $out .= ')';
176     $out .= ' called at [';
177     if (isset($line['file'])) $out .= $line['file'];
178     if (isset($line['line'])) $out .= ':' . $line['line'];
179     $out .= ']';
180     return $out;
181 }
182
183 function setupRW()
184 {
185     global $config;
186
187     static $alwaysRW = array('session', 'remember_me');
188
189     $rwdb = $config['db']['database'];
190
191     if (Event::handle('StartReadWriteTables', array(&$alwaysRW, &$rwdb))) {
192
193         // We ensure that these tables always are used
194         // on the master DB
195
196         $config['db']['database_rw'] = $rwdb;
197         $config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
198
199         foreach ($alwaysRW as $table) {
200             $config['db']['table_'.$table] = 'rw';
201         }
202
203         Event::handle('EndReadWriteTables', array($alwaysRW, $rwdb));
204     }
205
206     return;
207 }
208
209 function isLoginAction($action)
210 {
211     static $loginActions =  array('login', 'recoverpassword', 'api', 'doc', 'register', 'publicxrds', 'otp', 'opensearch', 'rsd');
212
213     $login = null;
214
215     if (Event::handle('LoginAction', array($action, &$login))) {
216         $login = in_array($action, $loginActions);
217     }
218
219     return $login;
220 }
221
222 function main()
223 {
224     global $user, $action;
225
226     if (!_have_config()) {
227         $msg = sprintf(
228             // TRANS: Error message displayed when there is no StatusNet configuration file.
229             _("No configuration file found. Try running ".
230               "the installation program first."
231             )
232         );
233         $sac = new ServerErrorAction($msg);
234         $sac->showPage();
235         return;
236     }
237
238     // Make sure RW database is setup
239
240     setupRW();
241
242     // XXX: we need a little more structure in this script
243
244     // get and cache current user (may hit RW!)
245
246     $user = common_current_user();
247
248     // initialize language env
249
250     common_init_language();
251
252     $path = getPath($_REQUEST);
253
254     $r = Router::get();
255
256     $args = $r->map($path);
257
258     if (!$args) {
259         // TRANS: Error message displayed when trying to access a non-existing page.
260         $cac = new ClientErrorAction(_('Unknown page'), 404);
261         $cac->showPage();
262         return;
263     }
264
265     $site_ssl = common_config('site', 'ssl');
266
267     // If the request is HTTP and it should be HTTPS...
268     if ($site_ssl != 'never' && !GNUsocial::isHTTPS() && common_is_sensitive($args['action'])) {
269         common_redirect(common_local_url($args['action'], $args));
270     }
271
272     $args = array_merge($args, $_REQUEST);
273
274     Event::handle('ArgsInitialize', array(&$args));
275
276     $action = basename($args['action']);
277
278     if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
279         common_redirect(common_local_url('public'));
280     }
281
282     // If the site is private, and they're not on one of the "public"
283     // parts of the site, redirect to login
284
285     if (!$user && common_config('site', 'private')
286         && !isLoginAction($action)
287         && !preg_match('/rss$/', $action)
288         && $action != 'robotstxt'
289         && !preg_match('/^Api/', $action)) {
290
291         // set returnto
292         $rargs =& common_copy_args($args);
293         unset($rargs['action']);
294         if (common_config('site', 'fancy')) {
295             unset($rargs['p']);
296         }
297         if (array_key_exists('submit', $rargs)) {
298             unset($rargs['submit']);
299         }
300         foreach (array_keys($_COOKIE) as $cookie) {
301             unset($rargs[$cookie]);
302         }
303         common_set_returnto(common_local_url($action, $rargs));
304
305         common_redirect(common_local_url('login'));
306     }
307
308     $action_class = ucfirst($action).'Action';
309
310     if (!class_exists($action_class)) {
311         // TRANS: Error message displayed when trying to perform an undefined action.
312         $cac = new ClientErrorAction(_('Unknown action'), 404);
313         $cac->showPage();
314     } else {
315         try {
316             call_user_func("$action_class::run", $args);
317         } catch (ClientException $cex) {
318             $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
319             $cac->showPage();
320         } catch (ServerException $sex) { // snort snort guffaw
321             $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode(), $sex);
322             $sac->showPage();
323         } catch (Exception $ex) {
324             $sac = new ServerErrorAction($ex->getMessage(), 500, $ex);
325             $sac->showPage();
326         }
327     }
328 }
329
330 main();
331
332 // XXX: cleanup exit() calls or add an exit handler so
333 // this always gets called
334
335 Event::handle('CleanupPlugin');